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.
 
 
 

49866 lines
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. "ditto": {
  1904. name: "Ditto",
  1905. parents: ["pokemon", "goo"]
  1906. },
  1907. "amogus": {
  1908. name: "Amogus",
  1909. parents: ["deity"]
  1910. },
  1911. }
  1912. //species
  1913. function getSpeciesInfo(speciesList) {
  1914. let result = new Set();
  1915. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1916. result.add(entry)
  1917. });
  1918. return Array.from(result);
  1919. };
  1920. function getSpeciesInfoHelper(species) {
  1921. if (!speciesData[species]) {
  1922. console.warn(species + " doesn't exist");
  1923. return [];
  1924. }
  1925. if (speciesData[species].parents) {
  1926. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1927. } else {
  1928. return [species];
  1929. }
  1930. }
  1931. characterMakers.push(() => makeCharacter(
  1932. {
  1933. name: "Fen",
  1934. species: ["crux"],
  1935. description: {
  1936. title: "Bio",
  1937. text: "Very furry. Sheds on everything."
  1938. },
  1939. tags: [
  1940. "anthro",
  1941. "goo"
  1942. ]
  1943. },
  1944. {
  1945. front: {
  1946. height: math.unit(12, "feet"),
  1947. weight: math.unit(2400, "lb"),
  1948. name: "Front",
  1949. image: {
  1950. source: "./media/characters/fen/front.svg",
  1951. extra: 1804/1562,
  1952. bottom: 205/2009
  1953. }
  1954. },
  1955. diving: {
  1956. height: math.unit(4.9, "meters"),
  1957. weight: math.unit(2400, "lb"),
  1958. name: "Diving",
  1959. image: {
  1960. source: "./media/characters/fen/diving.svg"
  1961. }
  1962. },
  1963. goo: {
  1964. height: math.unit(12, "feet"),
  1965. weight: math.unit(3600, "lb"),
  1966. volume: math.unit(1000, "liters"),
  1967. capacity: math.unit(6, "people"),
  1968. name: "Goo",
  1969. image: {
  1970. source: "./media/characters/fen/goo.svg",
  1971. extra: 1307/1071,
  1972. bottom: 134/1441
  1973. }
  1974. },
  1975. maw: {
  1976. height: math.unit(5.03, "feet"),
  1977. name: "Maw",
  1978. image: {
  1979. source: "./media/characters/fen/maw.svg"
  1980. }
  1981. },
  1982. gooCeiling: {
  1983. height: math.unit(6.6, "feet"),
  1984. weight: math.unit(3000, "lb"),
  1985. volume: math.unit(1000, "liters"),
  1986. capacity: math.unit(6, "people"),
  1987. name: "Goo (Ceiling)",
  1988. image: {
  1989. source: "./media/characters/fen/goo-ceiling.svg"
  1990. }
  1991. },
  1992. back: {
  1993. height: math.unit(12, "feet"),
  1994. weight: math.unit(2400, "lb"),
  1995. name: "Back",
  1996. image: {
  1997. source: "./media/characters/fen/back.svg",
  1998. },
  1999. info: {
  2000. description: {
  2001. mode: "append",
  2002. text: "\n\nHe is not currently looking at you."
  2003. }
  2004. }
  2005. },
  2006. full: {
  2007. height: math.unit(1.6, "meter"),
  2008. weight: math.unit(3200, "lb"),
  2009. name: "Full",
  2010. image: {
  2011. source: "./media/characters/fen/full.svg",
  2012. extra: 1133/859,
  2013. bottom: 145/1278
  2014. },
  2015. info: {
  2016. description: {
  2017. mode: "append",
  2018. text: "\n\nMunch."
  2019. }
  2020. }
  2021. },
  2022. gooLounging: {
  2023. height: math.unit(4.53, "feet"),
  2024. weight: math.unit(3000, "lb"),
  2025. capacity: math.unit(6, "people"),
  2026. name: "Goo (Lounging)",
  2027. image: {
  2028. source: "./media/characters/fen/goo-lounging.svg",
  2029. bottom: 116 / 613
  2030. }
  2031. },
  2032. lounging: {
  2033. height: math.unit(10.52, "feet"),
  2034. weight: math.unit(2400, "lb"),
  2035. name: "Lounging",
  2036. image: {
  2037. source: "./media/characters/fen/lounging.svg"
  2038. }
  2039. },
  2040. },
  2041. [
  2042. {
  2043. name: "Small",
  2044. height: math.unit(2.2428, "meter")
  2045. },
  2046. {
  2047. name: "Normal",
  2048. height: math.unit(12, "feet"),
  2049. default: true,
  2050. },
  2051. {
  2052. name: "Big",
  2053. height: math.unit(20, "feet")
  2054. },
  2055. {
  2056. name: "Minimacro",
  2057. height: math.unit(40, "feet"),
  2058. info: {
  2059. description: {
  2060. mode: "append",
  2061. text: "\n\nTOO DAMN BIG"
  2062. }
  2063. }
  2064. },
  2065. {
  2066. name: "Macro",
  2067. height: math.unit(100, "feet"),
  2068. info: {
  2069. description: {
  2070. mode: "append",
  2071. text: "\n\nTOO DAMN BIG"
  2072. }
  2073. }
  2074. },
  2075. {
  2076. name: "Megamacro",
  2077. height: math.unit(2, "miles")
  2078. },
  2079. {
  2080. name: "Gigamacro",
  2081. height: math.unit(10, "earths")
  2082. },
  2083. ]
  2084. ))
  2085. characterMakers.push(() => makeCharacter(
  2086. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2087. {
  2088. front: {
  2089. height: math.unit(183, "cm"),
  2090. weight: math.unit(80, "kg"),
  2091. name: "Front",
  2092. image: {
  2093. source: "./media/characters/sofia-fluttertail/front.svg",
  2094. bottom: 0.01,
  2095. extra: 2154 / 2081
  2096. }
  2097. },
  2098. frontAlt: {
  2099. height: math.unit(183, "cm"),
  2100. weight: math.unit(80, "kg"),
  2101. name: "Front (alt)",
  2102. image: {
  2103. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2104. }
  2105. },
  2106. back: {
  2107. height: math.unit(183, "cm"),
  2108. weight: math.unit(80, "kg"),
  2109. name: "Back",
  2110. image: {
  2111. source: "./media/characters/sofia-fluttertail/back.svg"
  2112. }
  2113. },
  2114. kneeling: {
  2115. height: math.unit(125, "cm"),
  2116. weight: math.unit(80, "kg"),
  2117. name: "Kneeling",
  2118. image: {
  2119. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2120. extra: 1033 / 977,
  2121. bottom: 23.7 / 1057
  2122. }
  2123. },
  2124. maw: {
  2125. height: math.unit(183 / 5, "cm"),
  2126. name: "Maw",
  2127. image: {
  2128. source: "./media/characters/sofia-fluttertail/maw.svg"
  2129. }
  2130. },
  2131. mawcloseup: {
  2132. height: math.unit(183 / 5 * 0.41, "cm"),
  2133. name: "Maw (Closeup)",
  2134. image: {
  2135. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2136. }
  2137. },
  2138. paws: {
  2139. height: math.unit(1.17, "feet"),
  2140. name: "Paws",
  2141. image: {
  2142. source: "./media/characters/sofia-fluttertail/paws.svg",
  2143. extra: 851 / 851,
  2144. bottom: 17 / 868
  2145. }
  2146. },
  2147. },
  2148. [
  2149. {
  2150. name: "Normal",
  2151. height: math.unit(1.83, "meter")
  2152. },
  2153. {
  2154. name: "Size Thief",
  2155. height: math.unit(18, "feet")
  2156. },
  2157. {
  2158. name: "50 Foot Collie",
  2159. height: math.unit(50, "feet")
  2160. },
  2161. {
  2162. name: "Macro",
  2163. height: math.unit(96, "feet"),
  2164. default: true
  2165. },
  2166. {
  2167. name: "Megamerger",
  2168. height: math.unit(650, "feet")
  2169. },
  2170. ]
  2171. ))
  2172. characterMakers.push(() => makeCharacter(
  2173. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2174. {
  2175. front: {
  2176. height: math.unit(7, "feet"),
  2177. weight: math.unit(100, "kg"),
  2178. name: "Front",
  2179. image: {
  2180. source: "./media/characters/march/front.svg",
  2181. extra: 1992/1851,
  2182. bottom: 39/2031
  2183. }
  2184. },
  2185. foot: {
  2186. height: math.unit(0.9, "feet"),
  2187. name: "Foot",
  2188. image: {
  2189. source: "./media/characters/march/foot.svg"
  2190. }
  2191. },
  2192. },
  2193. [
  2194. {
  2195. name: "Normal",
  2196. height: math.unit(7.9, "feet")
  2197. },
  2198. {
  2199. name: "Macro",
  2200. height: math.unit(220, "meters")
  2201. },
  2202. {
  2203. name: "Megamacro",
  2204. height: math.unit(2.98, "km"),
  2205. default: true
  2206. },
  2207. {
  2208. name: "Gigamacro",
  2209. height: math.unit(15963, "km")
  2210. },
  2211. {
  2212. name: "Teramacro",
  2213. height: math.unit(2980000000, "km")
  2214. },
  2215. {
  2216. name: "Examacro",
  2217. height: math.unit(250, "parsecs")
  2218. },
  2219. ]
  2220. ))
  2221. characterMakers.push(() => makeCharacter(
  2222. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2223. {
  2224. front: {
  2225. height: math.unit(6, "feet"),
  2226. weight: math.unit(60, "kg"),
  2227. name: "Front",
  2228. image: {
  2229. source: "./media/characters/noir/front.svg",
  2230. extra: 1,
  2231. bottom: 0.032
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(6.6, "feet")
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(500, "feet")
  2243. },
  2244. {
  2245. name: "Megamacro",
  2246. height: math.unit(2.5, "km"),
  2247. default: true
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(22500, "km")
  2252. },
  2253. {
  2254. name: "Teramacro",
  2255. height: math.unit(2500000000, "km")
  2256. },
  2257. {
  2258. name: "Examacro",
  2259. height: math.unit(200, "parsecs")
  2260. },
  2261. ]
  2262. ))
  2263. characterMakers.push(() => makeCharacter(
  2264. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2265. {
  2266. front: {
  2267. height: math.unit(7, "feet"),
  2268. weight: math.unit(100, "kg"),
  2269. name: "Front",
  2270. image: {
  2271. source: "./media/characters/okuri/front.svg",
  2272. extra: 739/665,
  2273. bottom: 39/778
  2274. }
  2275. },
  2276. back: {
  2277. height: math.unit(7, "feet"),
  2278. weight: math.unit(100, "kg"),
  2279. name: "Back",
  2280. image: {
  2281. source: "./media/characters/okuri/back.svg",
  2282. extra: 734/653,
  2283. bottom: 13/747
  2284. }
  2285. },
  2286. sitting: {
  2287. height: math.unit(2.95, "feet"),
  2288. weight: math.unit(100, "kg"),
  2289. name: "Sitting",
  2290. image: {
  2291. source: "./media/characters/okuri/sitting.svg",
  2292. extra: 370/318,
  2293. bottom: 99/469
  2294. }
  2295. },
  2296. },
  2297. [
  2298. {
  2299. name: "Smallest",
  2300. height: math.unit(5 + 2/12, "feet")
  2301. },
  2302. {
  2303. name: "Smaller",
  2304. height: math.unit(300, "feet")
  2305. },
  2306. {
  2307. name: "Small",
  2308. height: math.unit(1000, "feet")
  2309. },
  2310. {
  2311. name: "Macro",
  2312. height: math.unit(1, "mile")
  2313. },
  2314. {
  2315. name: "Mega Macro (Small)",
  2316. height: math.unit(20, "km")
  2317. },
  2318. {
  2319. name: "Mega Macro (Large)",
  2320. height: math.unit(600, "km")
  2321. },
  2322. {
  2323. name: "Giga Macro",
  2324. height: math.unit(10000, "km")
  2325. },
  2326. {
  2327. name: "Normal",
  2328. height: math.unit(577560, "km"),
  2329. default: true
  2330. },
  2331. {
  2332. name: "Large",
  2333. height: math.unit(4, "galaxies")
  2334. },
  2335. {
  2336. name: "Largest",
  2337. height: math.unit(15, "multiverses")
  2338. },
  2339. ]
  2340. ))
  2341. characterMakers.push(() => makeCharacter(
  2342. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2343. {
  2344. front: {
  2345. height: math.unit(7, "feet"),
  2346. weight: math.unit(100, "kg"),
  2347. name: "Front",
  2348. image: {
  2349. source: "./media/characters/manny/front.svg",
  2350. extra: 1,
  2351. bottom: 0.06
  2352. }
  2353. },
  2354. back: {
  2355. height: math.unit(7, "feet"),
  2356. weight: math.unit(100, "kg"),
  2357. name: "Back",
  2358. image: {
  2359. source: "./media/characters/manny/back.svg",
  2360. extra: 1,
  2361. bottom: 0.014
  2362. }
  2363. },
  2364. },
  2365. [
  2366. {
  2367. name: "Normal",
  2368. height: math.unit(7, "feet"),
  2369. },
  2370. {
  2371. name: "Macro",
  2372. height: math.unit(78, "feet"),
  2373. default: true
  2374. },
  2375. {
  2376. name: "Macro+",
  2377. height: math.unit(300, "meters")
  2378. },
  2379. {
  2380. name: "Macro++",
  2381. height: math.unit(2400, "meters")
  2382. },
  2383. {
  2384. name: "Megamacro",
  2385. height: math.unit(5167, "meters")
  2386. },
  2387. {
  2388. name: "Gigamacro",
  2389. height: math.unit(41769, "miles")
  2390. },
  2391. ]
  2392. ))
  2393. characterMakers.push(() => makeCharacter(
  2394. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2395. {
  2396. front: {
  2397. height: math.unit(7, "feet"),
  2398. weight: math.unit(100, "kg"),
  2399. name: "Front",
  2400. image: {
  2401. source: "./media/characters/adake/front-1.svg"
  2402. }
  2403. },
  2404. frontAlt: {
  2405. height: math.unit(7, "feet"),
  2406. weight: math.unit(100, "kg"),
  2407. name: "Front (Alt)",
  2408. image: {
  2409. source: "./media/characters/adake/front-2.svg",
  2410. extra: 1,
  2411. bottom: 0.01
  2412. }
  2413. },
  2414. back: {
  2415. height: math.unit(7, "feet"),
  2416. weight: math.unit(100, "kg"),
  2417. name: "Back",
  2418. image: {
  2419. source: "./media/characters/adake/back.svg",
  2420. }
  2421. },
  2422. kneel: {
  2423. height: math.unit(5.385, "feet"),
  2424. weight: math.unit(100, "kg"),
  2425. name: "Kneeling",
  2426. image: {
  2427. source: "./media/characters/adake/kneel.svg",
  2428. bottom: 0.052
  2429. }
  2430. },
  2431. },
  2432. [
  2433. {
  2434. name: "Normal",
  2435. height: math.unit(7, "feet"),
  2436. },
  2437. {
  2438. name: "Macro",
  2439. height: math.unit(78, "feet"),
  2440. default: true
  2441. },
  2442. {
  2443. name: "Macro+",
  2444. height: math.unit(300, "meters")
  2445. },
  2446. {
  2447. name: "Macro++",
  2448. height: math.unit(2400, "meters")
  2449. },
  2450. {
  2451. name: "Megamacro",
  2452. height: math.unit(5167, "meters")
  2453. },
  2454. {
  2455. name: "Gigamacro",
  2456. height: math.unit(41769, "miles")
  2457. },
  2458. ]
  2459. ))
  2460. characterMakers.push(() => makeCharacter(
  2461. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2462. {
  2463. front: {
  2464. height: math.unit(1.65, "meters"),
  2465. weight: math.unit(50, "kg"),
  2466. name: "Front",
  2467. image: {
  2468. source: "./media/characters/elijah/front.svg",
  2469. extra: 858 / 830,
  2470. bottom: 95.5 / 953.8559
  2471. }
  2472. },
  2473. back: {
  2474. height: math.unit(1.65, "meters"),
  2475. weight: math.unit(50, "kg"),
  2476. name: "Back",
  2477. image: {
  2478. source: "./media/characters/elijah/back.svg",
  2479. extra: 895 / 850,
  2480. bottom: 5.3 / 897.956
  2481. }
  2482. },
  2483. frontNsfw: {
  2484. height: math.unit(1.65, "meters"),
  2485. weight: math.unit(50, "kg"),
  2486. name: "Front (NSFW)",
  2487. image: {
  2488. source: "./media/characters/elijah/front-nsfw.svg",
  2489. extra: 858 / 830,
  2490. bottom: 95.5 / 953.8559
  2491. }
  2492. },
  2493. backNsfw: {
  2494. height: math.unit(1.65, "meters"),
  2495. weight: math.unit(50, "kg"),
  2496. name: "Back (NSFW)",
  2497. image: {
  2498. source: "./media/characters/elijah/back-nsfw.svg",
  2499. extra: 895 / 850,
  2500. bottom: 5.3 / 897.956
  2501. }
  2502. },
  2503. dick: {
  2504. height: math.unit(1, "feet"),
  2505. name: "Dick",
  2506. image: {
  2507. source: "./media/characters/elijah/dick.svg"
  2508. }
  2509. },
  2510. beakOpen: {
  2511. height: math.unit(1.25, "feet"),
  2512. name: "Beak (Open)",
  2513. image: {
  2514. source: "./media/characters/elijah/beak-open.svg"
  2515. }
  2516. },
  2517. beakShut: {
  2518. height: math.unit(1.25, "feet"),
  2519. name: "Beak (Shut)",
  2520. image: {
  2521. source: "./media/characters/elijah/beak-shut.svg"
  2522. }
  2523. },
  2524. footFlexing: {
  2525. height: math.unit(1.61, "feet"),
  2526. name: "Foot (Flexing)",
  2527. image: {
  2528. source: "./media/characters/elijah/foot-flexing.svg"
  2529. }
  2530. },
  2531. footStepping: {
  2532. height: math.unit(1.44, "feet"),
  2533. name: "Foot (Stepping)",
  2534. image: {
  2535. source: "./media/characters/elijah/foot-stepping.svg"
  2536. }
  2537. },
  2538. plantigradeLeg: {
  2539. height: math.unit(2.34, "feet"),
  2540. name: "Plantigrade Leg",
  2541. image: {
  2542. source: "./media/characters/elijah/plantigrade-leg.svg"
  2543. }
  2544. },
  2545. plantigradeFootLeft: {
  2546. height: math.unit(0.9, "feet"),
  2547. name: "Plantigrade Foot (Left)",
  2548. image: {
  2549. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2550. }
  2551. },
  2552. plantigradeFootRight: {
  2553. height: math.unit(0.9, "feet"),
  2554. name: "Plantigrade Foot (Right)",
  2555. image: {
  2556. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2557. }
  2558. },
  2559. },
  2560. [
  2561. {
  2562. name: "Normal",
  2563. height: math.unit(1.65, "meters")
  2564. },
  2565. {
  2566. name: "Macro",
  2567. height: math.unit(55, "meters"),
  2568. default: true
  2569. },
  2570. {
  2571. name: "Macro+",
  2572. height: math.unit(105, "meters")
  2573. },
  2574. ]
  2575. ))
  2576. characterMakers.push(() => makeCharacter(
  2577. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2578. {
  2579. front: {
  2580. height: math.unit(7 + 2/12, "feet"),
  2581. weight: math.unit(320, "kg"),
  2582. name: "Front",
  2583. image: {
  2584. source: "./media/characters/rai/front.svg",
  2585. extra: 1802/1696,
  2586. bottom: 68/1870
  2587. }
  2588. },
  2589. frontDressed: {
  2590. height: math.unit(7 + 2/12, "feet"),
  2591. weight: math.unit(320, "kg"),
  2592. name: "Front (Dressed)",
  2593. image: {
  2594. source: "./media/characters/rai/front-dressed.svg",
  2595. extra: 1802/1696,
  2596. bottom: 68/1870
  2597. }
  2598. },
  2599. side: {
  2600. height: math.unit(7 + 2/12, "feet"),
  2601. weight: math.unit(320, "kg"),
  2602. name: "Side",
  2603. image: {
  2604. source: "./media/characters/rai/side.svg",
  2605. extra: 1789/1710,
  2606. bottom: 115/1904
  2607. }
  2608. },
  2609. back: {
  2610. height: math.unit(7 + 2/12, "feet"),
  2611. weight: math.unit(320, "kg"),
  2612. name: "Back",
  2613. image: {
  2614. source: "./media/characters/rai/back.svg",
  2615. extra: 1770/1707,
  2616. bottom: 28/1798
  2617. }
  2618. },
  2619. feral: {
  2620. height: math.unit(9.5, "feet"),
  2621. weight: math.unit(640, "kg"),
  2622. name: "Feral",
  2623. image: {
  2624. source: "./media/characters/rai/feral.svg",
  2625. extra: 945/553,
  2626. bottom: 176/1121
  2627. }
  2628. },
  2629. dragon: {
  2630. height: math.unit(23, "feet"),
  2631. weight: math.unit(50000, "lb"),
  2632. name: "Dragon",
  2633. image: {
  2634. source: "./media/characters/rai/dragon.svg",
  2635. extra: 2498 / 2030,
  2636. bottom: 85.2 / 2584
  2637. }
  2638. },
  2639. maw: {
  2640. height: math.unit(1.69, "feet"),
  2641. name: "Maw",
  2642. image: {
  2643. source: "./media/characters/rai/maw.svg"
  2644. }
  2645. },
  2646. },
  2647. [
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(7 + 2/12, "feet")
  2651. },
  2652. {
  2653. name: "Big",
  2654. height: math.unit(11, "feet")
  2655. },
  2656. {
  2657. name: "Macro",
  2658. height: math.unit(302, "feet"),
  2659. default: true
  2660. },
  2661. ]
  2662. ))
  2663. characterMakers.push(() => makeCharacter(
  2664. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2665. {
  2666. frontDressed: {
  2667. height: math.unit(216, "feet"),
  2668. weight: math.unit(7000000, "lb"),
  2669. name: "Front (Dressed)",
  2670. image: {
  2671. source: "./media/characters/jazzy/front-dressed.svg",
  2672. extra: 2738 / 2651,
  2673. bottom: 41.8 / 2786
  2674. }
  2675. },
  2676. backDressed: {
  2677. height: math.unit(216, "feet"),
  2678. weight: math.unit(7000000, "lb"),
  2679. name: "Back (Dressed)",
  2680. image: {
  2681. source: "./media/characters/jazzy/back-dressed.svg",
  2682. extra: 2775 / 2673,
  2683. bottom: 36.8 / 2817
  2684. }
  2685. },
  2686. front: {
  2687. height: math.unit(216, "feet"),
  2688. weight: math.unit(7000000, "lb"),
  2689. name: "Front",
  2690. image: {
  2691. source: "./media/characters/jazzy/front.svg",
  2692. extra: 2738 / 2651,
  2693. bottom: 41.8 / 2786
  2694. }
  2695. },
  2696. back: {
  2697. height: math.unit(216, "feet"),
  2698. weight: math.unit(7000000, "lb"),
  2699. name: "Back",
  2700. image: {
  2701. source: "./media/characters/jazzy/back.svg",
  2702. extra: 2775 / 2673,
  2703. bottom: 36.8 / 2817
  2704. }
  2705. },
  2706. maw: {
  2707. height: math.unit(20, "feet"),
  2708. name: "Maw",
  2709. image: {
  2710. source: "./media/characters/jazzy/maw.svg"
  2711. }
  2712. },
  2713. paws: {
  2714. height: math.unit(27.5, "feet"),
  2715. name: "Paws",
  2716. image: {
  2717. source: "./media/characters/jazzy/paws.svg"
  2718. }
  2719. },
  2720. eye: {
  2721. height: math.unit(4.4, "feet"),
  2722. name: "Eye",
  2723. image: {
  2724. source: "./media/characters/jazzy/eye.svg"
  2725. }
  2726. },
  2727. droneOffense: {
  2728. height: math.unit(9.5, "inches"),
  2729. name: "Drone (Offense)",
  2730. image: {
  2731. source: "./media/characters/jazzy/drone-offense.svg"
  2732. }
  2733. },
  2734. droneRecon: {
  2735. height: math.unit(9.5, "inches"),
  2736. name: "Drone (Recon)",
  2737. image: {
  2738. source: "./media/characters/jazzy/drone-recon.svg"
  2739. }
  2740. },
  2741. droneDefense: {
  2742. height: math.unit(9.5, "inches"),
  2743. name: "Drone (Defense)",
  2744. image: {
  2745. source: "./media/characters/jazzy/drone-defense.svg"
  2746. }
  2747. },
  2748. },
  2749. [
  2750. {
  2751. name: "Macro",
  2752. height: math.unit(216, "feet"),
  2753. default: true
  2754. },
  2755. ]
  2756. ))
  2757. characterMakers.push(() => makeCharacter(
  2758. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2759. {
  2760. front: {
  2761. height: math.unit(9 + 6/12, "feet"),
  2762. weight: math.unit(700, "lb"),
  2763. name: "Front",
  2764. image: {
  2765. source: "./media/characters/flamm/front.svg",
  2766. extra: 1751/1632,
  2767. bottom: 46/1797
  2768. }
  2769. },
  2770. buff: {
  2771. height: math.unit(9 + 6/12, "feet"),
  2772. weight: math.unit(950, "lb"),
  2773. name: "Buff",
  2774. image: {
  2775. source: "./media/characters/flamm/buff.svg",
  2776. extra: 3018/2874,
  2777. bottom: 221/3239
  2778. }
  2779. },
  2780. },
  2781. [
  2782. {
  2783. name: "Normal",
  2784. height: math.unit(9.5, "feet")
  2785. },
  2786. {
  2787. name: "Macro",
  2788. height: math.unit(200, "feet"),
  2789. default: true
  2790. },
  2791. ]
  2792. ))
  2793. characterMakers.push(() => makeCharacter(
  2794. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2795. {
  2796. front: {
  2797. height: math.unit(5 + 3/12, "feet"),
  2798. weight: math.unit(60, "kg"),
  2799. name: "Front",
  2800. image: {
  2801. source: "./media/characters/zephiro/front.svg",
  2802. extra: 2309 / 2162,
  2803. bottom: 0.069
  2804. }
  2805. },
  2806. side: {
  2807. height: math.unit(5 + 3/12, "feet"),
  2808. weight: math.unit(60, "kg"),
  2809. name: "Side",
  2810. image: {
  2811. source: "./media/characters/zephiro/side.svg",
  2812. extra: 2403 / 2279,
  2813. bottom: 0.015
  2814. }
  2815. },
  2816. back: {
  2817. height: math.unit(5 + 3/12, "feet"),
  2818. weight: math.unit(60, "kg"),
  2819. name: "Back",
  2820. image: {
  2821. source: "./media/characters/zephiro/back.svg",
  2822. extra: 2373 / 2244,
  2823. bottom: 0.013
  2824. }
  2825. },
  2826. hand: {
  2827. height: math.unit(0.68, "feet"),
  2828. name: "Hand",
  2829. image: {
  2830. source: "./media/characters/zephiro/hand.svg"
  2831. }
  2832. },
  2833. paw: {
  2834. height: math.unit(1, "feet"),
  2835. name: "Paw",
  2836. image: {
  2837. source: "./media/characters/zephiro/paw.svg"
  2838. }
  2839. },
  2840. beans: {
  2841. height: math.unit(0.93, "feet"),
  2842. name: "Beans",
  2843. image: {
  2844. source: "./media/characters/zephiro/beans.svg"
  2845. }
  2846. },
  2847. },
  2848. [
  2849. {
  2850. name: "Micro",
  2851. height: math.unit(3, "inches")
  2852. },
  2853. {
  2854. name: "Normal",
  2855. height: math.unit(5 + 3 / 12, "feet"),
  2856. default: true
  2857. },
  2858. {
  2859. name: "Macro",
  2860. height: math.unit(118, "feet")
  2861. },
  2862. ]
  2863. ))
  2864. characterMakers.push(() => makeCharacter(
  2865. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2866. {
  2867. front: {
  2868. height: math.unit(5, "feet"),
  2869. weight: math.unit(90, "kg"),
  2870. name: "Front",
  2871. image: {
  2872. source: "./media/characters/fory/front.svg",
  2873. extra: 2862 / 2674,
  2874. bottom: 180 / 3043.8
  2875. }
  2876. },
  2877. back: {
  2878. height: math.unit(5, "feet"),
  2879. weight: math.unit(90, "kg"),
  2880. name: "Back",
  2881. image: {
  2882. source: "./media/characters/fory/back.svg",
  2883. extra: 2962 / 2791,
  2884. bottom: 106 / 3071.8
  2885. }
  2886. },
  2887. foot: {
  2888. height: math.unit(2.14, "feet"),
  2889. name: "Foot",
  2890. image: {
  2891. source: "./media/characters/fory/foot.svg"
  2892. }
  2893. },
  2894. },
  2895. [
  2896. {
  2897. name: "Normal",
  2898. height: math.unit(5, "feet")
  2899. },
  2900. {
  2901. name: "Macro",
  2902. height: math.unit(50, "feet"),
  2903. default: true
  2904. },
  2905. {
  2906. name: "Megamacro",
  2907. height: math.unit(10, "miles")
  2908. },
  2909. {
  2910. name: "Gigamacro",
  2911. height: math.unit(5, "earths")
  2912. },
  2913. ]
  2914. ))
  2915. characterMakers.push(() => makeCharacter(
  2916. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2917. {
  2918. front: {
  2919. height: math.unit(7, "feet"),
  2920. weight: math.unit(90, "kg"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/kurrikage/front.svg",
  2924. extra: 1845/1733,
  2925. bottom: 119/1964
  2926. }
  2927. },
  2928. back: {
  2929. height: math.unit(7, "feet"),
  2930. weight: math.unit(90, "kg"),
  2931. name: "Back",
  2932. image: {
  2933. source: "./media/characters/kurrikage/back.svg",
  2934. extra: 1790/1677,
  2935. bottom: 61/1851
  2936. }
  2937. },
  2938. dressed: {
  2939. height: math.unit(7, "feet"),
  2940. weight: math.unit(90, "kg"),
  2941. name: "Dressed",
  2942. image: {
  2943. source: "./media/characters/kurrikage/dressed.svg",
  2944. extra: 1845/1733,
  2945. bottom: 119/1964
  2946. }
  2947. },
  2948. foot: {
  2949. height: math.unit(1.5, "feet"),
  2950. name: "Foot",
  2951. image: {
  2952. source: "./media/characters/kurrikage/foot.svg"
  2953. }
  2954. },
  2955. staff: {
  2956. height: math.unit(6.7, "feet"),
  2957. name: "Staff",
  2958. image: {
  2959. source: "./media/characters/kurrikage/staff.svg"
  2960. }
  2961. },
  2962. peek: {
  2963. height: math.unit(1.05, "feet"),
  2964. name: "Peeking",
  2965. image: {
  2966. source: "./media/characters/kurrikage/peek.svg",
  2967. bottom: 0.08
  2968. }
  2969. },
  2970. },
  2971. [
  2972. {
  2973. name: "Normal",
  2974. height: math.unit(12, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Big",
  2979. height: math.unit(20, "feet")
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(500, "feet")
  2984. },
  2985. {
  2986. name: "Megamacro",
  2987. height: math.unit(20, "miles")
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(6, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/shingo/front.svg",
  3000. extra: 1900/1825,
  3001. bottom: 82/1982
  3002. }
  3003. },
  3004. side: {
  3005. height: math.unit(6, "feet"),
  3006. weight: math.unit(75, "kg"),
  3007. name: "Side",
  3008. image: {
  3009. source: "./media/characters/shingo/side.svg",
  3010. extra: 1930/1865,
  3011. bottom: 16/1946
  3012. }
  3013. },
  3014. back: {
  3015. height: math.unit(6, "feet"),
  3016. weight: math.unit(75, "kg"),
  3017. name: "Back",
  3018. image: {
  3019. source: "./media/characters/shingo/back.svg",
  3020. extra: 1922/1852,
  3021. bottom: 16/1938
  3022. }
  3023. },
  3024. frontDressed: {
  3025. height: math.unit(6, "feet"),
  3026. weight: math.unit(150, "lb"),
  3027. name: "Front-dressed",
  3028. image: {
  3029. source: "./media/characters/shingo/front-dressed.svg",
  3030. extra: 1900/1825,
  3031. bottom: 82/1982
  3032. }
  3033. },
  3034. paw: {
  3035. height: math.unit(1.29, "feet"),
  3036. name: "Paw",
  3037. image: {
  3038. source: "./media/characters/shingo/paw.svg"
  3039. }
  3040. },
  3041. hand: {
  3042. height: math.unit(1.07, "feet"),
  3043. name: "Hand",
  3044. image: {
  3045. source: "./media/characters/shingo/hand.svg"
  3046. }
  3047. },
  3048. frontAlt: {
  3049. height: math.unit(6, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Front (Alt)",
  3052. image: {
  3053. source: "./media/characters/shingo/front-alt.svg",
  3054. extra: 3511 / 3338,
  3055. bottom: 0.005
  3056. }
  3057. },
  3058. frontAlt2: {
  3059. height: math.unit(6, "feet"),
  3060. weight: math.unit(75, "kg"),
  3061. name: "Front (Alt 2)",
  3062. image: {
  3063. source: "./media/characters/shingo/front-alt-2.svg",
  3064. extra: 706/681,
  3065. bottom: 11/717
  3066. }
  3067. },
  3068. pawAlt: {
  3069. height: math.unit(1, "feet"),
  3070. name: "Paw (Alt)",
  3071. image: {
  3072. source: "./media/characters/shingo/paw-alt.svg"
  3073. }
  3074. },
  3075. },
  3076. [
  3077. {
  3078. name: "Micro",
  3079. height: math.unit(4, "inches")
  3080. },
  3081. {
  3082. name: "Normal",
  3083. height: math.unit(6, "feet"),
  3084. default: true
  3085. },
  3086. {
  3087. name: "Macro",
  3088. height: math.unit(108, "feet")
  3089. },
  3090. {
  3091. name: "Macro+",
  3092. height: math.unit(1500, "feet")
  3093. },
  3094. ]
  3095. ))
  3096. characterMakers.push(() => makeCharacter(
  3097. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3098. {
  3099. side: {
  3100. height: math.unit(6, "feet"),
  3101. weight: math.unit(75, "kg"),
  3102. name: "Side",
  3103. image: {
  3104. source: "./media/characters/aigey/side.svg"
  3105. }
  3106. },
  3107. },
  3108. [
  3109. {
  3110. name: "Macro",
  3111. height: math.unit(200, "feet"),
  3112. default: true
  3113. },
  3114. {
  3115. name: "Megamacro",
  3116. height: math.unit(100, "miles")
  3117. },
  3118. ]
  3119. )
  3120. )
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3123. {
  3124. front: {
  3125. height: math.unit(5 + 5 / 12, "feet"),
  3126. weight: math.unit(75, "kg"),
  3127. name: "Front",
  3128. image: {
  3129. source: "./media/characters/natasha/front.svg",
  3130. extra: 859 / 824,
  3131. bottom: 23 / 879.6
  3132. }
  3133. },
  3134. frontNsfw: {
  3135. height: math.unit(5 + 5 / 12, "feet"),
  3136. weight: math.unit(75, "kg"),
  3137. name: "Front (NSFW)",
  3138. image: {
  3139. source: "./media/characters/natasha/front-nsfw.svg",
  3140. extra: 859 / 824,
  3141. bottom: 23 / 879.6
  3142. }
  3143. },
  3144. frontErect: {
  3145. height: math.unit(5 + 5 / 12, "feet"),
  3146. weight: math.unit(75, "kg"),
  3147. name: "Front (Erect)",
  3148. image: {
  3149. source: "./media/characters/natasha/front-erect.svg",
  3150. extra: 859 / 824,
  3151. bottom: 23 / 879.6
  3152. }
  3153. },
  3154. back: {
  3155. height: math.unit(5 + 5 / 12, "feet"),
  3156. weight: math.unit(75, "kg"),
  3157. name: "Back",
  3158. image: {
  3159. source: "./media/characters/natasha/back.svg",
  3160. extra: 887.9 / 852.6,
  3161. bottom: 9.7 / 896.4
  3162. }
  3163. },
  3164. backAlt: {
  3165. height: math.unit(5 + 5 / 12, "feet"),
  3166. weight: math.unit(75, "kg"),
  3167. name: "Back (Alt)",
  3168. image: {
  3169. source: "./media/characters/natasha/back-alt.svg",
  3170. extra: 1236.7 / 1192,
  3171. bottom: 22.3 / 1258.2
  3172. }
  3173. },
  3174. dick: {
  3175. height: math.unit(1.772, "feet"),
  3176. name: "Dick",
  3177. image: {
  3178. source: "./media/characters/natasha/dick.svg"
  3179. }
  3180. },
  3181. paw: {
  3182. height: math.unit(0.250, "meters"),
  3183. name: "Paw",
  3184. image: {
  3185. source: "./media/characters/natasha/paw.svg"
  3186. }
  3187. },
  3188. },
  3189. [
  3190. {
  3191. name: "Normal",
  3192. height: math.unit(5 + 5 / 12, "feet")
  3193. },
  3194. {
  3195. name: "Large",
  3196. height: math.unit(12, "feet")
  3197. },
  3198. {
  3199. name: "Macro",
  3200. height: math.unit(100, "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Macro+",
  3205. height: math.unit(260, "feet")
  3206. },
  3207. {
  3208. name: "Macro++",
  3209. height: math.unit(1, "mile")
  3210. },
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3215. {
  3216. front: {
  3217. height: math.unit(6, "feet"),
  3218. weight: math.unit(75, "kg"),
  3219. name: "Front",
  3220. image: {
  3221. source: "./media/characters/malik/front.svg"
  3222. }
  3223. },
  3224. side: {
  3225. height: math.unit(6, "feet"),
  3226. weight: math.unit(75, "kg"),
  3227. name: "Side",
  3228. image: {
  3229. source: "./media/characters/malik/side.svg",
  3230. extra: 1.1539
  3231. }
  3232. },
  3233. back: {
  3234. height: math.unit(6, "feet"),
  3235. weight: math.unit(75, "kg"),
  3236. name: "Back",
  3237. image: {
  3238. source: "./media/characters/malik/back.svg"
  3239. }
  3240. },
  3241. },
  3242. [
  3243. {
  3244. name: "Macro",
  3245. height: math.unit(156, "feet"),
  3246. default: true
  3247. },
  3248. {
  3249. name: "Macro+",
  3250. height: math.unit(1188, "feet")
  3251. },
  3252. ]
  3253. ))
  3254. characterMakers.push(() => makeCharacter(
  3255. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3256. {
  3257. front: {
  3258. height: math.unit(6, "feet"),
  3259. weight: math.unit(75, "kg"),
  3260. name: "Front",
  3261. image: {
  3262. source: "./media/characters/sefer/front.svg",
  3263. extra: 848 / 659,
  3264. bottom: 28.3 / 876.442
  3265. }
  3266. },
  3267. back: {
  3268. height: math.unit(6, "feet"),
  3269. weight: math.unit(75, "kg"),
  3270. name: "Back",
  3271. image: {
  3272. source: "./media/characters/sefer/back.svg",
  3273. extra: 864 / 695,
  3274. bottom: 10 / 871
  3275. }
  3276. },
  3277. frontDressed: {
  3278. height: math.unit(6, "feet"),
  3279. weight: math.unit(75, "kg"),
  3280. name: "Front (Dressed)",
  3281. image: {
  3282. source: "./media/characters/sefer/front-dressed.svg",
  3283. extra: 839 / 653,
  3284. bottom: 37.6 / 878
  3285. }
  3286. },
  3287. },
  3288. [
  3289. {
  3290. name: "Normal",
  3291. height: math.unit(6, "feet"),
  3292. default: true
  3293. },
  3294. ]
  3295. ))
  3296. characterMakers.push(() => makeCharacter(
  3297. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3298. {
  3299. body: {
  3300. height: math.unit(2.2428, "meter"),
  3301. weight: math.unit(124.738, "kg"),
  3302. name: "Body",
  3303. image: {
  3304. extra: 1225 / 1050,
  3305. source: "./media/characters/north/front.svg"
  3306. }
  3307. }
  3308. },
  3309. [
  3310. {
  3311. name: "Micro",
  3312. height: math.unit(4, "inches")
  3313. },
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(63, "meters")
  3317. },
  3318. {
  3319. name: "Megamacro",
  3320. height: math.unit(101, "miles"),
  3321. default: true
  3322. }
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3327. {
  3328. angled: {
  3329. height: math.unit(4, "meter"),
  3330. weight: math.unit(150, "kg"),
  3331. name: "Angled",
  3332. image: {
  3333. source: "./media/characters/talan/angled-sfw.svg",
  3334. bottom: 29 / 3734
  3335. }
  3336. },
  3337. angledNsfw: {
  3338. height: math.unit(4, "meter"),
  3339. weight: math.unit(150, "kg"),
  3340. name: "Angled (NSFW)",
  3341. image: {
  3342. source: "./media/characters/talan/angled-nsfw.svg",
  3343. bottom: 29 / 3734
  3344. }
  3345. },
  3346. frontNsfw: {
  3347. height: math.unit(4, "meter"),
  3348. weight: math.unit(150, "kg"),
  3349. name: "Front (NSFW)",
  3350. image: {
  3351. source: "./media/characters/talan/front-nsfw.svg",
  3352. bottom: 29 / 3734
  3353. }
  3354. },
  3355. sideNsfw: {
  3356. height: math.unit(4, "meter"),
  3357. weight: math.unit(150, "kg"),
  3358. name: "Side (NSFW)",
  3359. image: {
  3360. source: "./media/characters/talan/side-nsfw.svg",
  3361. bottom: 29 / 3734
  3362. }
  3363. },
  3364. back: {
  3365. height: math.unit(4, "meter"),
  3366. weight: math.unit(150, "kg"),
  3367. name: "Back",
  3368. image: {
  3369. source: "./media/characters/talan/back.svg"
  3370. }
  3371. },
  3372. dickBottom: {
  3373. height: math.unit(0.621, "meter"),
  3374. name: "Dick (Bottom)",
  3375. image: {
  3376. source: "./media/characters/talan/dick-bottom.svg"
  3377. }
  3378. },
  3379. dickTop: {
  3380. height: math.unit(0.621, "meter"),
  3381. name: "Dick (Top)",
  3382. image: {
  3383. source: "./media/characters/talan/dick-top.svg"
  3384. }
  3385. },
  3386. dickSide: {
  3387. height: math.unit(0.305, "meter"),
  3388. name: "Dick (Side)",
  3389. image: {
  3390. source: "./media/characters/talan/dick-side.svg"
  3391. }
  3392. },
  3393. dickFront: {
  3394. height: math.unit(0.305, "meter"),
  3395. name: "Dick (Front)",
  3396. image: {
  3397. source: "./media/characters/talan/dick-front.svg"
  3398. }
  3399. },
  3400. },
  3401. [
  3402. {
  3403. name: "Normal",
  3404. height: math.unit(4, "meters")
  3405. },
  3406. {
  3407. name: "Macro",
  3408. height: math.unit(100, "meters")
  3409. },
  3410. {
  3411. name: "Megamacro",
  3412. height: math.unit(2, "miles"),
  3413. default: true
  3414. },
  3415. {
  3416. name: "Gigamacro",
  3417. height: math.unit(5000, "miles")
  3418. },
  3419. {
  3420. name: "Teramacro",
  3421. height: math.unit(100, "parsecs")
  3422. }
  3423. ]
  3424. ))
  3425. characterMakers.push(() => makeCharacter(
  3426. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3427. {
  3428. front: {
  3429. height: math.unit(2, "meter"),
  3430. weight: math.unit(90, "kg"),
  3431. name: "Front",
  3432. image: {
  3433. source: "./media/characters/gael'rathus/front.svg"
  3434. }
  3435. },
  3436. frontAlt: {
  3437. height: math.unit(2, "meter"),
  3438. weight: math.unit(90, "kg"),
  3439. name: "Front (alt)",
  3440. image: {
  3441. source: "./media/characters/gael'rathus/front-alt.svg"
  3442. }
  3443. },
  3444. frontAlt2: {
  3445. height: math.unit(2, "meter"),
  3446. weight: math.unit(90, "kg"),
  3447. name: "Front (alt 2)",
  3448. image: {
  3449. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3450. }
  3451. }
  3452. },
  3453. [
  3454. {
  3455. name: "Normal",
  3456. height: math.unit(9, "feet"),
  3457. default: true
  3458. },
  3459. {
  3460. name: "Large",
  3461. height: math.unit(25, "feet")
  3462. },
  3463. {
  3464. name: "Macro",
  3465. height: math.unit(0.25, "miles")
  3466. },
  3467. {
  3468. name: "Megamacro",
  3469. height: math.unit(10, "miles")
  3470. }
  3471. ]
  3472. ))
  3473. characterMakers.push(() => makeCharacter(
  3474. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3475. {
  3476. side: {
  3477. height: math.unit(2, "meter"),
  3478. weight: math.unit(140, "kg"),
  3479. name: "Side",
  3480. image: {
  3481. source: "./media/characters/sosha/side.svg",
  3482. bottom: 0.042
  3483. }
  3484. },
  3485. },
  3486. [
  3487. {
  3488. name: "Normal",
  3489. height: math.unit(12, "feet"),
  3490. default: true
  3491. }
  3492. ]
  3493. ))
  3494. characterMakers.push(() => makeCharacter(
  3495. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3496. {
  3497. side: {
  3498. height: math.unit(5 + 5 / 12, "feet"),
  3499. weight: math.unit(170, "kg"),
  3500. name: "Side",
  3501. image: {
  3502. source: "./media/characters/runnola/side.svg",
  3503. extra: 741 / 448,
  3504. bottom: 0.05
  3505. }
  3506. },
  3507. },
  3508. [
  3509. {
  3510. name: "Small",
  3511. height: math.unit(3, "feet")
  3512. },
  3513. {
  3514. name: "Normal",
  3515. height: math.unit(5 + 5 / 12, "feet"),
  3516. default: true
  3517. },
  3518. {
  3519. name: "Big",
  3520. height: math.unit(10, "feet")
  3521. },
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(50, "kg"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/kurribird/front.svg",
  3533. bottom: 0.015
  3534. }
  3535. },
  3536. frontAlt: {
  3537. height: math.unit(1.5, "meter"),
  3538. weight: math.unit(50, "kg"),
  3539. name: "Front (Alt)",
  3540. image: {
  3541. source: "./media/characters/kurribird/front-alt.svg",
  3542. extra: 1.45
  3543. }
  3544. },
  3545. },
  3546. [
  3547. {
  3548. name: "Normal",
  3549. height: math.unit(7, "feet")
  3550. },
  3551. {
  3552. name: "Big",
  3553. height: math.unit(12, "feet"),
  3554. default: true
  3555. },
  3556. {
  3557. name: "Macro",
  3558. height: math.unit(1500, "feet")
  3559. },
  3560. {
  3561. name: "Megamacro",
  3562. height: math.unit(2, "miles")
  3563. }
  3564. ]
  3565. ))
  3566. characterMakers.push(() => makeCharacter(
  3567. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3568. {
  3569. front: {
  3570. height: math.unit(2, "meter"),
  3571. weight: math.unit(80, "kg"),
  3572. name: "Front",
  3573. image: {
  3574. source: "./media/characters/elbial/front.svg",
  3575. extra: 1643 / 1556,
  3576. bottom: 60.2 / 1696
  3577. }
  3578. },
  3579. side: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(80, "kg"),
  3582. name: "Side",
  3583. image: {
  3584. source: "./media/characters/elbial/side.svg",
  3585. extra: 1601/1528,
  3586. bottom: 97/1698
  3587. }
  3588. },
  3589. back: {
  3590. height: math.unit(2, "meter"),
  3591. weight: math.unit(80, "kg"),
  3592. name: "Back",
  3593. image: {
  3594. source: "./media/characters/elbial/back.svg",
  3595. extra: 1653/1569,
  3596. bottom: 20/1673
  3597. }
  3598. },
  3599. frontDressed: {
  3600. height: math.unit(2, "meter"),
  3601. weight: math.unit(80, "kg"),
  3602. name: "Front (Dressed)",
  3603. image: {
  3604. source: "./media/characters/elbial/front-dressed.svg",
  3605. extra: 1638/1569,
  3606. bottom: 70/1708
  3607. }
  3608. },
  3609. genitals: {
  3610. height: math.unit(2 / 3.367, "meter"),
  3611. name: "Genitals",
  3612. image: {
  3613. source: "./media/characters/elbial/genitals.svg"
  3614. }
  3615. },
  3616. },
  3617. [
  3618. {
  3619. name: "Large",
  3620. height: math.unit(100, "feet")
  3621. },
  3622. {
  3623. name: "Macro",
  3624. height: math.unit(500, "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Megamacro",
  3629. height: math.unit(10, "miles")
  3630. },
  3631. {
  3632. name: "Gigamacro",
  3633. height: math.unit(25000, "miles")
  3634. },
  3635. {
  3636. name: "Full-Size",
  3637. height: math.unit(8000000, "gigaparsecs")
  3638. }
  3639. ]
  3640. ))
  3641. characterMakers.push(() => makeCharacter(
  3642. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3643. {
  3644. front: {
  3645. height: math.unit(2, "meter"),
  3646. weight: math.unit(60, "kg"),
  3647. name: "Front",
  3648. image: {
  3649. source: "./media/characters/noah/front.svg"
  3650. }
  3651. },
  3652. talons: {
  3653. height: math.unit(0.315, "meter"),
  3654. name: "Talons",
  3655. image: {
  3656. source: "./media/characters/noah/talons.svg"
  3657. }
  3658. }
  3659. },
  3660. [
  3661. {
  3662. name: "Large",
  3663. height: math.unit(50, "feet")
  3664. },
  3665. {
  3666. name: "Macro",
  3667. height: math.unit(750, "feet"),
  3668. default: true
  3669. },
  3670. {
  3671. name: "Megamacro",
  3672. height: math.unit(50, "miles")
  3673. },
  3674. {
  3675. name: "Gigamacro",
  3676. height: math.unit(100000, "miles")
  3677. },
  3678. {
  3679. name: "Full-Size",
  3680. height: math.unit(3000000000, "miles")
  3681. }
  3682. ]
  3683. ))
  3684. characterMakers.push(() => makeCharacter(
  3685. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3686. {
  3687. front: {
  3688. height: math.unit(2, "meter"),
  3689. weight: math.unit(80, "kg"),
  3690. name: "Front",
  3691. image: {
  3692. source: "./media/characters/natalya/front.svg"
  3693. }
  3694. },
  3695. back: {
  3696. height: math.unit(2, "meter"),
  3697. weight: math.unit(80, "kg"),
  3698. name: "Back",
  3699. image: {
  3700. source: "./media/characters/natalya/back.svg"
  3701. }
  3702. }
  3703. },
  3704. [
  3705. {
  3706. name: "Normal",
  3707. height: math.unit(150, "feet"),
  3708. default: true
  3709. },
  3710. {
  3711. name: "Megamacro",
  3712. height: math.unit(5, "miles")
  3713. },
  3714. {
  3715. name: "Full-Size",
  3716. height: math.unit(600, "kiloparsecs")
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3722. {
  3723. front: {
  3724. height: math.unit(2, "meter"),
  3725. weight: math.unit(50, "kg"),
  3726. name: "Front",
  3727. image: {
  3728. source: "./media/characters/erestrebah/front.svg",
  3729. extra: 1262/1162,
  3730. bottom: 96/1358
  3731. }
  3732. },
  3733. back: {
  3734. height: math.unit(2, "meter"),
  3735. weight: math.unit(50, "kg"),
  3736. name: "Back",
  3737. image: {
  3738. source: "./media/characters/erestrebah/back.svg",
  3739. extra: 1257/1139,
  3740. bottom: 13/1270
  3741. }
  3742. },
  3743. wing: {
  3744. height: math.unit(2, "meter"),
  3745. weight: math.unit(50, "kg"),
  3746. name: "Wing",
  3747. image: {
  3748. source: "./media/characters/erestrebah/wing.svg",
  3749. extra: 1262/1162,
  3750. bottom: 96/1358
  3751. }
  3752. },
  3753. mouth: {
  3754. height: math.unit(0.39, "feet"),
  3755. name: "Mouth",
  3756. image: {
  3757. source: "./media/characters/erestrebah/mouth.svg"
  3758. }
  3759. }
  3760. },
  3761. [
  3762. {
  3763. name: "Normal",
  3764. height: math.unit(10, "feet")
  3765. },
  3766. {
  3767. name: "Large",
  3768. height: math.unit(50, "feet"),
  3769. default: true
  3770. },
  3771. {
  3772. name: "Macro",
  3773. height: math.unit(300, "feet")
  3774. },
  3775. {
  3776. name: "Macro+",
  3777. height: math.unit(750, "feet")
  3778. },
  3779. {
  3780. name: "Megamacro",
  3781. height: math.unit(3, "miles")
  3782. }
  3783. ]
  3784. ))
  3785. characterMakers.push(() => makeCharacter(
  3786. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3787. {
  3788. front: {
  3789. height: math.unit(2, "meter"),
  3790. weight: math.unit(80, "kg"),
  3791. name: "Front",
  3792. image: {
  3793. source: "./media/characters/jennifer/front.svg",
  3794. bottom: 0.11,
  3795. extra: 1.16
  3796. }
  3797. },
  3798. frontAlt: {
  3799. height: math.unit(2, "meter"),
  3800. weight: math.unit(80, "kg"),
  3801. name: "Front (Alt)",
  3802. image: {
  3803. source: "./media/characters/jennifer/front-alt.svg"
  3804. }
  3805. }
  3806. },
  3807. [
  3808. {
  3809. name: "Canon Height",
  3810. height: math.unit(120, "feet"),
  3811. default: true
  3812. },
  3813. {
  3814. name: "Macro+",
  3815. height: math.unit(300, "feet")
  3816. },
  3817. {
  3818. name: "Megamacro",
  3819. height: math.unit(20000, "feet")
  3820. }
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(2, "meter"),
  3828. weight: math.unit(50, "kg"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/kalista/front.svg",
  3832. extra: 1314/1145,
  3833. bottom: 101/1415
  3834. }
  3835. },
  3836. back: {
  3837. height: math.unit(2, "meter"),
  3838. weight: math.unit(50, "kg"),
  3839. name: "Back",
  3840. image: {
  3841. source: "./media/characters/kalista/back.svg",
  3842. extra: 1366 / 1156,
  3843. bottom: 33.9 / 1362.78
  3844. }
  3845. }
  3846. },
  3847. [
  3848. {
  3849. name: "Uncomfortably Small",
  3850. height: math.unit(10, "feet")
  3851. },
  3852. {
  3853. name: "Small",
  3854. height: math.unit(30, "feet")
  3855. },
  3856. {
  3857. name: "Macro",
  3858. height: math.unit(100, "feet"),
  3859. default: true
  3860. },
  3861. {
  3862. name: "Macro+",
  3863. height: math.unit(2000, "feet")
  3864. },
  3865. {
  3866. name: "True Form",
  3867. height: math.unit(8924, "miles")
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(2, "meter"),
  3876. weight: math.unit(120, "kg"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/ggv/front.svg"
  3880. }
  3881. },
  3882. side: {
  3883. height: math.unit(2, "meter"),
  3884. weight: math.unit(120, "kg"),
  3885. name: "Side",
  3886. image: {
  3887. source: "./media/characters/ggv/side.svg"
  3888. }
  3889. }
  3890. },
  3891. [
  3892. {
  3893. name: "Extremely Puny",
  3894. height: math.unit(9 + 5 / 12, "feet")
  3895. },
  3896. {
  3897. name: "Horribly Small",
  3898. height: math.unit(47.7, "miles"),
  3899. default: true
  3900. },
  3901. {
  3902. name: "Reasonably Sized",
  3903. height: math.unit(25000, "parsecs")
  3904. },
  3905. {
  3906. name: "Slightly Uncompressed",
  3907. height: math.unit(7.77e31, "parsecs")
  3908. },
  3909. {
  3910. name: "Omniversal",
  3911. height: math.unit(1e300, "meters")
  3912. },
  3913. ]
  3914. ))
  3915. characterMakers.push(() => makeCharacter(
  3916. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3917. {
  3918. front: {
  3919. height: math.unit(2, "meter"),
  3920. weight: math.unit(75, "lb"),
  3921. name: "Front",
  3922. image: {
  3923. source: "./media/characters/napalm/front.svg"
  3924. }
  3925. },
  3926. back: {
  3927. height: math.unit(2, "meter"),
  3928. weight: math.unit(75, "lb"),
  3929. name: "Back",
  3930. image: {
  3931. source: "./media/characters/napalm/back.svg"
  3932. }
  3933. }
  3934. },
  3935. [
  3936. {
  3937. name: "Standard",
  3938. height: math.unit(55, "feet"),
  3939. default: true
  3940. }
  3941. ]
  3942. ))
  3943. characterMakers.push(() => makeCharacter(
  3944. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3945. {
  3946. front: {
  3947. height: math.unit(7 + 5 / 6, "feet"),
  3948. weight: math.unit(325, "lb"),
  3949. name: "Front",
  3950. image: {
  3951. source: "./media/characters/asana/front.svg",
  3952. extra: 1133 / 1060,
  3953. bottom: 15.2 / 1148.6
  3954. }
  3955. },
  3956. back: {
  3957. height: math.unit(7 + 5 / 6, "feet"),
  3958. weight: math.unit(325, "lb"),
  3959. name: "Back",
  3960. image: {
  3961. source: "./media/characters/asana/back.svg",
  3962. extra: 1114 / 1043,
  3963. bottom: 5 / 1120
  3964. }
  3965. },
  3966. dressedDark: {
  3967. height: math.unit(7 + 5 / 6, "feet"),
  3968. weight: math.unit(325, "lb"),
  3969. name: "Dressed (Dark)",
  3970. image: {
  3971. source: "./media/characters/asana/dressed-dark.svg",
  3972. extra: 1133 / 1060,
  3973. bottom: 15.2 / 1148.6
  3974. }
  3975. },
  3976. dressedLight: {
  3977. height: math.unit(7 + 5 / 6, "feet"),
  3978. weight: math.unit(325, "lb"),
  3979. name: "Dressed (Light)",
  3980. image: {
  3981. source: "./media/characters/asana/dressed-light.svg",
  3982. extra: 1133 / 1060,
  3983. bottom: 15.2 / 1148.6
  3984. }
  3985. },
  3986. },
  3987. [
  3988. {
  3989. name: "Standard",
  3990. height: math.unit(7 + 5 / 6, "feet"),
  3991. default: true
  3992. },
  3993. {
  3994. name: "Large",
  3995. height: math.unit(10, "meters")
  3996. },
  3997. {
  3998. name: "Macro",
  3999. height: math.unit(2500, "meters")
  4000. },
  4001. {
  4002. name: "Megamacro",
  4003. height: math.unit(5e6, "meters")
  4004. },
  4005. {
  4006. name: "Examacro",
  4007. height: math.unit(5e12, "lightyears")
  4008. },
  4009. {
  4010. name: "Max Size",
  4011. height: math.unit(1e31, "lightyears")
  4012. }
  4013. ]
  4014. ))
  4015. characterMakers.push(() => makeCharacter(
  4016. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4017. {
  4018. front: {
  4019. height: math.unit(2, "meter"),
  4020. weight: math.unit(60, "kg"),
  4021. name: "Front",
  4022. image: {
  4023. source: "./media/characters/ebony/front.svg",
  4024. bottom: 0.03,
  4025. extra: 1045 / 810 + 0.03
  4026. }
  4027. },
  4028. side: {
  4029. height: math.unit(2, "meter"),
  4030. weight: math.unit(60, "kg"),
  4031. name: "Side",
  4032. image: {
  4033. source: "./media/characters/ebony/side.svg",
  4034. bottom: 0.03,
  4035. extra: 1045 / 810 + 0.03
  4036. }
  4037. },
  4038. back: {
  4039. height: math.unit(2, "meter"),
  4040. weight: math.unit(60, "kg"),
  4041. name: "Back",
  4042. image: {
  4043. source: "./media/characters/ebony/back.svg",
  4044. bottom: 0.01,
  4045. extra: 1045 / 810 + 0.01
  4046. }
  4047. },
  4048. },
  4049. [
  4050. // TODO check why I did this lol
  4051. {
  4052. name: "Standard",
  4053. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4054. default: true
  4055. },
  4056. {
  4057. name: "Macro",
  4058. height: math.unit(200, "feet")
  4059. },
  4060. {
  4061. name: "Gigamacro",
  4062. height: math.unit(13000, "km")
  4063. }
  4064. ]
  4065. ))
  4066. characterMakers.push(() => makeCharacter(
  4067. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4068. {
  4069. front: {
  4070. height: math.unit(6, "feet"),
  4071. weight: math.unit(175, "lb"),
  4072. name: "Front",
  4073. image: {
  4074. source: "./media/characters/mountain/front.svg",
  4075. extra: 972 / 955,
  4076. bottom: 64 / 1036.6
  4077. }
  4078. },
  4079. back: {
  4080. height: math.unit(6, "feet"),
  4081. weight: math.unit(175, "lb"),
  4082. name: "Back",
  4083. image: {
  4084. source: "./media/characters/mountain/back.svg",
  4085. extra: 970 / 950,
  4086. bottom: 28.25 / 999
  4087. }
  4088. },
  4089. },
  4090. [
  4091. {
  4092. name: "Large",
  4093. height: math.unit(20, "meters")
  4094. },
  4095. {
  4096. name: "Macro",
  4097. height: math.unit(300, "meters")
  4098. },
  4099. {
  4100. name: "Gigamacro",
  4101. height: math.unit(10000, "km"),
  4102. default: true
  4103. },
  4104. {
  4105. name: "Examacro",
  4106. height: math.unit(10e9, "lightyears")
  4107. }
  4108. ]
  4109. ))
  4110. characterMakers.push(() => makeCharacter(
  4111. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4112. {
  4113. front: {
  4114. height: math.unit(8, "feet"),
  4115. weight: math.unit(500, "lb"),
  4116. name: "Front",
  4117. image: {
  4118. source: "./media/characters/rick/front.svg"
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(8, "feet"),
  4126. default: true
  4127. },
  4128. {
  4129. name: "Macro",
  4130. height: math.unit(5, "km")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(8, "feet"),
  4139. weight: math.unit(120, "lb"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/ona/front.svg"
  4143. }
  4144. },
  4145. frontAlt: {
  4146. height: math.unit(8, "feet"),
  4147. weight: math.unit(120, "lb"),
  4148. name: "Front (Alt)",
  4149. image: {
  4150. source: "./media/characters/ona/front-alt.svg"
  4151. }
  4152. },
  4153. back: {
  4154. height: math.unit(8, "feet"),
  4155. weight: math.unit(120, "lb"),
  4156. name: "Back",
  4157. image: {
  4158. source: "./media/characters/ona/back.svg"
  4159. }
  4160. },
  4161. foot: {
  4162. height: math.unit(1.1, "feet"),
  4163. name: "Foot",
  4164. image: {
  4165. source: "./media/characters/ona/foot.svg"
  4166. }
  4167. }
  4168. },
  4169. [
  4170. {
  4171. name: "Megamacro",
  4172. height: math.unit(70, "km"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Gigamacro",
  4177. height: math.unit(681818, "miles")
  4178. },
  4179. {
  4180. name: "Examacro",
  4181. height: math.unit(3800000, "lightyears")
  4182. },
  4183. ]
  4184. ))
  4185. characterMakers.push(() => makeCharacter(
  4186. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4187. {
  4188. front: {
  4189. height: math.unit(12, "feet"),
  4190. weight: math.unit(3000, "lb"),
  4191. name: "Front",
  4192. image: {
  4193. source: "./media/characters/mech/front.svg",
  4194. extra: 2900 / 2770,
  4195. bottom: 110 / 3010
  4196. }
  4197. },
  4198. back: {
  4199. height: math.unit(12, "feet"),
  4200. weight: math.unit(3000, "lb"),
  4201. name: "Back",
  4202. image: {
  4203. source: "./media/characters/mech/back.svg",
  4204. extra: 3011 / 2890,
  4205. bottom: 94 / 3105
  4206. }
  4207. },
  4208. maw: {
  4209. height: math.unit(3.07, "feet"),
  4210. name: "Maw",
  4211. image: {
  4212. source: "./media/characters/mech/maw.svg"
  4213. }
  4214. },
  4215. head: {
  4216. height: math.unit(2.82, "feet"),
  4217. name: "Head",
  4218. image: {
  4219. source: "./media/characters/mech/head.svg"
  4220. }
  4221. },
  4222. dick: {
  4223. height: math.unit(1.43, "feet"),
  4224. name: "Dick",
  4225. image: {
  4226. source: "./media/characters/mech/dick.svg"
  4227. }
  4228. },
  4229. },
  4230. [
  4231. {
  4232. name: "Normal",
  4233. height: math.unit(12, "feet")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(300, "feet"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Macro+",
  4242. height: math.unit(1500, "feet")
  4243. },
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4248. {
  4249. front: {
  4250. height: math.unit(1.3, "meter"),
  4251. weight: math.unit(30, "kg"),
  4252. name: "Front",
  4253. image: {
  4254. source: "./media/characters/gregory/front.svg",
  4255. }
  4256. }
  4257. },
  4258. [
  4259. {
  4260. name: "Normal",
  4261. height: math.unit(1.3, "meter"),
  4262. default: true
  4263. },
  4264. {
  4265. name: "Macro",
  4266. height: math.unit(20, "meter")
  4267. }
  4268. ]
  4269. ))
  4270. characterMakers.push(() => makeCharacter(
  4271. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4272. {
  4273. front: {
  4274. height: math.unit(2.8, "meter"),
  4275. weight: math.unit(200, "kg"),
  4276. name: "Front",
  4277. image: {
  4278. source: "./media/characters/elory/front.svg",
  4279. }
  4280. }
  4281. },
  4282. [
  4283. {
  4284. name: "Normal",
  4285. height: math.unit(2.8, "meter"),
  4286. default: true
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(38, "meter")
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4296. {
  4297. front: {
  4298. height: math.unit(470, "feet"),
  4299. weight: math.unit(924, "tons"),
  4300. name: "Front",
  4301. image: {
  4302. source: "./media/characters/angelpatamon/front.svg",
  4303. }
  4304. }
  4305. },
  4306. [
  4307. {
  4308. name: "Normal",
  4309. height: math.unit(470, "feet"),
  4310. default: true
  4311. },
  4312. {
  4313. name: "Deity Size I",
  4314. height: math.unit(28651.2, "km")
  4315. },
  4316. {
  4317. name: "Deity Size II",
  4318. height: math.unit(171907.2, "km")
  4319. }
  4320. ]
  4321. ))
  4322. characterMakers.push(() => makeCharacter(
  4323. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4324. {
  4325. side: {
  4326. height: math.unit(7.2, "meter"),
  4327. weight: math.unit(8.2, "tons"),
  4328. name: "Side",
  4329. image: {
  4330. source: "./media/characters/cryae/side.svg",
  4331. extra: 3500 / 1500
  4332. }
  4333. }
  4334. },
  4335. [
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(7.2, "meter"),
  4339. default: true
  4340. }
  4341. ]
  4342. ))
  4343. characterMakers.push(() => makeCharacter(
  4344. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4345. {
  4346. front: {
  4347. height: math.unit(6, "feet"),
  4348. weight: math.unit(175, "lb"),
  4349. name: "Front",
  4350. image: {
  4351. source: "./media/characters/xera/front.svg",
  4352. extra: 2377 / 1972,
  4353. bottom: 75.5 / 2452
  4354. }
  4355. },
  4356. side: {
  4357. height: math.unit(6, "feet"),
  4358. weight: math.unit(175, "lb"),
  4359. name: "Side",
  4360. image: {
  4361. source: "./media/characters/xera/side.svg",
  4362. extra: 2345 / 2019,
  4363. bottom: 39.7 / 2384
  4364. }
  4365. },
  4366. back: {
  4367. height: math.unit(6, "feet"),
  4368. weight: math.unit(175, "lb"),
  4369. name: "Back",
  4370. image: {
  4371. source: "./media/characters/xera/back.svg",
  4372. extra: 2095 / 1984,
  4373. bottom: 67 / 2166
  4374. }
  4375. },
  4376. },
  4377. [
  4378. {
  4379. name: "Small",
  4380. height: math.unit(10, "feet")
  4381. },
  4382. {
  4383. name: "Macro",
  4384. height: math.unit(500, "meters"),
  4385. default: true
  4386. },
  4387. {
  4388. name: "Macro+",
  4389. height: math.unit(10, "km")
  4390. },
  4391. {
  4392. name: "Gigamacro",
  4393. height: math.unit(25000, "km")
  4394. },
  4395. {
  4396. name: "Teramacro",
  4397. height: math.unit(3e6, "km")
  4398. }
  4399. ]
  4400. ))
  4401. characterMakers.push(() => makeCharacter(
  4402. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4403. {
  4404. front: {
  4405. height: math.unit(6, "feet"),
  4406. weight: math.unit(175, "lb"),
  4407. name: "Front",
  4408. image: {
  4409. source: "./media/characters/nebula/front.svg",
  4410. extra: 2566 / 2362,
  4411. bottom: 81 / 2644
  4412. }
  4413. }
  4414. },
  4415. [
  4416. {
  4417. name: "Small",
  4418. height: math.unit(4.5, "meters")
  4419. },
  4420. {
  4421. name: "Macro",
  4422. height: math.unit(1500, "meters"),
  4423. default: true
  4424. },
  4425. {
  4426. name: "Megamacro",
  4427. height: math.unit(150, "km")
  4428. },
  4429. {
  4430. name: "Gigamacro",
  4431. height: math.unit(27000, "km")
  4432. }
  4433. ]
  4434. ))
  4435. characterMakers.push(() => makeCharacter(
  4436. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4437. {
  4438. front: {
  4439. height: math.unit(6, "feet"),
  4440. weight: math.unit(225, "lb"),
  4441. name: "Front",
  4442. image: {
  4443. source: "./media/characters/abysgar/front.svg"
  4444. }
  4445. }
  4446. },
  4447. [
  4448. {
  4449. name: "Small",
  4450. height: math.unit(4.5, "meters")
  4451. },
  4452. {
  4453. name: "Macro",
  4454. height: math.unit(1250, "meters"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Megamacro",
  4459. height: math.unit(125, "km")
  4460. },
  4461. {
  4462. name: "Gigamacro",
  4463. height: math.unit(26000, "km")
  4464. }
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4469. {
  4470. front: {
  4471. height: math.unit(6, "feet"),
  4472. weight: math.unit(180, "lb"),
  4473. name: "Front",
  4474. image: {
  4475. source: "./media/characters/yakuz/front.svg"
  4476. }
  4477. }
  4478. },
  4479. [
  4480. {
  4481. name: "Small",
  4482. height: math.unit(5, "meters")
  4483. },
  4484. {
  4485. name: "Macro",
  4486. height: math.unit(1500, "meters"),
  4487. default: true
  4488. },
  4489. {
  4490. name: "Megamacro",
  4491. height: math.unit(200, "km")
  4492. },
  4493. {
  4494. name: "Gigamacro",
  4495. height: math.unit(100000, "km")
  4496. }
  4497. ]
  4498. ))
  4499. characterMakers.push(() => makeCharacter(
  4500. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4501. {
  4502. front: {
  4503. height: math.unit(6, "feet"),
  4504. weight: math.unit(175, "lb"),
  4505. name: "Front",
  4506. image: {
  4507. source: "./media/characters/mirova/front.svg",
  4508. extra: 3334 / 3071,
  4509. bottom: 42 / 3375.6
  4510. }
  4511. }
  4512. },
  4513. [
  4514. {
  4515. name: "Small",
  4516. height: math.unit(5, "meters")
  4517. },
  4518. {
  4519. name: "Macro",
  4520. height: math.unit(900, "meters"),
  4521. default: true
  4522. },
  4523. {
  4524. name: "Megamacro",
  4525. height: math.unit(135, "km")
  4526. },
  4527. {
  4528. name: "Gigamacro",
  4529. height: math.unit(20000, "km")
  4530. }
  4531. ]
  4532. ))
  4533. characterMakers.push(() => makeCharacter(
  4534. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4535. {
  4536. side: {
  4537. height: math.unit(28.35, "feet"),
  4538. weight: math.unit(99.75, "tons"),
  4539. name: "Side",
  4540. image: {
  4541. source: "./media/characters/asana-mech/side.svg",
  4542. extra: 923 / 699,
  4543. bottom: 50 / 975
  4544. }
  4545. },
  4546. chaingun: {
  4547. height: math.unit(7, "feet"),
  4548. weight: math.unit(2400, "lb"),
  4549. name: "Chaingun",
  4550. image: {
  4551. source: "./media/characters/asana-mech/chaingun.svg"
  4552. }
  4553. },
  4554. laser: {
  4555. height: math.unit(7.12, "feet"),
  4556. weight: math.unit(2000, "lb"),
  4557. name: "Laser",
  4558. image: {
  4559. source: "./media/characters/asana-mech/laser.svg"
  4560. }
  4561. },
  4562. },
  4563. [
  4564. {
  4565. name: "Normal",
  4566. height: math.unit(28.35, "feet"),
  4567. default: true
  4568. },
  4569. {
  4570. name: "Macro",
  4571. height: math.unit(2500, "feet")
  4572. },
  4573. {
  4574. name: "Megamacro",
  4575. height: math.unit(25, "miles")
  4576. },
  4577. {
  4578. name: "Examacro",
  4579. height: math.unit(6e8, "lightyears")
  4580. },
  4581. ]
  4582. ))
  4583. characterMakers.push(() => makeCharacter(
  4584. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4585. {
  4586. front: {
  4587. height: math.unit(5, "meters"),
  4588. weight: math.unit(1000, "kg"),
  4589. name: "Front",
  4590. image: {
  4591. source: "./media/characters/asche/front.svg",
  4592. extra: 1258 / 1190,
  4593. bottom: 47 / 1305
  4594. }
  4595. },
  4596. frontUnderwear: {
  4597. height: math.unit(5, "meters"),
  4598. weight: math.unit(1000, "kg"),
  4599. name: "Front (Underwear)",
  4600. image: {
  4601. source: "./media/characters/asche/front-underwear.svg",
  4602. extra: 1258 / 1190,
  4603. bottom: 47 / 1305
  4604. }
  4605. },
  4606. frontDressed: {
  4607. height: math.unit(5, "meters"),
  4608. weight: math.unit(1000, "kg"),
  4609. name: "Front (Dressed)",
  4610. image: {
  4611. source: "./media/characters/asche/front-dressed.svg",
  4612. extra: 1258 / 1190,
  4613. bottom: 47 / 1305
  4614. }
  4615. },
  4616. frontArmor: {
  4617. height: math.unit(5, "meters"),
  4618. weight: math.unit(1000, "kg"),
  4619. name: "Front (Armored)",
  4620. image: {
  4621. source: "./media/characters/asche/front-armored.svg",
  4622. extra: 1374 / 1308,
  4623. bottom: 23 / 1397
  4624. }
  4625. },
  4626. mp724: {
  4627. height: math.unit(0.96, "meters"),
  4628. weight: math.unit(38, "kg"),
  4629. name: "H&K MP724",
  4630. image: {
  4631. source: "./media/characters/asche/h&k-mp724.svg"
  4632. }
  4633. },
  4634. side: {
  4635. height: math.unit(5, "meters"),
  4636. weight: math.unit(1000, "kg"),
  4637. name: "Side",
  4638. image: {
  4639. source: "./media/characters/asche/side.svg",
  4640. extra: 1717 / 1609,
  4641. bottom: 0.005
  4642. }
  4643. },
  4644. back: {
  4645. height: math.unit(5, "meters"),
  4646. weight: math.unit(1000, "kg"),
  4647. name: "Back",
  4648. image: {
  4649. source: "./media/characters/asche/back.svg",
  4650. extra: 1570 / 1501
  4651. }
  4652. },
  4653. },
  4654. [
  4655. {
  4656. name: "DEFCON 5",
  4657. height: math.unit(5, "meters")
  4658. },
  4659. {
  4660. name: "DEFCON 4",
  4661. height: math.unit(500, "meters"),
  4662. default: true
  4663. },
  4664. {
  4665. name: "DEFCON 3",
  4666. height: math.unit(5, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 2",
  4670. height: math.unit(500, "km")
  4671. },
  4672. {
  4673. name: "DEFCON 1",
  4674. height: math.unit(500000, "km")
  4675. },
  4676. {
  4677. name: "DEFCON 0",
  4678. height: math.unit(3, "gigaparsecs")
  4679. },
  4680. ]
  4681. ))
  4682. characterMakers.push(() => makeCharacter(
  4683. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4684. {
  4685. front: {
  4686. height: math.unit(2, "meters"),
  4687. weight: math.unit(76, "kg"),
  4688. name: "Front",
  4689. image: {
  4690. source: "./media/characters/gale/front.svg"
  4691. }
  4692. },
  4693. frontAlt1: {
  4694. height: math.unit(2, "meters"),
  4695. weight: math.unit(76, "kg"),
  4696. name: "Front (Alt 1)",
  4697. image: {
  4698. source: "./media/characters/gale/front-alt-1.svg"
  4699. }
  4700. },
  4701. frontAlt2: {
  4702. height: math.unit(2, "meters"),
  4703. weight: math.unit(76, "kg"),
  4704. name: "Front (Alt 2)",
  4705. image: {
  4706. source: "./media/characters/gale/front-alt-2.svg"
  4707. }
  4708. },
  4709. },
  4710. [
  4711. {
  4712. name: "Normal",
  4713. height: math.unit(7, "feet")
  4714. },
  4715. {
  4716. name: "Macro",
  4717. height: math.unit(150, "feet"),
  4718. default: true
  4719. },
  4720. {
  4721. name: "Macro+",
  4722. height: math.unit(300, "feet")
  4723. },
  4724. ]
  4725. ))
  4726. characterMakers.push(() => makeCharacter(
  4727. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4728. {
  4729. front: {
  4730. height: math.unit(5 + 10/12, "feet"),
  4731. weight: math.unit(67, "kg"),
  4732. name: "Front",
  4733. image: {
  4734. source: "./media/characters/draylen/front.svg",
  4735. extra: 832/777,
  4736. bottom: 85/917
  4737. }
  4738. }
  4739. },
  4740. [
  4741. {
  4742. name: "Normal",
  4743. height: math.unit(5 + 10/12, "feet")
  4744. },
  4745. {
  4746. name: "Macro",
  4747. height: math.unit(150, "feet"),
  4748. default: true
  4749. }
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(7 + 9 / 12, "feet"),
  4757. weight: math.unit(379, "lbs"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/chez/front.svg"
  4761. }
  4762. },
  4763. side: {
  4764. height: math.unit(7 + 9 / 12, "feet"),
  4765. weight: math.unit(379, "lbs"),
  4766. name: "Side",
  4767. image: {
  4768. source: "./media/characters/chez/side.svg"
  4769. }
  4770. }
  4771. },
  4772. [
  4773. {
  4774. name: "Normal",
  4775. height: math.unit(7 + 9 / 12, "feet"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "God King",
  4780. height: math.unit(9750000, "meters")
  4781. }
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(6, "feet"),
  4789. weight: math.unit(275, "lbs"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/kaylum/front.svg",
  4793. bottom: 0.01,
  4794. extra: 1166 / 1031
  4795. }
  4796. },
  4797. frontWingless: {
  4798. height: math.unit(6, "feet"),
  4799. weight: math.unit(275, "lbs"),
  4800. name: "Front (Wingless)",
  4801. image: {
  4802. source: "./media/characters/kaylum/front-wingless.svg",
  4803. bottom: 0.01,
  4804. extra: 1117 / 1031
  4805. }
  4806. }
  4807. },
  4808. [
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(3.05, "meters")
  4812. },
  4813. {
  4814. name: "Master",
  4815. height: math.unit(5.5, "meters")
  4816. },
  4817. {
  4818. name: "Rampage",
  4819. height: math.unit(19, "meters")
  4820. },
  4821. {
  4822. name: "Macro Lite",
  4823. height: math.unit(37, "meters")
  4824. },
  4825. {
  4826. name: "Hyper Predator",
  4827. height: math.unit(61, "meters")
  4828. },
  4829. {
  4830. name: "Macro",
  4831. height: math.unit(138, "meters"),
  4832. default: true
  4833. }
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(5 + 5 / 12, "feet"),
  4841. weight: math.unit(120, "lbs"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/geta/front.svg",
  4845. extra: 1003/933,
  4846. bottom: 21/1024
  4847. }
  4848. },
  4849. paw: {
  4850. height: math.unit(0.35, "feet"),
  4851. name: "Paw",
  4852. image: {
  4853. source: "./media/characters/geta/paw.svg"
  4854. }
  4855. },
  4856. },
  4857. [
  4858. {
  4859. name: "Micro",
  4860. height: math.unit(3, "inches"),
  4861. default: true
  4862. },
  4863. {
  4864. name: "Normal",
  4865. height: math.unit(5 + 5 / 12, "feet")
  4866. }
  4867. ]
  4868. ))
  4869. characterMakers.push(() => makeCharacter(
  4870. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4871. {
  4872. front: {
  4873. height: math.unit(6, "feet"),
  4874. weight: math.unit(300, "lbs"),
  4875. name: "Front",
  4876. image: {
  4877. source: "./media/characters/tyrnn/front.svg"
  4878. }
  4879. }
  4880. },
  4881. [
  4882. {
  4883. name: "Main Height",
  4884. height: math.unit(355, "feet"),
  4885. default: true
  4886. },
  4887. {
  4888. name: "Fave. Height",
  4889. height: math.unit(2400, "feet")
  4890. }
  4891. ]
  4892. ))
  4893. characterMakers.push(() => makeCharacter(
  4894. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4895. {
  4896. front: {
  4897. height: math.unit(6, "feet"),
  4898. weight: math.unit(300, "lbs"),
  4899. name: "Front",
  4900. image: {
  4901. source: "./media/characters/appledectomy/front.svg"
  4902. }
  4903. }
  4904. },
  4905. [
  4906. {
  4907. name: "Macro",
  4908. height: math.unit(2500, "feet")
  4909. },
  4910. {
  4911. name: "Megamacro",
  4912. height: math.unit(50, "miles"),
  4913. default: true
  4914. },
  4915. {
  4916. name: "Gigamacro",
  4917. height: math.unit(5000, "miles")
  4918. },
  4919. {
  4920. name: "Teramacro",
  4921. height: math.unit(250000, "miles")
  4922. },
  4923. ]
  4924. ))
  4925. characterMakers.push(() => makeCharacter(
  4926. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4927. {
  4928. front: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(200, "lbs"),
  4931. name: "Front",
  4932. image: {
  4933. source: "./media/characters/vulpes/front.svg",
  4934. extra: 573 / 543,
  4935. bottom: 0.033
  4936. }
  4937. },
  4938. side: {
  4939. height: math.unit(6, "feet"),
  4940. weight: math.unit(200, "lbs"),
  4941. name: "Side",
  4942. image: {
  4943. source: "./media/characters/vulpes/side.svg",
  4944. extra: 577 / 549,
  4945. bottom: 11 / 588
  4946. }
  4947. },
  4948. back: {
  4949. height: math.unit(6, "feet"),
  4950. weight: math.unit(200, "lbs"),
  4951. name: "Back",
  4952. image: {
  4953. source: "./media/characters/vulpes/back.svg",
  4954. extra: 573 / 549,
  4955. bottom: 20 / 593
  4956. }
  4957. },
  4958. feet: {
  4959. height: math.unit(1.276, "feet"),
  4960. name: "Feet",
  4961. image: {
  4962. source: "./media/characters/vulpes/feet.svg"
  4963. }
  4964. },
  4965. maw: {
  4966. height: math.unit(1.18, "feet"),
  4967. name: "Maw",
  4968. image: {
  4969. source: "./media/characters/vulpes/maw.svg"
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Micro",
  4976. height: math.unit(2, "inches")
  4977. },
  4978. {
  4979. name: "Normal",
  4980. height: math.unit(6.3, "feet")
  4981. },
  4982. {
  4983. name: "Macro",
  4984. height: math.unit(850, "feet")
  4985. },
  4986. {
  4987. name: "Megamacro",
  4988. height: math.unit(7500, "feet"),
  4989. default: true
  4990. },
  4991. {
  4992. name: "Gigamacro",
  4993. height: math.unit(570000, "miles")
  4994. }
  4995. ]
  4996. ))
  4997. characterMakers.push(() => makeCharacter(
  4998. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4999. {
  5000. front: {
  5001. height: math.unit(6, "feet"),
  5002. weight: math.unit(210, "lbs"),
  5003. name: "Front",
  5004. image: {
  5005. source: "./media/characters/rain-fallen/front.svg"
  5006. }
  5007. },
  5008. side: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(210, "lbs"),
  5011. name: "Side",
  5012. image: {
  5013. source: "./media/characters/rain-fallen/side.svg"
  5014. }
  5015. },
  5016. back: {
  5017. height: math.unit(6, "feet"),
  5018. weight: math.unit(210, "lbs"),
  5019. name: "Back",
  5020. image: {
  5021. source: "./media/characters/rain-fallen/back.svg"
  5022. }
  5023. },
  5024. feral: {
  5025. height: math.unit(9, "feet"),
  5026. weight: math.unit(700, "lbs"),
  5027. name: "Feral",
  5028. image: {
  5029. source: "./media/characters/rain-fallen/feral.svg"
  5030. }
  5031. },
  5032. },
  5033. [
  5034. {
  5035. name: "Meddling with Mortals",
  5036. height: math.unit(8 + 8/12, "feet")
  5037. },
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(5, "meter")
  5041. },
  5042. {
  5043. name: "Macro",
  5044. height: math.unit(150, "meter"),
  5045. default: true
  5046. },
  5047. {
  5048. name: "Megamacro",
  5049. height: math.unit(278e6, "meter")
  5050. },
  5051. {
  5052. name: "Gigamacro",
  5053. height: math.unit(2e9, "meter")
  5054. },
  5055. {
  5056. name: "Teramacro",
  5057. height: math.unit(8e12, "meter")
  5058. },
  5059. {
  5060. name: "Devourer",
  5061. height: math.unit(14, "zettameters")
  5062. },
  5063. {
  5064. name: "Scarlet King",
  5065. height: math.unit(18, "yottameters")
  5066. },
  5067. {
  5068. name: "Void",
  5069. height: math.unit(1e88, "yottameters")
  5070. }
  5071. ]
  5072. ))
  5073. characterMakers.push(() => makeCharacter(
  5074. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5075. {
  5076. standing: {
  5077. height: math.unit(6, "feet"),
  5078. weight: math.unit(180, "lbs"),
  5079. name: "Standing",
  5080. image: {
  5081. source: "./media/characters/zaakira/standing.svg",
  5082. extra: 1599/1504,
  5083. bottom: 39/1638
  5084. }
  5085. },
  5086. laying: {
  5087. height: math.unit(3, "feet"),
  5088. weight: math.unit(180, "lbs"),
  5089. name: "Laying",
  5090. image: {
  5091. source: "./media/characters/zaakira/laying.svg"
  5092. }
  5093. },
  5094. },
  5095. [
  5096. {
  5097. name: "Normal",
  5098. height: math.unit(12, "feet")
  5099. },
  5100. {
  5101. name: "Macro",
  5102. height: math.unit(279, "feet"),
  5103. default: true
  5104. }
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5109. {
  5110. femSfw: {
  5111. height: math.unit(8, "feet"),
  5112. weight: math.unit(350, "lb"),
  5113. name: "Fem",
  5114. image: {
  5115. source: "./media/characters/sigvald/fem-sfw.svg",
  5116. extra: 182 / 164,
  5117. bottom: 8.7 / 190.5
  5118. }
  5119. },
  5120. femNsfw: {
  5121. height: math.unit(8, "feet"),
  5122. weight: math.unit(350, "lb"),
  5123. name: "Fem (NSFW)",
  5124. image: {
  5125. source: "./media/characters/sigvald/fem-nsfw.svg",
  5126. extra: 182 / 164,
  5127. bottom: 8.7 / 190.5
  5128. }
  5129. },
  5130. maleNsfw: {
  5131. height: math.unit(8, "feet"),
  5132. weight: math.unit(350, "lb"),
  5133. name: "Male (NSFW)",
  5134. image: {
  5135. source: "./media/characters/sigvald/male-nsfw.svg",
  5136. extra: 182 / 164,
  5137. bottom: 8.7 / 190.5
  5138. }
  5139. },
  5140. hermNsfw: {
  5141. height: math.unit(8, "feet"),
  5142. weight: math.unit(350, "lb"),
  5143. name: "Herm (NSFW)",
  5144. image: {
  5145. source: "./media/characters/sigvald/herm-nsfw.svg",
  5146. extra: 182 / 164,
  5147. bottom: 8.7 / 190.5
  5148. }
  5149. },
  5150. dick: {
  5151. height: math.unit(2.36, "feet"),
  5152. name: "Dick",
  5153. image: {
  5154. source: "./media/characters/sigvald/dick.svg"
  5155. }
  5156. },
  5157. eye: {
  5158. height: math.unit(0.31, "feet"),
  5159. name: "Eye",
  5160. image: {
  5161. source: "./media/characters/sigvald/eye.svg"
  5162. }
  5163. },
  5164. mouth: {
  5165. height: math.unit(0.92, "feet"),
  5166. name: "Mouth",
  5167. image: {
  5168. source: "./media/characters/sigvald/mouth.svg"
  5169. }
  5170. },
  5171. paws: {
  5172. height: math.unit(2.2, "feet"),
  5173. name: "Paws",
  5174. image: {
  5175. source: "./media/characters/sigvald/paws.svg"
  5176. }
  5177. }
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(8, "feet")
  5183. },
  5184. {
  5185. name: "Large",
  5186. height: math.unit(12, "feet")
  5187. },
  5188. {
  5189. name: "Larger",
  5190. height: math.unit(20, "feet")
  5191. },
  5192. {
  5193. name: "Macro",
  5194. height: math.unit(150, "feet")
  5195. },
  5196. {
  5197. name: "Macro+",
  5198. height: math.unit(200, "feet"),
  5199. default: true
  5200. },
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5205. {
  5206. side: {
  5207. height: math.unit(12, "feet"),
  5208. weight: math.unit(2000, "kg"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/scott/side.svg",
  5212. extra: 754 / 724,
  5213. bottom: 0.069
  5214. }
  5215. },
  5216. upright: {
  5217. height: math.unit(12, "feet"),
  5218. weight: math.unit(2000, "kg"),
  5219. name: "Upright",
  5220. image: {
  5221. source: "./media/characters/scott/upright.svg",
  5222. extra: 3881 / 3722,
  5223. bottom: 0.05
  5224. }
  5225. },
  5226. },
  5227. [
  5228. {
  5229. name: "Normal",
  5230. height: math.unit(12, "feet"),
  5231. default: true
  5232. },
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5237. {
  5238. side: {
  5239. height: math.unit(8, "meters"),
  5240. weight: math.unit(84755, "lbs"),
  5241. name: "Side",
  5242. image: {
  5243. source: "./media/characters/tobias/side.svg",
  5244. extra: 1474 / 1096,
  5245. bottom: 38.9 / 1513.1235
  5246. }
  5247. },
  5248. },
  5249. [
  5250. {
  5251. name: "Normal",
  5252. height: math.unit(8, "meters"),
  5253. default: true
  5254. },
  5255. ]
  5256. ))
  5257. characterMakers.push(() => makeCharacter(
  5258. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5259. {
  5260. front: {
  5261. height: math.unit(5.5, "feet"),
  5262. weight: math.unit(400, "lbs"),
  5263. name: "Front",
  5264. image: {
  5265. source: "./media/characters/kieran/front.svg",
  5266. extra: 2694 / 2364,
  5267. bottom: 217 / 2908
  5268. }
  5269. },
  5270. side: {
  5271. height: math.unit(5.5, "feet"),
  5272. weight: math.unit(400, "lbs"),
  5273. name: "Side",
  5274. image: {
  5275. source: "./media/characters/kieran/side.svg",
  5276. extra: 875 / 777,
  5277. bottom: 84.6 / 959
  5278. }
  5279. },
  5280. },
  5281. [
  5282. {
  5283. name: "Normal",
  5284. height: math.unit(5.5, "feet"),
  5285. default: true
  5286. },
  5287. ]
  5288. ))
  5289. characterMakers.push(() => makeCharacter(
  5290. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5291. {
  5292. side: {
  5293. height: math.unit(2, "meters"),
  5294. weight: math.unit(70, "kg"),
  5295. name: "Side",
  5296. image: {
  5297. source: "./media/characters/sanya/side.svg",
  5298. bottom: 0.02,
  5299. extra: 1.02
  5300. }
  5301. },
  5302. },
  5303. [
  5304. {
  5305. name: "Small",
  5306. height: math.unit(2, "meters")
  5307. },
  5308. {
  5309. name: "Normal",
  5310. height: math.unit(3, "meters")
  5311. },
  5312. {
  5313. name: "Macro",
  5314. height: math.unit(16, "meters"),
  5315. default: true
  5316. },
  5317. ]
  5318. ))
  5319. characterMakers.push(() => makeCharacter(
  5320. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5321. {
  5322. front: {
  5323. height: math.unit(2, "meters"),
  5324. weight: math.unit(120, "kg"),
  5325. name: "Front",
  5326. image: {
  5327. source: "./media/characters/miranda/front.svg",
  5328. extra: 195 / 185,
  5329. bottom: 10.9 / 206.5
  5330. }
  5331. },
  5332. back: {
  5333. height: math.unit(2, "meters"),
  5334. weight: math.unit(120, "kg"),
  5335. name: "Back",
  5336. image: {
  5337. source: "./media/characters/miranda/back.svg",
  5338. extra: 201 / 193,
  5339. bottom: 2.3 / 203.7
  5340. }
  5341. },
  5342. },
  5343. [
  5344. {
  5345. name: "Normal",
  5346. height: math.unit(10, "feet"),
  5347. default: true
  5348. }
  5349. ]
  5350. ))
  5351. characterMakers.push(() => makeCharacter(
  5352. { name: "James", species: ["deer"], tags: ["anthro"] },
  5353. {
  5354. side: {
  5355. height: math.unit(2, "meters"),
  5356. weight: math.unit(100, "kg"),
  5357. name: "Front",
  5358. image: {
  5359. source: "./media/characters/james/front.svg",
  5360. extra: 10 / 8.5
  5361. }
  5362. },
  5363. },
  5364. [
  5365. {
  5366. name: "Normal",
  5367. height: math.unit(8.5, "feet"),
  5368. default: true
  5369. }
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5374. {
  5375. side: {
  5376. height: math.unit(9.5, "feet"),
  5377. weight: math.unit(2500, "lbs"),
  5378. name: "Side",
  5379. image: {
  5380. source: "./media/characters/heather/side.svg"
  5381. }
  5382. },
  5383. },
  5384. [
  5385. {
  5386. name: "Normal",
  5387. height: math.unit(9.5, "feet"),
  5388. default: true
  5389. }
  5390. ]
  5391. ))
  5392. characterMakers.push(() => makeCharacter(
  5393. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5394. {
  5395. side: {
  5396. height: math.unit(6.5, "feet"),
  5397. weight: math.unit(400, "lbs"),
  5398. name: "Side",
  5399. image: {
  5400. source: "./media/characters/lukas/side.svg",
  5401. extra: 7.25 / 6.5
  5402. }
  5403. },
  5404. },
  5405. [
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(6.5, "feet"),
  5409. default: true
  5410. }
  5411. ]
  5412. ))
  5413. characterMakers.push(() => makeCharacter(
  5414. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5415. {
  5416. side: {
  5417. height: math.unit(5, "feet"),
  5418. weight: math.unit(3000, "lbs"),
  5419. name: "Side",
  5420. image: {
  5421. source: "./media/characters/louise/side.svg"
  5422. }
  5423. },
  5424. },
  5425. [
  5426. {
  5427. name: "Normal",
  5428. height: math.unit(5, "feet"),
  5429. default: true
  5430. }
  5431. ]
  5432. ))
  5433. characterMakers.push(() => makeCharacter(
  5434. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5435. {
  5436. side: {
  5437. height: math.unit(6, "feet"),
  5438. weight: math.unit(150, "lbs"),
  5439. name: "Side",
  5440. image: {
  5441. source: "./media/characters/ramona/side.svg",
  5442. extra: 871/854,
  5443. bottom: 41/912
  5444. }
  5445. },
  5446. },
  5447. [
  5448. {
  5449. name: "Normal",
  5450. height: math.unit(5.3, "meters"),
  5451. default: true
  5452. },
  5453. {
  5454. name: "Macro",
  5455. height: math.unit(20, "stories")
  5456. },
  5457. {
  5458. name: "Macro+",
  5459. height: math.unit(50, "stories")
  5460. },
  5461. ]
  5462. ))
  5463. characterMakers.push(() => makeCharacter(
  5464. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5465. {
  5466. standing: {
  5467. height: math.unit(5.75, "feet"),
  5468. weight: math.unit(160, "lbs"),
  5469. name: "Standing",
  5470. image: {
  5471. source: "./media/characters/deerpuff/standing.svg",
  5472. extra: 682 / 624
  5473. }
  5474. },
  5475. sitting: {
  5476. height: math.unit(5.75 / 1.79, "feet"),
  5477. weight: math.unit(160, "lbs"),
  5478. name: "Sitting",
  5479. image: {
  5480. source: "./media/characters/deerpuff/sitting.svg",
  5481. bottom: 44 / 400,
  5482. extra: 1
  5483. }
  5484. },
  5485. taurLaying: {
  5486. height: math.unit(6, "feet"),
  5487. weight: math.unit(400, "lbs"),
  5488. name: "Taur (Laying)",
  5489. image: {
  5490. source: "./media/characters/deerpuff/taur-laying.svg"
  5491. }
  5492. },
  5493. },
  5494. [
  5495. {
  5496. name: "Puffball",
  5497. height: math.unit(6, "inches")
  5498. },
  5499. {
  5500. name: "Normalpuff",
  5501. height: math.unit(5.75, "feet")
  5502. },
  5503. {
  5504. name: "Macropuff",
  5505. height: math.unit(1500, "feet"),
  5506. default: true
  5507. },
  5508. {
  5509. name: "Megapuff",
  5510. height: math.unit(500, "miles")
  5511. },
  5512. {
  5513. name: "Gigapuff",
  5514. height: math.unit(250000, "miles")
  5515. },
  5516. {
  5517. name: "Omegapuff",
  5518. height: math.unit(1000, "lightyears")
  5519. },
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5524. {
  5525. stomping: {
  5526. height: math.unit(6, "feet"),
  5527. weight: math.unit(170, "lbs"),
  5528. name: "Stomping",
  5529. image: {
  5530. source: "./media/characters/vivian/stomping.svg"
  5531. }
  5532. },
  5533. sitting: {
  5534. height: math.unit(6 / 1.75, "feet"),
  5535. weight: math.unit(170, "lbs"),
  5536. name: "Sitting",
  5537. image: {
  5538. source: "./media/characters/vivian/sitting.svg",
  5539. bottom: 1 / 6.4,
  5540. extra: 1,
  5541. }
  5542. },
  5543. },
  5544. [
  5545. {
  5546. name: "Normal",
  5547. height: math.unit(7, "feet"),
  5548. default: true
  5549. },
  5550. {
  5551. name: "Macro",
  5552. height: math.unit(10, "stories")
  5553. },
  5554. {
  5555. name: "Macro+",
  5556. height: math.unit(30, "stories")
  5557. },
  5558. {
  5559. name: "Megamacro",
  5560. height: math.unit(10, "miles")
  5561. },
  5562. {
  5563. name: "Megamacro+",
  5564. height: math.unit(2750000, "meters")
  5565. },
  5566. ]
  5567. ))
  5568. characterMakers.push(() => makeCharacter(
  5569. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5570. {
  5571. front: {
  5572. height: math.unit(6, "feet"),
  5573. weight: math.unit(160, "lbs"),
  5574. name: "Front",
  5575. image: {
  5576. source: "./media/characters/prince/front.svg",
  5577. extra: 3400 / 3000
  5578. }
  5579. },
  5580. jumping: {
  5581. height: math.unit(6, "feet"),
  5582. weight: math.unit(160, "lbs"),
  5583. name: "Jumping",
  5584. image: {
  5585. source: "./media/characters/prince/jump.svg",
  5586. extra: 2555 / 2134
  5587. }
  5588. },
  5589. },
  5590. [
  5591. {
  5592. name: "Normal",
  5593. height: math.unit(7.75, "feet"),
  5594. default: true
  5595. },
  5596. {
  5597. name: "Not cute",
  5598. height: math.unit(17, "feet")
  5599. },
  5600. {
  5601. name: "I said NOT",
  5602. height: math.unit(91, "feet")
  5603. },
  5604. {
  5605. name: "Please stop",
  5606. height: math.unit(560, "feet")
  5607. },
  5608. {
  5609. name: "What have you done",
  5610. height: math.unit(2200, "feet")
  5611. },
  5612. {
  5613. name: "Deer God",
  5614. height: math.unit(3.6, "miles")
  5615. },
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5620. {
  5621. standing: {
  5622. height: math.unit(6, "feet"),
  5623. weight: math.unit(300, "lbs"),
  5624. name: "Standing",
  5625. image: {
  5626. source: "./media/characters/psymon/standing.svg",
  5627. extra: 1888 / 1810,
  5628. bottom: 0.05
  5629. }
  5630. },
  5631. slithering: {
  5632. height: math.unit(6, "feet"),
  5633. weight: math.unit(300, "lbs"),
  5634. name: "Slithering",
  5635. image: {
  5636. source: "./media/characters/psymon/slithering.svg",
  5637. extra: 1330 / 1224
  5638. }
  5639. },
  5640. slitheringAlt: {
  5641. height: math.unit(6, "feet"),
  5642. weight: math.unit(300, "lbs"),
  5643. name: "Slithering (Alt)",
  5644. image: {
  5645. source: "./media/characters/psymon/slithering-alt.svg",
  5646. extra: 1330 / 1224
  5647. }
  5648. },
  5649. },
  5650. [
  5651. {
  5652. name: "Normal",
  5653. height: math.unit(11.25, "feet"),
  5654. default: true
  5655. },
  5656. {
  5657. name: "Large",
  5658. height: math.unit(27, "feet")
  5659. },
  5660. {
  5661. name: "Giant",
  5662. height: math.unit(87, "feet")
  5663. },
  5664. {
  5665. name: "Macro",
  5666. height: math.unit(365, "feet")
  5667. },
  5668. {
  5669. name: "Megamacro",
  5670. height: math.unit(3, "miles")
  5671. },
  5672. {
  5673. name: "World Serpent",
  5674. height: math.unit(8000, "miles")
  5675. },
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(180, "lbs"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/daimos/front.svg",
  5687. extra: 4160 / 3897,
  5688. bottom: 0.021
  5689. }
  5690. }
  5691. },
  5692. [
  5693. {
  5694. name: "Normal",
  5695. height: math.unit(8, "feet"),
  5696. default: true
  5697. },
  5698. {
  5699. name: "Big Dog",
  5700. height: math.unit(22, "feet")
  5701. },
  5702. {
  5703. name: "Macro",
  5704. height: math.unit(127, "feet")
  5705. },
  5706. {
  5707. name: "Megamacro",
  5708. height: math.unit(3600, "feet")
  5709. },
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5714. {
  5715. side: {
  5716. height: math.unit(6, "feet"),
  5717. weight: math.unit(180, "lbs"),
  5718. name: "Side",
  5719. image: {
  5720. source: "./media/characters/blake/side.svg",
  5721. extra: 1212 / 1120,
  5722. bottom: 0.05
  5723. }
  5724. },
  5725. crouched: {
  5726. height: math.unit(6 * 0.57, "feet"),
  5727. weight: math.unit(180, "lbs"),
  5728. name: "Crouched",
  5729. image: {
  5730. source: "./media/characters/blake/crouched.svg",
  5731. extra: 840 / 587,
  5732. bottom: 0.04
  5733. }
  5734. },
  5735. bent: {
  5736. height: math.unit(6 * 0.75, "feet"),
  5737. weight: math.unit(180, "lbs"),
  5738. name: "Bent",
  5739. image: {
  5740. source: "./media/characters/blake/bent.svg",
  5741. extra: 592 / 544,
  5742. bottom: 0.035
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(8 + 1 / 6, "feet"),
  5750. default: true
  5751. },
  5752. {
  5753. name: "Big Backside",
  5754. height: math.unit(37, "feet")
  5755. },
  5756. {
  5757. name: "Subway Shredder",
  5758. height: math.unit(72, "feet")
  5759. },
  5760. {
  5761. name: "City Carver",
  5762. height: math.unit(1675, "feet")
  5763. },
  5764. {
  5765. name: "Tectonic Tweaker",
  5766. height: math.unit(2300, "miles")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5772. {
  5773. front: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(180, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/guisetto/front.svg",
  5779. extra: 856 / 817,
  5780. bottom: 0.06
  5781. }
  5782. },
  5783. airborne: {
  5784. height: math.unit(6, "feet"),
  5785. weight: math.unit(180, "lbs"),
  5786. name: "Airborne",
  5787. image: {
  5788. source: "./media/characters/guisetto/airborne.svg",
  5789. extra: 584 / 525
  5790. }
  5791. },
  5792. },
  5793. [
  5794. {
  5795. name: "Normal",
  5796. height: math.unit(10 + 11 / 12, "feet"),
  5797. default: true
  5798. },
  5799. {
  5800. name: "Large",
  5801. height: math.unit(35, "feet")
  5802. },
  5803. {
  5804. name: "Macro",
  5805. height: math.unit(475, "feet")
  5806. },
  5807. ]
  5808. ))
  5809. characterMakers.push(() => makeCharacter(
  5810. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5811. {
  5812. front: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(180, "lbs"),
  5815. name: "Front",
  5816. image: {
  5817. source: "./media/characters/luxor/front.svg",
  5818. extra: 2940 / 2152
  5819. }
  5820. },
  5821. back: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(180, "lbs"),
  5824. name: "Back",
  5825. image: {
  5826. source: "./media/characters/luxor/back.svg",
  5827. extra: 1083 / 960
  5828. }
  5829. },
  5830. },
  5831. [
  5832. {
  5833. name: "Normal",
  5834. height: math.unit(5 + 5 / 6, "feet"),
  5835. default: true
  5836. },
  5837. {
  5838. name: "Lamp",
  5839. height: math.unit(50, "feet")
  5840. },
  5841. {
  5842. name: "Lämp",
  5843. height: math.unit(300, "feet")
  5844. },
  5845. {
  5846. name: "The sun is a lamp",
  5847. height: math.unit(250000, "miles")
  5848. },
  5849. ]
  5850. ))
  5851. characterMakers.push(() => makeCharacter(
  5852. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5853. {
  5854. front: {
  5855. height: math.unit(6, "feet"),
  5856. weight: math.unit(50, "lbs"),
  5857. name: "Front",
  5858. image: {
  5859. source: "./media/characters/huoyan/front.svg"
  5860. }
  5861. },
  5862. side: {
  5863. height: math.unit(6, "feet"),
  5864. weight: math.unit(180, "lbs"),
  5865. name: "Side",
  5866. image: {
  5867. source: "./media/characters/huoyan/side.svg"
  5868. }
  5869. },
  5870. },
  5871. [
  5872. {
  5873. name: "Chef",
  5874. height: math.unit(9, "feet")
  5875. },
  5876. {
  5877. name: "Normal",
  5878. height: math.unit(65, "feet"),
  5879. default: true
  5880. },
  5881. {
  5882. name: "Macro",
  5883. height: math.unit(780, "feet")
  5884. },
  5885. {
  5886. name: "Flaming Mountain",
  5887. height: math.unit(4.8, "miles")
  5888. },
  5889. {
  5890. name: "Celestial",
  5891. height: math.unit(765000, "miles")
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(5 + 3 / 4, "feet"),
  5900. weight: math.unit(120, "lbs"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/tails/front.svg"
  5904. }
  5905. }
  5906. },
  5907. [
  5908. {
  5909. name: "Normal",
  5910. height: math.unit(5 + 3 / 4, "feet"),
  5911. default: true
  5912. }
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5917. {
  5918. front: {
  5919. height: math.unit(4, "feet"),
  5920. weight: math.unit(50, "lbs"),
  5921. name: "Front",
  5922. image: {
  5923. source: "./media/characters/rainy/front.svg"
  5924. }
  5925. }
  5926. },
  5927. [
  5928. {
  5929. name: "Macro",
  5930. height: math.unit(800, "feet"),
  5931. default: true
  5932. }
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5937. {
  5938. front: {
  5939. height: math.unit(6, "feet"),
  5940. weight: math.unit(150, "lbs"),
  5941. name: "Front",
  5942. image: {
  5943. source: "./media/characters/rainier/front.svg"
  5944. }
  5945. }
  5946. },
  5947. [
  5948. {
  5949. name: "Micro",
  5950. height: math.unit(2, "mm"),
  5951. default: true
  5952. }
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5957. {
  5958. front: {
  5959. height: math.unit(8 + 4/12, "feet"),
  5960. name: "Front",
  5961. image: {
  5962. source: "./media/characters/andy-renard/front.svg",
  5963. extra: 1839/1726,
  5964. bottom: 134/1973
  5965. }
  5966. },
  5967. back: {
  5968. height: math.unit(8 + 4/12, "feet"),
  5969. name: "Back",
  5970. image: {
  5971. source: "./media/characters/andy-renard/back.svg",
  5972. extra: 1838/1710,
  5973. bottom: 105/1943
  5974. }
  5975. },
  5976. },
  5977. [
  5978. {
  5979. name: "Tall",
  5980. height: math.unit(8 + 4/12, "feet")
  5981. },
  5982. {
  5983. name: "Mini Macro",
  5984. height: math.unit(15, "feet"),
  5985. default: true
  5986. },
  5987. {
  5988. name: "Macro",
  5989. height: math.unit(100, "feet")
  5990. },
  5991. {
  5992. name: "Mega Macro",
  5993. height: math.unit(1000, "feet")
  5994. },
  5995. {
  5996. name: "Giga Macro",
  5997. height: math.unit(10, "miles")
  5998. },
  5999. {
  6000. name: "God Macro",
  6001. height: math.unit(1, "multiverse")
  6002. },
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6007. {
  6008. front: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(210, "lbs"),
  6011. name: "Front",
  6012. image: {
  6013. source: "./media/characters/cimmaron/front-sfw.svg",
  6014. extra: 701 / 676,
  6015. bottom: 0.046
  6016. }
  6017. },
  6018. back: {
  6019. height: math.unit(6, "feet"),
  6020. weight: math.unit(210, "lbs"),
  6021. name: "Back",
  6022. image: {
  6023. source: "./media/characters/cimmaron/back-sfw.svg",
  6024. extra: 701 / 676,
  6025. bottom: 0.046
  6026. }
  6027. },
  6028. frontNsfw: {
  6029. height: math.unit(6, "feet"),
  6030. weight: math.unit(210, "lbs"),
  6031. name: "Front (NSFW)",
  6032. image: {
  6033. source: "./media/characters/cimmaron/front-nsfw.svg",
  6034. extra: 701 / 676,
  6035. bottom: 0.046
  6036. }
  6037. },
  6038. backNsfw: {
  6039. height: math.unit(6, "feet"),
  6040. weight: math.unit(210, "lbs"),
  6041. name: "Back (NSFW)",
  6042. image: {
  6043. source: "./media/characters/cimmaron/back-nsfw.svg",
  6044. extra: 701 / 676,
  6045. bottom: 0.046
  6046. }
  6047. },
  6048. dick: {
  6049. height: math.unit(1.714, "feet"),
  6050. name: "Dick",
  6051. image: {
  6052. source: "./media/characters/cimmaron/dick.svg"
  6053. }
  6054. },
  6055. },
  6056. [
  6057. {
  6058. name: "Normal",
  6059. height: math.unit(6, "feet"),
  6060. default: true
  6061. },
  6062. {
  6063. name: "Macro Mayor",
  6064. height: math.unit(350, "meters")
  6065. },
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6070. {
  6071. front: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(200, "lbs"),
  6074. name: "Front",
  6075. image: {
  6076. source: "./media/characters/akari/front.svg",
  6077. extra: 962 / 901,
  6078. bottom: 0.04
  6079. }
  6080. }
  6081. },
  6082. [
  6083. {
  6084. name: "Micro",
  6085. height: math.unit(5, "inches"),
  6086. default: true
  6087. },
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(7, "feet")
  6091. },
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6096. {
  6097. front: {
  6098. height: math.unit(6, "feet"),
  6099. weight: math.unit(140, "lbs"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/cynosura/front.svg",
  6103. extra: 896 / 847
  6104. }
  6105. },
  6106. back: {
  6107. height: math.unit(6, "feet"),
  6108. weight: math.unit(140, "lbs"),
  6109. name: "Back",
  6110. image: {
  6111. source: "./media/characters/cynosura/back.svg",
  6112. extra: 1365 / 1250
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Micro",
  6119. height: math.unit(4, "inches")
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(5.75, "feet"),
  6124. default: true
  6125. },
  6126. {
  6127. name: "Tall",
  6128. height: math.unit(10, "feet")
  6129. },
  6130. {
  6131. name: "Big",
  6132. height: math.unit(20, "feet")
  6133. },
  6134. {
  6135. name: "Macro",
  6136. height: math.unit(50, "feet")
  6137. },
  6138. ]
  6139. ))
  6140. characterMakers.push(() => makeCharacter(
  6141. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6142. {
  6143. front: {
  6144. height: math.unit(13 + 2/12, "feet"),
  6145. weight: math.unit(800, "kg"),
  6146. name: "Front",
  6147. image: {
  6148. source: "./media/characters/gin/front.svg",
  6149. extra: 1312/1191,
  6150. bottom: 45/1357
  6151. }
  6152. },
  6153. mouth: {
  6154. height: math.unit(2.39 * 1.8, "feet"),
  6155. name: "Mouth",
  6156. image: {
  6157. source: "./media/characters/gin/mouth.svg"
  6158. }
  6159. },
  6160. hand: {
  6161. height: math.unit(1.57 * 2.19, "feet"),
  6162. name: "Hand",
  6163. image: {
  6164. source: "./media/characters/gin/hand.svg"
  6165. }
  6166. },
  6167. foot: {
  6168. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6169. name: "Foot",
  6170. image: {
  6171. source: "./media/characters/gin/foot.svg"
  6172. }
  6173. },
  6174. sole: {
  6175. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6176. name: "Sole",
  6177. image: {
  6178. source: "./media/characters/gin/sole.svg"
  6179. }
  6180. },
  6181. },
  6182. [
  6183. {
  6184. name: "Very Small",
  6185. height: math.unit(13 + 2 / 12, "feet")
  6186. },
  6187. {
  6188. name: "Micro",
  6189. height: math.unit(600, "miles")
  6190. },
  6191. {
  6192. name: "Regular",
  6193. height: math.unit(20, "earths"),
  6194. default: true
  6195. },
  6196. {
  6197. name: "Macro",
  6198. height: math.unit(2.2, "solarradii")
  6199. },
  6200. {
  6201. name: "Teramacro",
  6202. height: math.unit(1.2, "galaxies")
  6203. },
  6204. {
  6205. name: "Omegamacro",
  6206. height: math.unit(200, "universes")
  6207. },
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6212. {
  6213. front: {
  6214. height: math.unit(6 + 1 / 6, "feet"),
  6215. weight: math.unit(178, "lbs"),
  6216. name: "Front",
  6217. image: {
  6218. source: "./media/characters/guy/front.svg"
  6219. }
  6220. }
  6221. },
  6222. [
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(6 + 1 / 6, "feet"),
  6226. default: true
  6227. },
  6228. {
  6229. name: "Large",
  6230. height: math.unit(25 + 7 / 12, "feet")
  6231. },
  6232. {
  6233. name: "Macro",
  6234. height: math.unit(60 + 9 / 12, "feet")
  6235. },
  6236. {
  6237. name: "Macro+",
  6238. height: math.unit(246, "feet")
  6239. },
  6240. {
  6241. name: "Macro++",
  6242. height: math.unit(878, "feet")
  6243. }
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6248. {
  6249. front: {
  6250. height: math.unit(9, "feet"),
  6251. weight: math.unit(800, "lbs"),
  6252. name: "Front",
  6253. image: {
  6254. source: "./media/characters/tiberius/front.svg",
  6255. extra: 2295 / 2071
  6256. }
  6257. },
  6258. back: {
  6259. height: math.unit(9, "feet"),
  6260. weight: math.unit(800, "lbs"),
  6261. name: "Back",
  6262. image: {
  6263. source: "./media/characters/tiberius/back.svg",
  6264. extra: 2373 / 2160
  6265. }
  6266. },
  6267. },
  6268. [
  6269. {
  6270. name: "Normal",
  6271. height: math.unit(9, "feet"),
  6272. default: true
  6273. }
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6278. {
  6279. front: {
  6280. height: math.unit(6, "feet"),
  6281. weight: math.unit(600, "lbs"),
  6282. name: "Front",
  6283. image: {
  6284. source: "./media/characters/surgo/front.svg",
  6285. extra: 3591 / 2227
  6286. }
  6287. },
  6288. back: {
  6289. height: math.unit(6, "feet"),
  6290. weight: math.unit(600, "lbs"),
  6291. name: "Back",
  6292. image: {
  6293. source: "./media/characters/surgo/back.svg",
  6294. extra: 3557 / 2228
  6295. }
  6296. },
  6297. laying: {
  6298. height: math.unit(6 * 0.85, "feet"),
  6299. weight: math.unit(600, "lbs"),
  6300. name: "Laying",
  6301. image: {
  6302. source: "./media/characters/surgo/laying.svg"
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(6, "feet"),
  6310. default: true
  6311. }
  6312. ]
  6313. ))
  6314. characterMakers.push(() => makeCharacter(
  6315. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6316. {
  6317. side: {
  6318. height: math.unit(6, "feet"),
  6319. weight: math.unit(150, "lbs"),
  6320. name: "Side",
  6321. image: {
  6322. source: "./media/characters/cibus/side.svg",
  6323. extra: 800 / 400
  6324. }
  6325. },
  6326. },
  6327. [
  6328. {
  6329. name: "Normal",
  6330. height: math.unit(6, "feet"),
  6331. default: true
  6332. }
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6337. {
  6338. front: {
  6339. height: math.unit(6, "feet"),
  6340. weight: math.unit(240, "lbs"),
  6341. name: "Front",
  6342. image: {
  6343. source: "./media/characters/nibbles/front.svg"
  6344. }
  6345. },
  6346. side: {
  6347. height: math.unit(6, "feet"),
  6348. weight: math.unit(240, "lbs"),
  6349. name: "Side",
  6350. image: {
  6351. source: "./media/characters/nibbles/side.svg"
  6352. }
  6353. },
  6354. },
  6355. [
  6356. {
  6357. name: "Normal",
  6358. height: math.unit(9, "feet"),
  6359. default: true
  6360. }
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6365. {
  6366. side: {
  6367. height: math.unit(5 + 1 / 6, "feet"),
  6368. weight: math.unit(130, "lbs"),
  6369. name: "Side",
  6370. image: {
  6371. source: "./media/characters/rikky/side.svg",
  6372. extra: 851 / 801
  6373. }
  6374. },
  6375. },
  6376. [
  6377. {
  6378. name: "Normal",
  6379. height: math.unit(5 + 1 / 6, "feet")
  6380. },
  6381. {
  6382. name: "Macro",
  6383. height: math.unit(152, "feet"),
  6384. default: true
  6385. },
  6386. {
  6387. name: "Megamacro",
  6388. height: math.unit(7, "miles")
  6389. }
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6394. {
  6395. side: {
  6396. height: math.unit(370, "cm"),
  6397. weight: math.unit(350, "lbs"),
  6398. name: "Side",
  6399. image: {
  6400. source: "./media/characters/malfressa/side.svg"
  6401. }
  6402. },
  6403. walking: {
  6404. height: math.unit(370, "cm"),
  6405. weight: math.unit(350, "lbs"),
  6406. name: "Walking",
  6407. image: {
  6408. source: "./media/characters/malfressa/walking.svg"
  6409. }
  6410. },
  6411. feral: {
  6412. height: math.unit(2500, "cm"),
  6413. weight: math.unit(100000, "lbs"),
  6414. name: "Feral",
  6415. image: {
  6416. source: "./media/characters/malfressa/feral.svg",
  6417. extra: 2108 / 837,
  6418. bottom: 0.02
  6419. }
  6420. },
  6421. },
  6422. [
  6423. {
  6424. name: "Normal",
  6425. height: math.unit(370, "cm")
  6426. },
  6427. {
  6428. name: "Macro",
  6429. height: math.unit(300, "meters"),
  6430. default: true
  6431. }
  6432. ]
  6433. ))
  6434. characterMakers.push(() => makeCharacter(
  6435. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6436. {
  6437. front: {
  6438. height: math.unit(6, "feet"),
  6439. weight: math.unit(60, "kg"),
  6440. name: "Front",
  6441. image: {
  6442. source: "./media/characters/jaro/front.svg",
  6443. extra: 845/817,
  6444. bottom: 45/890
  6445. }
  6446. },
  6447. back: {
  6448. height: math.unit(6, "feet"),
  6449. weight: math.unit(60, "kg"),
  6450. name: "Back",
  6451. image: {
  6452. source: "./media/characters/jaro/back.svg",
  6453. extra: 847/817,
  6454. bottom: 34/881
  6455. }
  6456. },
  6457. },
  6458. [
  6459. {
  6460. name: "Micro",
  6461. height: math.unit(7, "inches")
  6462. },
  6463. {
  6464. name: "Normal",
  6465. height: math.unit(5.5, "feet"),
  6466. default: true
  6467. },
  6468. {
  6469. name: "Minimacro",
  6470. height: math.unit(20, "feet")
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(200, "meters")
  6475. }
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(195, "lb"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/rogue/front.svg"
  6487. }
  6488. },
  6489. },
  6490. [
  6491. {
  6492. name: "Macro",
  6493. height: math.unit(90, "feet"),
  6494. default: true
  6495. },
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6500. {
  6501. front: {
  6502. height: math.unit(5 + 8 / 12, "feet"),
  6503. weight: math.unit(140, "lb"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/piper/front.svg",
  6507. extra: 3948/3655,
  6508. bottom: 0/3948
  6509. }
  6510. },
  6511. sole: {
  6512. height: math.unit(0.81, "feet"),
  6513. weight: math.unit(2, "kg"),
  6514. name: "Sole",
  6515. image: {
  6516. source: "./media/characters/piper/sole.svg"
  6517. }
  6518. },
  6519. },
  6520. [
  6521. {
  6522. name: "Micro",
  6523. height: math.unit(2, "inches")
  6524. },
  6525. {
  6526. name: "Normal",
  6527. height: math.unit(5 + 8 / 12, "feet")
  6528. },
  6529. {
  6530. name: "Macro",
  6531. height: math.unit(250, "feet"),
  6532. default: true
  6533. },
  6534. {
  6535. name: "Megamacro",
  6536. height: math.unit(7, "miles")
  6537. },
  6538. ]
  6539. ))
  6540. characterMakers.push(() => makeCharacter(
  6541. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6542. {
  6543. front: {
  6544. height: math.unit(6, "feet"),
  6545. weight: math.unit(220, "lb"),
  6546. name: "Front",
  6547. image: {
  6548. source: "./media/characters/gemini/front.svg"
  6549. }
  6550. },
  6551. back: {
  6552. height: math.unit(6, "feet"),
  6553. weight: math.unit(220, "lb"),
  6554. name: "Back",
  6555. image: {
  6556. source: "./media/characters/gemini/back.svg"
  6557. }
  6558. },
  6559. kneeling: {
  6560. height: math.unit(6 / 1.5, "feet"),
  6561. weight: math.unit(220, "lb"),
  6562. name: "Kneeling",
  6563. image: {
  6564. source: "./media/characters/gemini/kneeling.svg",
  6565. bottom: 0.02
  6566. }
  6567. },
  6568. },
  6569. [
  6570. {
  6571. name: "Macro",
  6572. height: math.unit(300, "meters"),
  6573. default: true
  6574. },
  6575. {
  6576. name: "Megamacro",
  6577. height: math.unit(6900, "meters")
  6578. },
  6579. ]
  6580. ))
  6581. characterMakers.push(() => makeCharacter(
  6582. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6583. {
  6584. anthro: {
  6585. height: math.unit(2.35, "meters"),
  6586. weight: math.unit(73, "kg"),
  6587. name: "Anthro",
  6588. image: {
  6589. source: "./media/characters/alicia/anthro.svg",
  6590. extra: 2571 / 2385,
  6591. bottom: 75 / 2648
  6592. }
  6593. },
  6594. paw: {
  6595. height: math.unit(1.32, "feet"),
  6596. name: "Paw",
  6597. image: {
  6598. source: "./media/characters/alicia/paw.svg"
  6599. }
  6600. },
  6601. feral: {
  6602. height: math.unit(1.69, "meters"),
  6603. weight: math.unit(73, "kg"),
  6604. name: "Feral",
  6605. image: {
  6606. source: "./media/characters/alicia/feral.svg",
  6607. extra: 2123 / 1715,
  6608. bottom: 222 / 2349
  6609. }
  6610. },
  6611. },
  6612. [
  6613. {
  6614. name: "Normal",
  6615. height: math.unit(2.35, "meters")
  6616. },
  6617. {
  6618. name: "Macro",
  6619. height: math.unit(60, "meters"),
  6620. default: true
  6621. },
  6622. {
  6623. name: "Megamacro",
  6624. height: math.unit(10000, "kilometers")
  6625. },
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6630. {
  6631. front: {
  6632. height: math.unit(7, "feet"),
  6633. weight: math.unit(250, "lbs"),
  6634. name: "Front",
  6635. image: {
  6636. source: "./media/characters/archy/front.svg"
  6637. }
  6638. }
  6639. },
  6640. [
  6641. {
  6642. name: "Micro",
  6643. height: math.unit(1, "inch")
  6644. },
  6645. {
  6646. name: "Shorty",
  6647. height: math.unit(5, "feet")
  6648. },
  6649. {
  6650. name: "Normal",
  6651. height: math.unit(7, "feet")
  6652. },
  6653. {
  6654. name: "Macro",
  6655. height: math.unit(600, "meters"),
  6656. default: true
  6657. },
  6658. {
  6659. name: "Megamacro",
  6660. height: math.unit(1, "mile")
  6661. },
  6662. ]
  6663. ))
  6664. characterMakers.push(() => makeCharacter(
  6665. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6666. {
  6667. front: {
  6668. height: math.unit(1.65, "meters"),
  6669. weight: math.unit(74, "kg"),
  6670. name: "Front",
  6671. image: {
  6672. source: "./media/characters/berri/front.svg",
  6673. extra: 857 / 837,
  6674. bottom: 18 / 877
  6675. }
  6676. },
  6677. bum: {
  6678. height: math.unit(1.46, "feet"),
  6679. name: "Bum",
  6680. image: {
  6681. source: "./media/characters/berri/bum.svg"
  6682. }
  6683. },
  6684. mouth: {
  6685. height: math.unit(0.44, "feet"),
  6686. name: "Mouth",
  6687. image: {
  6688. source: "./media/characters/berri/mouth.svg"
  6689. }
  6690. },
  6691. paw: {
  6692. height: math.unit(0.826, "feet"),
  6693. name: "Paw",
  6694. image: {
  6695. source: "./media/characters/berri/paw.svg"
  6696. }
  6697. },
  6698. },
  6699. [
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(1.65, "meters")
  6703. },
  6704. {
  6705. name: "Macro",
  6706. height: math.unit(60, "m"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Megamacro",
  6711. height: math.unit(9.213, "km")
  6712. },
  6713. {
  6714. name: "Planet Eater",
  6715. height: math.unit(489, "megameters")
  6716. },
  6717. {
  6718. name: "Teramacro",
  6719. height: math.unit(2471635000000, "meters")
  6720. },
  6721. {
  6722. name: "Examacro",
  6723. height: math.unit(8.0624e+26, "meters")
  6724. }
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(1.72, "meters"),
  6732. weight: math.unit(68, "kg"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/lexi/front.svg"
  6736. }
  6737. }
  6738. },
  6739. [
  6740. {
  6741. name: "Very Smol",
  6742. height: math.unit(10, "mm")
  6743. },
  6744. {
  6745. name: "Micro",
  6746. height: math.unit(6.8, "cm"),
  6747. default: true
  6748. },
  6749. {
  6750. name: "Normal",
  6751. height: math.unit(1.72, "m")
  6752. }
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(1.69, "meters"),
  6760. weight: math.unit(68, "kg"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/martin/front.svg",
  6764. extra: 596 / 581
  6765. }
  6766. }
  6767. },
  6768. [
  6769. {
  6770. name: "Micro",
  6771. height: math.unit(6.85, "cm"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Normal",
  6776. height: math.unit(1.69, "m")
  6777. }
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(1.69, "meters"),
  6785. weight: math.unit(68, "kg"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/juno/front.svg"
  6789. }
  6790. }
  6791. },
  6792. [
  6793. {
  6794. name: "Micro",
  6795. height: math.unit(7, "cm")
  6796. },
  6797. {
  6798. name: "Normal",
  6799. height: math.unit(1.89, "m")
  6800. },
  6801. {
  6802. name: "Macro",
  6803. height: math.unit(353, "meters"),
  6804. default: true
  6805. }
  6806. ]
  6807. ))
  6808. characterMakers.push(() => makeCharacter(
  6809. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6810. {
  6811. front: {
  6812. height: math.unit(1.93, "meters"),
  6813. weight: math.unit(83, "kg"),
  6814. name: "Front",
  6815. image: {
  6816. source: "./media/characters/samantha/front.svg"
  6817. }
  6818. },
  6819. frontClothed: {
  6820. height: math.unit(1.93, "meters"),
  6821. weight: math.unit(83, "kg"),
  6822. name: "Front (Clothed)",
  6823. image: {
  6824. source: "./media/characters/samantha/front-clothed.svg"
  6825. }
  6826. },
  6827. back: {
  6828. height: math.unit(1.93, "meters"),
  6829. weight: math.unit(83, "kg"),
  6830. name: "Back",
  6831. image: {
  6832. source: "./media/characters/samantha/back.svg"
  6833. }
  6834. },
  6835. },
  6836. [
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(1.93, "m")
  6840. },
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(74, "meters"),
  6844. default: true
  6845. },
  6846. {
  6847. name: "Macro+",
  6848. height: math.unit(223, "meters"),
  6849. },
  6850. {
  6851. name: "Megamacro",
  6852. height: math.unit(8381, "meters"),
  6853. },
  6854. {
  6855. name: "Megamacro+",
  6856. height: math.unit(12000, "kilometers")
  6857. },
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(1.92, "meters"),
  6865. weight: math.unit(80, "kg"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/dr-clay/front.svg"
  6869. }
  6870. },
  6871. frontClothed: {
  6872. height: math.unit(1.92, "meters"),
  6873. weight: math.unit(80, "kg"),
  6874. name: "Front (Clothed)",
  6875. image: {
  6876. source: "./media/characters/dr-clay/front-clothed.svg"
  6877. }
  6878. }
  6879. },
  6880. [
  6881. {
  6882. name: "Normal",
  6883. height: math.unit(1.92, "m")
  6884. },
  6885. {
  6886. name: "Macro",
  6887. height: math.unit(214, "meters"),
  6888. default: true
  6889. },
  6890. {
  6891. name: "Macro+",
  6892. height: math.unit(12.237, "meters"),
  6893. },
  6894. {
  6895. name: "Megamacro",
  6896. height: math.unit(557, "megameters"),
  6897. },
  6898. {
  6899. name: "Unimaginable",
  6900. height: math.unit(120e9, "lightyears")
  6901. },
  6902. ]
  6903. ))
  6904. characterMakers.push(() => makeCharacter(
  6905. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6906. {
  6907. front: {
  6908. height: math.unit(2, "meters"),
  6909. weight: math.unit(80, "kg"),
  6910. name: "Front",
  6911. image: {
  6912. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6913. }
  6914. }
  6915. },
  6916. [
  6917. {
  6918. name: "Teramacro",
  6919. height: math.unit(500000, "lightyears"),
  6920. default: true
  6921. },
  6922. ]
  6923. ))
  6924. characterMakers.push(() => makeCharacter(
  6925. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6926. {
  6927. crux: {
  6928. height: math.unit(2, "meters"),
  6929. weight: math.unit(150, "kg"),
  6930. name: "Crux",
  6931. image: {
  6932. source: "./media/characters/vemus/crux.svg",
  6933. extra: 1074/936,
  6934. bottom: 23/1097
  6935. }
  6936. },
  6937. skunkTanuki: {
  6938. height: math.unit(2, "meters"),
  6939. weight: math.unit(150, "kg"),
  6940. name: "Skunk-Tanuki",
  6941. image: {
  6942. source: "./media/characters/vemus/skunk-tanuki.svg",
  6943. extra: 926/893,
  6944. bottom: 20/946
  6945. }
  6946. },
  6947. },
  6948. [
  6949. {
  6950. name: "Normal",
  6951. height: math.unit(3.75, "meters"),
  6952. default: true
  6953. },
  6954. {
  6955. name: "Big",
  6956. height: math.unit(8, "meters")
  6957. },
  6958. {
  6959. name: "Macro",
  6960. height: math.unit(100, "meters")
  6961. },
  6962. {
  6963. name: "Macro+",
  6964. height: math.unit(1500, "meters")
  6965. },
  6966. {
  6967. name: "Stellar",
  6968. height: math.unit(14e8, "meters")
  6969. },
  6970. ]
  6971. ))
  6972. characterMakers.push(() => makeCharacter(
  6973. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6974. {
  6975. front: {
  6976. height: math.unit(2, "meters"),
  6977. weight: math.unit(70, "kg"),
  6978. name: "Front",
  6979. image: {
  6980. source: "./media/characters/beherit/front.svg",
  6981. extra: 1234/1109,
  6982. bottom: 55/1289
  6983. }
  6984. }
  6985. },
  6986. [
  6987. {
  6988. name: "Normal",
  6989. height: math.unit(6, "feet")
  6990. },
  6991. {
  6992. name: "Lorg",
  6993. height: math.unit(25, "feet"),
  6994. default: true
  6995. },
  6996. {
  6997. name: "Lorger",
  6998. height: math.unit(75, "feet")
  6999. },
  7000. {
  7001. name: "Macro",
  7002. height: math.unit(200, "meters")
  7003. },
  7004. ]
  7005. ))
  7006. characterMakers.push(() => makeCharacter(
  7007. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7008. {
  7009. front: {
  7010. height: math.unit(2, "meters"),
  7011. weight: math.unit(150, "kg"),
  7012. name: "Front",
  7013. image: {
  7014. source: "./media/characters/everett/front.svg",
  7015. extra: 1017/866,
  7016. bottom: 86/1103
  7017. }
  7018. },
  7019. paw: {
  7020. height: math.unit(2 / 3.6, "meters"),
  7021. name: "Paw",
  7022. image: {
  7023. source: "./media/characters/everett/paw.svg"
  7024. }
  7025. },
  7026. },
  7027. [
  7028. {
  7029. name: "Normal",
  7030. height: math.unit(15, "feet"),
  7031. default: true
  7032. },
  7033. {
  7034. name: "Lorg",
  7035. height: math.unit(70, "feet"),
  7036. default: true
  7037. },
  7038. {
  7039. name: "Lorger",
  7040. height: math.unit(250, "feet")
  7041. },
  7042. {
  7043. name: "Macro",
  7044. height: math.unit(500, "meters")
  7045. },
  7046. ]
  7047. ))
  7048. characterMakers.push(() => makeCharacter(
  7049. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7050. {
  7051. front: {
  7052. height: math.unit(2, "meters"),
  7053. weight: math.unit(86, "kg"),
  7054. name: "Front",
  7055. image: {
  7056. source: "./media/characters/rose/front.svg",
  7057. extra: 1785/1636,
  7058. bottom: 30/1815
  7059. },
  7060. form: "liom",
  7061. default: true
  7062. },
  7063. frontSporty: {
  7064. height: math.unit(2, "meters"),
  7065. weight: math.unit(86, "kg"),
  7066. name: "Front (Sporty)",
  7067. image: {
  7068. source: "./media/characters/rose/front-sporty.svg",
  7069. extra: 350/335,
  7070. bottom: 10/360
  7071. },
  7072. form: "liom"
  7073. },
  7074. frontAlt: {
  7075. height: math.unit(1.6, "meters"),
  7076. weight: math.unit(86, "kg"),
  7077. name: "Front (Alt)",
  7078. image: {
  7079. source: "./media/characters/rose/front-alt.svg",
  7080. extra: 299/283,
  7081. bottom: 3/302
  7082. },
  7083. form: "liom"
  7084. },
  7085. plush: {
  7086. height: math.unit(2, "meters"),
  7087. weight: math.unit(86/3, "kg"),
  7088. name: "Plush",
  7089. image: {
  7090. source: "./media/characters/rose/plush.svg",
  7091. extra: 361/337,
  7092. bottom: 11/372
  7093. },
  7094. form: "plush",
  7095. default: true
  7096. },
  7097. fae: {
  7098. height: math.unit(4, "cm"),
  7099. weight: math.unit(10, "grams"),
  7100. name: "Fae",
  7101. image: {
  7102. source: "./media/characters/rose/fae.svg",
  7103. extra: 737/577,
  7104. bottom: 356/1093
  7105. },
  7106. form: "fae",
  7107. default: true
  7108. },
  7109. },
  7110. [
  7111. {
  7112. name: "True Micro",
  7113. height: math.unit(9, "cm"),
  7114. form: "liom"
  7115. },
  7116. {
  7117. name: "Micro",
  7118. height: math.unit(16, "cm"),
  7119. form: "liom"
  7120. },
  7121. {
  7122. name: "Normal",
  7123. height: math.unit(1.85, "meters"),
  7124. default: true,
  7125. form: "liom"
  7126. },
  7127. {
  7128. name: "Mini-Macro",
  7129. height: math.unit(5, "meters"),
  7130. form: "liom"
  7131. },
  7132. {
  7133. name: "Macro",
  7134. height: math.unit(15, "meters"),
  7135. form: "liom"
  7136. },
  7137. {
  7138. name: "True Macro",
  7139. height: math.unit(40, "meters"),
  7140. form: "liom"
  7141. },
  7142. {
  7143. name: "City Scale",
  7144. height: math.unit(1, "km"),
  7145. form: "liom"
  7146. },
  7147. {
  7148. name: "Plushie",
  7149. height: math.unit(9, "cm"),
  7150. form: "plush",
  7151. default: true
  7152. },
  7153. {
  7154. name: "Fae",
  7155. height: math.unit(4, "cm"),
  7156. form: "fae",
  7157. default: true
  7158. },
  7159. ],
  7160. {
  7161. "liom": {
  7162. name: "Liom",
  7163. default: true
  7164. },
  7165. "plush": {
  7166. name: "Plush"
  7167. },
  7168. "fae": {
  7169. name: "Fae Fox"
  7170. }
  7171. }
  7172. ))
  7173. characterMakers.push(() => makeCharacter(
  7174. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7175. {
  7176. front: {
  7177. height: math.unit(2, "meters"),
  7178. weight: math.unit(350, "lbs"),
  7179. name: "Front",
  7180. image: {
  7181. source: "./media/characters/regal/front.svg"
  7182. }
  7183. },
  7184. back: {
  7185. height: math.unit(2, "meters"),
  7186. weight: math.unit(350, "lbs"),
  7187. name: "Back",
  7188. image: {
  7189. source: "./media/characters/regal/back.svg"
  7190. }
  7191. },
  7192. },
  7193. [
  7194. {
  7195. name: "Macro",
  7196. height: math.unit(350, "feet"),
  7197. default: true
  7198. }
  7199. ]
  7200. ))
  7201. characterMakers.push(() => makeCharacter(
  7202. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7203. {
  7204. front: {
  7205. height: math.unit(4 + 11 / 12, "feet"),
  7206. weight: math.unit(100, "lbs"),
  7207. name: "Front",
  7208. image: {
  7209. source: "./media/characters/opal/front.svg"
  7210. }
  7211. },
  7212. frontAlt: {
  7213. height: math.unit(4 + 11 / 12, "feet"),
  7214. weight: math.unit(100, "lbs"),
  7215. name: "Front (Alt)",
  7216. image: {
  7217. source: "./media/characters/opal/front-alt.svg"
  7218. }
  7219. },
  7220. },
  7221. [
  7222. {
  7223. name: "Small",
  7224. height: math.unit(4 + 11 / 12, "feet")
  7225. },
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(20, "feet"),
  7229. default: true
  7230. },
  7231. {
  7232. name: "Macro",
  7233. height: math.unit(120, "feet")
  7234. },
  7235. {
  7236. name: "Megamacro",
  7237. height: math.unit(80, "miles")
  7238. },
  7239. {
  7240. name: "True Size",
  7241. height: math.unit(100000, "lightyears")
  7242. },
  7243. ]
  7244. ))
  7245. characterMakers.push(() => makeCharacter(
  7246. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7247. {
  7248. front: {
  7249. height: math.unit(6, "feet"),
  7250. weight: math.unit(200, "lbs"),
  7251. name: "Front",
  7252. image: {
  7253. source: "./media/characters/vector-wuff/front.svg"
  7254. }
  7255. }
  7256. },
  7257. [
  7258. {
  7259. name: "Normal",
  7260. height: math.unit(2.8, "meters")
  7261. },
  7262. {
  7263. name: "Macro",
  7264. height: math.unit(450, "meters"),
  7265. default: true
  7266. },
  7267. {
  7268. name: "Megamacro",
  7269. height: math.unit(15, "kilometers")
  7270. }
  7271. ]
  7272. ))
  7273. characterMakers.push(() => makeCharacter(
  7274. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7275. {
  7276. front: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(256, "lbs"),
  7279. name: "Front",
  7280. image: {
  7281. source: "./media/characters/dannik/front.svg"
  7282. }
  7283. }
  7284. },
  7285. [
  7286. {
  7287. name: "Macro",
  7288. height: math.unit(69.57, "meters"),
  7289. default: true
  7290. },
  7291. ]
  7292. ))
  7293. characterMakers.push(() => makeCharacter(
  7294. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7295. {
  7296. front: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(120, "lbs"),
  7299. name: "Front",
  7300. image: {
  7301. source: "./media/characters/azura-saharah/front.svg"
  7302. }
  7303. },
  7304. back: {
  7305. height: math.unit(6, "feet"),
  7306. weight: math.unit(120, "lbs"),
  7307. name: "Back",
  7308. image: {
  7309. source: "./media/characters/azura-saharah/back.svg"
  7310. }
  7311. },
  7312. },
  7313. [
  7314. {
  7315. name: "Macro",
  7316. height: math.unit(100, "feet"),
  7317. default: true
  7318. },
  7319. ]
  7320. ))
  7321. characterMakers.push(() => makeCharacter(
  7322. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7323. {
  7324. side: {
  7325. height: math.unit(5 + 4 / 12, "feet"),
  7326. weight: math.unit(163, "lbs"),
  7327. name: "Side",
  7328. image: {
  7329. source: "./media/characters/kennedy/side.svg"
  7330. }
  7331. }
  7332. },
  7333. [
  7334. {
  7335. name: "Standard Doggo",
  7336. height: math.unit(5 + 4 / 12, "feet")
  7337. },
  7338. {
  7339. name: "Big Doggo",
  7340. height: math.unit(25 + 3 / 12, "feet"),
  7341. default: true
  7342. },
  7343. ]
  7344. ))
  7345. characterMakers.push(() => makeCharacter(
  7346. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7347. {
  7348. front: {
  7349. height: math.unit(5 + 5/12, "feet"),
  7350. weight: math.unit(100, "lbs"),
  7351. name: "Front",
  7352. image: {
  7353. source: "./media/characters/odios-de-lunar/front.svg",
  7354. extra: 1468/1323,
  7355. bottom: 22/1490
  7356. }
  7357. }
  7358. },
  7359. [
  7360. {
  7361. name: "Micro",
  7362. height: math.unit(3, "inches")
  7363. },
  7364. {
  7365. name: "Normal",
  7366. height: math.unit(5.5, "feet"),
  7367. default: true
  7368. },
  7369. {
  7370. name: "Macro",
  7371. height: math.unit(100, "feet")
  7372. },
  7373. ]
  7374. ))
  7375. characterMakers.push(() => makeCharacter(
  7376. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7377. {
  7378. back: {
  7379. height: math.unit(6, "feet"),
  7380. weight: math.unit(220, "lbs"),
  7381. name: "Back",
  7382. image: {
  7383. source: "./media/characters/mandake/back.svg"
  7384. }
  7385. }
  7386. },
  7387. [
  7388. {
  7389. name: "Normal",
  7390. height: math.unit(7, "feet"),
  7391. default: true
  7392. },
  7393. {
  7394. name: "Macro",
  7395. height: math.unit(78, "feet")
  7396. },
  7397. {
  7398. name: "Macro+",
  7399. height: math.unit(300, "meters")
  7400. },
  7401. {
  7402. name: "Macro++",
  7403. height: math.unit(2400, "feet")
  7404. },
  7405. {
  7406. name: "Megamacro",
  7407. height: math.unit(5167, "meters")
  7408. },
  7409. {
  7410. name: "Gigamacro",
  7411. height: math.unit(41769, "miles")
  7412. },
  7413. ]
  7414. ))
  7415. characterMakers.push(() => makeCharacter(
  7416. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7417. {
  7418. front: {
  7419. height: math.unit(6, "feet"),
  7420. weight: math.unit(120, "lbs"),
  7421. name: "Front",
  7422. image: {
  7423. source: "./media/characters/yozey/front.svg"
  7424. }
  7425. },
  7426. frontAlt: {
  7427. height: math.unit(6, "feet"),
  7428. weight: math.unit(120, "lbs"),
  7429. name: "Front (Alt)",
  7430. image: {
  7431. source: "./media/characters/yozey/front-alt.svg"
  7432. }
  7433. },
  7434. side: {
  7435. height: math.unit(6, "feet"),
  7436. weight: math.unit(120, "lbs"),
  7437. name: "Side",
  7438. image: {
  7439. source: "./media/characters/yozey/side.svg"
  7440. }
  7441. },
  7442. },
  7443. [
  7444. {
  7445. name: "Micro",
  7446. height: math.unit(3, "inches"),
  7447. default: true
  7448. },
  7449. {
  7450. name: "Normal",
  7451. height: math.unit(6, "feet")
  7452. }
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7457. {
  7458. front: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(103, "lbs"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/valeska-voss/front.svg"
  7464. }
  7465. }
  7466. },
  7467. [
  7468. {
  7469. name: "Mini-Sized Sub",
  7470. height: math.unit(3.1, "inches")
  7471. },
  7472. {
  7473. name: "Mid-Sized Sub",
  7474. height: math.unit(6.2, "inches")
  7475. },
  7476. {
  7477. name: "Full-Sized Sub",
  7478. height: math.unit(9.3, "inches")
  7479. },
  7480. {
  7481. name: "Normal",
  7482. height: math.unit(5 + 2 / 12, "foot"),
  7483. default: true
  7484. },
  7485. ]
  7486. ))
  7487. characterMakers.push(() => makeCharacter(
  7488. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7489. {
  7490. front: {
  7491. height: math.unit(6, "feet"),
  7492. weight: math.unit(160, "lbs"),
  7493. name: "Front",
  7494. image: {
  7495. source: "./media/characters/gene-zeta/front.svg",
  7496. extra: 3006 / 2826,
  7497. bottom: 182 / 3188
  7498. }
  7499. }
  7500. },
  7501. [
  7502. {
  7503. name: "Micro",
  7504. height: math.unit(6, "inches")
  7505. },
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(5 + 11 / 12, "foot"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Macro",
  7513. height: math.unit(140, "feet")
  7514. },
  7515. {
  7516. name: "Supercharged",
  7517. height: math.unit(2500, "feet")
  7518. },
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7523. {
  7524. front: {
  7525. height: math.unit(6, "feet"),
  7526. weight: math.unit(350, "lbs"),
  7527. name: "Front",
  7528. image: {
  7529. source: "./media/characters/razinox/front.svg",
  7530. extra: 1686 / 1548,
  7531. bottom: 28.2 / 1868
  7532. }
  7533. },
  7534. back: {
  7535. height: math.unit(6, "feet"),
  7536. weight: math.unit(350, "lbs"),
  7537. name: "Back",
  7538. image: {
  7539. source: "./media/characters/razinox/back.svg",
  7540. extra: 1660 / 1590,
  7541. bottom: 15 / 1665
  7542. }
  7543. },
  7544. },
  7545. [
  7546. {
  7547. name: "Normal",
  7548. height: math.unit(10 + 8 / 12, "foot")
  7549. },
  7550. {
  7551. name: "Minimacro",
  7552. height: math.unit(15, "foot")
  7553. },
  7554. {
  7555. name: "Macro",
  7556. height: math.unit(60, "foot"),
  7557. default: true
  7558. },
  7559. {
  7560. name: "Megamacro",
  7561. height: math.unit(5, "miles")
  7562. },
  7563. {
  7564. name: "Gigamacro",
  7565. height: math.unit(6000, "miles")
  7566. },
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7571. {
  7572. front: {
  7573. height: math.unit(6, "feet"),
  7574. weight: math.unit(150, "lbs"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/cobalt/front.svg"
  7578. }
  7579. }
  7580. },
  7581. [
  7582. {
  7583. name: "Normal",
  7584. height: math.unit(8 + 1 / 12, "foot")
  7585. },
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(111, "foot"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Supracosmic",
  7593. height: math.unit(1e42, "feet")
  7594. },
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7599. {
  7600. front: {
  7601. height: math.unit(5, "inches"),
  7602. name: "Front",
  7603. image: {
  7604. source: "./media/characters/amanda/front.svg",
  7605. extra: 926/791,
  7606. bottom: 38/964
  7607. }
  7608. },
  7609. back: {
  7610. height: math.unit(5, "inches"),
  7611. name: "Back",
  7612. image: {
  7613. source: "./media/characters/amanda/back.svg",
  7614. extra: 909/805,
  7615. bottom: 43/952
  7616. }
  7617. },
  7618. },
  7619. [
  7620. {
  7621. name: "Micro",
  7622. height: math.unit(5, "inches"),
  7623. default: true
  7624. },
  7625. ]
  7626. ))
  7627. characterMakers.push(() => makeCharacter(
  7628. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7629. {
  7630. front: {
  7631. height: math.unit(2.75, "meters"),
  7632. weight: math.unit(1200, "lb"),
  7633. name: "Front",
  7634. image: {
  7635. source: "./media/characters/teal/front.svg",
  7636. extra: 2463 / 2320,
  7637. bottom: 166 / 2629
  7638. }
  7639. },
  7640. back: {
  7641. height: math.unit(2.75, "meters"),
  7642. weight: math.unit(1200, "lb"),
  7643. name: "Back",
  7644. image: {
  7645. source: "./media/characters/teal/back.svg",
  7646. extra: 2580 / 2489,
  7647. bottom: 151 / 2731
  7648. }
  7649. },
  7650. sitting: {
  7651. height: math.unit(1.9, "meters"),
  7652. weight: math.unit(1200, "lb"),
  7653. name: "Sitting",
  7654. image: {
  7655. source: "./media/characters/teal/sitting.svg",
  7656. extra: 623 / 590,
  7657. bottom: 121 / 744
  7658. }
  7659. },
  7660. standing: {
  7661. height: math.unit(2.75, "meters"),
  7662. weight: math.unit(1200, "lb"),
  7663. name: "Standing",
  7664. image: {
  7665. source: "./media/characters/teal/standing.svg",
  7666. extra: 923 / 893,
  7667. bottom: 60 / 983
  7668. }
  7669. },
  7670. stretching: {
  7671. height: math.unit(3.65, "meters"),
  7672. weight: math.unit(1200, "lb"),
  7673. name: "Stretching",
  7674. image: {
  7675. source: "./media/characters/teal/stretching.svg",
  7676. extra: 1276 / 1244,
  7677. bottom: 0 / 1276
  7678. }
  7679. },
  7680. legged: {
  7681. height: math.unit(1.3, "meters"),
  7682. weight: math.unit(100, "lb"),
  7683. name: "Legged",
  7684. image: {
  7685. source: "./media/characters/teal/legged.svg",
  7686. extra: 462 / 437,
  7687. bottom: 24 / 486
  7688. }
  7689. },
  7690. naga: {
  7691. height: math.unit(5.4, "meters"),
  7692. weight: math.unit(4000, "lb"),
  7693. name: "Naga",
  7694. image: {
  7695. source: "./media/characters/teal/naga.svg",
  7696. extra: 1902 / 1858,
  7697. bottom: 0 / 1902
  7698. }
  7699. },
  7700. hand: {
  7701. height: math.unit(0.52, "meters"),
  7702. name: "Hand",
  7703. image: {
  7704. source: "./media/characters/teal/hand.svg"
  7705. }
  7706. },
  7707. maw: {
  7708. height: math.unit(0.43, "meters"),
  7709. name: "Maw",
  7710. image: {
  7711. source: "./media/characters/teal/maw.svg"
  7712. }
  7713. },
  7714. slit: {
  7715. height: math.unit(0.25, "meters"),
  7716. name: "Slit",
  7717. image: {
  7718. source: "./media/characters/teal/slit.svg"
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Normal",
  7725. height: math.unit(2.75, "meters"),
  7726. default: true
  7727. },
  7728. {
  7729. name: "Macro",
  7730. height: math.unit(300, "feet")
  7731. },
  7732. {
  7733. name: "Macro+",
  7734. height: math.unit(2000, "feet")
  7735. },
  7736. ]
  7737. ))
  7738. characterMakers.push(() => makeCharacter(
  7739. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7740. {
  7741. frontCat: {
  7742. height: math.unit(6, "feet"),
  7743. weight: math.unit(180, "lbs"),
  7744. name: "Front (Cat)",
  7745. image: {
  7746. source: "./media/characters/ravin-amulet/front-cat.svg"
  7747. }
  7748. },
  7749. frontCatAlt: {
  7750. height: math.unit(6, "feet"),
  7751. weight: math.unit(180, "lbs"),
  7752. name: "Front (Alt, Cat)",
  7753. image: {
  7754. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7755. }
  7756. },
  7757. frontWerewolf: {
  7758. height: math.unit(6 * 1.2, "feet"),
  7759. weight: math.unit(225, "lbs"),
  7760. name: "Front (Werewolf)",
  7761. image: {
  7762. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7763. }
  7764. },
  7765. backWerewolf: {
  7766. height: math.unit(6 * 1.2, "feet"),
  7767. weight: math.unit(225, "lbs"),
  7768. name: "Back (Werewolf)",
  7769. image: {
  7770. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7771. }
  7772. },
  7773. },
  7774. [
  7775. {
  7776. name: "Nano",
  7777. height: math.unit(1, "micrometer")
  7778. },
  7779. {
  7780. name: "Micro",
  7781. height: math.unit(1, "inch")
  7782. },
  7783. {
  7784. name: "Normal",
  7785. height: math.unit(6, "feet"),
  7786. default: true
  7787. },
  7788. {
  7789. name: "Macro",
  7790. height: math.unit(60, "feet")
  7791. }
  7792. ]
  7793. ))
  7794. characterMakers.push(() => makeCharacter(
  7795. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7796. {
  7797. front: {
  7798. height: math.unit(6, "feet"),
  7799. weight: math.unit(165, "lbs"),
  7800. name: "Front",
  7801. image: {
  7802. source: "./media/characters/fluoresce/front.svg"
  7803. }
  7804. }
  7805. },
  7806. [
  7807. {
  7808. name: "Micro",
  7809. height: math.unit(6, "cm")
  7810. },
  7811. {
  7812. name: "Normal",
  7813. height: math.unit(5 + 7 / 12, "feet"),
  7814. default: true
  7815. },
  7816. {
  7817. name: "Macro",
  7818. height: math.unit(56, "feet")
  7819. },
  7820. {
  7821. name: "Megamacro",
  7822. height: math.unit(1.9, "miles")
  7823. },
  7824. ]
  7825. ))
  7826. characterMakers.push(() => makeCharacter(
  7827. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7828. {
  7829. front: {
  7830. height: math.unit(9 + 6 / 12, "feet"),
  7831. weight: math.unit(523, "lbs"),
  7832. name: "Side",
  7833. image: {
  7834. source: "./media/characters/aurora/side.svg"
  7835. }
  7836. }
  7837. },
  7838. [
  7839. {
  7840. name: "Normal",
  7841. height: math.unit(9 + 6 / 12, "feet")
  7842. },
  7843. {
  7844. name: "Macro",
  7845. height: math.unit(96, "feet"),
  7846. default: true
  7847. },
  7848. {
  7849. name: "Macro+",
  7850. height: math.unit(243, "feet")
  7851. },
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7856. {
  7857. front: {
  7858. height: math.unit(194, "cm"),
  7859. weight: math.unit(90, "kg"),
  7860. name: "Front",
  7861. image: {
  7862. source: "./media/characters/ranek/front.svg",
  7863. extra: 1862/1791,
  7864. bottom: 80/1942
  7865. }
  7866. },
  7867. back: {
  7868. height: math.unit(194, "cm"),
  7869. weight: math.unit(90, "kg"),
  7870. name: "Back",
  7871. image: {
  7872. source: "./media/characters/ranek/back.svg",
  7873. extra: 1853/1787,
  7874. bottom: 74/1927
  7875. }
  7876. },
  7877. feral: {
  7878. height: math.unit(30, "cm"),
  7879. weight: math.unit(1.6, "lbs"),
  7880. name: "Feral",
  7881. image: {
  7882. source: "./media/characters/ranek/feral.svg",
  7883. extra: 990/631,
  7884. bottom: 29/1019
  7885. }
  7886. },
  7887. },
  7888. [
  7889. {
  7890. name: "Normal",
  7891. height: math.unit(194, "cm"),
  7892. default: true
  7893. },
  7894. {
  7895. name: "Macro",
  7896. height: math.unit(100, "meters")
  7897. },
  7898. ]
  7899. ))
  7900. characterMakers.push(() => makeCharacter(
  7901. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7902. {
  7903. front: {
  7904. height: math.unit(5 + 6 / 12, "feet"),
  7905. weight: math.unit(153, "lbs"),
  7906. name: "Front",
  7907. image: {
  7908. source: "./media/characters/andrew-cooper/front.svg"
  7909. }
  7910. },
  7911. },
  7912. [
  7913. {
  7914. name: "Nano",
  7915. height: math.unit(1, "mm")
  7916. },
  7917. {
  7918. name: "Micro",
  7919. height: math.unit(2, "inches")
  7920. },
  7921. {
  7922. name: "Normal",
  7923. height: math.unit(5 + 6 / 12, "feet"),
  7924. default: true
  7925. }
  7926. ]
  7927. ))
  7928. characterMakers.push(() => makeCharacter(
  7929. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7930. {
  7931. front: {
  7932. height: math.unit(6, "feet"),
  7933. weight: math.unit(180, "lbs"),
  7934. name: "Front",
  7935. image: {
  7936. source: "./media/characters/akane-sato/front.svg",
  7937. extra: 1219 / 1140
  7938. }
  7939. },
  7940. back: {
  7941. height: math.unit(6, "feet"),
  7942. weight: math.unit(180, "lbs"),
  7943. name: "Back",
  7944. image: {
  7945. source: "./media/characters/akane-sato/back.svg",
  7946. extra: 1219 / 1170
  7947. }
  7948. },
  7949. },
  7950. [
  7951. {
  7952. name: "Normal",
  7953. height: math.unit(2.5, "meters")
  7954. },
  7955. {
  7956. name: "Macro",
  7957. height: math.unit(250, "meters"),
  7958. default: true
  7959. },
  7960. {
  7961. name: "Megamacro",
  7962. height: math.unit(25, "km")
  7963. },
  7964. ]
  7965. ))
  7966. characterMakers.push(() => makeCharacter(
  7967. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7968. {
  7969. front: {
  7970. height: math.unit(6, "feet"),
  7971. weight: math.unit(65, "kg"),
  7972. name: "Front",
  7973. image: {
  7974. source: "./media/characters/rook/front.svg",
  7975. extra: 960 / 950
  7976. }
  7977. }
  7978. },
  7979. [
  7980. {
  7981. name: "Normal",
  7982. height: math.unit(8.8, "feet")
  7983. },
  7984. {
  7985. name: "Macro",
  7986. height: math.unit(88, "feet"),
  7987. default: true
  7988. },
  7989. {
  7990. name: "Megamacro",
  7991. height: math.unit(8, "miles")
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7997. {
  7998. front: {
  7999. height: math.unit(12 + 2 / 12, "feet"),
  8000. weight: math.unit(808, "lbs"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/prodigy/front.svg"
  8004. }
  8005. }
  8006. },
  8007. [
  8008. {
  8009. name: "Normal",
  8010. height: math.unit(12 + 2 / 12, "feet"),
  8011. default: true
  8012. },
  8013. {
  8014. name: "Macro",
  8015. height: math.unit(143, "feet")
  8016. },
  8017. {
  8018. name: "Macro+",
  8019. height: math.unit(400, "feet")
  8020. },
  8021. ]
  8022. ))
  8023. characterMakers.push(() => makeCharacter(
  8024. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8025. {
  8026. front: {
  8027. height: math.unit(6, "feet"),
  8028. weight: math.unit(225, "lbs"),
  8029. name: "Front",
  8030. image: {
  8031. source: "./media/characters/daniel/front.svg"
  8032. }
  8033. },
  8034. leaning: {
  8035. height: math.unit(6, "feet"),
  8036. weight: math.unit(225, "lbs"),
  8037. name: "Leaning",
  8038. image: {
  8039. source: "./media/characters/daniel/leaning.svg"
  8040. }
  8041. },
  8042. },
  8043. [
  8044. {
  8045. name: "Macro",
  8046. height: math.unit(1000, "feet"),
  8047. default: true
  8048. },
  8049. ]
  8050. ))
  8051. characterMakers.push(() => makeCharacter(
  8052. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8053. {
  8054. front: {
  8055. height: math.unit(6, "feet"),
  8056. weight: math.unit(88, "lbs"),
  8057. name: "Front",
  8058. image: {
  8059. source: "./media/characters/chiros/front.svg",
  8060. extra: 306 / 226
  8061. }
  8062. },
  8063. side: {
  8064. height: math.unit(6, "feet"),
  8065. weight: math.unit(88, "lbs"),
  8066. name: "Side",
  8067. image: {
  8068. source: "./media/characters/chiros/side.svg",
  8069. extra: 306 / 226
  8070. }
  8071. },
  8072. },
  8073. [
  8074. {
  8075. name: "Normal",
  8076. height: math.unit(6, "cm"),
  8077. default: true
  8078. },
  8079. ]
  8080. ))
  8081. characterMakers.push(() => makeCharacter(
  8082. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8083. {
  8084. front: {
  8085. height: math.unit(6, "feet"),
  8086. weight: math.unit(100, "lbs"),
  8087. name: "Front",
  8088. image: {
  8089. source: "./media/characters/selka/front.svg",
  8090. extra: 947 / 887
  8091. }
  8092. }
  8093. },
  8094. [
  8095. {
  8096. name: "Normal",
  8097. height: math.unit(5, "cm"),
  8098. default: true
  8099. },
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8104. {
  8105. front: {
  8106. height: math.unit(8 + 3 / 12, "feet"),
  8107. weight: math.unit(424, "lbs"),
  8108. name: "Front",
  8109. image: {
  8110. source: "./media/characters/verin/front.svg",
  8111. extra: 1845 / 1550
  8112. }
  8113. },
  8114. frontArmored: {
  8115. height: math.unit(8 + 3 / 12, "feet"),
  8116. weight: math.unit(424, "lbs"),
  8117. name: "Front (Armored)",
  8118. image: {
  8119. source: "./media/characters/verin/front-armor.svg",
  8120. extra: 1845 / 1550,
  8121. bottom: 0.01
  8122. }
  8123. },
  8124. back: {
  8125. height: math.unit(8 + 3 / 12, "feet"),
  8126. weight: math.unit(424, "lbs"),
  8127. name: "Back",
  8128. image: {
  8129. source: "./media/characters/verin/back.svg",
  8130. bottom: 0.1,
  8131. extra: 1
  8132. }
  8133. },
  8134. foot: {
  8135. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8136. name: "Foot",
  8137. image: {
  8138. source: "./media/characters/verin/foot.svg"
  8139. }
  8140. },
  8141. },
  8142. [
  8143. {
  8144. name: "Normal",
  8145. height: math.unit(8 + 3 / 12, "feet")
  8146. },
  8147. {
  8148. name: "Minimacro",
  8149. height: math.unit(21, "feet"),
  8150. default: true
  8151. },
  8152. {
  8153. name: "Macro",
  8154. height: math.unit(626, "feet")
  8155. },
  8156. ]
  8157. ))
  8158. characterMakers.push(() => makeCharacter(
  8159. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8160. {
  8161. front: {
  8162. height: math.unit(2.718, "meters"),
  8163. weight: math.unit(150, "lbs"),
  8164. name: "Front",
  8165. image: {
  8166. source: "./media/characters/sovrim-terraquian/front.svg",
  8167. extra: 1752/1689,
  8168. bottom: 36/1788
  8169. }
  8170. },
  8171. back: {
  8172. height: math.unit(2.718, "meters"),
  8173. weight: math.unit(150, "lbs"),
  8174. name: "Back",
  8175. image: {
  8176. source: "./media/characters/sovrim-terraquian/back.svg",
  8177. extra: 1698/1657,
  8178. bottom: 58/1756
  8179. }
  8180. },
  8181. tongue: {
  8182. height: math.unit(2.865, "feet"),
  8183. name: "Tongue",
  8184. image: {
  8185. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8186. }
  8187. },
  8188. hand: {
  8189. height: math.unit(1.61, "feet"),
  8190. name: "Hand",
  8191. image: {
  8192. source: "./media/characters/sovrim-terraquian/hand.svg"
  8193. }
  8194. },
  8195. foot: {
  8196. height: math.unit(1.05, "feet"),
  8197. name: "Foot",
  8198. image: {
  8199. source: "./media/characters/sovrim-terraquian/foot.svg"
  8200. }
  8201. },
  8202. footAlt: {
  8203. height: math.unit(0.88, "feet"),
  8204. name: "Foot (Alt)",
  8205. image: {
  8206. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8207. }
  8208. },
  8209. },
  8210. [
  8211. {
  8212. name: "Micro",
  8213. height: math.unit(2, "inches")
  8214. },
  8215. {
  8216. name: "Small",
  8217. height: math.unit(1, "meter")
  8218. },
  8219. {
  8220. name: "Normal",
  8221. height: math.unit(Math.E, "meters"),
  8222. default: true
  8223. },
  8224. {
  8225. name: "Macro",
  8226. height: math.unit(20, "meters")
  8227. },
  8228. {
  8229. name: "Macro+",
  8230. height: math.unit(400, "meters")
  8231. },
  8232. ]
  8233. ))
  8234. characterMakers.push(() => makeCharacter(
  8235. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8236. {
  8237. front: {
  8238. height: math.unit(7, "feet"),
  8239. weight: math.unit(489, "lbs"),
  8240. name: "Front",
  8241. image: {
  8242. source: "./media/characters/reece-silvermane/front.svg",
  8243. bottom: 0.02,
  8244. extra: 1
  8245. }
  8246. },
  8247. },
  8248. [
  8249. {
  8250. name: "Macro",
  8251. height: math.unit(1.5, "miles"),
  8252. default: true
  8253. },
  8254. ]
  8255. ))
  8256. characterMakers.push(() => makeCharacter(
  8257. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8258. {
  8259. front: {
  8260. height: math.unit(6, "feet"),
  8261. weight: math.unit(78, "kg"),
  8262. name: "Front",
  8263. image: {
  8264. source: "./media/characters/kane/front.svg",
  8265. extra: 978 / 899
  8266. }
  8267. },
  8268. },
  8269. [
  8270. {
  8271. name: "Normal",
  8272. height: math.unit(2.1, "m"),
  8273. },
  8274. {
  8275. name: "Macro",
  8276. height: math.unit(1, "km"),
  8277. default: true
  8278. },
  8279. ]
  8280. ))
  8281. characterMakers.push(() => makeCharacter(
  8282. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8283. {
  8284. front: {
  8285. height: math.unit(6, "feet"),
  8286. weight: math.unit(200, "kg"),
  8287. name: "Front",
  8288. image: {
  8289. source: "./media/characters/tegon/front.svg",
  8290. bottom: 0.01,
  8291. extra: 1
  8292. }
  8293. },
  8294. },
  8295. [
  8296. {
  8297. name: "Micro",
  8298. height: math.unit(1, "inch")
  8299. },
  8300. {
  8301. name: "Normal",
  8302. height: math.unit(6 + 3 / 12, "feet"),
  8303. default: true
  8304. },
  8305. {
  8306. name: "Macro",
  8307. height: math.unit(300, "feet")
  8308. },
  8309. {
  8310. name: "Megamacro",
  8311. height: math.unit(69, "miles")
  8312. },
  8313. ]
  8314. ))
  8315. characterMakers.push(() => makeCharacter(
  8316. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8317. {
  8318. side: {
  8319. height: math.unit(6, "feet"),
  8320. weight: math.unit(2304, "lbs"),
  8321. name: "Side",
  8322. image: {
  8323. source: "./media/characters/arcturax/side.svg",
  8324. extra: 790 / 376,
  8325. bottom: 0.01
  8326. }
  8327. },
  8328. },
  8329. [
  8330. {
  8331. name: "Micro",
  8332. height: math.unit(2, "inch")
  8333. },
  8334. {
  8335. name: "Normal",
  8336. height: math.unit(6, "feet")
  8337. },
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(39, "feet"),
  8341. default: true
  8342. },
  8343. {
  8344. name: "Megamacro",
  8345. height: math.unit(7, "miles")
  8346. },
  8347. ]
  8348. ))
  8349. characterMakers.push(() => makeCharacter(
  8350. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8351. {
  8352. front: {
  8353. height: math.unit(6, "feet"),
  8354. weight: math.unit(50, "lbs"),
  8355. name: "Front",
  8356. image: {
  8357. source: "./media/characters/sentri/front.svg",
  8358. extra: 1750 / 1570,
  8359. bottom: 0.025
  8360. }
  8361. },
  8362. frontAlt: {
  8363. height: math.unit(6, "feet"),
  8364. weight: math.unit(50, "lbs"),
  8365. name: "Front (Alt)",
  8366. image: {
  8367. source: "./media/characters/sentri/front-alt.svg",
  8368. extra: 1750 / 1570,
  8369. bottom: 0.025
  8370. }
  8371. },
  8372. },
  8373. [
  8374. {
  8375. name: "Normal",
  8376. height: math.unit(15, "feet"),
  8377. default: true
  8378. },
  8379. {
  8380. name: "Macro",
  8381. height: math.unit(2500, "feet")
  8382. }
  8383. ]
  8384. ))
  8385. characterMakers.push(() => makeCharacter(
  8386. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8387. {
  8388. front: {
  8389. height: math.unit(5 + 8 / 12, "feet"),
  8390. weight: math.unit(130, "lbs"),
  8391. name: "Front",
  8392. image: {
  8393. source: "./media/characters/corvin/front.svg",
  8394. extra: 1803 / 1629
  8395. }
  8396. },
  8397. frontShirt: {
  8398. height: math.unit(5 + 8 / 12, "feet"),
  8399. weight: math.unit(130, "lbs"),
  8400. name: "Front (Shirt)",
  8401. image: {
  8402. source: "./media/characters/corvin/front-shirt.svg",
  8403. extra: 1803 / 1629
  8404. }
  8405. },
  8406. frontPoncho: {
  8407. height: math.unit(5 + 8 / 12, "feet"),
  8408. weight: math.unit(130, "lbs"),
  8409. name: "Front (Poncho)",
  8410. image: {
  8411. source: "./media/characters/corvin/front-poncho.svg",
  8412. extra: 1803 / 1629
  8413. }
  8414. },
  8415. side: {
  8416. height: math.unit(5 + 8 / 12, "feet"),
  8417. weight: math.unit(130, "lbs"),
  8418. name: "Side",
  8419. image: {
  8420. source: "./media/characters/corvin/side.svg",
  8421. extra: 1012 / 945
  8422. }
  8423. },
  8424. back: {
  8425. height: math.unit(5 + 8 / 12, "feet"),
  8426. weight: math.unit(130, "lbs"),
  8427. name: "Back",
  8428. image: {
  8429. source: "./media/characters/corvin/back.svg",
  8430. extra: 1803 / 1629
  8431. }
  8432. },
  8433. },
  8434. [
  8435. {
  8436. name: "Micro",
  8437. height: math.unit(3, "inches")
  8438. },
  8439. {
  8440. name: "Normal",
  8441. height: math.unit(5 + 8 / 12, "feet")
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(300, "feet"),
  8446. default: true
  8447. },
  8448. {
  8449. name: "Megamacro",
  8450. height: math.unit(500, "miles")
  8451. }
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8456. {
  8457. front: {
  8458. height: math.unit(6, "feet"),
  8459. weight: math.unit(135, "lbs"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/q/front.svg",
  8463. extra: 854 / 752,
  8464. bottom: 0.005
  8465. }
  8466. },
  8467. back: {
  8468. height: math.unit(6, "feet"),
  8469. weight: math.unit(130, "lbs"),
  8470. name: "Back",
  8471. image: {
  8472. source: "./media/characters/q/back.svg",
  8473. extra: 854 / 752
  8474. }
  8475. },
  8476. },
  8477. [
  8478. {
  8479. name: "Macro",
  8480. height: math.unit(90, "feet"),
  8481. default: true
  8482. },
  8483. {
  8484. name: "Extra Macro",
  8485. height: math.unit(300, "feet"),
  8486. },
  8487. {
  8488. name: "BIG WALF",
  8489. height: math.unit(750, "feet"),
  8490. },
  8491. ]
  8492. ))
  8493. characterMakers.push(() => makeCharacter(
  8494. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8495. {
  8496. front: {
  8497. height: math.unit(6, "feet"),
  8498. weight: math.unit(150, "lbs"),
  8499. name: "Front",
  8500. image: {
  8501. source: "./media/characters/carley/front.svg",
  8502. extra: 3927 / 3540,
  8503. bottom: 29.2 / 735
  8504. }
  8505. }
  8506. },
  8507. [
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(6 + 3 / 12, "feet")
  8511. },
  8512. {
  8513. name: "Macro",
  8514. height: math.unit(185, "feet"),
  8515. default: true
  8516. },
  8517. {
  8518. name: "Megamacro",
  8519. height: math.unit(8, "miles"),
  8520. },
  8521. ]
  8522. ))
  8523. characterMakers.push(() => makeCharacter(
  8524. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8525. {
  8526. front: {
  8527. height: math.unit(3, "feet"),
  8528. weight: math.unit(28, "lbs"),
  8529. name: "Front",
  8530. image: {
  8531. source: "./media/characters/citrine/front.svg"
  8532. }
  8533. }
  8534. },
  8535. [
  8536. {
  8537. name: "Normal",
  8538. height: math.unit(3, "feet"),
  8539. default: true
  8540. }
  8541. ]
  8542. ))
  8543. characterMakers.push(() => makeCharacter(
  8544. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8545. {
  8546. front: {
  8547. height: math.unit(14, "feet"),
  8548. weight: math.unit(1450, "kg"),
  8549. capacity: math.unit(15, "people"),
  8550. name: "Front",
  8551. image: {
  8552. source: "./media/characters/aura-starwind/front.svg",
  8553. extra: 1440/1327,
  8554. bottom: 11/1451
  8555. }
  8556. },
  8557. side: {
  8558. height: math.unit(14, "feet"),
  8559. weight: math.unit(1450, "kg"),
  8560. capacity: math.unit(15, "people"),
  8561. name: "Side",
  8562. image: {
  8563. source: "./media/characters/aura-starwind/side.svg",
  8564. extra: 1654 / 1497
  8565. }
  8566. },
  8567. taur: {
  8568. height: math.unit(18, "feet"),
  8569. weight: math.unit(5500, "kg"),
  8570. capacity: math.unit(50, "people"),
  8571. name: "Taur",
  8572. image: {
  8573. source: "./media/characters/aura-starwind/taur.svg",
  8574. extra: 1760 / 1650
  8575. }
  8576. },
  8577. feral: {
  8578. height: math.unit(46, "feet"),
  8579. weight: math.unit(25000, "kg"),
  8580. capacity: math.unit(120, "people"),
  8581. name: "Feral",
  8582. image: {
  8583. source: "./media/characters/aura-starwind/feral.svg"
  8584. }
  8585. },
  8586. },
  8587. [
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(14, "feet"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(50, "meters")
  8596. },
  8597. {
  8598. name: "Megamacro",
  8599. height: math.unit(5000, "meters")
  8600. },
  8601. {
  8602. name: "Gigamacro",
  8603. height: math.unit(100000, "kilometers")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8609. {
  8610. front: {
  8611. height: math.unit(2 + 7 / 12, "feet"),
  8612. weight: math.unit(32, "lbs"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/rivet/front.svg",
  8616. extra: 1716 / 1658,
  8617. bottom: 0.03
  8618. }
  8619. },
  8620. foot: {
  8621. height: math.unit(0.551, "feet"),
  8622. name: "Rivet's Foot",
  8623. image: {
  8624. source: "./media/characters/rivet/foot.svg"
  8625. },
  8626. rename: true
  8627. }
  8628. },
  8629. [
  8630. {
  8631. name: "Micro",
  8632. height: math.unit(1.5, "inches"),
  8633. },
  8634. {
  8635. name: "Normal",
  8636. height: math.unit(2 + 7 / 12, "feet"),
  8637. default: true
  8638. },
  8639. {
  8640. name: "Macro",
  8641. height: math.unit(85, "feet")
  8642. },
  8643. {
  8644. name: "Megamacro",
  8645. height: math.unit(2.2, "km")
  8646. }
  8647. ]
  8648. ))
  8649. characterMakers.push(() => makeCharacter(
  8650. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8651. {
  8652. front: {
  8653. height: math.unit(5 + 9 / 12, "feet"),
  8654. weight: math.unit(150, "lbs"),
  8655. name: "Front",
  8656. image: {
  8657. source: "./media/characters/coffee/front.svg",
  8658. extra: 3666 / 3032,
  8659. bottom: 0.04
  8660. }
  8661. },
  8662. foot: {
  8663. height: math.unit(1.29, "feet"),
  8664. name: "Foot",
  8665. image: {
  8666. source: "./media/characters/coffee/foot.svg"
  8667. }
  8668. },
  8669. },
  8670. [
  8671. {
  8672. name: "Micro",
  8673. height: math.unit(2, "inches"),
  8674. },
  8675. {
  8676. name: "Normal",
  8677. height: math.unit(5 + 9 / 12, "feet"),
  8678. default: true
  8679. },
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(800, "feet")
  8683. },
  8684. {
  8685. name: "Megamacro",
  8686. height: math.unit(25, "miles")
  8687. }
  8688. ]
  8689. ))
  8690. characterMakers.push(() => makeCharacter(
  8691. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8692. {
  8693. front: {
  8694. height: math.unit(6, "feet"),
  8695. weight: math.unit(200, "lbs"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/chari-gal/front.svg",
  8699. extra: 1568 / 1385,
  8700. bottom: 0.047
  8701. }
  8702. },
  8703. gigantamax: {
  8704. height: math.unit(6 * 16, "feet"),
  8705. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8706. name: "Gigantamax",
  8707. image: {
  8708. source: "./media/characters/chari-gal/gigantamax.svg",
  8709. extra: 1124 / 888,
  8710. bottom: 0.03
  8711. }
  8712. },
  8713. },
  8714. [
  8715. {
  8716. name: "Normal",
  8717. height: math.unit(5 + 7 / 12, "feet")
  8718. },
  8719. {
  8720. name: "Macro",
  8721. height: math.unit(200, "feet"),
  8722. default: true
  8723. }
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(150, "lbs"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/nova/front.svg",
  8735. extra: 5000 / 4722,
  8736. bottom: 0.02
  8737. }
  8738. }
  8739. },
  8740. [
  8741. {
  8742. name: "Micro-",
  8743. height: math.unit(0.8, "inches")
  8744. },
  8745. {
  8746. name: "Micro",
  8747. height: math.unit(2, "inches"),
  8748. default: true
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8754. {
  8755. front: {
  8756. height: math.unit(3 + 1 / 12, "feet"),
  8757. weight: math.unit(21.7, "lbs"),
  8758. name: "Front",
  8759. image: {
  8760. source: "./media/characters/argent/front.svg",
  8761. extra: 1471 / 1331,
  8762. bottom: 100.8 / 1575.5
  8763. }
  8764. }
  8765. },
  8766. [
  8767. {
  8768. name: "Micro",
  8769. height: math.unit(2, "inches")
  8770. },
  8771. {
  8772. name: "Normal",
  8773. height: math.unit(3 + 1 / 12, "feet"),
  8774. default: true
  8775. },
  8776. {
  8777. name: "Macro",
  8778. height: math.unit(120, "feet")
  8779. },
  8780. ]
  8781. ))
  8782. characterMakers.push(() => makeCharacter(
  8783. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8784. {
  8785. lamp: {
  8786. height: math.unit(7 * 1559 / 989, "feet"),
  8787. name: "Magic Lamp",
  8788. image: {
  8789. source: "./media/characters/mira-al-cul/lamp.svg",
  8790. extra: 1617 / 1559
  8791. }
  8792. },
  8793. front: {
  8794. height: math.unit(7, "feet"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/mira-al-cul/front.svg",
  8798. extra: 1044 / 990
  8799. }
  8800. },
  8801. },
  8802. [
  8803. {
  8804. name: "Heavily Restricted",
  8805. height: math.unit(7 * 1559 / 989, "feet")
  8806. },
  8807. {
  8808. name: "Freshly Freed",
  8809. height: math.unit(50 * 1559 / 989, "feet")
  8810. },
  8811. {
  8812. name: "World Encompassing",
  8813. height: math.unit(10000 * 1559 / 989, "miles")
  8814. },
  8815. {
  8816. name: "Galactic",
  8817. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8818. },
  8819. {
  8820. name: "Palmed Universe",
  8821. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8822. default: true
  8823. },
  8824. {
  8825. name: "Multiversal Matriarch",
  8826. height: math.unit(8.87e10, "yottameters")
  8827. },
  8828. {
  8829. name: "Void Mother",
  8830. height: math.unit(3.14e110, "yottaparsecs")
  8831. },
  8832. {
  8833. name: "Toying with Transcendence",
  8834. height: math.unit(1e307, "meters")
  8835. },
  8836. ]
  8837. ))
  8838. characterMakers.push(() => makeCharacter(
  8839. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8840. {
  8841. front: {
  8842. height: math.unit(17 + 1 / 12, "feet"),
  8843. weight: math.unit(476.2 * 5, "lbs"),
  8844. name: "Front",
  8845. image: {
  8846. source: "./media/characters/kuro-shi-uchū/front.svg",
  8847. extra: 2329 / 1835,
  8848. bottom: 0.02
  8849. }
  8850. },
  8851. },
  8852. [
  8853. {
  8854. name: "Micro",
  8855. height: math.unit(2, "inches")
  8856. },
  8857. {
  8858. name: "Normal",
  8859. height: math.unit(12, "meters")
  8860. },
  8861. {
  8862. name: "Planetary",
  8863. height: math.unit(0.00929, "AU"),
  8864. default: true
  8865. },
  8866. {
  8867. name: "Universal",
  8868. height: math.unit(20, "gigaparsecs")
  8869. },
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(5 + 2 / 12, "feet"),
  8877. weight: math.unit(120, "lbs"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/katherine/front.svg",
  8881. extra: 2075 / 1969
  8882. }
  8883. },
  8884. dress: {
  8885. height: math.unit(5 + 2 / 12, "feet"),
  8886. weight: math.unit(120, "lbs"),
  8887. name: "Dress",
  8888. image: {
  8889. source: "./media/characters/katherine/dress.svg",
  8890. extra: 2258 / 2064
  8891. }
  8892. },
  8893. },
  8894. [
  8895. {
  8896. name: "Micro",
  8897. height: math.unit(1, "inches"),
  8898. default: true
  8899. },
  8900. {
  8901. name: "Normal",
  8902. height: math.unit(5 + 2 / 12, "feet")
  8903. },
  8904. {
  8905. name: "Macro",
  8906. height: math.unit(100, "meters")
  8907. },
  8908. {
  8909. name: "Megamacro",
  8910. height: math.unit(80, "miles")
  8911. },
  8912. ]
  8913. ))
  8914. characterMakers.push(() => makeCharacter(
  8915. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8916. {
  8917. front: {
  8918. height: math.unit(7 + 8 / 12, "feet"),
  8919. weight: math.unit(250, "lbs"),
  8920. name: "Front",
  8921. image: {
  8922. source: "./media/characters/yevis/front.svg",
  8923. extra: 1938 / 1755
  8924. }
  8925. }
  8926. },
  8927. [
  8928. {
  8929. name: "Mortal",
  8930. height: math.unit(7 + 8 / 12, "feet")
  8931. },
  8932. {
  8933. name: "Battle",
  8934. height: math.unit(25 + 11 / 12, "feet")
  8935. },
  8936. {
  8937. name: "Wrath",
  8938. height: math.unit(1654 + 11 / 12, "feet")
  8939. },
  8940. {
  8941. name: "Planet Destroyer",
  8942. height: math.unit(12000, "miles")
  8943. },
  8944. {
  8945. name: "Galaxy Conqueror",
  8946. height: math.unit(1.45, "zettameters"),
  8947. default: true
  8948. },
  8949. {
  8950. name: "Universal War",
  8951. height: math.unit(184, "gigaparsecs")
  8952. },
  8953. {
  8954. name: "Eternity War",
  8955. height: math.unit(1.98e55, "yottaparsecs")
  8956. },
  8957. ]
  8958. ))
  8959. characterMakers.push(() => makeCharacter(
  8960. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8961. {
  8962. front: {
  8963. height: math.unit(5 + 8 / 12, "feet"),
  8964. weight: math.unit(63, "kg"),
  8965. name: "Front",
  8966. image: {
  8967. source: "./media/characters/xavier/front.svg",
  8968. extra: 944 / 883
  8969. }
  8970. },
  8971. frontStretch: {
  8972. height: math.unit(5 + 8 / 12, "feet"),
  8973. weight: math.unit(63, "kg"),
  8974. name: "Stretching",
  8975. image: {
  8976. source: "./media/characters/xavier/front-stretch.svg",
  8977. extra: 962 / 820
  8978. }
  8979. },
  8980. },
  8981. [
  8982. {
  8983. name: "Normal",
  8984. height: math.unit(5 + 8 / 12, "feet")
  8985. },
  8986. {
  8987. name: "Macro",
  8988. height: math.unit(100, "meters"),
  8989. default: true
  8990. },
  8991. {
  8992. name: "McLargeHuge",
  8993. height: math.unit(10, "miles")
  8994. },
  8995. ]
  8996. ))
  8997. characterMakers.push(() => makeCharacter(
  8998. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8999. {
  9000. front: {
  9001. height: math.unit(5 + 5 / 12, "feet"),
  9002. weight: math.unit(150, "lb"),
  9003. name: "Front",
  9004. image: {
  9005. source: "./media/characters/joshii/front.svg",
  9006. extra: 765 / 653,
  9007. bottom: 51 / 816
  9008. }
  9009. },
  9010. foot: {
  9011. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9012. name: "Foot",
  9013. image: {
  9014. source: "./media/characters/joshii/foot.svg"
  9015. }
  9016. },
  9017. },
  9018. [
  9019. {
  9020. name: "Micro",
  9021. height: math.unit(2, "inches"),
  9022. default: true
  9023. },
  9024. {
  9025. name: "Normal",
  9026. height: math.unit(5 + 5 / 12, "feet")
  9027. },
  9028. {
  9029. name: "Macro",
  9030. height: math.unit(785, "feet")
  9031. },
  9032. {
  9033. name: "Megamacro",
  9034. height: math.unit(24.5, "miles")
  9035. },
  9036. ]
  9037. ))
  9038. characterMakers.push(() => makeCharacter(
  9039. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9040. {
  9041. front: {
  9042. height: math.unit(6, "feet"),
  9043. weight: math.unit(150, "lb"),
  9044. name: "Front",
  9045. image: {
  9046. source: "./media/characters/goddess-elizabeth/front.svg",
  9047. extra: 1800 / 1525,
  9048. bottom: 0.005
  9049. }
  9050. },
  9051. foot: {
  9052. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9053. name: "Foot",
  9054. image: {
  9055. source: "./media/characters/goddess-elizabeth/foot.svg"
  9056. }
  9057. },
  9058. mouth: {
  9059. height: math.unit(6, "feet"),
  9060. name: "Mouth",
  9061. image: {
  9062. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9063. }
  9064. },
  9065. },
  9066. [
  9067. {
  9068. name: "Micro",
  9069. height: math.unit(12, "feet")
  9070. },
  9071. {
  9072. name: "Normal",
  9073. height: math.unit(80, "miles"),
  9074. default: true
  9075. },
  9076. {
  9077. name: "Macro",
  9078. height: math.unit(15000, "parsecs")
  9079. },
  9080. ]
  9081. ))
  9082. characterMakers.push(() => makeCharacter(
  9083. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9084. {
  9085. front: {
  9086. height: math.unit(5 + 9 / 12, "feet"),
  9087. weight: math.unit(144, "lb"),
  9088. name: "Front",
  9089. image: {
  9090. source: "./media/characters/kara/front.svg"
  9091. }
  9092. },
  9093. feet: {
  9094. height: math.unit(6 / 6.765, "feet"),
  9095. name: "Kara's Feet",
  9096. rename: true,
  9097. image: {
  9098. source: "./media/characters/kara/feet.svg"
  9099. }
  9100. },
  9101. },
  9102. [
  9103. {
  9104. name: "Normal",
  9105. height: math.unit(5 + 9 / 12, "feet")
  9106. },
  9107. {
  9108. name: "Macro",
  9109. height: math.unit(174, "feet"),
  9110. default: true
  9111. },
  9112. ]
  9113. ))
  9114. characterMakers.push(() => makeCharacter(
  9115. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9116. {
  9117. front: {
  9118. height: math.unit(18, "feet"),
  9119. weight: math.unit(4050, "lb"),
  9120. name: "Front",
  9121. image: {
  9122. source: "./media/characters/tyrone/front.svg",
  9123. extra: 2405 / 2270,
  9124. bottom: 182 / 2587
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Normal",
  9131. height: math.unit(18, "feet"),
  9132. default: true
  9133. },
  9134. {
  9135. name: "Macro",
  9136. height: math.unit(300, "feet")
  9137. },
  9138. {
  9139. name: "Megamacro",
  9140. height: math.unit(15, "km")
  9141. },
  9142. {
  9143. name: "Gigamacro",
  9144. height: math.unit(500, "km")
  9145. },
  9146. {
  9147. name: "Teramacro",
  9148. height: math.unit(0.5, "gigameters")
  9149. },
  9150. {
  9151. name: "Omnimacro",
  9152. height: math.unit(1e252, "yottauniverse")
  9153. },
  9154. ]
  9155. ))
  9156. characterMakers.push(() => makeCharacter(
  9157. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9158. {
  9159. front: {
  9160. height: math.unit(7 + 8 / 12, "feet"),
  9161. weight: math.unit(120, "lb"),
  9162. name: "Front",
  9163. image: {
  9164. source: "./media/characters/danny/front.svg",
  9165. extra: 1490 / 1350
  9166. }
  9167. },
  9168. back: {
  9169. height: math.unit(7 + 8 / 12, "feet"),
  9170. weight: math.unit(120, "lb"),
  9171. name: "Back",
  9172. image: {
  9173. source: "./media/characters/danny/back.svg",
  9174. extra: 1490 / 1350
  9175. }
  9176. },
  9177. },
  9178. [
  9179. {
  9180. name: "Normal",
  9181. height: math.unit(7 + 8 / 12, "feet"),
  9182. default: true
  9183. },
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9188. {
  9189. front: {
  9190. height: math.unit(3.5, "inches"),
  9191. weight: math.unit(19, "grams"),
  9192. name: "Front",
  9193. image: {
  9194. source: "./media/characters/mallow/front.svg",
  9195. extra: 471 / 431
  9196. }
  9197. },
  9198. back: {
  9199. height: math.unit(3.5, "inches"),
  9200. weight: math.unit(19, "grams"),
  9201. name: "Back",
  9202. image: {
  9203. source: "./media/characters/mallow/back.svg",
  9204. extra: 471 / 431
  9205. }
  9206. },
  9207. },
  9208. [
  9209. {
  9210. name: "Normal",
  9211. height: math.unit(3.5, "inches"),
  9212. default: true
  9213. },
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9218. {
  9219. front: {
  9220. height: math.unit(9, "feet"),
  9221. weight: math.unit(230, "kg"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/starry-aqua/front.svg"
  9225. }
  9226. },
  9227. back: {
  9228. height: math.unit(9, "feet"),
  9229. weight: math.unit(230, "kg"),
  9230. name: "Back",
  9231. image: {
  9232. source: "./media/characters/starry-aqua/back.svg"
  9233. }
  9234. },
  9235. hand: {
  9236. height: math.unit(9 * 0.1168, "feet"),
  9237. name: "Hand",
  9238. image: {
  9239. source: "./media/characters/starry-aqua/hand.svg"
  9240. }
  9241. },
  9242. foot: {
  9243. height: math.unit(9 * 0.18, "feet"),
  9244. name: "Foot",
  9245. image: {
  9246. source: "./media/characters/starry-aqua/foot.svg"
  9247. }
  9248. }
  9249. },
  9250. [
  9251. {
  9252. name: "Micro",
  9253. height: math.unit(3, "inches")
  9254. },
  9255. {
  9256. name: "Normal",
  9257. height: math.unit(9, "feet")
  9258. },
  9259. {
  9260. name: "Macro",
  9261. height: math.unit(300, "feet"),
  9262. default: true
  9263. },
  9264. {
  9265. name: "Megamacro",
  9266. height: math.unit(3200, "feet")
  9267. }
  9268. ]
  9269. ))
  9270. characterMakers.push(() => makeCharacter(
  9271. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9272. {
  9273. front: {
  9274. height: math.unit(15, "feet"),
  9275. weight: math.unit(5026, "lb"),
  9276. name: "Front",
  9277. image: {
  9278. source: "./media/characters/luka-towers/front.svg",
  9279. extra: 1269/1133,
  9280. bottom: 51/1320
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Normal",
  9287. height: math.unit(15, "feet"),
  9288. default: true
  9289. },
  9290. {
  9291. name: "Minimacro",
  9292. height: math.unit(25, "feet")
  9293. },
  9294. {
  9295. name: "Macro",
  9296. height: math.unit(320, "feet")
  9297. },
  9298. {
  9299. name: "Megamacro",
  9300. height: math.unit(35000, "feet")
  9301. },
  9302. {
  9303. name: "Gigamacro",
  9304. height: math.unit(4000, "miles")
  9305. },
  9306. {
  9307. name: "Teramacro",
  9308. height: math.unit(15000, "miles")
  9309. },
  9310. ]
  9311. ))
  9312. characterMakers.push(() => makeCharacter(
  9313. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9314. {
  9315. front: {
  9316. height: math.unit(6, "feet"),
  9317. weight: math.unit(150, "lb"),
  9318. name: "Front",
  9319. image: {
  9320. source: "./media/characters/natalie-nightring/front.svg",
  9321. extra: 1,
  9322. bottom: 0.06
  9323. }
  9324. },
  9325. },
  9326. [
  9327. {
  9328. name: "Uh Oh",
  9329. height: math.unit(0.1, "mm")
  9330. },
  9331. {
  9332. name: "Small",
  9333. height: math.unit(3, "inches")
  9334. },
  9335. {
  9336. name: "Human Scale",
  9337. height: math.unit(6, "feet")
  9338. },
  9339. {
  9340. name: "Librarian",
  9341. height: math.unit(50, "feet"),
  9342. default: true
  9343. },
  9344. {
  9345. name: "Immense",
  9346. height: math.unit(200, "miles")
  9347. },
  9348. ]
  9349. ))
  9350. characterMakers.push(() => makeCharacter(
  9351. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9352. {
  9353. front: {
  9354. height: math.unit(6, "feet"),
  9355. weight: math.unit(180, "lbs"),
  9356. name: "Front",
  9357. image: {
  9358. source: "./media/characters/danni-rosie/front.svg",
  9359. extra: 1260 / 1128,
  9360. bottom: 0.022
  9361. }
  9362. },
  9363. },
  9364. [
  9365. {
  9366. name: "Micro",
  9367. height: math.unit(2, "inches"),
  9368. default: true
  9369. },
  9370. ]
  9371. ))
  9372. characterMakers.push(() => makeCharacter(
  9373. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9374. {
  9375. front: {
  9376. height: math.unit(5 + 9 / 12, "feet"),
  9377. weight: math.unit(220, "lb"),
  9378. name: "Front",
  9379. image: {
  9380. source: "./media/characters/samantha-kruse/front.svg",
  9381. extra: (985 / 935),
  9382. bottom: 0.03
  9383. }
  9384. },
  9385. frontUndressed: {
  9386. height: math.unit(5 + 9 / 12, "feet"),
  9387. weight: math.unit(220, "lb"),
  9388. name: "Front (Undressed)",
  9389. image: {
  9390. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9391. extra: (973 / 923),
  9392. bottom: 0.025
  9393. }
  9394. },
  9395. fat: {
  9396. height: math.unit(5 + 9 / 12, "feet"),
  9397. weight: math.unit(900, "lb"),
  9398. name: "Front (Fat)",
  9399. image: {
  9400. source: "./media/characters/samantha-kruse/fat.svg",
  9401. extra: 2688 / 2561
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Normal",
  9408. height: math.unit(5 + 9 / 12, "feet"),
  9409. default: true
  9410. }
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9415. {
  9416. back: {
  9417. height: math.unit(5 + 4 / 12, "feet"),
  9418. weight: math.unit(4963, "lb"),
  9419. name: "Back",
  9420. image: {
  9421. source: "./media/characters/amelia-rosie/back.svg",
  9422. extra: 1113 / 963,
  9423. bottom: 0.01
  9424. }
  9425. },
  9426. },
  9427. [
  9428. {
  9429. name: "Level 0",
  9430. height: math.unit(5 + 4 / 12, "feet")
  9431. },
  9432. {
  9433. name: "Level 1",
  9434. height: math.unit(164597, "feet"),
  9435. default: true
  9436. },
  9437. {
  9438. name: "Level 2",
  9439. height: math.unit(956243, "miles")
  9440. },
  9441. {
  9442. name: "Level 3",
  9443. height: math.unit(29421709423, "miles")
  9444. },
  9445. {
  9446. name: "Level 4",
  9447. height: math.unit(154, "lightyears")
  9448. },
  9449. {
  9450. name: "Level 5",
  9451. height: math.unit(4738272, "lightyears")
  9452. },
  9453. {
  9454. name: "Level 6",
  9455. height: math.unit(145787152896, "lightyears")
  9456. },
  9457. ]
  9458. ))
  9459. characterMakers.push(() => makeCharacter(
  9460. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9461. {
  9462. front: {
  9463. height: math.unit(5 + 11 / 12, "feet"),
  9464. weight: math.unit(65, "kg"),
  9465. name: "Front",
  9466. image: {
  9467. source: "./media/characters/rook-kitara/front.svg",
  9468. extra: 1347 / 1274,
  9469. bottom: 0.005
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Totally Unfair",
  9476. height: math.unit(1.8, "mm")
  9477. },
  9478. {
  9479. name: "Lap Rookie",
  9480. height: math.unit(1.4, "feet")
  9481. },
  9482. {
  9483. name: "Normal",
  9484. height: math.unit(5 + 11 / 12, "feet"),
  9485. default: true
  9486. },
  9487. {
  9488. name: "How Did This Happen",
  9489. height: math.unit(80, "miles")
  9490. }
  9491. ]
  9492. ))
  9493. characterMakers.push(() => makeCharacter(
  9494. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9495. {
  9496. front: {
  9497. height: math.unit(7, "feet"),
  9498. weight: math.unit(300, "lb"),
  9499. name: "Front",
  9500. image: {
  9501. source: "./media/characters/pisces/front.svg",
  9502. extra: 2255 / 2115,
  9503. bottom: 0.03
  9504. }
  9505. },
  9506. back: {
  9507. height: math.unit(7, "feet"),
  9508. weight: math.unit(300, "lb"),
  9509. name: "Back",
  9510. image: {
  9511. source: "./media/characters/pisces/back.svg",
  9512. extra: 2146 / 2055,
  9513. bottom: 0.04
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(7, "feet"),
  9521. default: true
  9522. },
  9523. {
  9524. name: "Swimming Pool",
  9525. height: math.unit(12.2, "meters")
  9526. },
  9527. {
  9528. name: "Olympic Swimming Pool",
  9529. height: math.unit(56.3, "meters")
  9530. },
  9531. {
  9532. name: "Lake Superior",
  9533. height: math.unit(93900, "meters")
  9534. },
  9535. {
  9536. name: "Mediterranean Sea",
  9537. height: math.unit(644457, "meters")
  9538. },
  9539. {
  9540. name: "World's Oceans",
  9541. height: math.unit(4567491, "meters")
  9542. },
  9543. ]
  9544. ))
  9545. characterMakers.push(() => makeCharacter(
  9546. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9547. {
  9548. front: {
  9549. height: math.unit(2.3, "meters"),
  9550. weight: math.unit(120, "kg"),
  9551. name: "Front",
  9552. image: {
  9553. source: "./media/characters/zelas/front.svg"
  9554. }
  9555. },
  9556. side: {
  9557. height: math.unit(2.3, "meters"),
  9558. weight: math.unit(120, "kg"),
  9559. name: "Side",
  9560. image: {
  9561. source: "./media/characters/zelas/side.svg"
  9562. }
  9563. },
  9564. back: {
  9565. height: math.unit(2.3, "meters"),
  9566. weight: math.unit(120, "kg"),
  9567. name: "Back",
  9568. image: {
  9569. source: "./media/characters/zelas/back.svg"
  9570. }
  9571. },
  9572. foot: {
  9573. height: math.unit(1.116, "feet"),
  9574. name: "Foot",
  9575. image: {
  9576. source: "./media/characters/zelas/foot.svg"
  9577. }
  9578. },
  9579. },
  9580. [
  9581. {
  9582. name: "Normal",
  9583. height: math.unit(2.3, "meters")
  9584. },
  9585. {
  9586. name: "Macro",
  9587. height: math.unit(30, "meters"),
  9588. default: true
  9589. },
  9590. ]
  9591. ))
  9592. characterMakers.push(() => makeCharacter(
  9593. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9594. {
  9595. front: {
  9596. height: math.unit(1, "inch"),
  9597. weight: math.unit(0.21, "grams"),
  9598. name: "Front",
  9599. image: {
  9600. source: "./media/characters/talbot/front.svg",
  9601. extra: 594 / 544
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Micro",
  9608. height: math.unit(1, "inch"),
  9609. default: true
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9615. {
  9616. front: {
  9617. height: math.unit(3 + 3 / 12, "feet"),
  9618. weight: math.unit(51.8, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/fliss/front.svg",
  9622. extra: 840 / 640
  9623. }
  9624. },
  9625. },
  9626. [
  9627. {
  9628. name: "Teeny Tiny",
  9629. height: math.unit(1, "mm")
  9630. },
  9631. {
  9632. name: "Small",
  9633. height: math.unit(1, "inch"),
  9634. default: true
  9635. },
  9636. {
  9637. name: "Standard Sylveon",
  9638. height: math.unit(3 + 3 / 12, "feet")
  9639. },
  9640. {
  9641. name: "Large Nuisance",
  9642. height: math.unit(33, "feet")
  9643. },
  9644. {
  9645. name: "City Filler",
  9646. height: math.unit(3000, "feet")
  9647. },
  9648. {
  9649. name: "New Horizon",
  9650. height: math.unit(6000, "miles")
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(5, "cm"),
  9659. weight: math.unit(1.94, "g"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/fleta/front.svg",
  9663. extra: 835 / 803
  9664. }
  9665. },
  9666. back: {
  9667. height: math.unit(5, "cm"),
  9668. weight: math.unit(1.94, "g"),
  9669. name: "Back",
  9670. image: {
  9671. source: "./media/characters/fleta/back.svg",
  9672. extra: 835 / 803
  9673. }
  9674. },
  9675. },
  9676. [
  9677. {
  9678. name: "Micro",
  9679. height: math.unit(5, "cm"),
  9680. default: true
  9681. },
  9682. ]
  9683. ))
  9684. characterMakers.push(() => makeCharacter(
  9685. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9686. {
  9687. front: {
  9688. height: math.unit(6, "feet"),
  9689. weight: math.unit(225, "lb"),
  9690. name: "Front",
  9691. image: {
  9692. source: "./media/characters/dominic/front.svg",
  9693. extra: 1770 / 1620,
  9694. bottom: 0.025
  9695. }
  9696. },
  9697. back: {
  9698. height: math.unit(6, "feet"),
  9699. weight: math.unit(225, "lb"),
  9700. name: "Back",
  9701. image: {
  9702. source: "./media/characters/dominic/back.svg",
  9703. extra: 1745 / 1620,
  9704. bottom: 0.065
  9705. }
  9706. },
  9707. },
  9708. [
  9709. {
  9710. name: "Nano",
  9711. height: math.unit(0.1, "mm")
  9712. },
  9713. {
  9714. name: "Micro-",
  9715. height: math.unit(1, "mm")
  9716. },
  9717. {
  9718. name: "Micro",
  9719. height: math.unit(4, "inches")
  9720. },
  9721. {
  9722. name: "Normal",
  9723. height: math.unit(6 + 4 / 12, "feet"),
  9724. default: true
  9725. },
  9726. {
  9727. name: "Macro",
  9728. height: math.unit(115, "feet")
  9729. },
  9730. {
  9731. name: "Macro+",
  9732. height: math.unit(955, "feet")
  9733. },
  9734. {
  9735. name: "Megamacro",
  9736. height: math.unit(8990, "feet")
  9737. },
  9738. {
  9739. name: "Gigmacro",
  9740. height: math.unit(9310, "miles")
  9741. },
  9742. {
  9743. name: "Teramacro",
  9744. height: math.unit(1567005010, "miles")
  9745. },
  9746. {
  9747. name: "Examacro",
  9748. height: math.unit(1425, "parsecs")
  9749. },
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9754. {
  9755. front: {
  9756. height: math.unit(400, "feet"),
  9757. weight: math.unit(44444444, "lb"),
  9758. name: "Front",
  9759. image: {
  9760. source: "./media/characters/major-colonel/front.svg"
  9761. }
  9762. },
  9763. back: {
  9764. height: math.unit(400, "feet"),
  9765. weight: math.unit(44444444, "lb"),
  9766. name: "Back",
  9767. image: {
  9768. source: "./media/characters/major-colonel/back.svg"
  9769. }
  9770. },
  9771. },
  9772. [
  9773. {
  9774. name: "Macro",
  9775. height: math.unit(400, "feet"),
  9776. default: true
  9777. },
  9778. ]
  9779. ))
  9780. characterMakers.push(() => makeCharacter(
  9781. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9782. {
  9783. catFront: {
  9784. height: math.unit(6, "feet"),
  9785. weight: math.unit(120, "lb"),
  9786. name: "Front (Cat Side)",
  9787. image: {
  9788. source: "./media/characters/axel-lycan/cat-front.svg",
  9789. extra: 430 / 402,
  9790. bottom: 43 / 472.35
  9791. }
  9792. },
  9793. catBack: {
  9794. height: math.unit(6, "feet"),
  9795. weight: math.unit(120, "lb"),
  9796. name: "Back (Cat Side)",
  9797. image: {
  9798. source: "./media/characters/axel-lycan/cat-back.svg",
  9799. extra: 447 / 419,
  9800. bottom: 23.3 / 469
  9801. }
  9802. },
  9803. wolfFront: {
  9804. height: math.unit(6, "feet"),
  9805. weight: math.unit(120, "lb"),
  9806. name: "Front (Wolf Side)",
  9807. image: {
  9808. source: "./media/characters/axel-lycan/wolf-front.svg",
  9809. extra: 485 / 456,
  9810. bottom: 19 / 504
  9811. }
  9812. },
  9813. wolfBack: {
  9814. height: math.unit(6, "feet"),
  9815. weight: math.unit(120, "lb"),
  9816. name: "Back (Wolf Side)",
  9817. image: {
  9818. source: "./media/characters/axel-lycan/wolf-back.svg",
  9819. extra: 475 / 438,
  9820. bottom: 39.2 / 514
  9821. }
  9822. },
  9823. },
  9824. [
  9825. {
  9826. name: "Macro",
  9827. height: math.unit(1, "km"),
  9828. default: true
  9829. },
  9830. ]
  9831. ))
  9832. characterMakers.push(() => makeCharacter(
  9833. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9834. {
  9835. front: {
  9836. height: math.unit(5 + 9 / 12, "feet"),
  9837. weight: math.unit(175, "lb"),
  9838. name: "Front",
  9839. image: {
  9840. source: "./media/characters/vanrel-hyena/front.svg",
  9841. extra: 1086 / 1010,
  9842. bottom: 0.04
  9843. }
  9844. },
  9845. },
  9846. [
  9847. {
  9848. name: "Normal",
  9849. height: math.unit(5 + 9 / 12, "feet"),
  9850. default: true
  9851. },
  9852. ]
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9856. {
  9857. front: {
  9858. height: math.unit(6, "feet"),
  9859. weight: math.unit(103, "lb"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/abbott-absol/front.svg",
  9863. extra: 2010 / 1842
  9864. }
  9865. },
  9866. },
  9867. [
  9868. {
  9869. name: "Megamicro",
  9870. height: math.unit(0.1, "mm")
  9871. },
  9872. {
  9873. name: "Micro",
  9874. height: math.unit(1, "inch")
  9875. },
  9876. {
  9877. name: "Normal",
  9878. height: math.unit(6, "feet"),
  9879. default: true
  9880. },
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9885. {
  9886. front: {
  9887. height: math.unit(6, "feet"),
  9888. weight: math.unit(264, "lb"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/hector/front.svg",
  9892. extra: 2280 / 2130,
  9893. bottom: 0.07
  9894. }
  9895. },
  9896. },
  9897. [
  9898. {
  9899. name: "Normal",
  9900. height: math.unit(12.25, "foot"),
  9901. default: true
  9902. },
  9903. {
  9904. name: "Macro",
  9905. height: math.unit(160, "feet")
  9906. },
  9907. ]
  9908. ))
  9909. characterMakers.push(() => makeCharacter(
  9910. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9911. {
  9912. front: {
  9913. height: math.unit(6, "feet"),
  9914. weight: math.unit(150, "lb"),
  9915. name: "Front",
  9916. image: {
  9917. source: "./media/characters/sal/front.svg",
  9918. extra: 1846 / 1699,
  9919. bottom: 0.04
  9920. }
  9921. },
  9922. },
  9923. [
  9924. {
  9925. name: "Megamacro",
  9926. height: math.unit(10, "miles"),
  9927. default: true
  9928. },
  9929. ]
  9930. ))
  9931. characterMakers.push(() => makeCharacter(
  9932. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9933. {
  9934. front: {
  9935. height: math.unit(3, "meters"),
  9936. weight: math.unit(450, "kg"),
  9937. name: "front",
  9938. image: {
  9939. source: "./media/characters/ranger/front.svg",
  9940. extra: 2401 / 2243,
  9941. bottom: 0.05
  9942. }
  9943. },
  9944. },
  9945. [
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(3, "meters"),
  9949. default: true
  9950. },
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(14, "feet"),
  9958. weight: math.unit(800, "kg"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/theresa/front.svg",
  9962. extra: 3575 / 3346,
  9963. bottom: 0.03
  9964. }
  9965. },
  9966. },
  9967. [
  9968. {
  9969. name: "Normal",
  9970. height: math.unit(14, "feet"),
  9971. default: true
  9972. },
  9973. ]
  9974. ))
  9975. characterMakers.push(() => makeCharacter(
  9976. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9977. {
  9978. front: {
  9979. height: math.unit(6, "feet"),
  9980. weight: math.unit(3, "kg"),
  9981. name: "Front",
  9982. image: {
  9983. source: "./media/characters/ine/front.svg",
  9984. extra: 678 / 539,
  9985. bottom: 0.023
  9986. }
  9987. },
  9988. },
  9989. [
  9990. {
  9991. name: "Normal",
  9992. height: math.unit(2.265, "feet"),
  9993. default: true
  9994. },
  9995. ]
  9996. ))
  9997. characterMakers.push(() => makeCharacter(
  9998. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9999. {
  10000. front: {
  10001. height: math.unit(5, "feet"),
  10002. weight: math.unit(30, "kg"),
  10003. name: "Front",
  10004. image: {
  10005. source: "./media/characters/vial/front.svg",
  10006. extra: 1365 / 1277,
  10007. bottom: 0.04
  10008. }
  10009. },
  10010. },
  10011. [
  10012. {
  10013. name: "Normal",
  10014. height: math.unit(5, "feet"),
  10015. default: true
  10016. },
  10017. ]
  10018. ))
  10019. characterMakers.push(() => makeCharacter(
  10020. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10021. {
  10022. side: {
  10023. height: math.unit(3.4, "meters"),
  10024. weight: math.unit(1000, "lb"),
  10025. name: "Side",
  10026. image: {
  10027. source: "./media/characters/rovoska/side.svg",
  10028. extra: 4403 / 1515
  10029. }
  10030. },
  10031. },
  10032. [
  10033. {
  10034. name: "Normal",
  10035. height: math.unit(3.4, "meters"),
  10036. default: true
  10037. },
  10038. ]
  10039. ))
  10040. characterMakers.push(() => makeCharacter(
  10041. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10042. {
  10043. front: {
  10044. height: math.unit(8, "feet"),
  10045. weight: math.unit(315, "lb"),
  10046. name: "Front",
  10047. image: {
  10048. source: "./media/characters/gunner-rotthbauer/front.svg"
  10049. }
  10050. },
  10051. back: {
  10052. height: math.unit(8, "feet"),
  10053. weight: math.unit(315, "lb"),
  10054. name: "Back",
  10055. image: {
  10056. source: "./media/characters/gunner-rotthbauer/back.svg"
  10057. }
  10058. },
  10059. },
  10060. [
  10061. {
  10062. name: "Micro",
  10063. height: math.unit(3.5, "inches")
  10064. },
  10065. {
  10066. name: "Normal",
  10067. height: math.unit(8, "feet"),
  10068. default: true
  10069. },
  10070. {
  10071. name: "Macro",
  10072. height: math.unit(250, "feet")
  10073. },
  10074. {
  10075. name: "Megamacro",
  10076. height: math.unit(1, "AU")
  10077. },
  10078. ]
  10079. ))
  10080. characterMakers.push(() => makeCharacter(
  10081. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10082. {
  10083. front: {
  10084. height: math.unit(5 + 5 / 12, "feet"),
  10085. weight: math.unit(140, "lb"),
  10086. name: "Front",
  10087. image: {
  10088. source: "./media/characters/allatia/front.svg",
  10089. extra: 1227 / 1180,
  10090. bottom: 0.027
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(5 + 5 / 12, "feet")
  10098. },
  10099. {
  10100. name: "Macro",
  10101. height: math.unit(250, "feet"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Megamacro",
  10106. height: math.unit(8, "miles")
  10107. }
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(6, "feet"),
  10115. weight: math.unit(120, "lb"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/tene/front.svg",
  10119. extra: 814/750,
  10120. bottom: 36/850
  10121. }
  10122. },
  10123. stomping: {
  10124. height: math.unit(2.025, "meters"),
  10125. weight: math.unit(120, "lb"),
  10126. name: "Stomping",
  10127. image: {
  10128. source: "./media/characters/tene/stomping.svg",
  10129. extra: 885/821,
  10130. bottom: 15/900
  10131. }
  10132. },
  10133. sitting: {
  10134. height: math.unit(1, "meter"),
  10135. weight: math.unit(120, "lb"),
  10136. name: "Sitting",
  10137. image: {
  10138. source: "./media/characters/tene/sitting.svg",
  10139. extra: 396/366,
  10140. bottom: 79/475
  10141. }
  10142. },
  10143. smiling: {
  10144. height: math.unit(1.2, "feet"),
  10145. name: "Smiling",
  10146. image: {
  10147. source: "./media/characters/tene/smiling.svg",
  10148. extra: 1364/1071,
  10149. bottom: 0/1364
  10150. }
  10151. },
  10152. smug: {
  10153. height: math.unit(1.3, "feet"),
  10154. name: "Smug",
  10155. image: {
  10156. source: "./media/characters/tene/smug.svg",
  10157. extra: 1323/1082,
  10158. bottom: 0/1323
  10159. }
  10160. },
  10161. feral: {
  10162. height: math.unit(3.9, "feet"),
  10163. weight: math.unit(250, "lb"),
  10164. name: "Feral",
  10165. image: {
  10166. source: "./media/characters/tene/feral.svg",
  10167. extra: 717 / 458,
  10168. bottom: 0.179
  10169. }
  10170. },
  10171. },
  10172. [
  10173. {
  10174. name: "Normal",
  10175. height: math.unit(6, "feet")
  10176. },
  10177. {
  10178. name: "Macro",
  10179. height: math.unit(300, "feet"),
  10180. default: true
  10181. },
  10182. {
  10183. name: "Megamacro",
  10184. height: math.unit(5, "miles")
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10190. {
  10191. side: {
  10192. height: math.unit(6, "feet"),
  10193. name: "Side",
  10194. image: {
  10195. source: "./media/characters/evander/side.svg",
  10196. extra: 877 / 477
  10197. }
  10198. },
  10199. },
  10200. [
  10201. {
  10202. name: "Normal",
  10203. height: math.unit(0.83, "meters"),
  10204. default: true
  10205. },
  10206. ]
  10207. ))
  10208. characterMakers.push(() => makeCharacter(
  10209. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10210. {
  10211. front: {
  10212. height: math.unit(12, "feet"),
  10213. weight: math.unit(1000, "lb"),
  10214. name: "Front",
  10215. image: {
  10216. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10217. extra: 1762 / 1611
  10218. }
  10219. },
  10220. back: {
  10221. height: math.unit(12, "feet"),
  10222. weight: math.unit(1000, "lb"),
  10223. name: "Back",
  10224. image: {
  10225. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10226. extra: 1762 / 1611
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(12, "feet"),
  10234. default: true
  10235. },
  10236. {
  10237. name: "Kaiju",
  10238. height: math.unit(150, "feet")
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(6, "feet"),
  10247. weight: math.unit(150, "lb"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/zero-alurus/front.svg"
  10251. }
  10252. },
  10253. back: {
  10254. height: math.unit(6, "feet"),
  10255. weight: math.unit(150, "lb"),
  10256. name: "Back",
  10257. image: {
  10258. source: "./media/characters/zero-alurus/back.svg"
  10259. }
  10260. },
  10261. },
  10262. [
  10263. {
  10264. name: "Normal",
  10265. height: math.unit(5 + 10 / 12, "feet")
  10266. },
  10267. {
  10268. name: "Macro",
  10269. height: math.unit(60, "feet"),
  10270. default: true
  10271. },
  10272. {
  10273. name: "Macro+",
  10274. height: math.unit(450, "feet")
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10280. {
  10281. front: {
  10282. height: math.unit(6, "feet"),
  10283. weight: math.unit(200, "lb"),
  10284. name: "Front",
  10285. image: {
  10286. source: "./media/characters/mega-shi/front.svg",
  10287. extra: 1279 / 1250,
  10288. bottom: 0.02
  10289. }
  10290. },
  10291. back: {
  10292. height: math.unit(6, "feet"),
  10293. weight: math.unit(200, "lb"),
  10294. name: "Back",
  10295. image: {
  10296. source: "./media/characters/mega-shi/back.svg",
  10297. extra: 1279 / 1250,
  10298. bottom: 0.02
  10299. }
  10300. },
  10301. },
  10302. [
  10303. {
  10304. name: "Micro",
  10305. height: math.unit(16 + 6 / 12, "feet")
  10306. },
  10307. {
  10308. name: "Third Dimension",
  10309. height: math.unit(40, "meters")
  10310. },
  10311. {
  10312. name: "Normal",
  10313. height: math.unit(660, "feet"),
  10314. default: true
  10315. },
  10316. {
  10317. name: "Megamacro",
  10318. height: math.unit(10, "miles")
  10319. },
  10320. {
  10321. name: "Planetary Launch",
  10322. height: math.unit(500, "miles")
  10323. },
  10324. {
  10325. name: "Interstellar",
  10326. height: math.unit(1e9, "miles")
  10327. },
  10328. {
  10329. name: "Leaving the Universe",
  10330. height: math.unit(1, "gigaparsec")
  10331. },
  10332. {
  10333. name: "Travelling Universes",
  10334. height: math.unit(30e15, "parsecs")
  10335. },
  10336. ]
  10337. ))
  10338. characterMakers.push(() => makeCharacter(
  10339. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10340. {
  10341. front: {
  10342. height: math.unit(5 + 4/12, "feet"),
  10343. weight: math.unit(120, "lb"),
  10344. name: "Front",
  10345. image: {
  10346. source: "./media/characters/odyssey/front.svg",
  10347. extra: 1747/1571,
  10348. bottom: 47/1794
  10349. }
  10350. },
  10351. side: {
  10352. height: math.unit(5.1, "feet"),
  10353. weight: math.unit(120, "lb"),
  10354. name: "Side",
  10355. image: {
  10356. source: "./media/characters/odyssey/side.svg",
  10357. extra: 1847/1619,
  10358. bottom: 47/1894
  10359. }
  10360. },
  10361. lounging: {
  10362. height: math.unit(1.464, "feet"),
  10363. weight: math.unit(120, "lb"),
  10364. name: "Lounging",
  10365. image: {
  10366. source: "./media/characters/odyssey/lounging.svg",
  10367. extra: 1235/837,
  10368. bottom: 551/1786
  10369. }
  10370. },
  10371. },
  10372. [
  10373. {
  10374. name: "Normal",
  10375. height: math.unit(5 + 4 / 12, "feet")
  10376. },
  10377. {
  10378. name: "Macro",
  10379. height: math.unit(1, "km")
  10380. },
  10381. {
  10382. name: "Megamacro",
  10383. height: math.unit(3000, "km")
  10384. },
  10385. {
  10386. name: "Gigamacro",
  10387. height: math.unit(1, "AU"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Omniversal",
  10392. height: math.unit(100e14, "lightyears")
  10393. },
  10394. ]
  10395. ))
  10396. characterMakers.push(() => makeCharacter(
  10397. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10398. {
  10399. front: {
  10400. height: math.unit(6, "feet"),
  10401. weight: math.unit(300, "lb"),
  10402. name: "Front",
  10403. image: {
  10404. source: "./media/characters/mekuto/front.svg",
  10405. extra: 921 / 832,
  10406. bottom: 0.03
  10407. }
  10408. },
  10409. hand: {
  10410. height: math.unit(6 / 10.24, "feet"),
  10411. name: "Hand",
  10412. image: {
  10413. source: "./media/characters/mekuto/hand.svg"
  10414. }
  10415. },
  10416. foot: {
  10417. height: math.unit(6 / 5.05, "feet"),
  10418. name: "Foot",
  10419. image: {
  10420. source: "./media/characters/mekuto/foot.svg"
  10421. }
  10422. },
  10423. },
  10424. [
  10425. {
  10426. name: "Minimicro",
  10427. height: math.unit(0.2, "inches")
  10428. },
  10429. {
  10430. name: "Micro",
  10431. height: math.unit(1.5, "inches")
  10432. },
  10433. {
  10434. name: "Normal",
  10435. height: math.unit(5 + 11 / 12, "feet"),
  10436. default: true
  10437. },
  10438. {
  10439. name: "Minimacro",
  10440. height: math.unit(17 + 9 / 12, "feet")
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(177.5, "feet")
  10445. },
  10446. {
  10447. name: "Megamacro",
  10448. height: math.unit(152, "miles")
  10449. },
  10450. ]
  10451. ))
  10452. characterMakers.push(() => makeCharacter(
  10453. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10454. {
  10455. front: {
  10456. height: math.unit(6.5, "inches"),
  10457. weight: math.unit(13, "oz"),
  10458. name: "Front",
  10459. image: {
  10460. source: "./media/characters/dafydd-tomos/front.svg",
  10461. extra: 2990 / 2603,
  10462. bottom: 0.03
  10463. }
  10464. },
  10465. },
  10466. [
  10467. {
  10468. name: "Micro",
  10469. height: math.unit(6.5, "inches"),
  10470. default: true
  10471. },
  10472. ]
  10473. ))
  10474. characterMakers.push(() => makeCharacter(
  10475. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10476. {
  10477. front: {
  10478. height: math.unit(6, "feet"),
  10479. weight: math.unit(150, "lb"),
  10480. name: "Front",
  10481. image: {
  10482. source: "./media/characters/splinter/front.svg",
  10483. extra: 2990 / 2882,
  10484. bottom: 0.04
  10485. }
  10486. },
  10487. back: {
  10488. height: math.unit(6, "feet"),
  10489. weight: math.unit(150, "lb"),
  10490. name: "Back",
  10491. image: {
  10492. source: "./media/characters/splinter/back.svg",
  10493. extra: 2990 / 2882,
  10494. bottom: 0.04
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Normal",
  10501. height: math.unit(6, "feet")
  10502. },
  10503. {
  10504. name: "Macro",
  10505. height: math.unit(230, "meters"),
  10506. default: true
  10507. },
  10508. ]
  10509. ))
  10510. characterMakers.push(() => makeCharacter(
  10511. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10512. {
  10513. front: {
  10514. height: math.unit(4 + 10 / 12, "feet"),
  10515. weight: math.unit(480, "lb"),
  10516. name: "Front",
  10517. image: {
  10518. source: "./media/characters/snow-gabumon/front.svg",
  10519. extra: 1140 / 963,
  10520. bottom: 0.058
  10521. }
  10522. },
  10523. back: {
  10524. height: math.unit(4 + 10 / 12, "feet"),
  10525. weight: math.unit(480, "lb"),
  10526. name: "Back",
  10527. image: {
  10528. source: "./media/characters/snow-gabumon/back.svg",
  10529. extra: 1115 / 962,
  10530. bottom: 0.041
  10531. }
  10532. },
  10533. frontUndresed: {
  10534. height: math.unit(4 + 10 / 12, "feet"),
  10535. weight: math.unit(480, "lb"),
  10536. name: "Front (Undressed)",
  10537. image: {
  10538. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10539. extra: 1061 / 960,
  10540. bottom: 0.045
  10541. }
  10542. },
  10543. },
  10544. [
  10545. {
  10546. name: "Micro",
  10547. height: math.unit(1, "inch")
  10548. },
  10549. {
  10550. name: "Normal",
  10551. height: math.unit(4 + 10 / 12, "feet"),
  10552. default: true
  10553. },
  10554. {
  10555. name: "Macro",
  10556. height: math.unit(200, "feet")
  10557. },
  10558. {
  10559. name: "Megamacro",
  10560. height: math.unit(120, "miles")
  10561. },
  10562. {
  10563. name: "Gigamacro",
  10564. height: math.unit(9800, "miles")
  10565. },
  10566. ]
  10567. ))
  10568. characterMakers.push(() => makeCharacter(
  10569. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10570. {
  10571. front: {
  10572. height: math.unit(1.7, "meters"),
  10573. weight: math.unit(140, "lb"),
  10574. name: "Front",
  10575. image: {
  10576. source: "./media/characters/moody/front.svg",
  10577. extra: 3226 / 3007,
  10578. bottom: 0.087
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Micro",
  10585. height: math.unit(1, "mm")
  10586. },
  10587. {
  10588. name: "Normal",
  10589. height: math.unit(1.7, "meters"),
  10590. default: true
  10591. },
  10592. {
  10593. name: "Macro",
  10594. height: math.unit(80, "meters")
  10595. },
  10596. {
  10597. name: "Macro+",
  10598. height: math.unit(500, "meters")
  10599. },
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10604. {
  10605. front: {
  10606. height: math.unit(6, "feet"),
  10607. weight: math.unit(150, "lb"),
  10608. name: "Front",
  10609. image: {
  10610. source: "./media/characters/zyas/front.svg",
  10611. extra: 1180 / 1120,
  10612. bottom: 0.045
  10613. }
  10614. },
  10615. },
  10616. [
  10617. {
  10618. name: "Normal",
  10619. height: math.unit(10, "feet"),
  10620. default: true
  10621. },
  10622. {
  10623. name: "Macro",
  10624. height: math.unit(500, "feet")
  10625. },
  10626. {
  10627. name: "Megamacro",
  10628. height: math.unit(5, "miles")
  10629. },
  10630. {
  10631. name: "Teramacro",
  10632. height: math.unit(150000, "miles")
  10633. },
  10634. ]
  10635. ))
  10636. characterMakers.push(() => makeCharacter(
  10637. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10638. {
  10639. front: {
  10640. height: math.unit(6, "feet"),
  10641. weight: math.unit(150, "lb"),
  10642. name: "Front",
  10643. image: {
  10644. source: "./media/characters/cuon/front.svg",
  10645. extra: 1390 / 1320,
  10646. bottom: 0.008
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Micro",
  10653. height: math.unit(3, "inches")
  10654. },
  10655. {
  10656. name: "Normal",
  10657. height: math.unit(18 + 9 / 12, "feet"),
  10658. default: true
  10659. },
  10660. {
  10661. name: "Macro",
  10662. height: math.unit(360, "feet")
  10663. },
  10664. {
  10665. name: "Megamacro",
  10666. height: math.unit(360, "miles")
  10667. },
  10668. ]
  10669. ))
  10670. characterMakers.push(() => makeCharacter(
  10671. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10672. {
  10673. front: {
  10674. height: math.unit(2.4, "meters"),
  10675. weight: math.unit(70, "kg"),
  10676. name: "Front",
  10677. image: {
  10678. source: "./media/characters/nyanuxk/front.svg",
  10679. extra: 1172 / 1084,
  10680. bottom: 0.065
  10681. }
  10682. },
  10683. side: {
  10684. height: math.unit(2.4, "meters"),
  10685. weight: math.unit(70, "kg"),
  10686. name: "Side",
  10687. image: {
  10688. source: "./media/characters/nyanuxk/side.svg",
  10689. extra: 1190 / 1132,
  10690. bottom: 0.007
  10691. }
  10692. },
  10693. back: {
  10694. height: math.unit(2.4, "meters"),
  10695. weight: math.unit(70, "kg"),
  10696. name: "Back",
  10697. image: {
  10698. source: "./media/characters/nyanuxk/back.svg",
  10699. extra: 1200 / 1141,
  10700. bottom: 0.015
  10701. }
  10702. },
  10703. foot: {
  10704. height: math.unit(0.52, "meters"),
  10705. name: "Foot",
  10706. image: {
  10707. source: "./media/characters/nyanuxk/foot.svg"
  10708. }
  10709. },
  10710. },
  10711. [
  10712. {
  10713. name: "Micro",
  10714. height: math.unit(2, "cm")
  10715. },
  10716. {
  10717. name: "Normal",
  10718. height: math.unit(2.4, "meters"),
  10719. default: true
  10720. },
  10721. {
  10722. name: "Smaller Macro",
  10723. height: math.unit(120, "meters")
  10724. },
  10725. {
  10726. name: "Bigger Macro",
  10727. height: math.unit(1.2, "km")
  10728. },
  10729. {
  10730. name: "Megamacro",
  10731. height: math.unit(15, "kilometers")
  10732. },
  10733. {
  10734. name: "Gigamacro",
  10735. height: math.unit(2000, "km")
  10736. },
  10737. {
  10738. name: "Teramacro",
  10739. height: math.unit(500000, "km")
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10745. {
  10746. side: {
  10747. height: math.unit(6, "feet"),
  10748. name: "Side",
  10749. image: {
  10750. source: "./media/characters/ailbhe/side.svg",
  10751. extra: 757 / 464,
  10752. bottom: 0.041
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Normal",
  10759. height: math.unit(1.07, "meters"),
  10760. default: true
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10766. {
  10767. front: {
  10768. height: math.unit(6, "feet"),
  10769. weight: math.unit(120, "kg"),
  10770. name: "Front",
  10771. image: {
  10772. source: "./media/characters/zevulfius/front.svg",
  10773. extra: 965 / 903
  10774. }
  10775. },
  10776. side: {
  10777. height: math.unit(6, "feet"),
  10778. weight: math.unit(120, "kg"),
  10779. name: "Side",
  10780. image: {
  10781. source: "./media/characters/zevulfius/side.svg",
  10782. extra: 939 / 900
  10783. }
  10784. },
  10785. back: {
  10786. height: math.unit(6, "feet"),
  10787. weight: math.unit(120, "kg"),
  10788. name: "Back",
  10789. image: {
  10790. source: "./media/characters/zevulfius/back.svg",
  10791. extra: 918 / 854,
  10792. bottom: 0.005
  10793. }
  10794. },
  10795. foot: {
  10796. height: math.unit(6 / 3.72, "feet"),
  10797. name: "Foot",
  10798. image: {
  10799. source: "./media/characters/zevulfius/foot.svg"
  10800. }
  10801. },
  10802. },
  10803. [
  10804. {
  10805. name: "Macro",
  10806. height: math.unit(750, "meters")
  10807. },
  10808. {
  10809. name: "Megamacro",
  10810. height: math.unit(20, "km"),
  10811. default: true
  10812. },
  10813. {
  10814. name: "Gigamacro",
  10815. height: math.unit(2000, "km")
  10816. },
  10817. {
  10818. name: "Teramacro",
  10819. height: math.unit(250000, "km")
  10820. },
  10821. ]
  10822. ))
  10823. characterMakers.push(() => makeCharacter(
  10824. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10825. {
  10826. front: {
  10827. height: math.unit(100, "feet"),
  10828. weight: math.unit(350, "kg"),
  10829. name: "Front",
  10830. image: {
  10831. source: "./media/characters/rikes/front.svg",
  10832. extra: 1565 / 1483,
  10833. bottom: 0.017
  10834. }
  10835. },
  10836. },
  10837. [
  10838. {
  10839. name: "Macro",
  10840. height: math.unit(100, "feet"),
  10841. default: true
  10842. },
  10843. ]
  10844. ))
  10845. characterMakers.push(() => makeCharacter(
  10846. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10847. {
  10848. front: {
  10849. height: math.unit(8, "feet"),
  10850. weight: math.unit(356, "lb"),
  10851. name: "Front",
  10852. image: {
  10853. source: "./media/characters/adam-silver-mane/front.svg",
  10854. extra: 1036/937,
  10855. bottom: 63/1099
  10856. }
  10857. },
  10858. side: {
  10859. height: math.unit(8, "feet"),
  10860. weight: math.unit(356, "lb"),
  10861. name: "Side",
  10862. image: {
  10863. source: "./media/characters/adam-silver-mane/side.svg",
  10864. extra: 997/901,
  10865. bottom: 59/1056
  10866. }
  10867. },
  10868. frontNsfw: {
  10869. height: math.unit(8, "feet"),
  10870. weight: math.unit(356, "lb"),
  10871. name: "Front (NSFW)",
  10872. image: {
  10873. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10874. extra: 1036/937,
  10875. bottom: 63/1099
  10876. }
  10877. },
  10878. sideNsfw: {
  10879. height: math.unit(8, "feet"),
  10880. weight: math.unit(356, "lb"),
  10881. name: "Side (NSFW)",
  10882. image: {
  10883. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10884. extra: 997/901,
  10885. bottom: 59/1056
  10886. }
  10887. },
  10888. dick: {
  10889. height: math.unit(2.1, "feet"),
  10890. name: "Dick",
  10891. image: {
  10892. source: "./media/characters/adam-silver-mane/dick.svg"
  10893. }
  10894. },
  10895. taur: {
  10896. height: math.unit(16, "feet"),
  10897. weight: math.unit(1500, "kg"),
  10898. name: "Taur",
  10899. image: {
  10900. source: "./media/characters/adam-silver-mane/taur.svg",
  10901. extra: 1713 / 1571,
  10902. bottom: 0.01
  10903. }
  10904. },
  10905. },
  10906. [
  10907. {
  10908. name: "Normal",
  10909. height: math.unit(8, "feet")
  10910. },
  10911. {
  10912. name: "Minimacro",
  10913. height: math.unit(80, "feet")
  10914. },
  10915. {
  10916. name: "MDA",
  10917. height: math.unit(80, "meters")
  10918. },
  10919. {
  10920. name: "Macro",
  10921. height: math.unit(800, "feet"),
  10922. default: true
  10923. },
  10924. {
  10925. name: "Megamacro",
  10926. height: math.unit(8000, "feet")
  10927. },
  10928. {
  10929. name: "Gigamacro",
  10930. height: math.unit(800, "miles")
  10931. },
  10932. {
  10933. name: "Teramacro",
  10934. height: math.unit(80000, "miles")
  10935. },
  10936. {
  10937. name: "Celestial",
  10938. height: math.unit(8e6, "miles")
  10939. },
  10940. {
  10941. name: "Star Dragon",
  10942. height: math.unit(800000, "parsecs")
  10943. },
  10944. {
  10945. name: "Godly",
  10946. height: math.unit(800, "teraparsecs")
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10952. {
  10953. front: {
  10954. height: math.unit(6, "feet"),
  10955. weight: math.unit(150, "lb"),
  10956. name: "Front",
  10957. image: {
  10958. source: "./media/characters/ky'owin/front.svg",
  10959. extra: 3888 / 3068,
  10960. bottom: 0.015
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Normal",
  10967. height: math.unit(6 + 8 / 12, "feet")
  10968. },
  10969. {
  10970. name: "Large",
  10971. height: math.unit(68, "feet")
  10972. },
  10973. {
  10974. name: "Macro",
  10975. height: math.unit(132, "feet")
  10976. },
  10977. {
  10978. name: "Macro+",
  10979. height: math.unit(340, "feet")
  10980. },
  10981. {
  10982. name: "Macro++",
  10983. height: math.unit(680, "feet"),
  10984. default: true
  10985. },
  10986. {
  10987. name: "Megamacro",
  10988. height: math.unit(1, "mile")
  10989. },
  10990. {
  10991. name: "Megamacro+",
  10992. height: math.unit(10, "miles")
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10998. {
  10999. front: {
  11000. height: math.unit(4, "feet"),
  11001. weight: math.unit(50, "lb"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/mal/front.svg",
  11005. extra: 785 / 724,
  11006. bottom: 0.07
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Micro",
  11013. height: math.unit(4, "inches")
  11014. },
  11015. {
  11016. name: "Normal",
  11017. height: math.unit(4, "feet"),
  11018. default: true
  11019. },
  11020. {
  11021. name: "Macro",
  11022. height: math.unit(200, "feet")
  11023. },
  11024. ]
  11025. ))
  11026. characterMakers.push(() => makeCharacter(
  11027. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11028. {
  11029. front: {
  11030. height: math.unit(6, "feet"),
  11031. weight: math.unit(150, "lb"),
  11032. name: "Front",
  11033. image: {
  11034. source: "./media/characters/jordan-deware/front.svg",
  11035. extra: 1191 / 1012
  11036. }
  11037. },
  11038. },
  11039. [
  11040. {
  11041. name: "Nano",
  11042. height: math.unit(0.01, "mm")
  11043. },
  11044. {
  11045. name: "Minimicro",
  11046. height: math.unit(1, "mm")
  11047. },
  11048. {
  11049. name: "Micro",
  11050. height: math.unit(0.5, "inches")
  11051. },
  11052. {
  11053. name: "Normal",
  11054. height: math.unit(4, "feet"),
  11055. default: true
  11056. },
  11057. {
  11058. name: "Minimacro",
  11059. height: math.unit(40, "meters")
  11060. },
  11061. {
  11062. name: "Small Macro",
  11063. height: math.unit(400, "meters")
  11064. },
  11065. {
  11066. name: "Macro",
  11067. height: math.unit(4, "miles")
  11068. },
  11069. {
  11070. name: "Megamacro",
  11071. height: math.unit(40, "miles")
  11072. },
  11073. {
  11074. name: "Megamacro+",
  11075. height: math.unit(400, "miles")
  11076. },
  11077. {
  11078. name: "Gigamacro",
  11079. height: math.unit(400000, "miles")
  11080. },
  11081. ]
  11082. ))
  11083. characterMakers.push(() => makeCharacter(
  11084. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11085. {
  11086. side: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(150, "lb"),
  11089. name: "Side",
  11090. image: {
  11091. source: "./media/characters/kimiko/side.svg",
  11092. extra: 600 / 358
  11093. }
  11094. },
  11095. },
  11096. [
  11097. {
  11098. name: "Normal",
  11099. height: math.unit(15, "feet"),
  11100. default: true
  11101. },
  11102. {
  11103. name: "Macro",
  11104. height: math.unit(220, "feet")
  11105. },
  11106. {
  11107. name: "Macro+",
  11108. height: math.unit(1450, "feet")
  11109. },
  11110. {
  11111. name: "Megamacro",
  11112. height: math.unit(11500, "feet")
  11113. },
  11114. {
  11115. name: "Gigamacro",
  11116. height: math.unit(9500, "miles")
  11117. },
  11118. {
  11119. name: "Teramacro",
  11120. height: math.unit(2208005005, "miles")
  11121. },
  11122. {
  11123. name: "Examacro",
  11124. height: math.unit(2750, "parsecs")
  11125. },
  11126. {
  11127. name: "Zettamacro",
  11128. height: math.unit(101500, "parsecs")
  11129. },
  11130. ]
  11131. ))
  11132. characterMakers.push(() => makeCharacter(
  11133. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11134. {
  11135. front: {
  11136. height: math.unit(6, "feet"),
  11137. weight: math.unit(70, "kg"),
  11138. name: "Front",
  11139. image: {
  11140. source: "./media/characters/andrew-sleepy/front.svg"
  11141. }
  11142. },
  11143. side: {
  11144. height: math.unit(6, "feet"),
  11145. weight: math.unit(70, "kg"),
  11146. name: "Side",
  11147. image: {
  11148. source: "./media/characters/andrew-sleepy/side.svg"
  11149. }
  11150. },
  11151. },
  11152. [
  11153. {
  11154. name: "Micro",
  11155. height: math.unit(1, "mm"),
  11156. default: true
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11162. {
  11163. front: {
  11164. height: math.unit(6, "feet"),
  11165. weight: math.unit(150, "lb"),
  11166. name: "Front",
  11167. image: {
  11168. source: "./media/characters/judio/front.svg",
  11169. extra: 1258 / 1110
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Normal",
  11176. height: math.unit(5 + 6 / 12, "feet")
  11177. },
  11178. {
  11179. name: "Macro",
  11180. height: math.unit(1000, "feet"),
  11181. default: true
  11182. },
  11183. {
  11184. name: "Megamacro",
  11185. height: math.unit(10, "miles")
  11186. },
  11187. ]
  11188. ))
  11189. characterMakers.push(() => makeCharacter(
  11190. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11191. {
  11192. frontDressed: {
  11193. height: math.unit(6, "feet"),
  11194. weight: math.unit(68, "kg"),
  11195. name: "Front (Dressed)",
  11196. image: {
  11197. source: "./media/characters/nomaxice/front-dressed.svg",
  11198. extra: 1137/824,
  11199. bottom: 74/1211
  11200. }
  11201. },
  11202. frontShorts: {
  11203. height: math.unit(6, "feet"),
  11204. weight: math.unit(68, "kg"),
  11205. name: "Front (Shorts)",
  11206. image: {
  11207. source: "./media/characters/nomaxice/front-shorts.svg",
  11208. extra: 1137/824,
  11209. bottom: 74/1211
  11210. }
  11211. },
  11212. back: {
  11213. height: math.unit(6, "feet"),
  11214. weight: math.unit(68, "kg"),
  11215. name: "Back",
  11216. image: {
  11217. source: "./media/characters/nomaxice/back.svg",
  11218. extra: 822/786,
  11219. bottom: 39/861
  11220. }
  11221. },
  11222. hand: {
  11223. height: math.unit(0.565, "feet"),
  11224. name: "Hand",
  11225. image: {
  11226. source: "./media/characters/nomaxice/hand.svg"
  11227. }
  11228. },
  11229. foot: {
  11230. height: math.unit(1, "feet"),
  11231. name: "Foot",
  11232. image: {
  11233. source: "./media/characters/nomaxice/foot.svg"
  11234. }
  11235. },
  11236. },
  11237. [
  11238. {
  11239. name: "Micro",
  11240. height: math.unit(8, "cm")
  11241. },
  11242. {
  11243. name: "Norm",
  11244. height: math.unit(1.82, "m")
  11245. },
  11246. {
  11247. name: "Norm+",
  11248. height: math.unit(8.8, "feet"),
  11249. default: true
  11250. },
  11251. {
  11252. name: "Big",
  11253. height: math.unit(8, "meters")
  11254. },
  11255. {
  11256. name: "Macro",
  11257. height: math.unit(18, "meters")
  11258. },
  11259. {
  11260. name: "Macro+",
  11261. height: math.unit(88, "meters")
  11262. },
  11263. ]
  11264. ))
  11265. characterMakers.push(() => makeCharacter(
  11266. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11267. {
  11268. front: {
  11269. height: math.unit(12, "feet"),
  11270. weight: math.unit(1.5, "tons"),
  11271. name: "Front",
  11272. image: {
  11273. source: "./media/characters/dydros/front.svg",
  11274. extra: 863 / 800,
  11275. bottom: 0.015
  11276. }
  11277. },
  11278. back: {
  11279. height: math.unit(12, "feet"),
  11280. weight: math.unit(1.5, "tons"),
  11281. name: "Back",
  11282. image: {
  11283. source: "./media/characters/dydros/back.svg",
  11284. extra: 900 / 843,
  11285. bottom: 0.005
  11286. }
  11287. },
  11288. },
  11289. [
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(12, "feet"),
  11293. default: true
  11294. },
  11295. ]
  11296. ))
  11297. characterMakers.push(() => makeCharacter(
  11298. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11299. {
  11300. front: {
  11301. height: math.unit(6, "feet"),
  11302. weight: math.unit(100, "kg"),
  11303. name: "Front",
  11304. image: {
  11305. source: "./media/characters/riggi/front.svg",
  11306. extra: 5787 / 5303
  11307. }
  11308. },
  11309. hyper: {
  11310. height: math.unit(6 * 5 / 3, "feet"),
  11311. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11312. name: "Hyper",
  11313. image: {
  11314. source: "./media/characters/riggi/hyper.svg",
  11315. extra: 3595 / 3485
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Small Macro",
  11322. height: math.unit(50, "feet")
  11323. },
  11324. {
  11325. name: "Default",
  11326. height: math.unit(200, "feet"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Loom",
  11331. height: math.unit(10000, "feet")
  11332. },
  11333. {
  11334. name: "Cruising Altitude",
  11335. height: math.unit(30000, "feet")
  11336. },
  11337. {
  11338. name: "Megamacro",
  11339. height: math.unit(100, "miles")
  11340. },
  11341. {
  11342. name: "Continent Sized",
  11343. height: math.unit(2800, "miles")
  11344. },
  11345. {
  11346. name: "Earth Sized",
  11347. height: math.unit(8000, "miles")
  11348. },
  11349. ]
  11350. ))
  11351. characterMakers.push(() => makeCharacter(
  11352. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11353. {
  11354. front: {
  11355. height: math.unit(6, "feet"),
  11356. weight: math.unit(250, "lb"),
  11357. name: "Front",
  11358. image: {
  11359. source: "./media/characters/alexi/front.svg",
  11360. extra: 3483 / 3291,
  11361. bottom: 0.04
  11362. }
  11363. },
  11364. back: {
  11365. height: math.unit(6, "feet"),
  11366. weight: math.unit(250, "lb"),
  11367. name: "Back",
  11368. image: {
  11369. source: "./media/characters/alexi/back.svg",
  11370. extra: 3533 / 3356,
  11371. bottom: 0.021
  11372. }
  11373. },
  11374. frontTransforming: {
  11375. height: math.unit(8.58, "feet"),
  11376. weight: math.unit(1300, "lb"),
  11377. name: "Transforming",
  11378. image: {
  11379. source: "./media/characters/alexi/front-transforming.svg",
  11380. extra: 437 / 409,
  11381. bottom: 19 / 458.66
  11382. }
  11383. },
  11384. frontTransformed: {
  11385. height: math.unit(12.5, "feet"),
  11386. weight: math.unit(4000, "lb"),
  11387. name: "Transformed",
  11388. image: {
  11389. source: "./media/characters/alexi/front-transformed.svg",
  11390. extra: 639 / 614,
  11391. bottom: 30.55 / 671
  11392. }
  11393. },
  11394. },
  11395. [
  11396. {
  11397. name: "Normal",
  11398. height: math.unit(14, "feet"),
  11399. default: true
  11400. },
  11401. {
  11402. name: "Minimacro",
  11403. height: math.unit(30, "meters")
  11404. },
  11405. {
  11406. name: "Macro",
  11407. height: math.unit(500, "meters")
  11408. },
  11409. {
  11410. name: "Megamacro",
  11411. height: math.unit(9000, "km")
  11412. },
  11413. {
  11414. name: "Teramacro",
  11415. height: math.unit(384000, "km")
  11416. },
  11417. ]
  11418. ))
  11419. characterMakers.push(() => makeCharacter(
  11420. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11421. {
  11422. front: {
  11423. height: math.unit(6, "feet"),
  11424. weight: math.unit(150, "lb"),
  11425. name: "Front",
  11426. image: {
  11427. source: "./media/characters/kayroo/front.svg",
  11428. extra: 1153 / 1038,
  11429. bottom: 0.06
  11430. }
  11431. },
  11432. foot: {
  11433. height: math.unit(6, "feet"),
  11434. weight: math.unit(150, "lb"),
  11435. name: "Foot",
  11436. image: {
  11437. source: "./media/characters/kayroo/foot.svg"
  11438. }
  11439. },
  11440. },
  11441. [
  11442. {
  11443. name: "Normal",
  11444. height: math.unit(8, "feet"),
  11445. default: true
  11446. },
  11447. {
  11448. name: "Minimacro",
  11449. height: math.unit(250, "feet")
  11450. },
  11451. {
  11452. name: "Macro",
  11453. height: math.unit(2800, "feet")
  11454. },
  11455. {
  11456. name: "Megamacro",
  11457. height: math.unit(5200, "feet")
  11458. },
  11459. {
  11460. name: "Gigamacro",
  11461. height: math.unit(27000, "feet")
  11462. },
  11463. {
  11464. name: "Omega",
  11465. height: math.unit(45000, "feet")
  11466. },
  11467. ]
  11468. ))
  11469. characterMakers.push(() => makeCharacter(
  11470. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11471. {
  11472. front: {
  11473. height: math.unit(18, "feet"),
  11474. weight: math.unit(5800, "lb"),
  11475. name: "Front",
  11476. image: {
  11477. source: "./media/characters/rhys/front.svg",
  11478. extra: 3386 / 3090,
  11479. bottom: 0.07
  11480. }
  11481. },
  11482. },
  11483. [
  11484. {
  11485. name: "Normal",
  11486. height: math.unit(18, "feet"),
  11487. default: true
  11488. },
  11489. {
  11490. name: "Working Size",
  11491. height: math.unit(200, "feet")
  11492. },
  11493. {
  11494. name: "Demolition Size",
  11495. height: math.unit(2000, "feet")
  11496. },
  11497. {
  11498. name: "Maximum Licensed Size",
  11499. height: math.unit(5, "miles")
  11500. },
  11501. {
  11502. name: "Maximum Observed Size",
  11503. height: math.unit(10, "yottameters")
  11504. },
  11505. ]
  11506. ))
  11507. characterMakers.push(() => makeCharacter(
  11508. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11509. {
  11510. front: {
  11511. height: math.unit(6, "feet"),
  11512. weight: math.unit(250, "lb"),
  11513. name: "Front",
  11514. image: {
  11515. source: "./media/characters/toto/front.svg",
  11516. extra: 527 / 479,
  11517. bottom: 0.05
  11518. }
  11519. },
  11520. },
  11521. [
  11522. {
  11523. name: "Micro",
  11524. height: math.unit(3, "feet")
  11525. },
  11526. {
  11527. name: "Normal",
  11528. height: math.unit(10, "feet")
  11529. },
  11530. {
  11531. name: "Macro",
  11532. height: math.unit(150, "feet"),
  11533. default: true
  11534. },
  11535. {
  11536. name: "Megamacro",
  11537. height: math.unit(1200, "feet")
  11538. },
  11539. ]
  11540. ))
  11541. characterMakers.push(() => makeCharacter(
  11542. { name: "King", species: ["lion"], tags: ["anthro"] },
  11543. {
  11544. back: {
  11545. height: math.unit(6, "feet"),
  11546. weight: math.unit(150, "lb"),
  11547. name: "Back",
  11548. image: {
  11549. source: "./media/characters/king/back.svg"
  11550. }
  11551. },
  11552. },
  11553. [
  11554. {
  11555. name: "Micro",
  11556. height: math.unit(2, "inches")
  11557. },
  11558. {
  11559. name: "Normal",
  11560. height: math.unit(8, "feet")
  11561. },
  11562. {
  11563. name: "Macro",
  11564. height: math.unit(200, "feet"),
  11565. default: true
  11566. },
  11567. {
  11568. name: "Megamacro",
  11569. height: math.unit(50, "miles")
  11570. },
  11571. ]
  11572. ))
  11573. characterMakers.push(() => makeCharacter(
  11574. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11575. {
  11576. front: {
  11577. height: math.unit(11, "feet"),
  11578. weight: math.unit(1400, "lb"),
  11579. name: "Front",
  11580. image: {
  11581. source: "./media/characters/cordite/front.svg",
  11582. extra: 1919/1827,
  11583. bottom: 40/1959
  11584. }
  11585. },
  11586. side: {
  11587. height: math.unit(11, "feet"),
  11588. weight: math.unit(1400, "lb"),
  11589. name: "Side",
  11590. image: {
  11591. source: "./media/characters/cordite/side.svg",
  11592. extra: 1908/1793,
  11593. bottom: 38/1946
  11594. }
  11595. },
  11596. back: {
  11597. height: math.unit(11, "feet"),
  11598. weight: math.unit(1400, "lb"),
  11599. name: "Back",
  11600. image: {
  11601. source: "./media/characters/cordite/back.svg",
  11602. extra: 1938/1837,
  11603. bottom: 10/1948
  11604. }
  11605. },
  11606. feral: {
  11607. height: math.unit(2, "feet"),
  11608. weight: math.unit(90, "lb"),
  11609. name: "Feral",
  11610. image: {
  11611. source: "./media/characters/cordite/feral.svg",
  11612. extra: 1260 / 755,
  11613. bottom: 0.05
  11614. }
  11615. },
  11616. },
  11617. [
  11618. {
  11619. name: "Normal",
  11620. height: math.unit(11, "feet"),
  11621. default: true
  11622. },
  11623. ]
  11624. ))
  11625. characterMakers.push(() => makeCharacter(
  11626. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11627. {
  11628. front: {
  11629. height: math.unit(6, "feet"),
  11630. weight: math.unit(150, "lb"),
  11631. name: "Front",
  11632. image: {
  11633. source: "./media/characters/pianostrong/front.svg",
  11634. extra: 6577 / 6254,
  11635. bottom: 0.02
  11636. }
  11637. },
  11638. side: {
  11639. height: math.unit(6, "feet"),
  11640. weight: math.unit(150, "lb"),
  11641. name: "Side",
  11642. image: {
  11643. source: "./media/characters/pianostrong/side.svg",
  11644. extra: 6106 / 5730
  11645. }
  11646. },
  11647. back: {
  11648. height: math.unit(6, "feet"),
  11649. weight: math.unit(150, "lb"),
  11650. name: "Back",
  11651. image: {
  11652. source: "./media/characters/pianostrong/back.svg",
  11653. extra: 6085 / 5733,
  11654. bottom: 0.01
  11655. }
  11656. },
  11657. },
  11658. [
  11659. {
  11660. name: "Macro",
  11661. height: math.unit(100, "feet")
  11662. },
  11663. {
  11664. name: "Macro+",
  11665. height: math.unit(300, "feet"),
  11666. default: true
  11667. },
  11668. {
  11669. name: "Macro++",
  11670. height: math.unit(1000, "feet")
  11671. },
  11672. ]
  11673. ))
  11674. characterMakers.push(() => makeCharacter(
  11675. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11676. {
  11677. front: {
  11678. height: math.unit(6, "feet"),
  11679. weight: math.unit(150, "lb"),
  11680. name: "Front",
  11681. image: {
  11682. source: "./media/characters/kona/front.svg",
  11683. extra: 2960 / 2629,
  11684. bottom: 0.005
  11685. }
  11686. },
  11687. },
  11688. [
  11689. {
  11690. name: "Normal",
  11691. height: math.unit(11 + 8 / 12, "feet")
  11692. },
  11693. {
  11694. name: "Macro",
  11695. height: math.unit(850, "feet"),
  11696. default: true
  11697. },
  11698. {
  11699. name: "Macro+",
  11700. height: math.unit(1.5, "km"),
  11701. default: true
  11702. },
  11703. {
  11704. name: "Megamacro",
  11705. height: math.unit(80, "miles")
  11706. },
  11707. {
  11708. name: "Gigamacro",
  11709. height: math.unit(3500, "miles")
  11710. },
  11711. ]
  11712. ))
  11713. characterMakers.push(() => makeCharacter(
  11714. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11715. {
  11716. side: {
  11717. height: math.unit(1.9, "meters"),
  11718. weight: math.unit(326, "kg"),
  11719. name: "Side",
  11720. image: {
  11721. source: "./media/characters/levi/side.svg",
  11722. extra: 1704 / 1334,
  11723. bottom: 0.02
  11724. }
  11725. },
  11726. },
  11727. [
  11728. {
  11729. name: "Normal",
  11730. height: math.unit(1.9, "meters"),
  11731. default: true
  11732. },
  11733. {
  11734. name: "Macro",
  11735. height: math.unit(20, "meters")
  11736. },
  11737. {
  11738. name: "Macro+",
  11739. height: math.unit(200, "meters")
  11740. },
  11741. {
  11742. name: "Megamacro",
  11743. height: math.unit(2, "km")
  11744. },
  11745. {
  11746. name: "Megamacro+",
  11747. height: math.unit(20, "km")
  11748. },
  11749. {
  11750. name: "Gigamacro",
  11751. height: math.unit(2500, "km")
  11752. },
  11753. {
  11754. name: "Gigamacro+",
  11755. height: math.unit(120000, "km")
  11756. },
  11757. {
  11758. name: "Teramacro",
  11759. height: math.unit(7.77e6, "km")
  11760. },
  11761. ]
  11762. ))
  11763. characterMakers.push(() => makeCharacter(
  11764. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11765. {
  11766. front: {
  11767. height: math.unit(6 + 4/12, "feet"),
  11768. weight: math.unit(190, "lb"),
  11769. name: "Front",
  11770. image: {
  11771. source: "./media/characters/bmc/front.svg",
  11772. extra: 1626/1472,
  11773. bottom: 79/1705
  11774. }
  11775. },
  11776. back: {
  11777. height: math.unit(6 + 4/12, "feet"),
  11778. weight: math.unit(190, "lb"),
  11779. name: "Back",
  11780. image: {
  11781. source: "./media/characters/bmc/back.svg",
  11782. extra: 1640/1479,
  11783. bottom: 45/1685
  11784. }
  11785. },
  11786. frontArmor: {
  11787. height: math.unit(6 + 4/12, "feet"),
  11788. weight: math.unit(190, "lb"),
  11789. name: "Front-armor",
  11790. image: {
  11791. source: "./media/characters/bmc/front-armor.svg",
  11792. extra: 1538/1468,
  11793. bottom: 79/1617
  11794. }
  11795. },
  11796. },
  11797. [
  11798. {
  11799. name: "Human-sized",
  11800. height: math.unit(6 + 4 / 12, "feet")
  11801. },
  11802. {
  11803. name: "Interactive Size",
  11804. height: math.unit(25, "feet")
  11805. },
  11806. {
  11807. name: "Small",
  11808. height: math.unit(250, "feet")
  11809. },
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(1250, "feet"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Good Day",
  11817. height: math.unit(88, "miles")
  11818. },
  11819. {
  11820. name: "Largest Measured Size",
  11821. height: math.unit(105.960, "galaxies")
  11822. },
  11823. ]
  11824. ))
  11825. characterMakers.push(() => makeCharacter(
  11826. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11827. {
  11828. front: {
  11829. height: math.unit(20, "feet"),
  11830. weight: math.unit(2016, "kg"),
  11831. name: "Front",
  11832. image: {
  11833. source: "./media/characters/sven-the-kaiju/front.svg",
  11834. extra: 1277/1250,
  11835. bottom: 35/1312
  11836. }
  11837. },
  11838. mouth: {
  11839. height: math.unit(1.85, "feet"),
  11840. name: "Mouth",
  11841. image: {
  11842. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Fairy",
  11849. height: math.unit(6, "inches")
  11850. },
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(20, "feet"),
  11854. default: true
  11855. },
  11856. {
  11857. name: "Rampage",
  11858. height: math.unit(200, "feet")
  11859. },
  11860. {
  11861. name: "Archfey Forest Guardian",
  11862. height: math.unit(1, "mile")
  11863. },
  11864. ]
  11865. ))
  11866. characterMakers.push(() => makeCharacter(
  11867. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11868. {
  11869. front: {
  11870. height: math.unit(4, "meters"),
  11871. weight: math.unit(2, "tons"),
  11872. name: "Front",
  11873. image: {
  11874. source: "./media/characters/marik/front.svg",
  11875. extra: 1057 / 1003,
  11876. bottom: 0.08
  11877. }
  11878. },
  11879. },
  11880. [
  11881. {
  11882. name: "Normal",
  11883. height: math.unit(4, "meters"),
  11884. default: true
  11885. },
  11886. {
  11887. name: "Macro",
  11888. height: math.unit(20, "meters")
  11889. },
  11890. {
  11891. name: "Megamacro",
  11892. height: math.unit(50, "km")
  11893. },
  11894. {
  11895. name: "Gigamacro",
  11896. height: math.unit(100, "km")
  11897. },
  11898. {
  11899. name: "Alpha Macro",
  11900. height: math.unit(7.88e7, "yottameters")
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11906. {
  11907. front: {
  11908. height: math.unit(6, "feet"),
  11909. weight: math.unit(110, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/mel/front.svg",
  11913. extra: 736 / 617,
  11914. bottom: 0.017
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Pico",
  11921. height: math.unit(3, "pm")
  11922. },
  11923. {
  11924. name: "Nano",
  11925. height: math.unit(3, "nm")
  11926. },
  11927. {
  11928. name: "Micro",
  11929. height: math.unit(0.3, "mm"),
  11930. default: true
  11931. },
  11932. {
  11933. name: "Micro+",
  11934. height: math.unit(3, "mm")
  11935. },
  11936. {
  11937. name: "Normal",
  11938. height: math.unit(5 + 10.5 / 12, "feet")
  11939. },
  11940. ]
  11941. ))
  11942. characterMakers.push(() => makeCharacter(
  11943. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11944. {
  11945. kaiju: {
  11946. height: math.unit(1.75, "meters"),
  11947. weight: math.unit(55, "kg"),
  11948. name: "Kaiju",
  11949. image: {
  11950. source: "./media/characters/lykonous/kaiju.svg",
  11951. extra: 1055 / 946,
  11952. bottom: 0.135
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Normal",
  11959. height: math.unit(2.5, "meters"),
  11960. default: true
  11961. },
  11962. {
  11963. name: "Kaiju Dragon",
  11964. height: math.unit(60, "meters")
  11965. },
  11966. {
  11967. name: "Mega Kaiju",
  11968. height: math.unit(120, "km")
  11969. },
  11970. {
  11971. name: "Giga Kaiju",
  11972. height: math.unit(200, "megameters")
  11973. },
  11974. {
  11975. name: "Terra Kaiju",
  11976. height: math.unit(400, "gigameters")
  11977. },
  11978. {
  11979. name: "Kaiju Dragon God",
  11980. height: math.unit(13000, "exaparsecs")
  11981. },
  11982. ]
  11983. ))
  11984. characterMakers.push(() => makeCharacter(
  11985. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11986. {
  11987. front: {
  11988. height: math.unit(6, "feet"),
  11989. weight: math.unit(150, "lb"),
  11990. name: "Front",
  11991. image: {
  11992. source: "./media/characters/blü/front.svg",
  11993. extra: 1883 / 1564,
  11994. bottom: 0.031
  11995. }
  11996. },
  11997. },
  11998. [
  11999. {
  12000. name: "Normal",
  12001. height: math.unit(13, "feet"),
  12002. default: true
  12003. },
  12004. {
  12005. name: "Big Boi",
  12006. height: math.unit(150, "meters")
  12007. },
  12008. {
  12009. name: "Mini Stomper",
  12010. height: math.unit(300, "meters")
  12011. },
  12012. {
  12013. name: "Macro",
  12014. height: math.unit(1000, "meters")
  12015. },
  12016. {
  12017. name: "Megamacro",
  12018. height: math.unit(11000, "meters")
  12019. },
  12020. {
  12021. name: "Gigamacro",
  12022. height: math.unit(11000, "km")
  12023. },
  12024. {
  12025. name: "Teramacro",
  12026. height: math.unit(420000, "km")
  12027. },
  12028. {
  12029. name: "Examacro",
  12030. height: math.unit(120, "parsecs")
  12031. },
  12032. {
  12033. name: "God Tho",
  12034. height: math.unit(98000000000, "parsecs")
  12035. },
  12036. ]
  12037. ))
  12038. characterMakers.push(() => makeCharacter(
  12039. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12040. {
  12041. taurFront: {
  12042. height: math.unit(6, "feet"),
  12043. weight: math.unit(200, "lb"),
  12044. name: "Taur (Front)",
  12045. image: {
  12046. source: "./media/characters/scales/taur-front.svg",
  12047. extra: 1,
  12048. bottom: 0.05
  12049. }
  12050. },
  12051. taurBack: {
  12052. height: math.unit(6, "feet"),
  12053. weight: math.unit(200, "lb"),
  12054. name: "Taur (Back)",
  12055. image: {
  12056. source: "./media/characters/scales/taur-back.svg",
  12057. extra: 1,
  12058. bottom: 0.08
  12059. }
  12060. },
  12061. anthro: {
  12062. height: math.unit(6 * 7 / 12, "feet"),
  12063. weight: math.unit(100, "lb"),
  12064. name: "Anthro",
  12065. image: {
  12066. source: "./media/characters/scales/anthro.svg",
  12067. extra: 1,
  12068. bottom: 0.06
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Normal",
  12075. height: math.unit(12, "feet"),
  12076. default: true
  12077. },
  12078. ]
  12079. ))
  12080. characterMakers.push(() => makeCharacter(
  12081. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12082. {
  12083. front: {
  12084. height: math.unit(6, "feet"),
  12085. weight: math.unit(150, "lb"),
  12086. name: "Front",
  12087. image: {
  12088. source: "./media/characters/koragos/front.svg",
  12089. extra: 841 / 794,
  12090. bottom: 0.035
  12091. }
  12092. },
  12093. back: {
  12094. height: math.unit(6, "feet"),
  12095. weight: math.unit(150, "lb"),
  12096. name: "Back",
  12097. image: {
  12098. source: "./media/characters/koragos/back.svg",
  12099. extra: 841 / 810,
  12100. bottom: 0.022
  12101. }
  12102. },
  12103. },
  12104. [
  12105. {
  12106. name: "Normal",
  12107. height: math.unit(6 + 11 / 12, "feet"),
  12108. default: true
  12109. },
  12110. {
  12111. name: "Macro",
  12112. height: math.unit(490, "feet")
  12113. },
  12114. {
  12115. name: "Megamacro",
  12116. height: math.unit(10, "miles")
  12117. },
  12118. {
  12119. name: "Gigamacro",
  12120. height: math.unit(50, "miles")
  12121. },
  12122. ]
  12123. ))
  12124. characterMakers.push(() => makeCharacter(
  12125. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12126. {
  12127. front: {
  12128. height: math.unit(6, "feet"),
  12129. weight: math.unit(250, "lb"),
  12130. name: "Front",
  12131. image: {
  12132. source: "./media/characters/xylrem/front.svg",
  12133. extra: 3323 / 3050,
  12134. bottom: 0.065
  12135. }
  12136. },
  12137. },
  12138. [
  12139. {
  12140. name: "Micro",
  12141. height: math.unit(4, "feet")
  12142. },
  12143. {
  12144. name: "Normal",
  12145. height: math.unit(16, "feet"),
  12146. default: true
  12147. },
  12148. {
  12149. name: "Macro",
  12150. height: math.unit(2720, "feet")
  12151. },
  12152. {
  12153. name: "Megamacro",
  12154. height: math.unit(25000, "miles")
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12160. {
  12161. front: {
  12162. height: math.unit(8, "feet"),
  12163. weight: math.unit(250, "kg"),
  12164. name: "Front",
  12165. image: {
  12166. source: "./media/characters/ikideru/front.svg",
  12167. extra: 930 / 870,
  12168. bottom: 0.087
  12169. }
  12170. },
  12171. back: {
  12172. height: math.unit(8, "feet"),
  12173. weight: math.unit(250, "kg"),
  12174. name: "Back",
  12175. image: {
  12176. source: "./media/characters/ikideru/back.svg",
  12177. extra: 919 / 852,
  12178. bottom: 0.055
  12179. }
  12180. },
  12181. },
  12182. [
  12183. {
  12184. name: "Rare",
  12185. height: math.unit(8, "feet"),
  12186. default: true
  12187. },
  12188. {
  12189. name: "Playful Loom",
  12190. height: math.unit(80, "feet")
  12191. },
  12192. {
  12193. name: "City Leaner",
  12194. height: math.unit(230, "feet")
  12195. },
  12196. {
  12197. name: "Megamacro",
  12198. height: math.unit(2500, "feet")
  12199. },
  12200. {
  12201. name: "Gigamacro",
  12202. height: math.unit(26400, "feet")
  12203. },
  12204. {
  12205. name: "Tectonic Shifter",
  12206. height: math.unit(1.7, "megameters")
  12207. },
  12208. {
  12209. name: "Planet Carer",
  12210. height: math.unit(21, "megameters")
  12211. },
  12212. {
  12213. name: "God",
  12214. height: math.unit(11157.22, "parsecs")
  12215. },
  12216. ]
  12217. ))
  12218. characterMakers.push(() => makeCharacter(
  12219. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12220. {
  12221. front: {
  12222. height: math.unit(6, "feet"),
  12223. weight: math.unit(120, "lb"),
  12224. name: "Front",
  12225. image: {
  12226. source: "./media/characters/neo/front.svg"
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Micro",
  12233. height: math.unit(2, "inches"),
  12234. default: true
  12235. },
  12236. {
  12237. name: "Human Size",
  12238. height: math.unit(5 + 8 / 12, "feet")
  12239. },
  12240. ]
  12241. ))
  12242. characterMakers.push(() => makeCharacter(
  12243. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12244. {
  12245. front: {
  12246. height: math.unit(13 + 10 / 12, "feet"),
  12247. weight: math.unit(5320, "lb"),
  12248. name: "Front",
  12249. image: {
  12250. source: "./media/characters/chauncey-chantz/front.svg",
  12251. extra: 1587 / 1435,
  12252. bottom: 0.02
  12253. }
  12254. },
  12255. },
  12256. [
  12257. {
  12258. name: "Normal",
  12259. height: math.unit(13 + 10 / 12, "feet"),
  12260. default: true
  12261. },
  12262. {
  12263. name: "Macro",
  12264. height: math.unit(45, "feet")
  12265. },
  12266. {
  12267. name: "Megamacro",
  12268. height: math.unit(250, "miles")
  12269. },
  12270. {
  12271. name: "Planetary",
  12272. height: math.unit(10000, "miles")
  12273. },
  12274. {
  12275. name: "Galactic",
  12276. height: math.unit(40000, "parsecs")
  12277. },
  12278. {
  12279. name: "Universal",
  12280. height: math.unit(1, "yottameter")
  12281. },
  12282. ]
  12283. ))
  12284. characterMakers.push(() => makeCharacter(
  12285. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12286. {
  12287. front: {
  12288. height: math.unit(6, "feet"),
  12289. weight: math.unit(150, "lb"),
  12290. name: "Front",
  12291. image: {
  12292. source: "./media/characters/epifox/front.svg",
  12293. extra: 1,
  12294. bottom: 0.075
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Micro",
  12301. height: math.unit(6, "inches")
  12302. },
  12303. {
  12304. name: "Normal",
  12305. height: math.unit(12, "feet"),
  12306. default: true
  12307. },
  12308. {
  12309. name: "Macro",
  12310. height: math.unit(3810, "feet")
  12311. },
  12312. {
  12313. name: "Megamacro",
  12314. height: math.unit(500, "miles")
  12315. },
  12316. ]
  12317. ))
  12318. characterMakers.push(() => makeCharacter(
  12319. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12320. {
  12321. front: {
  12322. height: math.unit(1.8796, "m"),
  12323. weight: math.unit(230, "lb"),
  12324. name: "Front",
  12325. image: {
  12326. source: "./media/characters/colin-t/front.svg",
  12327. extra: 1272 / 1193,
  12328. bottom: 0.07
  12329. }
  12330. },
  12331. },
  12332. [
  12333. {
  12334. name: "Micro",
  12335. height: math.unit(0.571, "meters")
  12336. },
  12337. {
  12338. name: "Normal",
  12339. height: math.unit(1.8796, "meters"),
  12340. default: true
  12341. },
  12342. {
  12343. name: "Tall",
  12344. height: math.unit(4, "meters")
  12345. },
  12346. {
  12347. name: "Macro",
  12348. height: math.unit(67.241, "meters")
  12349. },
  12350. {
  12351. name: "Megamacro",
  12352. height: math.unit(371.856, "meters")
  12353. },
  12354. {
  12355. name: "Planetary",
  12356. height: math.unit(12631.5689, "km")
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12362. {
  12363. front: {
  12364. height: math.unit(1.85, "meters"),
  12365. weight: math.unit(80, "kg"),
  12366. name: "Front",
  12367. image: {
  12368. source: "./media/characters/matvei/front.svg",
  12369. extra: 614 / 594,
  12370. bottom: 0.01
  12371. }
  12372. },
  12373. },
  12374. [
  12375. {
  12376. name: "Normal",
  12377. height: math.unit(1.85, "meters"),
  12378. default: true
  12379. },
  12380. ]
  12381. ))
  12382. characterMakers.push(() => makeCharacter(
  12383. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12384. {
  12385. front: {
  12386. height: math.unit(5 + 9 / 12, "feet"),
  12387. weight: math.unit(70, "lb"),
  12388. name: "Front",
  12389. image: {
  12390. source: "./media/characters/quincy/front.svg",
  12391. extra: 3041 / 2751
  12392. }
  12393. },
  12394. back: {
  12395. height: math.unit(5 + 9 / 12, "feet"),
  12396. weight: math.unit(70, "lb"),
  12397. name: "Back",
  12398. image: {
  12399. source: "./media/characters/quincy/back.svg",
  12400. extra: 3041 / 2751
  12401. }
  12402. },
  12403. flying: {
  12404. height: math.unit(5 + 4 / 12, "feet"),
  12405. weight: math.unit(70, "lb"),
  12406. name: "Flying",
  12407. image: {
  12408. source: "./media/characters/quincy/flying.svg",
  12409. extra: 1044 / 930
  12410. }
  12411. },
  12412. },
  12413. [
  12414. {
  12415. name: "Micro",
  12416. height: math.unit(3, "cm")
  12417. },
  12418. {
  12419. name: "Normal",
  12420. height: math.unit(5 + 9 / 12, "feet")
  12421. },
  12422. {
  12423. name: "Macro",
  12424. height: math.unit(200, "meters"),
  12425. default: true
  12426. },
  12427. {
  12428. name: "Megamacro",
  12429. height: math.unit(1000, "meters")
  12430. },
  12431. ]
  12432. ))
  12433. characterMakers.push(() => makeCharacter(
  12434. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12435. {
  12436. front: {
  12437. height: math.unit(3 + 11/12, "feet"),
  12438. weight: math.unit(50, "lb"),
  12439. name: "Front",
  12440. image: {
  12441. source: "./media/characters/vanrel/front.svg",
  12442. extra: 1104/949,
  12443. bottom: 52/1156
  12444. }
  12445. },
  12446. back: {
  12447. height: math.unit(3 + 11/12, "feet"),
  12448. weight: math.unit(50, "lb"),
  12449. name: "Back",
  12450. image: {
  12451. source: "./media/characters/vanrel/back.svg",
  12452. extra: 1119/976,
  12453. bottom: 37/1156
  12454. }
  12455. },
  12456. tome: {
  12457. height: math.unit(1.35, "feet"),
  12458. weight: math.unit(10, "lb"),
  12459. name: "Vanrel's Tome",
  12460. rename: true,
  12461. image: {
  12462. source: "./media/characters/vanrel/tome.svg"
  12463. }
  12464. },
  12465. beans: {
  12466. height: math.unit(0.89, "feet"),
  12467. name: "Beans",
  12468. image: {
  12469. source: "./media/characters/vanrel/beans.svg"
  12470. }
  12471. },
  12472. },
  12473. [
  12474. {
  12475. name: "Normal",
  12476. height: math.unit(3 + 11/12, "feet"),
  12477. default: true
  12478. },
  12479. ]
  12480. ))
  12481. characterMakers.push(() => makeCharacter(
  12482. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12483. {
  12484. front: {
  12485. height: math.unit(7 + 5 / 12, "feet"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/kuiper-vanrel/front.svg",
  12489. extra: 1219/1169,
  12490. bottom: 69/1288
  12491. }
  12492. },
  12493. back: {
  12494. height: math.unit(7 + 5 / 12, "feet"),
  12495. name: "Back",
  12496. image: {
  12497. source: "./media/characters/kuiper-vanrel/back.svg",
  12498. extra: 1236/1193,
  12499. bottom: 27/1263
  12500. }
  12501. },
  12502. foot: {
  12503. height: math.unit(0.55, "meters"),
  12504. name: "Foot",
  12505. image: {
  12506. source: "./media/characters/kuiper-vanrel/foot.svg",
  12507. }
  12508. },
  12509. battle: {
  12510. height: math.unit(6.824, "feet"),
  12511. name: "Battle",
  12512. image: {
  12513. source: "./media/characters/kuiper-vanrel/battle.svg",
  12514. extra: 1466 / 1327,
  12515. bottom: 29 / 1492.5
  12516. }
  12517. },
  12518. meerkui: {
  12519. height: math.unit(18, "inches"),
  12520. name: "Meerkui",
  12521. image: {
  12522. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12523. extra: 1354/1289,
  12524. bottom: 69/1423
  12525. }
  12526. },
  12527. },
  12528. [
  12529. {
  12530. name: "Normal",
  12531. height: math.unit(7 + 5 / 12, "feet"),
  12532. default: true
  12533. },
  12534. ]
  12535. ))
  12536. characterMakers.push(() => makeCharacter(
  12537. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12538. {
  12539. front: {
  12540. height: math.unit(8 + 5 / 12, "feet"),
  12541. name: "Front",
  12542. image: {
  12543. source: "./media/characters/keset-vanrel/front.svg",
  12544. extra: 1231/1148,
  12545. bottom: 82/1313
  12546. }
  12547. },
  12548. back: {
  12549. height: math.unit(8 + 5 / 12, "feet"),
  12550. name: "Back",
  12551. image: {
  12552. source: "./media/characters/keset-vanrel/back.svg",
  12553. extra: 1240/1174,
  12554. bottom: 33/1273
  12555. }
  12556. },
  12557. hand: {
  12558. height: math.unit(0.6, "meters"),
  12559. name: "Hand",
  12560. image: {
  12561. source: "./media/characters/keset-vanrel/hand.svg"
  12562. }
  12563. },
  12564. foot: {
  12565. height: math.unit(0.94978, "meters"),
  12566. name: "Foot",
  12567. image: {
  12568. source: "./media/characters/keset-vanrel/foot.svg"
  12569. }
  12570. },
  12571. battle: {
  12572. height: math.unit(7.408, "feet"),
  12573. name: "Battle",
  12574. image: {
  12575. source: "./media/characters/keset-vanrel/battle.svg",
  12576. extra: 1890 / 1386,
  12577. bottom: 73.28 / 1970
  12578. }
  12579. },
  12580. },
  12581. [
  12582. {
  12583. name: "Normal",
  12584. height: math.unit(8 + 5 / 12, "feet"),
  12585. default: true
  12586. },
  12587. ]
  12588. ))
  12589. characterMakers.push(() => makeCharacter(
  12590. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12591. {
  12592. front: {
  12593. height: math.unit(6, "feet"),
  12594. weight: math.unit(150, "lb"),
  12595. name: "Front",
  12596. image: {
  12597. source: "./media/characters/neos/front.svg",
  12598. extra: 1696 / 992,
  12599. bottom: 0.14
  12600. }
  12601. },
  12602. },
  12603. [
  12604. {
  12605. name: "Normal",
  12606. height: math.unit(54, "cm"),
  12607. default: true
  12608. },
  12609. {
  12610. name: "Macro",
  12611. height: math.unit(100, "m")
  12612. },
  12613. {
  12614. name: "Megamacro",
  12615. height: math.unit(10, "km")
  12616. },
  12617. {
  12618. name: "Megamacro+",
  12619. height: math.unit(100, "km")
  12620. },
  12621. {
  12622. name: "Gigamacro",
  12623. height: math.unit(100, "Mm")
  12624. },
  12625. {
  12626. name: "Teramacro",
  12627. height: math.unit(100, "Gm")
  12628. },
  12629. {
  12630. name: "Examacro",
  12631. height: math.unit(100, "Em")
  12632. },
  12633. {
  12634. name: "Godly",
  12635. height: math.unit(10000, "Ym")
  12636. },
  12637. {
  12638. name: "Beyond Godly",
  12639. height: math.unit(25, "multiverses")
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12645. {
  12646. feminine: {
  12647. height: math.unit(5, "feet"),
  12648. weight: math.unit(100, "lb"),
  12649. name: "Feminine",
  12650. image: {
  12651. source: "./media/characters/sammy-mouse/feminine.svg",
  12652. extra: 2526 / 2425,
  12653. bottom: 0.123
  12654. }
  12655. },
  12656. masculine: {
  12657. height: math.unit(5, "feet"),
  12658. weight: math.unit(100, "lb"),
  12659. name: "Masculine",
  12660. image: {
  12661. source: "./media/characters/sammy-mouse/masculine.svg",
  12662. extra: 2526 / 2425,
  12663. bottom: 0.123
  12664. }
  12665. },
  12666. },
  12667. [
  12668. {
  12669. name: "Micro",
  12670. height: math.unit(5, "inches")
  12671. },
  12672. {
  12673. name: "Normal",
  12674. height: math.unit(5, "feet"),
  12675. default: true
  12676. },
  12677. {
  12678. name: "Macro",
  12679. height: math.unit(60, "feet")
  12680. },
  12681. ]
  12682. ))
  12683. characterMakers.push(() => makeCharacter(
  12684. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12685. {
  12686. front: {
  12687. height: math.unit(4, "feet"),
  12688. weight: math.unit(50, "lb"),
  12689. name: "Front",
  12690. image: {
  12691. source: "./media/characters/kole/front.svg",
  12692. extra: 1423 / 1303,
  12693. bottom: 0.025
  12694. }
  12695. },
  12696. back: {
  12697. height: math.unit(4, "feet"),
  12698. weight: math.unit(50, "lb"),
  12699. name: "Back",
  12700. image: {
  12701. source: "./media/characters/kole/back.svg",
  12702. extra: 1426 / 1280,
  12703. bottom: 0.02
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Normal",
  12710. height: math.unit(4, "feet"),
  12711. default: true
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(2.5, "feet"),
  12720. weight: math.unit(32, "lb"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/rufran/front.svg",
  12724. extra: 1313/885,
  12725. bottom: 94/1407
  12726. }
  12727. },
  12728. side: {
  12729. height: math.unit(2.5, "feet"),
  12730. weight: math.unit(32, "lb"),
  12731. name: "Side",
  12732. image: {
  12733. source: "./media/characters/rufran/side.svg",
  12734. extra: 1109/852,
  12735. bottom: 118/1227
  12736. }
  12737. },
  12738. back: {
  12739. height: math.unit(2.5, "feet"),
  12740. weight: math.unit(32, "lb"),
  12741. name: "Back",
  12742. image: {
  12743. source: "./media/characters/rufran/back.svg",
  12744. extra: 1280/878,
  12745. bottom: 131/1411
  12746. }
  12747. },
  12748. mouth: {
  12749. height: math.unit(1.13, "feet"),
  12750. name: "Mouth",
  12751. image: {
  12752. source: "./media/characters/rufran/mouth.svg"
  12753. }
  12754. },
  12755. foot: {
  12756. height: math.unit(1.33, "feet"),
  12757. name: "Foot",
  12758. image: {
  12759. source: "./media/characters/rufran/foot.svg"
  12760. }
  12761. },
  12762. koboldFront: {
  12763. height: math.unit(2 + 6 / 12, "feet"),
  12764. weight: math.unit(20, "lb"),
  12765. name: "Front (Kobold)",
  12766. image: {
  12767. source: "./media/characters/rufran/kobold-front.svg",
  12768. extra: 2041 / 1839,
  12769. bottom: 0.055
  12770. }
  12771. },
  12772. koboldBack: {
  12773. height: math.unit(2 + 6 / 12, "feet"),
  12774. weight: math.unit(20, "lb"),
  12775. name: "Back (Kobold)",
  12776. image: {
  12777. source: "./media/characters/rufran/kobold-back.svg",
  12778. extra: 2054 / 1839,
  12779. bottom: 0.01
  12780. }
  12781. },
  12782. koboldHand: {
  12783. height: math.unit(0.2166, "meters"),
  12784. name: "Hand (Kobold)",
  12785. image: {
  12786. source: "./media/characters/rufran/kobold-hand.svg"
  12787. }
  12788. },
  12789. koboldFoot: {
  12790. height: math.unit(0.185, "meters"),
  12791. name: "Foot (Kobold)",
  12792. image: {
  12793. source: "./media/characters/rufran/kobold-foot.svg"
  12794. }
  12795. },
  12796. },
  12797. [
  12798. {
  12799. name: "Micro",
  12800. height: math.unit(1, "inch")
  12801. },
  12802. {
  12803. name: "Normal",
  12804. height: math.unit(2 + 6 / 12, "feet"),
  12805. default: true
  12806. },
  12807. {
  12808. name: "Big",
  12809. height: math.unit(60, "feet")
  12810. },
  12811. {
  12812. name: "Macro",
  12813. height: math.unit(325, "feet")
  12814. },
  12815. ]
  12816. ))
  12817. characterMakers.push(() => makeCharacter(
  12818. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12819. {
  12820. front: {
  12821. height: math.unit(0.3, "meters"),
  12822. weight: math.unit(3.5, "kg"),
  12823. name: "Front",
  12824. image: {
  12825. source: "./media/characters/chip/front.svg",
  12826. extra: 748 / 674
  12827. }
  12828. },
  12829. },
  12830. [
  12831. {
  12832. name: "Micro",
  12833. height: math.unit(1, "inch"),
  12834. default: true
  12835. },
  12836. ]
  12837. ))
  12838. characterMakers.push(() => makeCharacter(
  12839. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12840. {
  12841. side: {
  12842. height: math.unit(2.3, "meters"),
  12843. weight: math.unit(3500, "lb"),
  12844. name: "Side",
  12845. image: {
  12846. source: "./media/characters/torvid/side.svg",
  12847. extra: 1972 / 722,
  12848. bottom: 0.035
  12849. }
  12850. },
  12851. },
  12852. [
  12853. {
  12854. name: "Normal",
  12855. height: math.unit(2.3, "meters"),
  12856. default: true
  12857. },
  12858. ]
  12859. ))
  12860. characterMakers.push(() => makeCharacter(
  12861. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12862. {
  12863. front: {
  12864. height: math.unit(2, "meters"),
  12865. weight: math.unit(150.5, "kg"),
  12866. name: "Front",
  12867. image: {
  12868. source: "./media/characters/susan/front.svg",
  12869. extra: 693 / 635,
  12870. bottom: 0.05
  12871. }
  12872. },
  12873. },
  12874. [
  12875. {
  12876. name: "Megamacro",
  12877. height: math.unit(505, "miles"),
  12878. default: true
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(6, "feet"),
  12887. weight: math.unit(150, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/raindrops/front.svg",
  12891. extra: 2655 / 2461,
  12892. bottom: 49 / 2705
  12893. }
  12894. },
  12895. back: {
  12896. height: math.unit(6, "feet"),
  12897. weight: math.unit(150, "lb"),
  12898. name: "Back",
  12899. image: {
  12900. source: "./media/characters/raindrops/back.svg",
  12901. extra: 2574 / 2400,
  12902. bottom: 65 / 2634
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Micro",
  12909. height: math.unit(6, "inches")
  12910. },
  12911. {
  12912. name: "Normal",
  12913. height: math.unit(6 + 2 / 12, "feet")
  12914. },
  12915. {
  12916. name: "Macro",
  12917. height: math.unit(131, "feet"),
  12918. default: true
  12919. },
  12920. {
  12921. name: "Megamacro",
  12922. height: math.unit(15, "miles")
  12923. },
  12924. {
  12925. name: "Gigamacro",
  12926. height: math.unit(4000, "miles")
  12927. },
  12928. {
  12929. name: "Teramacro",
  12930. height: math.unit(315000, "miles")
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12936. {
  12937. front: {
  12938. height: math.unit(2.794, "meters"),
  12939. weight: math.unit(325, "kg"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/tezwa/front.svg",
  12943. extra: 2083 / 1906,
  12944. bottom: 0.031
  12945. }
  12946. },
  12947. foot: {
  12948. height: math.unit(0.687, "meters"),
  12949. name: "Foot",
  12950. image: {
  12951. source: "./media/characters/tezwa/foot.svg"
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Normal",
  12958. height: math.unit(9 + 2 / 12, "feet"),
  12959. default: true
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(58, "feet"),
  12968. weight: math.unit(89000, "lb"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/typhus/front.svg",
  12972. extra: 816 / 800,
  12973. bottom: 0.065
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Macro",
  12980. height: math.unit(58, "feet"),
  12981. default: true
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(12, "feet"),
  12990. weight: math.unit(6, "tonnes"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/lyra-von-wulf/front.svg",
  12994. extra: 1,
  12995. bottom: 0.10
  12996. }
  12997. },
  12998. frontMecha: {
  12999. height: math.unit(12, "feet"),
  13000. weight: math.unit(12, "tonnes"),
  13001. name: "Front (Mecha)",
  13002. image: {
  13003. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13004. extra: 1,
  13005. bottom: 0.042
  13006. }
  13007. },
  13008. maw: {
  13009. height: math.unit(2.2, "feet"),
  13010. name: "Maw",
  13011. image: {
  13012. source: "./media/characters/lyra-von-wulf/maw.svg"
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Normal",
  13019. height: math.unit(12, "feet"),
  13020. default: true
  13021. },
  13022. {
  13023. name: "Classic",
  13024. height: math.unit(50, "feet")
  13025. },
  13026. {
  13027. name: "Macro",
  13028. height: math.unit(500, "feet")
  13029. },
  13030. {
  13031. name: "Megamacro",
  13032. height: math.unit(1, "mile")
  13033. },
  13034. {
  13035. name: "Gigamacro",
  13036. height: math.unit(400, "miles")
  13037. },
  13038. {
  13039. name: "Teramacro",
  13040. height: math.unit(22000, "miles")
  13041. },
  13042. {
  13043. name: "Solarmacro",
  13044. height: math.unit(8600000, "miles")
  13045. },
  13046. {
  13047. name: "Galactic",
  13048. height: math.unit(1057000, "lightyears")
  13049. },
  13050. ]
  13051. ))
  13052. characterMakers.push(() => makeCharacter(
  13053. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13054. {
  13055. front: {
  13056. height: math.unit(6 + 10 / 12, "feet"),
  13057. weight: math.unit(150, "lb"),
  13058. name: "Front",
  13059. image: {
  13060. source: "./media/characters/dixon/front.svg",
  13061. extra: 3361 / 3209,
  13062. bottom: 0.01
  13063. }
  13064. },
  13065. },
  13066. [
  13067. {
  13068. name: "Normal",
  13069. height: math.unit(6 + 10 / 12, "feet"),
  13070. default: true
  13071. },
  13072. {
  13073. name: "Big",
  13074. height: math.unit(12, "meters")
  13075. },
  13076. {
  13077. name: "Macro",
  13078. height: math.unit(500, "meters")
  13079. },
  13080. {
  13081. name: "Megamacro",
  13082. height: math.unit(2, "km")
  13083. },
  13084. ]
  13085. ))
  13086. characterMakers.push(() => makeCharacter(
  13087. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13088. {
  13089. front: {
  13090. height: math.unit(185, "cm"),
  13091. weight: math.unit(68, "kg"),
  13092. name: "Front",
  13093. image: {
  13094. source: "./media/characters/kauko/front.svg",
  13095. extra: 1455 / 1421,
  13096. bottom: 0.03
  13097. }
  13098. },
  13099. back: {
  13100. height: math.unit(185, "cm"),
  13101. weight: math.unit(68, "kg"),
  13102. name: "Back",
  13103. image: {
  13104. source: "./media/characters/kauko/back.svg",
  13105. extra: 1455 / 1421,
  13106. bottom: 0.004
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Normal",
  13113. height: math.unit(185, "cm"),
  13114. default: true
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13120. {
  13121. front: {
  13122. height: math.unit(6, "feet"),
  13123. weight: math.unit(150, "kg"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/varg/front.svg",
  13127. extra: 1108 / 1018,
  13128. bottom: 0.0375
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Normal",
  13135. height: math.unit(5, "meters")
  13136. },
  13137. {
  13138. name: "Macro",
  13139. height: math.unit(200, "meters")
  13140. },
  13141. {
  13142. name: "Megamacro",
  13143. height: math.unit(20, "kilometers")
  13144. },
  13145. {
  13146. name: "True Size",
  13147. height: math.unit(211, "km"),
  13148. default: true
  13149. },
  13150. {
  13151. name: "Gigamacro",
  13152. height: math.unit(1000, "km")
  13153. },
  13154. {
  13155. name: "Gigamacro+",
  13156. height: math.unit(8000, "km")
  13157. },
  13158. {
  13159. name: "Teramacro",
  13160. height: math.unit(1000000, "km")
  13161. },
  13162. ]
  13163. ))
  13164. characterMakers.push(() => makeCharacter(
  13165. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13166. {
  13167. front: {
  13168. height: math.unit(7 + 7 / 12, "feet"),
  13169. weight: math.unit(267, "lb"),
  13170. name: "Front",
  13171. image: {
  13172. source: "./media/characters/dayza/front.svg",
  13173. extra: 1262 / 1200,
  13174. bottom: 0.035
  13175. }
  13176. },
  13177. side: {
  13178. height: math.unit(7 + 7 / 12, "feet"),
  13179. weight: math.unit(267, "lb"),
  13180. name: "Side",
  13181. image: {
  13182. source: "./media/characters/dayza/side.svg",
  13183. extra: 1295 / 1245,
  13184. bottom: 0.05
  13185. }
  13186. },
  13187. back: {
  13188. height: math.unit(7 + 7 / 12, "feet"),
  13189. weight: math.unit(267, "lb"),
  13190. name: "Back",
  13191. image: {
  13192. source: "./media/characters/dayza/back.svg",
  13193. extra: 1241 / 1170
  13194. }
  13195. },
  13196. },
  13197. [
  13198. {
  13199. name: "Normal",
  13200. height: math.unit(7 + 7 / 12, "feet"),
  13201. default: true
  13202. },
  13203. {
  13204. name: "Macro",
  13205. height: math.unit(155, "feet")
  13206. },
  13207. ]
  13208. ))
  13209. characterMakers.push(() => makeCharacter(
  13210. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13211. {
  13212. front: {
  13213. height: math.unit(6 + 5 / 12, "feet"),
  13214. weight: math.unit(160, "lb"),
  13215. name: "Front",
  13216. image: {
  13217. source: "./media/characters/xanthos/front.svg",
  13218. extra: 1,
  13219. bottom: 0.04
  13220. }
  13221. },
  13222. back: {
  13223. height: math.unit(6 + 5 / 12, "feet"),
  13224. weight: math.unit(160, "lb"),
  13225. name: "Back",
  13226. image: {
  13227. source: "./media/characters/xanthos/back.svg",
  13228. extra: 1,
  13229. bottom: 0.03
  13230. }
  13231. },
  13232. hand: {
  13233. height: math.unit(0.928, "feet"),
  13234. name: "Hand",
  13235. image: {
  13236. source: "./media/characters/xanthos/hand.svg"
  13237. }
  13238. },
  13239. foot: {
  13240. height: math.unit(1.286, "feet"),
  13241. name: "Foot",
  13242. image: {
  13243. source: "./media/characters/xanthos/foot.svg"
  13244. }
  13245. },
  13246. },
  13247. [
  13248. {
  13249. name: "Normal",
  13250. height: math.unit(6 + 5 / 12, "feet"),
  13251. default: true
  13252. },
  13253. {
  13254. name: "Normal+",
  13255. height: math.unit(6, "meters")
  13256. },
  13257. {
  13258. name: "Macro",
  13259. height: math.unit(40, "feet")
  13260. },
  13261. {
  13262. name: "Macro+",
  13263. height: math.unit(200, "meters")
  13264. },
  13265. {
  13266. name: "Megamacro",
  13267. height: math.unit(20, "km")
  13268. },
  13269. {
  13270. name: "Megamacro+",
  13271. height: math.unit(100, "km")
  13272. },
  13273. {
  13274. name: "Gigamacro",
  13275. height: math.unit(200, "megameters")
  13276. },
  13277. {
  13278. name: "Gigamacro+",
  13279. height: math.unit(1.5, "gigameters")
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13285. {
  13286. front: {
  13287. height: math.unit(6 + 3 / 12, "feet"),
  13288. weight: math.unit(215, "lb"),
  13289. name: "Front",
  13290. image: {
  13291. source: "./media/characters/grynn/front.svg",
  13292. extra: 4627 / 4209,
  13293. bottom: 0.047
  13294. }
  13295. },
  13296. },
  13297. [
  13298. {
  13299. name: "Micro",
  13300. height: math.unit(6, "inches")
  13301. },
  13302. {
  13303. name: "Normal",
  13304. height: math.unit(6 + 3 / 12, "feet"),
  13305. default: true
  13306. },
  13307. {
  13308. name: "Big",
  13309. height: math.unit(104, "feet")
  13310. },
  13311. {
  13312. name: "Macro",
  13313. height: math.unit(944, "feet")
  13314. },
  13315. {
  13316. name: "Macro+",
  13317. height: math.unit(9480, "feet")
  13318. },
  13319. {
  13320. name: "Megamacro",
  13321. height: math.unit(78752, "feet")
  13322. },
  13323. {
  13324. name: "Megamacro+",
  13325. height: math.unit(630128, "feet")
  13326. },
  13327. {
  13328. name: "Megamacro++",
  13329. height: math.unit(3150695, "feet")
  13330. },
  13331. ]
  13332. ))
  13333. characterMakers.push(() => makeCharacter(
  13334. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13335. {
  13336. front: {
  13337. height: math.unit(7 + 5 / 12, "feet"),
  13338. weight: math.unit(450, "lb"),
  13339. name: "Front",
  13340. image: {
  13341. source: "./media/characters/mocha-aura/front.svg",
  13342. extra: 1907 / 1817,
  13343. bottom: 0.04
  13344. }
  13345. },
  13346. back: {
  13347. height: math.unit(7 + 5 / 12, "feet"),
  13348. weight: math.unit(450, "lb"),
  13349. name: "Back",
  13350. image: {
  13351. source: "./media/characters/mocha-aura/back.svg",
  13352. extra: 1900 / 1825,
  13353. bottom: 0.045
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Nano",
  13360. height: math.unit(1, "nm")
  13361. },
  13362. {
  13363. name: "Megamicro",
  13364. height: math.unit(1, "mm")
  13365. },
  13366. {
  13367. name: "Micro",
  13368. height: math.unit(3, "inches")
  13369. },
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(7 + 5 / 12, "feet"),
  13373. default: true
  13374. },
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(30, "feet")
  13378. },
  13379. {
  13380. name: "Megamacro",
  13381. height: math.unit(3500, "feet")
  13382. },
  13383. {
  13384. name: "Teramacro",
  13385. height: math.unit(500000, "miles")
  13386. },
  13387. {
  13388. name: "Petamacro",
  13389. height: math.unit(50000000000000000, "parsecs")
  13390. },
  13391. ]
  13392. ))
  13393. characterMakers.push(() => makeCharacter(
  13394. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13395. {
  13396. front: {
  13397. height: math.unit(6, "feet"),
  13398. weight: math.unit(150, "lb"),
  13399. name: "Front",
  13400. image: {
  13401. source: "./media/characters/ilisha-devya/front.svg",
  13402. extra: 1053/1049,
  13403. bottom: 270/1323
  13404. }
  13405. },
  13406. back: {
  13407. height: math.unit(6, "feet"),
  13408. weight: math.unit(150, "lb"),
  13409. name: "Back",
  13410. image: {
  13411. source: "./media/characters/ilisha-devya/back.svg",
  13412. extra: 1131/1128,
  13413. bottom: 39/1170
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Macro",
  13420. height: math.unit(500, "feet"),
  13421. default: true
  13422. },
  13423. {
  13424. name: "Megamacro",
  13425. height: math.unit(10, "miles")
  13426. },
  13427. {
  13428. name: "Gigamacro",
  13429. height: math.unit(100000, "miles")
  13430. },
  13431. {
  13432. name: "Examacro",
  13433. height: math.unit(1e9, "lightyears")
  13434. },
  13435. {
  13436. name: "Omniversal",
  13437. height: math.unit(1e33, "lightyears")
  13438. },
  13439. {
  13440. name: "Beyond Infinite",
  13441. height: math.unit(1e100, "lightyears")
  13442. },
  13443. ]
  13444. ))
  13445. characterMakers.push(() => makeCharacter(
  13446. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13447. {
  13448. Side: {
  13449. height: math.unit(6, "feet"),
  13450. weight: math.unit(150, "lb"),
  13451. name: "Side",
  13452. image: {
  13453. source: "./media/characters/mira/side.svg",
  13454. extra: 900 / 799,
  13455. bottom: 0.02
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Human Size",
  13462. height: math.unit(6, "feet")
  13463. },
  13464. {
  13465. name: "Macro",
  13466. height: math.unit(100, "feet"),
  13467. default: true
  13468. },
  13469. {
  13470. name: "Megamacro",
  13471. height: math.unit(10, "miles")
  13472. },
  13473. {
  13474. name: "Gigamacro",
  13475. height: math.unit(25000, "miles")
  13476. },
  13477. {
  13478. name: "Teramacro",
  13479. height: math.unit(300, "AU")
  13480. },
  13481. {
  13482. name: "Full Size",
  13483. height: math.unit(4.5e10, "lightyears")
  13484. },
  13485. ]
  13486. ))
  13487. characterMakers.push(() => makeCharacter(
  13488. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13489. {
  13490. front: {
  13491. height: math.unit(6, "feet"),
  13492. weight: math.unit(150, "lb"),
  13493. name: "Front",
  13494. image: {
  13495. source: "./media/characters/holly/front.svg",
  13496. extra: 639 / 606
  13497. }
  13498. },
  13499. back: {
  13500. height: math.unit(6, "feet"),
  13501. weight: math.unit(150, "lb"),
  13502. name: "Back",
  13503. image: {
  13504. source: "./media/characters/holly/back.svg",
  13505. extra: 623 / 598
  13506. }
  13507. },
  13508. frontWorking: {
  13509. height: math.unit(6, "feet"),
  13510. weight: math.unit(150, "lb"),
  13511. name: "Front (Working)",
  13512. image: {
  13513. source: "./media/characters/holly/front-working.svg",
  13514. extra: 607 / 577,
  13515. bottom: 0.048
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Normal",
  13522. height: math.unit(12 + 3 / 12, "feet"),
  13523. default: true
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Porter", species: ["bernese-mountain-dog"], 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/porter/front.svg",
  13536. extra: 1,
  13537. bottom: 0.01
  13538. }
  13539. },
  13540. frontRobes: {
  13541. height: math.unit(6, "feet"),
  13542. weight: math.unit(150, "lb"),
  13543. name: "Front (Robes)",
  13544. image: {
  13545. source: "./media/characters/porter/front-robes.svg",
  13546. extra: 1.01,
  13547. bottom: 0.01
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Normal",
  13554. height: math.unit(11 + 9 / 12, "feet"),
  13555. default: true
  13556. },
  13557. ]
  13558. ))
  13559. characterMakers.push(() => makeCharacter(
  13560. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13561. {
  13562. legendary: {
  13563. height: math.unit(6, "feet"),
  13564. weight: math.unit(150, "lb"),
  13565. name: "Legendary",
  13566. image: {
  13567. source: "./media/characters/lucy/legendary.svg",
  13568. extra: 1355 / 1100,
  13569. bottom: 0.045
  13570. }
  13571. },
  13572. },
  13573. [
  13574. {
  13575. name: "Legendary",
  13576. height: math.unit(86882 * 2, "miles"),
  13577. default: true
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13583. {
  13584. front: {
  13585. height: math.unit(6, "feet"),
  13586. weight: math.unit(150, "lb"),
  13587. name: "Front",
  13588. image: {
  13589. source: "./media/characters/drusilla/front.svg",
  13590. extra: 678 / 635,
  13591. bottom: 0.03
  13592. }
  13593. },
  13594. back: {
  13595. height: math.unit(6, "feet"),
  13596. weight: math.unit(150, "lb"),
  13597. name: "Back",
  13598. image: {
  13599. source: "./media/characters/drusilla/back.svg",
  13600. extra: 678 / 635,
  13601. bottom: 0.005
  13602. }
  13603. },
  13604. },
  13605. [
  13606. {
  13607. name: "Macro",
  13608. height: math.unit(100, "feet")
  13609. },
  13610. {
  13611. name: "Canon Height",
  13612. height: math.unit(2000, "feet"),
  13613. default: true
  13614. },
  13615. ]
  13616. ))
  13617. characterMakers.push(() => makeCharacter(
  13618. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13619. {
  13620. front: {
  13621. height: math.unit(6, "feet"),
  13622. weight: math.unit(180, "lb"),
  13623. name: "Front",
  13624. image: {
  13625. source: "./media/characters/renard-thatch/front.svg",
  13626. extra: 2411 / 2275,
  13627. bottom: 0.01
  13628. }
  13629. },
  13630. frontPosing: {
  13631. height: math.unit(6, "feet"),
  13632. weight: math.unit(180, "lb"),
  13633. name: "Front (Posing)",
  13634. image: {
  13635. source: "./media/characters/renard-thatch/front-posing.svg",
  13636. extra: 2381 / 2261,
  13637. bottom: 0.01
  13638. }
  13639. },
  13640. back: {
  13641. height: math.unit(6, "feet"),
  13642. weight: math.unit(180, "lb"),
  13643. name: "Back",
  13644. image: {
  13645. source: "./media/characters/renard-thatch/back.svg",
  13646. extra: 2428 / 2288
  13647. }
  13648. },
  13649. },
  13650. [
  13651. {
  13652. name: "Micro",
  13653. height: math.unit(3, "inches")
  13654. },
  13655. {
  13656. name: "Default",
  13657. height: math.unit(6, "feet"),
  13658. default: true
  13659. },
  13660. {
  13661. name: "Macro",
  13662. height: math.unit(75, "feet")
  13663. },
  13664. ]
  13665. ))
  13666. characterMakers.push(() => makeCharacter(
  13667. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13668. {
  13669. front: {
  13670. height: math.unit(1450, "feet"),
  13671. weight: math.unit(1.21e6, "tons"),
  13672. name: "Front",
  13673. image: {
  13674. source: "./media/characters/sekvra/front.svg",
  13675. extra: 1193/1190,
  13676. bottom: 78/1271
  13677. }
  13678. },
  13679. side: {
  13680. height: math.unit(1450, "feet"),
  13681. weight: math.unit(1.21e6, "tons"),
  13682. name: "Side",
  13683. image: {
  13684. source: "./media/characters/sekvra/side.svg",
  13685. extra: 1193/1190,
  13686. bottom: 52/1245
  13687. }
  13688. },
  13689. back: {
  13690. height: math.unit(1450, "feet"),
  13691. weight: math.unit(1.21e6, "tons"),
  13692. name: "Back",
  13693. image: {
  13694. source: "./media/characters/sekvra/back.svg",
  13695. extra: 1219/1216,
  13696. bottom: 21/1240
  13697. }
  13698. },
  13699. frontClothed: {
  13700. height: math.unit(1450, "feet"),
  13701. weight: math.unit(1.21e6, "tons"),
  13702. name: "Front (Clothed)",
  13703. image: {
  13704. source: "./media/characters/sekvra/front-clothed.svg",
  13705. extra: 1192/1189,
  13706. bottom: 79/1271
  13707. }
  13708. },
  13709. },
  13710. [
  13711. {
  13712. name: "Macro",
  13713. height: math.unit(1450, "feet"),
  13714. default: true
  13715. },
  13716. {
  13717. name: "Megamacro",
  13718. height: math.unit(15000, "feet")
  13719. },
  13720. ]
  13721. ))
  13722. characterMakers.push(() => makeCharacter(
  13723. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13724. {
  13725. front: {
  13726. height: math.unit(6, "feet"),
  13727. weight: math.unit(150, "lb"),
  13728. name: "Front",
  13729. image: {
  13730. source: "./media/characters/carmine/front.svg",
  13731. extra: 1,
  13732. bottom: 0.035
  13733. }
  13734. },
  13735. frontArmor: {
  13736. height: math.unit(6, "feet"),
  13737. weight: math.unit(150, "lb"),
  13738. name: "Front (Armor)",
  13739. image: {
  13740. source: "./media/characters/carmine/front-armor.svg",
  13741. extra: 1,
  13742. bottom: 0.035
  13743. }
  13744. },
  13745. },
  13746. [
  13747. {
  13748. name: "Large",
  13749. height: math.unit(1, "mile")
  13750. },
  13751. {
  13752. name: "Huge",
  13753. height: math.unit(40, "miles"),
  13754. default: true
  13755. },
  13756. {
  13757. name: "Colossal",
  13758. height: math.unit(2500, "miles")
  13759. },
  13760. ]
  13761. ))
  13762. characterMakers.push(() => makeCharacter(
  13763. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13764. {
  13765. front: {
  13766. height: math.unit(6, "feet"),
  13767. weight: math.unit(150, "lb"),
  13768. name: "Front",
  13769. image: {
  13770. source: "./media/characters/elyssia/front.svg",
  13771. extra: 2201 / 2035,
  13772. bottom: 0.05
  13773. }
  13774. },
  13775. frontClothed: {
  13776. height: math.unit(6, "feet"),
  13777. weight: math.unit(150, "lb"),
  13778. name: "Front (Clothed)",
  13779. image: {
  13780. source: "./media/characters/elyssia/front-clothed.svg",
  13781. extra: 2201 / 2035,
  13782. bottom: 0.05
  13783. }
  13784. },
  13785. back: {
  13786. height: math.unit(6, "feet"),
  13787. weight: math.unit(150, "lb"),
  13788. name: "Back",
  13789. image: {
  13790. source: "./media/characters/elyssia/back.svg",
  13791. extra: 2201 / 2035,
  13792. bottom: 0.013
  13793. }
  13794. },
  13795. },
  13796. [
  13797. {
  13798. name: "Smaller",
  13799. height: math.unit(150, "feet")
  13800. },
  13801. {
  13802. name: "Standard",
  13803. height: math.unit(1400, "feet"),
  13804. default: true
  13805. },
  13806. {
  13807. name: "Distracted",
  13808. height: math.unit(15000, "feet")
  13809. },
  13810. ]
  13811. ))
  13812. characterMakers.push(() => makeCharacter(
  13813. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13814. {
  13815. front: {
  13816. height: math.unit(7 + 4/12, "feet"),
  13817. weight: math.unit(690, "lb"),
  13818. name: "Front",
  13819. image: {
  13820. source: "./media/characters/geno-maxwell/front.svg",
  13821. extra: 984/856,
  13822. bottom: 87/1071
  13823. }
  13824. },
  13825. back: {
  13826. height: math.unit(7 + 4/12, "feet"),
  13827. weight: math.unit(690, "lb"),
  13828. name: "Back",
  13829. image: {
  13830. source: "./media/characters/geno-maxwell/back.svg",
  13831. extra: 981/854,
  13832. bottom: 57/1038
  13833. }
  13834. },
  13835. frontCostume: {
  13836. height: math.unit(7 + 4/12, "feet"),
  13837. weight: math.unit(690, "lb"),
  13838. name: "Front (Costume)",
  13839. image: {
  13840. source: "./media/characters/geno-maxwell/front-costume.svg",
  13841. extra: 984/856,
  13842. bottom: 87/1071
  13843. }
  13844. },
  13845. backcostume: {
  13846. height: math.unit(7 + 4/12, "feet"),
  13847. weight: math.unit(690, "lb"),
  13848. name: "Back (Costume)",
  13849. image: {
  13850. source: "./media/characters/geno-maxwell/back-costume.svg",
  13851. extra: 981/854,
  13852. bottom: 57/1038
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Micro",
  13859. height: math.unit(3, "inches")
  13860. },
  13861. {
  13862. name: "Normal",
  13863. height: math.unit(7 + 4 / 12, "feet"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Macro",
  13868. height: math.unit(220, "feet")
  13869. },
  13870. {
  13871. name: "Megamacro",
  13872. height: math.unit(11, "miles")
  13873. },
  13874. ]
  13875. ))
  13876. characterMakers.push(() => makeCharacter(
  13877. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13878. {
  13879. front: {
  13880. height: math.unit(7 + 4/12, "feet"),
  13881. weight: math.unit(750, "lb"),
  13882. name: "Front",
  13883. image: {
  13884. source: "./media/characters/regena-maxwell/front.svg",
  13885. extra: 984/856,
  13886. bottom: 87/1071
  13887. }
  13888. },
  13889. back: {
  13890. height: math.unit(7 + 4/12, "feet"),
  13891. weight: math.unit(750, "lb"),
  13892. name: "Back",
  13893. image: {
  13894. source: "./media/characters/regena-maxwell/back.svg",
  13895. extra: 981/854,
  13896. bottom: 57/1038
  13897. }
  13898. },
  13899. frontCostume: {
  13900. height: math.unit(7 + 4/12, "feet"),
  13901. weight: math.unit(750, "lb"),
  13902. name: "Front (Costume)",
  13903. image: {
  13904. source: "./media/characters/regena-maxwell/front-costume.svg",
  13905. extra: 984/856,
  13906. bottom: 87/1071
  13907. }
  13908. },
  13909. backcostume: {
  13910. height: math.unit(7 + 4/12, "feet"),
  13911. weight: math.unit(750, "lb"),
  13912. name: "Back (Costume)",
  13913. image: {
  13914. source: "./media/characters/regena-maxwell/back-costume.svg",
  13915. extra: 981/854,
  13916. bottom: 57/1038
  13917. }
  13918. },
  13919. },
  13920. [
  13921. {
  13922. name: "Normal",
  13923. height: math.unit(7 + 4 / 12, "feet"),
  13924. default: true
  13925. },
  13926. {
  13927. name: "Macro",
  13928. height: math.unit(220, "feet")
  13929. },
  13930. {
  13931. name: "Megamacro",
  13932. height: math.unit(11, "miles")
  13933. },
  13934. ]
  13935. ))
  13936. characterMakers.push(() => makeCharacter(
  13937. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13938. {
  13939. front: {
  13940. height: math.unit(6, "feet"),
  13941. weight: math.unit(150, "lb"),
  13942. name: "Front",
  13943. image: {
  13944. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13945. extra: 860 / 690,
  13946. bottom: 0.03
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Normal",
  13953. height: math.unit(1.7, "meters"),
  13954. default: true
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(6, "feet"),
  13963. weight: math.unit(150, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/quilly/front.svg",
  13967. extra: 890 / 776
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Gigamacro",
  13974. height: math.unit(404090, "miles"),
  13975. default: true
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(7 + 8 / 12, "feet"),
  13984. weight: math.unit(350, "lb"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/tempest/front.svg",
  13988. extra: 1175 / 1086,
  13989. bottom: 0.02
  13990. }
  13991. },
  13992. },
  13993. [
  13994. {
  13995. name: "Normal",
  13996. height: math.unit(7 + 8 / 12, "feet"),
  13997. default: true
  13998. },
  13999. ]
  14000. ))
  14001. characterMakers.push(() => makeCharacter(
  14002. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14003. {
  14004. side: {
  14005. height: math.unit(4 + 5 / 12, "feet"),
  14006. weight: math.unit(80, "lb"),
  14007. name: "Side",
  14008. image: {
  14009. source: "./media/characters/rodger/side.svg",
  14010. extra: 1235 / 1118
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Micro",
  14017. height: math.unit(1, "inch")
  14018. },
  14019. {
  14020. name: "Normal",
  14021. height: math.unit(4 + 5 / 12, "feet"),
  14022. default: true
  14023. },
  14024. {
  14025. name: "Macro",
  14026. height: math.unit(120, "feet")
  14027. },
  14028. ]
  14029. ))
  14030. characterMakers.push(() => makeCharacter(
  14031. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14032. {
  14033. front: {
  14034. height: math.unit(6, "feet"),
  14035. weight: math.unit(150, "lb"),
  14036. name: "Front",
  14037. image: {
  14038. source: "./media/characters/danyel/front.svg",
  14039. extra: 1185 / 1123,
  14040. bottom: 0.05
  14041. }
  14042. },
  14043. },
  14044. [
  14045. {
  14046. name: "Shrunken",
  14047. height: math.unit(0.5, "mm")
  14048. },
  14049. {
  14050. name: "Micro",
  14051. height: math.unit(1, "mm"),
  14052. default: true
  14053. },
  14054. {
  14055. name: "Upsized",
  14056. height: math.unit(5 + 5 / 12, "feet")
  14057. },
  14058. ]
  14059. ))
  14060. characterMakers.push(() => makeCharacter(
  14061. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14062. {
  14063. front: {
  14064. height: math.unit(5 + 6 / 12, "feet"),
  14065. weight: math.unit(200, "lb"),
  14066. name: "Front",
  14067. image: {
  14068. source: "./media/characters/vivian-bijoux/front.svg",
  14069. extra: 1217/1209,
  14070. bottom: 76/1293
  14071. }
  14072. },
  14073. back: {
  14074. height: math.unit(5 + 6 / 12, "feet"),
  14075. weight: math.unit(200, "lb"),
  14076. name: "Back",
  14077. image: {
  14078. source: "./media/characters/vivian-bijoux/back.svg",
  14079. extra: 1214/1208,
  14080. bottom: 51/1265
  14081. }
  14082. },
  14083. dressed: {
  14084. height: math.unit(5 + 6 / 12, "feet"),
  14085. weight: math.unit(200, "lb"),
  14086. name: "Dressed",
  14087. image: {
  14088. source: "./media/characters/vivian-bijoux/dressed.svg",
  14089. extra: 1217/1209,
  14090. bottom: 76/1293
  14091. }
  14092. },
  14093. },
  14094. [
  14095. {
  14096. name: "Normal",
  14097. height: math.unit(5 + 6 / 12, "feet"),
  14098. default: true
  14099. },
  14100. {
  14101. name: "Bad Dream",
  14102. height: math.unit(500, "feet")
  14103. },
  14104. {
  14105. name: "Nightmare",
  14106. height: math.unit(500, "miles")
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14112. {
  14113. front: {
  14114. height: math.unit(6 + 1 / 12, "feet"),
  14115. weight: math.unit(260, "lb"),
  14116. name: "Front",
  14117. image: {
  14118. source: "./media/characters/zeta/front.svg",
  14119. extra: 1968 / 1889,
  14120. bottom: 0.06
  14121. }
  14122. },
  14123. back: {
  14124. height: math.unit(6 + 1 / 12, "feet"),
  14125. weight: math.unit(260, "lb"),
  14126. name: "Back",
  14127. image: {
  14128. source: "./media/characters/zeta/back.svg",
  14129. extra: 1944 / 1858,
  14130. bottom: 0.03
  14131. }
  14132. },
  14133. hand: {
  14134. height: math.unit(1.112, "feet"),
  14135. name: "Hand",
  14136. image: {
  14137. source: "./media/characters/zeta/hand.svg"
  14138. }
  14139. },
  14140. foot: {
  14141. height: math.unit(1.48, "feet"),
  14142. name: "Foot",
  14143. image: {
  14144. source: "./media/characters/zeta/foot.svg"
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Micro",
  14151. height: math.unit(6, "inches")
  14152. },
  14153. {
  14154. name: "Normal",
  14155. height: math.unit(6 + 1 / 12, "feet"),
  14156. default: true
  14157. },
  14158. {
  14159. name: "Macro",
  14160. height: math.unit(20, "feet")
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14166. {
  14167. front: {
  14168. height: math.unit(6, "feet"),
  14169. weight: math.unit(150, "lb"),
  14170. name: "Front",
  14171. image: {
  14172. source: "./media/characters/jamie-larsen/front.svg",
  14173. extra: 962 / 933,
  14174. bottom: 0.02
  14175. }
  14176. },
  14177. back: {
  14178. height: math.unit(6, "feet"),
  14179. weight: math.unit(150, "lb"),
  14180. name: "Back",
  14181. image: {
  14182. source: "./media/characters/jamie-larsen/back.svg",
  14183. extra: 997 / 946
  14184. }
  14185. },
  14186. },
  14187. [
  14188. {
  14189. name: "Macro",
  14190. height: math.unit(28 + 7 / 12, "feet"),
  14191. default: true
  14192. },
  14193. {
  14194. name: "Macro+",
  14195. height: math.unit(180, "feet")
  14196. },
  14197. {
  14198. name: "Megamacro",
  14199. height: math.unit(10, "miles")
  14200. },
  14201. {
  14202. name: "Gigamacro",
  14203. height: math.unit(200000, "miles")
  14204. },
  14205. ]
  14206. ))
  14207. characterMakers.push(() => makeCharacter(
  14208. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14209. {
  14210. front: {
  14211. height: math.unit(6, "feet"),
  14212. weight: math.unit(120, "lb"),
  14213. name: "Front",
  14214. image: {
  14215. source: "./media/characters/vance/front.svg",
  14216. extra: 1980 / 1890,
  14217. bottom: 0.09
  14218. }
  14219. },
  14220. back: {
  14221. height: math.unit(6, "feet"),
  14222. weight: math.unit(120, "lb"),
  14223. name: "Back",
  14224. image: {
  14225. source: "./media/characters/vance/back.svg",
  14226. extra: 2081 / 1994,
  14227. bottom: 0.014
  14228. }
  14229. },
  14230. hand: {
  14231. height: math.unit(0.88, "feet"),
  14232. name: "Hand",
  14233. image: {
  14234. source: "./media/characters/vance/hand.svg"
  14235. }
  14236. },
  14237. foot: {
  14238. height: math.unit(0.64, "feet"),
  14239. name: "Foot",
  14240. image: {
  14241. source: "./media/characters/vance/foot.svg"
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Small",
  14248. height: math.unit(90, "feet"),
  14249. default: true
  14250. },
  14251. {
  14252. name: "Macro",
  14253. height: math.unit(100, "meters")
  14254. },
  14255. {
  14256. name: "Megamacro",
  14257. height: math.unit(15, "miles")
  14258. },
  14259. ]
  14260. ))
  14261. characterMakers.push(() => makeCharacter(
  14262. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14263. {
  14264. front: {
  14265. height: math.unit(6, "feet"),
  14266. weight: math.unit(180, "lb"),
  14267. name: "Front",
  14268. image: {
  14269. source: "./media/characters/xochitl/front.svg",
  14270. extra: 2297 / 2261,
  14271. bottom: 0.065
  14272. }
  14273. },
  14274. back: {
  14275. height: math.unit(6, "feet"),
  14276. weight: math.unit(180, "lb"),
  14277. name: "Back",
  14278. image: {
  14279. source: "./media/characters/xochitl/back.svg",
  14280. extra: 2386 / 2354,
  14281. bottom: 0.01
  14282. }
  14283. },
  14284. foot: {
  14285. height: math.unit(6 / 5 * 1.15, "feet"),
  14286. weight: math.unit(150, "lb"),
  14287. name: "Foot",
  14288. image: {
  14289. source: "./media/characters/xochitl/foot.svg"
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Macro",
  14296. height: math.unit(80, "feet")
  14297. },
  14298. {
  14299. name: "Macro+",
  14300. height: math.unit(400, "feet"),
  14301. default: true
  14302. },
  14303. {
  14304. name: "Gigamacro",
  14305. height: math.unit(80000, "miles")
  14306. },
  14307. {
  14308. name: "Gigamacro+",
  14309. height: math.unit(400000, "miles")
  14310. },
  14311. {
  14312. name: "Teramacro",
  14313. height: math.unit(300, "AU")
  14314. },
  14315. ]
  14316. ))
  14317. characterMakers.push(() => makeCharacter(
  14318. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14319. {
  14320. front: {
  14321. height: math.unit(6, "feet"),
  14322. weight: math.unit(150, "lb"),
  14323. name: "Front",
  14324. image: {
  14325. source: "./media/characters/vincent/front.svg",
  14326. extra: 1130 / 1080,
  14327. bottom: 0.055
  14328. }
  14329. },
  14330. beak: {
  14331. height: math.unit(6 * 0.1, "feet"),
  14332. name: "Beak",
  14333. image: {
  14334. source: "./media/characters/vincent/beak.svg"
  14335. }
  14336. },
  14337. hand: {
  14338. height: math.unit(6 * 0.85, "feet"),
  14339. weight: math.unit(150, "lb"),
  14340. name: "Hand",
  14341. image: {
  14342. source: "./media/characters/vincent/hand.svg"
  14343. }
  14344. },
  14345. foot: {
  14346. height: math.unit(6 * 0.19, "feet"),
  14347. weight: math.unit(150, "lb"),
  14348. name: "Foot",
  14349. image: {
  14350. source: "./media/characters/vincent/foot.svg"
  14351. }
  14352. },
  14353. },
  14354. [
  14355. {
  14356. name: "Base",
  14357. height: math.unit(6 + 5 / 12, "feet"),
  14358. default: true
  14359. },
  14360. {
  14361. name: "Macro",
  14362. height: math.unit(300, "feet")
  14363. },
  14364. {
  14365. name: "Megamacro",
  14366. height: math.unit(2, "miles")
  14367. },
  14368. {
  14369. name: "Gigamacro",
  14370. height: math.unit(1000, "miles")
  14371. },
  14372. ]
  14373. ))
  14374. characterMakers.push(() => makeCharacter(
  14375. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14376. {
  14377. front: {
  14378. height: math.unit(2, "meters"),
  14379. weight: math.unit(500, "kg"),
  14380. name: "Front",
  14381. image: {
  14382. source: "./media/characters/coatl/front.svg",
  14383. extra: 3948 / 3500,
  14384. bottom: 0.082
  14385. }
  14386. },
  14387. },
  14388. [
  14389. {
  14390. name: "Normal",
  14391. height: math.unit(4, "meters")
  14392. },
  14393. {
  14394. name: "Macro",
  14395. height: math.unit(100, "meters"),
  14396. default: true
  14397. },
  14398. {
  14399. name: "Macro+",
  14400. height: math.unit(300, "meters")
  14401. },
  14402. {
  14403. name: "Megamacro",
  14404. height: math.unit(3, "gigameters")
  14405. },
  14406. {
  14407. name: "Megamacro+",
  14408. height: math.unit(300, "terameters")
  14409. },
  14410. {
  14411. name: "Megamacro++",
  14412. height: math.unit(3, "lightyears")
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14418. {
  14419. front: {
  14420. height: math.unit(6, "feet"),
  14421. weight: math.unit(50, "kg"),
  14422. name: "front",
  14423. image: {
  14424. source: "./media/characters/shiroryu/front.svg",
  14425. extra: 1990 / 1935
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Mortal Mingling",
  14432. height: math.unit(3, "meters")
  14433. },
  14434. {
  14435. name: "Kaiju-ish",
  14436. height: math.unit(250, "meters")
  14437. },
  14438. {
  14439. name: "Somewhat Godly",
  14440. height: math.unit(400, "km"),
  14441. default: true
  14442. },
  14443. {
  14444. name: "Planetary",
  14445. height: math.unit(300, "megameters")
  14446. },
  14447. {
  14448. name: "Galaxy-dwarfing",
  14449. height: math.unit(450, "kiloparsecs")
  14450. },
  14451. {
  14452. name: "Universe Eater",
  14453. height: math.unit(150, "gigaparsecs")
  14454. },
  14455. {
  14456. name: "Almost Immeasurable",
  14457. height: math.unit(1.3e266, "yottaparsecs")
  14458. },
  14459. ]
  14460. ))
  14461. characterMakers.push(() => makeCharacter(
  14462. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14463. {
  14464. front: {
  14465. height: math.unit(6, "feet"),
  14466. weight: math.unit(150, "lb"),
  14467. name: "Front",
  14468. image: {
  14469. source: "./media/characters/umeko/front.svg",
  14470. extra: 1,
  14471. bottom: 0.019
  14472. }
  14473. },
  14474. frontArmored: {
  14475. height: math.unit(6, "feet"),
  14476. weight: math.unit(150, "lb"),
  14477. name: "Front (Armored)",
  14478. image: {
  14479. source: "./media/characters/umeko/front-armored.svg",
  14480. extra: 1,
  14481. bottom: 0.021
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Macro",
  14488. height: math.unit(220, "feet"),
  14489. default: true
  14490. },
  14491. {
  14492. name: "Guardian Dragon",
  14493. height: math.unit(50, "miles")
  14494. },
  14495. {
  14496. name: "Cosmic",
  14497. height: math.unit(800000, "miles")
  14498. },
  14499. ]
  14500. ))
  14501. characterMakers.push(() => makeCharacter(
  14502. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14503. {
  14504. front: {
  14505. height: math.unit(6, "feet"),
  14506. weight: math.unit(150, "lb"),
  14507. name: "Front",
  14508. image: {
  14509. source: "./media/characters/cassidy/front.svg",
  14510. extra: 810/808,
  14511. bottom: 41/851
  14512. }
  14513. },
  14514. },
  14515. [
  14516. {
  14517. name: "Canon Height",
  14518. height: math.unit(120, "feet"),
  14519. default: true
  14520. },
  14521. {
  14522. name: "Macro+",
  14523. height: math.unit(400, "feet")
  14524. },
  14525. {
  14526. name: "Macro++",
  14527. height: math.unit(4000, "feet")
  14528. },
  14529. {
  14530. name: "Megamacro",
  14531. height: math.unit(3, "miles")
  14532. },
  14533. ]
  14534. ))
  14535. characterMakers.push(() => makeCharacter(
  14536. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14537. {
  14538. front: {
  14539. height: math.unit(6, "feet"),
  14540. weight: math.unit(150, "lb"),
  14541. name: "Front",
  14542. image: {
  14543. source: "./media/characters/isaac/front.svg",
  14544. extra: 896 / 815,
  14545. bottom: 0.11
  14546. }
  14547. },
  14548. },
  14549. [
  14550. {
  14551. name: "Human Size",
  14552. height: math.unit(8, "feet"),
  14553. default: true
  14554. },
  14555. {
  14556. name: "Macro",
  14557. height: math.unit(400, "feet")
  14558. },
  14559. {
  14560. name: "Megamacro",
  14561. height: math.unit(50, "miles")
  14562. },
  14563. {
  14564. name: "Canon Height",
  14565. height: math.unit(200, "AU")
  14566. },
  14567. ]
  14568. ))
  14569. characterMakers.push(() => makeCharacter(
  14570. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14571. {
  14572. front: {
  14573. height: math.unit(6, "feet"),
  14574. weight: math.unit(72, "kg"),
  14575. name: "Front",
  14576. image: {
  14577. source: "./media/characters/sleekit/front.svg",
  14578. extra: 4693 / 4487,
  14579. bottom: 0.012
  14580. }
  14581. },
  14582. },
  14583. [
  14584. {
  14585. name: "Minimum Height",
  14586. height: math.unit(10, "meters")
  14587. },
  14588. {
  14589. name: "Smaller",
  14590. height: math.unit(25, "meters")
  14591. },
  14592. {
  14593. name: "Larger",
  14594. height: math.unit(38, "meters"),
  14595. default: true
  14596. },
  14597. {
  14598. name: "Maximum height",
  14599. height: math.unit(100, "meters")
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14605. {
  14606. front: {
  14607. height: math.unit(6, "feet"),
  14608. weight: math.unit(150, "lb"),
  14609. name: "Front",
  14610. image: {
  14611. source: "./media/characters/nillia/front.svg",
  14612. extra: 2195 / 2037,
  14613. bottom: 0.005
  14614. }
  14615. },
  14616. back: {
  14617. height: math.unit(6, "feet"),
  14618. weight: math.unit(150, "lb"),
  14619. name: "Back",
  14620. image: {
  14621. source: "./media/characters/nillia/back.svg",
  14622. extra: 2195 / 2037,
  14623. bottom: 0.005
  14624. }
  14625. },
  14626. },
  14627. [
  14628. {
  14629. name: "Canon Height",
  14630. height: math.unit(489, "feet"),
  14631. default: true
  14632. }
  14633. ]
  14634. ))
  14635. characterMakers.push(() => makeCharacter(
  14636. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14637. {
  14638. front: {
  14639. height: math.unit(6, "feet"),
  14640. weight: math.unit(150, "lb"),
  14641. name: "Front",
  14642. image: {
  14643. source: "./media/characters/mesmyriza/front.svg",
  14644. extra: 2067 / 1784,
  14645. bottom: 0.035
  14646. }
  14647. },
  14648. foot: {
  14649. height: math.unit(6 / (250 / 35), "feet"),
  14650. name: "Foot",
  14651. image: {
  14652. source: "./media/characters/mesmyriza/foot.svg"
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Macro",
  14659. height: math.unit(457, "meters"),
  14660. default: true
  14661. },
  14662. {
  14663. name: "Megamacro",
  14664. height: math.unit(8, "megameters")
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14670. {
  14671. front: {
  14672. height: math.unit(6, "feet"),
  14673. weight: math.unit(250, "lb"),
  14674. name: "Front",
  14675. image: {
  14676. source: "./media/characters/saudade/front.svg",
  14677. extra: 1172 / 1139,
  14678. bottom: 0.035
  14679. }
  14680. },
  14681. },
  14682. [
  14683. {
  14684. name: "Micro",
  14685. height: math.unit(3, "inches")
  14686. },
  14687. {
  14688. name: "Normal",
  14689. height: math.unit(6, "feet"),
  14690. default: true
  14691. },
  14692. {
  14693. name: "Macro",
  14694. height: math.unit(50, "feet")
  14695. },
  14696. {
  14697. name: "Megamacro",
  14698. height: math.unit(2800, "feet")
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(5 + 4 / 12, "feet"),
  14707. weight: math.unit(100, "lb"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/keireer/front.svg",
  14711. extra: 716 / 666,
  14712. bottom: 0.05
  14713. }
  14714. },
  14715. },
  14716. [
  14717. {
  14718. name: "Normal",
  14719. height: math.unit(5 + 4 / 12, "feet"),
  14720. default: true
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14726. {
  14727. front: {
  14728. height: math.unit(6, "feet"),
  14729. weight: math.unit(90, "kg"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/mirja/front.svg",
  14733. extra: 1789 / 1683,
  14734. bottom: 0.05
  14735. }
  14736. },
  14737. frontDressed: {
  14738. height: math.unit(6, "feet"),
  14739. weight: math.unit(90, "lb"),
  14740. name: "Front (Dressed)",
  14741. image: {
  14742. source: "./media/characters/mirja/front-dressed.svg",
  14743. extra: 1789 / 1683,
  14744. bottom: 0.05
  14745. }
  14746. },
  14747. back: {
  14748. height: math.unit(6, "feet"),
  14749. weight: math.unit(90, "lb"),
  14750. name: "Back",
  14751. image: {
  14752. source: "./media/characters/mirja/back.svg",
  14753. extra: 953 / 917,
  14754. bottom: 0.017
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "\"Incognito\"",
  14761. height: math.unit(3, "meters")
  14762. },
  14763. {
  14764. name: "Strolling Size",
  14765. height: math.unit(15, "km")
  14766. },
  14767. {
  14768. name: "Larger Strolling Size",
  14769. height: math.unit(400, "km")
  14770. },
  14771. {
  14772. name: "Preferred Size",
  14773. height: math.unit(5000, "km")
  14774. },
  14775. {
  14776. name: "True Size",
  14777. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14778. default: true
  14779. },
  14780. ]
  14781. ))
  14782. characterMakers.push(() => makeCharacter(
  14783. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14784. {
  14785. front: {
  14786. height: math.unit(15, "feet"),
  14787. weight: math.unit(880, "kg"),
  14788. name: "Front",
  14789. image: {
  14790. source: "./media/characters/nightraver/front.svg",
  14791. extra: 2444 / 2160,
  14792. bottom: 0.027
  14793. }
  14794. },
  14795. back: {
  14796. height: math.unit(15, "feet"),
  14797. weight: math.unit(880, "kg"),
  14798. name: "Back",
  14799. image: {
  14800. source: "./media/characters/nightraver/back.svg",
  14801. extra: 2309 / 2180,
  14802. bottom: 0.005
  14803. }
  14804. },
  14805. sole: {
  14806. height: math.unit(2.878, "feet"),
  14807. name: "Sole",
  14808. image: {
  14809. source: "./media/characters/nightraver/sole.svg"
  14810. }
  14811. },
  14812. foot: {
  14813. height: math.unit(2.285, "feet"),
  14814. name: "Foot",
  14815. image: {
  14816. source: "./media/characters/nightraver/foot.svg"
  14817. }
  14818. },
  14819. maw: {
  14820. height: math.unit(2.67, "feet"),
  14821. name: "Maw",
  14822. image: {
  14823. source: "./media/characters/nightraver/maw.svg"
  14824. }
  14825. },
  14826. },
  14827. [
  14828. {
  14829. name: "Micro",
  14830. height: math.unit(1, "cm")
  14831. },
  14832. {
  14833. name: "Normal",
  14834. height: math.unit(15, "feet"),
  14835. default: true
  14836. },
  14837. {
  14838. name: "Macro",
  14839. height: math.unit(300, "feet")
  14840. },
  14841. {
  14842. name: "Megamacro",
  14843. height: math.unit(300, "miles")
  14844. },
  14845. {
  14846. name: "Gigamacro",
  14847. height: math.unit(10000, "miles")
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14853. {
  14854. side: {
  14855. height: math.unit(2, "inches"),
  14856. weight: math.unit(5, "grams"),
  14857. name: "Side",
  14858. image: {
  14859. source: "./media/characters/arc/side.svg"
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Micro",
  14866. height: math.unit(2, "inches"),
  14867. default: true
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14873. {
  14874. front: {
  14875. height: math.unit(1.1938, "meters"),
  14876. weight: math.unit(54, "kg"),
  14877. name: "Front",
  14878. image: {
  14879. source: "./media/characters/nebula-shahar/front.svg",
  14880. extra: 1642 / 1436,
  14881. bottom: 0.06
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Megamicro",
  14888. height: math.unit(0.3, "mm")
  14889. },
  14890. {
  14891. name: "Micro",
  14892. height: math.unit(3, "cm")
  14893. },
  14894. {
  14895. name: "Normal",
  14896. height: math.unit(138, "cm"),
  14897. default: true
  14898. },
  14899. {
  14900. name: "Macro",
  14901. height: math.unit(30, "m")
  14902. },
  14903. ]
  14904. ))
  14905. characterMakers.push(() => makeCharacter(
  14906. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14907. {
  14908. front: {
  14909. height: math.unit(5.24, "feet"),
  14910. weight: math.unit(150, "lb"),
  14911. name: "Front",
  14912. image: {
  14913. source: "./media/characters/shayla/front.svg",
  14914. extra: 1512 / 1414,
  14915. bottom: 0.01
  14916. }
  14917. },
  14918. back: {
  14919. height: math.unit(5.24, "feet"),
  14920. weight: math.unit(150, "lb"),
  14921. name: "Back",
  14922. image: {
  14923. source: "./media/characters/shayla/back.svg",
  14924. extra: 1512 / 1414
  14925. }
  14926. },
  14927. hand: {
  14928. height: math.unit(0.7781496062992126, "feet"),
  14929. name: "Hand",
  14930. image: {
  14931. source: "./media/characters/shayla/hand.svg"
  14932. }
  14933. },
  14934. foot: {
  14935. height: math.unit(1.4206036745406823, "feet"),
  14936. name: "Foot",
  14937. image: {
  14938. source: "./media/characters/shayla/foot.svg"
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Micro",
  14945. height: math.unit(0.32, "feet")
  14946. },
  14947. {
  14948. name: "Normal",
  14949. height: math.unit(5.24, "feet"),
  14950. default: true
  14951. },
  14952. {
  14953. name: "Macro",
  14954. height: math.unit(492.12, "feet")
  14955. },
  14956. {
  14957. name: "Megamacro",
  14958. height: math.unit(186.41, "miles")
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14964. {
  14965. front: {
  14966. height: math.unit(2.2, "m"),
  14967. weight: math.unit(120, "kg"),
  14968. name: "Front",
  14969. image: {
  14970. source: "./media/characters/pia-jr/front.svg",
  14971. extra: 1000 / 970,
  14972. bottom: 0.035
  14973. }
  14974. },
  14975. hand: {
  14976. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14977. name: "Hand",
  14978. image: {
  14979. source: "./media/characters/pia-jr/hand.svg"
  14980. }
  14981. },
  14982. paw: {
  14983. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14984. name: "Paw",
  14985. image: {
  14986. source: "./media/characters/pia-jr/paw.svg"
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Micro",
  14993. height: math.unit(1.2, "cm")
  14994. },
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(2.2, "m"),
  14998. default: true
  14999. },
  15000. {
  15001. name: "Macro",
  15002. height: math.unit(180, "m")
  15003. },
  15004. {
  15005. name: "Megamacro",
  15006. height: math.unit(420, "km")
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15012. {
  15013. front: {
  15014. height: math.unit(2, "m"),
  15015. weight: math.unit(115, "kg"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/pia-sr/front.svg",
  15019. extra: 760 / 730,
  15020. bottom: 0.015
  15021. }
  15022. },
  15023. back: {
  15024. height: math.unit(2, "m"),
  15025. weight: math.unit(115, "kg"),
  15026. name: "Back",
  15027. image: {
  15028. source: "./media/characters/pia-sr/back.svg",
  15029. extra: 760 / 730,
  15030. bottom: 0.01
  15031. }
  15032. },
  15033. hand: {
  15034. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15035. name: "Hand",
  15036. image: {
  15037. source: "./media/characters/pia-sr/hand.svg"
  15038. }
  15039. },
  15040. foot: {
  15041. height: math.unit(1.83, "feet"),
  15042. name: "Foot",
  15043. image: {
  15044. source: "./media/characters/pia-sr/foot.svg"
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Micro",
  15051. height: math.unit(88, "mm")
  15052. },
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(2, "m"),
  15056. default: true
  15057. },
  15058. {
  15059. name: "Macro",
  15060. height: math.unit(200, "m")
  15061. },
  15062. {
  15063. name: "Megamacro",
  15064. height: math.unit(420, "km")
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(8 + 2 / 12, "feet"),
  15073. weight: math.unit(300, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/kibibyte/front.svg",
  15077. extra: 2221 / 2098,
  15078. bottom: 0.04
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(8 + 2 / 12, "feet"),
  15086. default: true
  15087. },
  15088. {
  15089. name: "Socialable Macro",
  15090. height: math.unit(50, "feet")
  15091. },
  15092. {
  15093. name: "Macro",
  15094. height: math.unit(300, "feet")
  15095. },
  15096. {
  15097. name: "Megamacro",
  15098. height: math.unit(500, "miles")
  15099. },
  15100. ]
  15101. ))
  15102. characterMakers.push(() => makeCharacter(
  15103. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15104. {
  15105. front: {
  15106. height: math.unit(6, "feet"),
  15107. weight: math.unit(150, "lb"),
  15108. name: "Front",
  15109. image: {
  15110. source: "./media/characters/felix/front.svg",
  15111. extra: 762 / 722,
  15112. bottom: 0.02
  15113. }
  15114. },
  15115. frontClothed: {
  15116. height: math.unit(6, "feet"),
  15117. weight: math.unit(150, "lb"),
  15118. name: "Front (Clothed)",
  15119. image: {
  15120. source: "./media/characters/felix/front-clothed.svg",
  15121. extra: 762 / 722,
  15122. bottom: 0.02
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(6 + 8 / 12, "feet"),
  15130. default: true
  15131. },
  15132. {
  15133. name: "Macro",
  15134. height: math.unit(2600, "feet")
  15135. },
  15136. {
  15137. name: "Megamacro",
  15138. height: math.unit(450, "miles")
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15144. {
  15145. front: {
  15146. height: math.unit(6 + 1 / 12, "feet"),
  15147. weight: math.unit(250, "lb"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/tobo/front.svg",
  15151. extra: 608 / 586,
  15152. bottom: 0.023
  15153. }
  15154. },
  15155. back: {
  15156. height: math.unit(6 + 1 / 12, "feet"),
  15157. weight: math.unit(250, "lb"),
  15158. name: "Back",
  15159. image: {
  15160. source: "./media/characters/tobo/back.svg",
  15161. extra: 608 / 586
  15162. }
  15163. },
  15164. },
  15165. [
  15166. {
  15167. name: "Nano",
  15168. height: math.unit(2, "nm")
  15169. },
  15170. {
  15171. name: "Megamicro",
  15172. height: math.unit(0.1, "mm")
  15173. },
  15174. {
  15175. name: "Micro",
  15176. height: math.unit(1, "inch"),
  15177. default: true
  15178. },
  15179. {
  15180. name: "Human-sized",
  15181. height: math.unit(6 + 1 / 12, "feet")
  15182. },
  15183. {
  15184. name: "Macro",
  15185. height: math.unit(250, "feet")
  15186. },
  15187. {
  15188. name: "Megamacro",
  15189. height: math.unit(75, "miles")
  15190. },
  15191. {
  15192. name: "Texas-sized",
  15193. height: math.unit(750, "miles")
  15194. },
  15195. {
  15196. name: "Teramacro",
  15197. height: math.unit(50000, "miles")
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15203. {
  15204. front: {
  15205. height: math.unit(6, "feet"),
  15206. weight: math.unit(269, "lb"),
  15207. name: "Front",
  15208. image: {
  15209. source: "./media/characters/danny-kapowsky/front.svg",
  15210. extra: 766 / 736,
  15211. bottom: 0.044
  15212. }
  15213. },
  15214. back: {
  15215. height: math.unit(6, "feet"),
  15216. weight: math.unit(269, "lb"),
  15217. name: "Back",
  15218. image: {
  15219. source: "./media/characters/danny-kapowsky/back.svg",
  15220. extra: 797 / 760,
  15221. bottom: 0.025
  15222. }
  15223. },
  15224. },
  15225. [
  15226. {
  15227. name: "Macro",
  15228. height: math.unit(150, "feet"),
  15229. default: true
  15230. },
  15231. {
  15232. name: "Macro+",
  15233. height: math.unit(200, "feet")
  15234. },
  15235. {
  15236. name: "Macro++",
  15237. height: math.unit(300, "feet")
  15238. },
  15239. {
  15240. name: "Macro+++",
  15241. height: math.unit(400, "feet")
  15242. },
  15243. ]
  15244. ))
  15245. characterMakers.push(() => makeCharacter(
  15246. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15247. {
  15248. side: {
  15249. height: math.unit(6, "feet"),
  15250. weight: math.unit(170, "lb"),
  15251. name: "Side",
  15252. image: {
  15253. source: "./media/characters/finn/side.svg",
  15254. extra: 1953 / 1807,
  15255. bottom: 0.057
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Megamacro",
  15262. height: math.unit(14445, "feet"),
  15263. default: true
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15269. {
  15270. front: {
  15271. height: math.unit(5 + 6 / 12, "feet"),
  15272. weight: math.unit(125, "lb"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/roy/front.svg",
  15276. extra: 1,
  15277. bottom: 0.11
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Micro",
  15284. height: math.unit(3, "inches"),
  15285. default: true
  15286. },
  15287. {
  15288. name: "Normal",
  15289. height: math.unit(5 + 6 / 12, "feet")
  15290. },
  15291. {
  15292. name: "Lesser Macro",
  15293. height: math.unit(60, "feet")
  15294. },
  15295. {
  15296. name: "Greater Macro",
  15297. height: math.unit(120, "feet")
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(6, "feet"),
  15306. weight: math.unit(100, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/aevsivs/front.svg",
  15310. extra: 1,
  15311. bottom: 0.03
  15312. }
  15313. },
  15314. back: {
  15315. height: math.unit(6, "feet"),
  15316. weight: math.unit(100, "lb"),
  15317. name: "Back",
  15318. image: {
  15319. source: "./media/characters/aevsivs/back.svg"
  15320. }
  15321. },
  15322. },
  15323. [
  15324. {
  15325. name: "Micro",
  15326. height: math.unit(2, "inches"),
  15327. default: true
  15328. },
  15329. {
  15330. name: "Normal",
  15331. height: math.unit(5, "feet")
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15337. {
  15338. front: {
  15339. height: math.unit(5 + 7 / 12, "feet"),
  15340. weight: math.unit(159, "lb"),
  15341. name: "Front",
  15342. image: {
  15343. source: "./media/characters/hildegard/front.svg",
  15344. extra: 289 / 269,
  15345. bottom: 7.63 / 297.8
  15346. }
  15347. },
  15348. back: {
  15349. height: math.unit(5 + 7 / 12, "feet"),
  15350. weight: math.unit(159, "lb"),
  15351. name: "Back",
  15352. image: {
  15353. source: "./media/characters/hildegard/back.svg",
  15354. extra: 280 / 260,
  15355. bottom: 2.3 / 282
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(5 + 7 / 12, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15369. {
  15370. bernard: {
  15371. height: math.unit(2 + 7 / 12, "feet"),
  15372. weight: math.unit(66, "lb"),
  15373. name: "Bernard",
  15374. rename: true,
  15375. image: {
  15376. source: "./media/characters/bernard-wilder/bernard.svg",
  15377. extra: 192 / 128,
  15378. bottom: 0.05
  15379. }
  15380. },
  15381. wilder: {
  15382. height: math.unit(5 + 8 / 12, "feet"),
  15383. weight: math.unit(143, "lb"),
  15384. name: "Wilder",
  15385. rename: true,
  15386. image: {
  15387. source: "./media/characters/bernard-wilder/wilder.svg",
  15388. extra: 361 / 312,
  15389. bottom: 0.02
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Normal",
  15396. height: math.unit(2 + 7 / 12, "feet"),
  15397. default: true
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15403. {
  15404. anthro: {
  15405. height: math.unit(6 + 1 / 12, "feet"),
  15406. weight: math.unit(155, "lb"),
  15407. name: "Anthro",
  15408. image: {
  15409. source: "./media/characters/hearth/anthro.svg",
  15410. extra: 1178/1136,
  15411. bottom: 28/1206
  15412. }
  15413. },
  15414. feral: {
  15415. height: math.unit(3.78, "feet"),
  15416. weight: math.unit(35, "kg"),
  15417. name: "Feral",
  15418. image: {
  15419. source: "./media/characters/hearth/feral.svg",
  15420. extra: 153 / 135,
  15421. bottom: 0.03
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(6 + 1 / 12, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15435. {
  15436. front: {
  15437. height: math.unit(6, "feet"),
  15438. weight: math.unit(182, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/ingrid/front.svg",
  15442. extra: 294 / 268,
  15443. bottom: 0.027
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(6, "feet"),
  15451. default: true
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15457. {
  15458. eevee: {
  15459. height: math.unit(2 + 10 / 12, "feet"),
  15460. weight: math.unit(86, "lb"),
  15461. name: "Malgam",
  15462. image: {
  15463. source: "./media/characters/malgam/eevee.svg",
  15464. extra: 952/784,
  15465. bottom: 38/990
  15466. }
  15467. },
  15468. sylveon: {
  15469. height: math.unit(4, "feet"),
  15470. weight: math.unit(101, "lb"),
  15471. name: "Future Malgam",
  15472. rename: true,
  15473. image: {
  15474. source: "./media/characters/malgam/sylveon.svg",
  15475. extra: 371 / 325,
  15476. bottom: 0.015
  15477. }
  15478. },
  15479. gigantamax: {
  15480. height: math.unit(50, "feet"),
  15481. name: "Gigantamax Malgam",
  15482. rename: true,
  15483. image: {
  15484. source: "./media/characters/malgam/gigantamax.svg"
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Normal",
  15491. height: math.unit(2 + 10 / 12, "feet"),
  15492. default: true
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(5 + 11 / 12, "feet"),
  15501. weight: math.unit(188, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/fleur/front.svg",
  15505. extra: 309 / 283,
  15506. bottom: 0.007
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Normal",
  15513. height: math.unit(5 + 11 / 12, "feet"),
  15514. default: true
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(5 + 4 / 12, "feet"),
  15523. weight: math.unit(122, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/jude/front.svg",
  15527. extra: 288 / 273,
  15528. bottom: 0.03
  15529. }
  15530. },
  15531. },
  15532. [
  15533. {
  15534. name: "Normal",
  15535. height: math.unit(5 + 4 / 12, "feet"),
  15536. default: true
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15542. {
  15543. front: {
  15544. height: math.unit(5 + 11 / 12, "feet"),
  15545. weight: math.unit(190, "lb"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/seara/front.svg",
  15549. extra: 1,
  15550. bottom: 0.05
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Normal",
  15557. height: math.unit(5 + 11 / 12, "feet"),
  15558. default: true
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15564. {
  15565. front: {
  15566. height: math.unit(16 + 5 / 12, "feet"),
  15567. weight: math.unit(524, "lb"),
  15568. name: "Front",
  15569. image: {
  15570. source: "./media/characters/caspian/front.svg",
  15571. extra: 1,
  15572. bottom: 0.04
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(16 + 5 / 12, "feet"),
  15580. default: true
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15586. {
  15587. front: {
  15588. height: math.unit(5 + 7 / 12, "feet"),
  15589. weight: math.unit(170, "lb"),
  15590. name: "Front",
  15591. image: {
  15592. source: "./media/characters/mika/front.svg",
  15593. extra: 1,
  15594. bottom: 0.016
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(5 + 7 / 12, "feet"),
  15602. default: true
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(6 + 2 / 12, "feet"),
  15611. weight: math.unit(268, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/sol/front.svg",
  15615. extra: 247 / 231,
  15616. bottom: 0.05
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Normal",
  15623. height: math.unit(6 + 2 / 12, "feet"),
  15624. default: true
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15630. {
  15631. buizel: {
  15632. height: math.unit(2 + 5 / 12, "feet"),
  15633. weight: math.unit(87, "lb"),
  15634. name: "Front",
  15635. image: {
  15636. source: "./media/characters/umiko/buizel.svg",
  15637. extra: 172 / 157,
  15638. bottom: 0.01
  15639. },
  15640. form: "buizel",
  15641. default: true
  15642. },
  15643. floatzel: {
  15644. height: math.unit(5 + 9 / 12, "feet"),
  15645. weight: math.unit(250, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/umiko/floatzel.svg",
  15649. extra: 1076/1006,
  15650. bottom: 15/1091
  15651. },
  15652. form: "floatzel",
  15653. default: true
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(2 + 5 / 12, "feet"),
  15660. form: "buizel",
  15661. default: true
  15662. },
  15663. {
  15664. name: "Normal",
  15665. height: math.unit(5 + 9 / 12, "feet"),
  15666. form: "floatzel",
  15667. default: true
  15668. },
  15669. ],
  15670. {
  15671. "buizel": {
  15672. name: "Buizel"
  15673. },
  15674. "floatzel": {
  15675. name: "Floatzel",
  15676. default: true
  15677. }
  15678. }
  15679. ))
  15680. characterMakers.push(() => makeCharacter(
  15681. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15682. {
  15683. front: {
  15684. height: math.unit(6 + 2 / 12, "feet"),
  15685. weight: math.unit(146, "lb"),
  15686. name: "Front",
  15687. image: {
  15688. source: "./media/characters/iliac/front.svg",
  15689. extra: 389 / 365,
  15690. bottom: 0.035
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Normal",
  15697. height: math.unit(6 + 2 / 12, "feet"),
  15698. default: true
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15704. {
  15705. front: {
  15706. height: math.unit(6, "feet"),
  15707. weight: math.unit(170, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/topaz/front.svg",
  15711. extra: 317 / 303,
  15712. bottom: 0.055
  15713. }
  15714. },
  15715. },
  15716. [
  15717. {
  15718. name: "Normal",
  15719. height: math.unit(6, "feet"),
  15720. default: true
  15721. },
  15722. ]
  15723. ))
  15724. characterMakers.push(() => makeCharacter(
  15725. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15726. {
  15727. front: {
  15728. height: math.unit(5 + 11 / 12, "feet"),
  15729. weight: math.unit(144, "lb"),
  15730. name: "Front",
  15731. image: {
  15732. source: "./media/characters/gabriel/front.svg",
  15733. extra: 285 / 262,
  15734. bottom: 0.004
  15735. }
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Normal",
  15741. height: math.unit(5 + 11 / 12, "feet"),
  15742. default: true
  15743. },
  15744. ]
  15745. ))
  15746. characterMakers.push(() => makeCharacter(
  15747. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15748. {
  15749. side: {
  15750. height: math.unit(6 + 5 / 12, "feet"),
  15751. weight: math.unit(300, "lb"),
  15752. name: "Side",
  15753. image: {
  15754. source: "./media/characters/tempest-suicune/side.svg",
  15755. extra: 195 / 154,
  15756. bottom: 0.04
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Normal",
  15763. height: math.unit(6 + 5 / 12, "feet"),
  15764. default: true
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15770. {
  15771. front: {
  15772. height: math.unit(7 + 2 / 12, "feet"),
  15773. weight: math.unit(322, "lb"),
  15774. name: "Front",
  15775. image: {
  15776. source: "./media/characters/vulcan/front.svg",
  15777. extra: 154 / 147,
  15778. bottom: 0.04
  15779. }
  15780. },
  15781. },
  15782. [
  15783. {
  15784. name: "Normal",
  15785. height: math.unit(7 + 2 / 12, "feet"),
  15786. default: true
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15792. {
  15793. front: {
  15794. height: math.unit(5 + 10 / 12, "feet"),
  15795. weight: math.unit(264, "lb"),
  15796. name: "Front",
  15797. image: {
  15798. source: "./media/characters/gault/front.svg",
  15799. extra: 161 / 140,
  15800. bottom: 0.028
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(5 + 10 / 12, "feet"),
  15808. default: true
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15814. {
  15815. front: {
  15816. height: math.unit(6, "feet"),
  15817. weight: math.unit(150, "lb"),
  15818. name: "Front",
  15819. image: {
  15820. source: "./media/characters/shard/front.svg",
  15821. extra: 273 / 238,
  15822. bottom: 0.02
  15823. }
  15824. },
  15825. },
  15826. [
  15827. {
  15828. name: "Normal",
  15829. height: math.unit(3 + 6 / 12, "feet"),
  15830. default: true
  15831. },
  15832. ]
  15833. ))
  15834. characterMakers.push(() => makeCharacter(
  15835. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15836. {
  15837. front: {
  15838. height: math.unit(5 + 11 / 12, "feet"),
  15839. weight: math.unit(146, "lb"),
  15840. name: "Front",
  15841. image: {
  15842. source: "./media/characters/ashe/front.svg",
  15843. extra: 400 / 373,
  15844. bottom: 0.01
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Normal",
  15851. height: math.unit(5 + 11 / 12, "feet"),
  15852. default: true
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15858. {
  15859. front: {
  15860. height: math.unit(5 + 5 / 12, "feet"),
  15861. weight: math.unit(135, "lb"),
  15862. name: "Front",
  15863. image: {
  15864. source: "./media/characters/beatrix/front.svg",
  15865. extra: 392 / 379,
  15866. bottom: 0.01
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Normal",
  15873. height: math.unit(6, "feet"),
  15874. default: true
  15875. },
  15876. ]
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15880. {
  15881. front: {
  15882. height: math.unit(6 + 2/12, "feet"),
  15883. weight: math.unit(135, "lb"),
  15884. name: "Front",
  15885. image: {
  15886. source: "./media/characters/ignatius/front.svg",
  15887. extra: 1380/1259,
  15888. bottom: 27/1407
  15889. }
  15890. },
  15891. },
  15892. [
  15893. {
  15894. name: "Normal",
  15895. height: math.unit(6 + 2/12, "feet"),
  15896. default: true
  15897. },
  15898. ]
  15899. ))
  15900. characterMakers.push(() => makeCharacter(
  15901. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15902. {
  15903. front: {
  15904. height: math.unit(6 + 2 / 12, "feet"),
  15905. weight: math.unit(138, "lb"),
  15906. name: "Front",
  15907. image: {
  15908. source: "./media/characters/mei-li/front.svg",
  15909. extra: 237 / 229,
  15910. bottom: 0.03
  15911. }
  15912. },
  15913. },
  15914. [
  15915. {
  15916. name: "Normal",
  15917. height: math.unit(6 + 2 / 12, "feet"),
  15918. default: true
  15919. },
  15920. ]
  15921. ))
  15922. characterMakers.push(() => makeCharacter(
  15923. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15924. {
  15925. front: {
  15926. height: math.unit(2 + 4 / 12, "feet"),
  15927. weight: math.unit(62, "lb"),
  15928. name: "Front",
  15929. image: {
  15930. source: "./media/characters/puru/front.svg",
  15931. extra: 206 / 149,
  15932. bottom: 0.06
  15933. }
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Normal",
  15939. height: math.unit(2 + 4 / 12, "feet"),
  15940. default: true
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15946. {
  15947. anthro: {
  15948. height: math.unit(5 + 8/12, "feet"),
  15949. weight: math.unit(200, "lb"),
  15950. energyNeed: math.unit(2000, "kcal"),
  15951. name: "Anthro",
  15952. image: {
  15953. source: "./media/characters/kee/anthro.svg",
  15954. extra: 3251/3184,
  15955. bottom: 250/3501
  15956. }
  15957. },
  15958. taur: {
  15959. height: math.unit(11, "feet"),
  15960. weight: math.unit(500, "lb"),
  15961. energyNeed: math.unit(5000, "kcal"),
  15962. name: "Taur",
  15963. image: {
  15964. source: "./media/characters/kee/taur.svg",
  15965. extra: 1362/1320,
  15966. bottom: 83/1445
  15967. }
  15968. },
  15969. },
  15970. [
  15971. {
  15972. name: "Normal",
  15973. height: math.unit(5 + 8/12, "feet"),
  15974. default: true
  15975. },
  15976. {
  15977. name: "Macro",
  15978. height: math.unit(35, "feet")
  15979. },
  15980. ]
  15981. ))
  15982. characterMakers.push(() => makeCharacter(
  15983. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15984. {
  15985. anthro: {
  15986. height: math.unit(7, "feet"),
  15987. weight: math.unit(190, "lb"),
  15988. name: "Anthro",
  15989. image: {
  15990. source: "./media/characters/cobalt-dracha/anthro.svg",
  15991. extra: 231 / 225,
  15992. bottom: 0.04
  15993. }
  15994. },
  15995. feral: {
  15996. height: math.unit(9 + 7 / 12, "feet"),
  15997. weight: math.unit(294, "lb"),
  15998. name: "Feral",
  15999. image: {
  16000. source: "./media/characters/cobalt-dracha/feral.svg",
  16001. extra: 692 / 633,
  16002. bottom: 0.05
  16003. }
  16004. },
  16005. },
  16006. [
  16007. {
  16008. name: "Normal",
  16009. height: math.unit(7, "feet"),
  16010. default: true
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16016. {
  16017. fallen: {
  16018. height: math.unit(11 + 8 / 12, "feet"),
  16019. weight: math.unit(485, "lb"),
  16020. name: "Java (Fallen)",
  16021. rename: true,
  16022. image: {
  16023. source: "./media/characters/java/fallen.svg",
  16024. extra: 226 / 208,
  16025. bottom: 0.005
  16026. }
  16027. },
  16028. godkin: {
  16029. height: math.unit(10 + 6 / 12, "feet"),
  16030. weight: math.unit(328, "lb"),
  16031. name: "Java (Godkin)",
  16032. rename: true,
  16033. image: {
  16034. source: "./media/characters/java/godkin.svg",
  16035. extra: 1104/1068,
  16036. bottom: 36/1140
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Normal",
  16043. height: math.unit(11 + 8 / 12, "feet"),
  16044. default: true
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16050. {
  16051. front: {
  16052. height: math.unit(5 + 9 / 12, "feet"),
  16053. weight: math.unit(170, "lb"),
  16054. name: "Front",
  16055. image: {
  16056. source: "./media/characters/purna/front.svg",
  16057. extra: 239 / 229,
  16058. bottom: 0.01
  16059. }
  16060. },
  16061. },
  16062. [
  16063. {
  16064. name: "Normal",
  16065. height: math.unit(5 + 9 / 12, "feet"),
  16066. default: true
  16067. },
  16068. ]
  16069. ))
  16070. characterMakers.push(() => makeCharacter(
  16071. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16072. {
  16073. front: {
  16074. height: math.unit(5 + 9 / 12, "feet"),
  16075. weight: math.unit(142, "lb"),
  16076. name: "Front",
  16077. image: {
  16078. source: "./media/characters/kuva/front.svg",
  16079. extra: 281 / 271,
  16080. bottom: 0.006
  16081. }
  16082. },
  16083. },
  16084. [
  16085. {
  16086. name: "Normal",
  16087. height: math.unit(5 + 9 / 12, "feet"),
  16088. default: true
  16089. },
  16090. ]
  16091. ))
  16092. characterMakers.push(() => makeCharacter(
  16093. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16094. {
  16095. anthro: {
  16096. height: math.unit(9 + 2 / 12, "feet"),
  16097. weight: math.unit(270, "lb"),
  16098. name: "Anthro",
  16099. image: {
  16100. source: "./media/characters/embra/anthro.svg",
  16101. extra: 200 / 187,
  16102. bottom: 0.02
  16103. }
  16104. },
  16105. feral: {
  16106. height: math.unit(18 + 8 / 12, "feet"),
  16107. weight: math.unit(576, "lb"),
  16108. name: "Feral",
  16109. image: {
  16110. source: "./media/characters/embra/feral.svg",
  16111. extra: 152 / 137,
  16112. bottom: 0.037
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Normal",
  16119. height: math.unit(9 + 2 / 12, "feet"),
  16120. default: true
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16126. {
  16127. anthro: {
  16128. height: math.unit(10 + 9 / 12, "feet"),
  16129. weight: math.unit(224, "lb"),
  16130. name: "Anthro",
  16131. image: {
  16132. source: "./media/characters/grottos/anthro.svg",
  16133. extra: 350 / 332,
  16134. bottom: 0.045
  16135. }
  16136. },
  16137. feral: {
  16138. height: math.unit(20 + 7 / 12, "feet"),
  16139. weight: math.unit(629, "lb"),
  16140. name: "Feral",
  16141. image: {
  16142. source: "./media/characters/grottos/feral.svg",
  16143. extra: 207 / 190,
  16144. bottom: 0.05
  16145. }
  16146. },
  16147. },
  16148. [
  16149. {
  16150. name: "Normal",
  16151. height: math.unit(10 + 9 / 12, "feet"),
  16152. default: true
  16153. },
  16154. ]
  16155. ))
  16156. characterMakers.push(() => makeCharacter(
  16157. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16158. {
  16159. anthro: {
  16160. height: math.unit(9 + 6 / 12, "feet"),
  16161. weight: math.unit(298, "lb"),
  16162. name: "Anthro",
  16163. image: {
  16164. source: "./media/characters/frifna/anthro.svg",
  16165. extra: 282 / 269,
  16166. bottom: 0.015
  16167. }
  16168. },
  16169. feral: {
  16170. height: math.unit(16 + 2 / 12, "feet"),
  16171. weight: math.unit(624, "lb"),
  16172. name: "Feral",
  16173. image: {
  16174. source: "./media/characters/frifna/feral.svg"
  16175. }
  16176. },
  16177. },
  16178. [
  16179. {
  16180. name: "Normal",
  16181. height: math.unit(9 + 6 / 12, "feet"),
  16182. default: true
  16183. },
  16184. ]
  16185. ))
  16186. characterMakers.push(() => makeCharacter(
  16187. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16188. {
  16189. front: {
  16190. height: math.unit(6 + 2 / 12, "feet"),
  16191. weight: math.unit(168, "lb"),
  16192. name: "Front",
  16193. image: {
  16194. source: "./media/characters/elise/front.svg",
  16195. extra: 276 / 271
  16196. }
  16197. },
  16198. },
  16199. [
  16200. {
  16201. name: "Normal",
  16202. height: math.unit(6 + 2 / 12, "feet"),
  16203. default: true
  16204. },
  16205. ]
  16206. ))
  16207. characterMakers.push(() => makeCharacter(
  16208. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16209. {
  16210. front: {
  16211. height: math.unit(5 + 10 / 12, "feet"),
  16212. weight: math.unit(210, "lb"),
  16213. name: "Front",
  16214. image: {
  16215. source: "./media/characters/glade/front.svg",
  16216. extra: 258 / 247,
  16217. bottom: 0.008
  16218. }
  16219. },
  16220. },
  16221. [
  16222. {
  16223. name: "Normal",
  16224. height: math.unit(5 + 10 / 12, "feet"),
  16225. default: true
  16226. },
  16227. ]
  16228. ))
  16229. characterMakers.push(() => makeCharacter(
  16230. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16231. {
  16232. front: {
  16233. height: math.unit(5 + 10 / 12, "feet"),
  16234. weight: math.unit(129, "lb"),
  16235. name: "Front",
  16236. image: {
  16237. source: "./media/characters/rina/front.svg",
  16238. extra: 266 / 255,
  16239. bottom: 0.005
  16240. }
  16241. },
  16242. },
  16243. [
  16244. {
  16245. name: "Normal",
  16246. height: math.unit(5 + 10 / 12, "feet"),
  16247. default: true
  16248. },
  16249. ]
  16250. ))
  16251. characterMakers.push(() => makeCharacter(
  16252. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16253. {
  16254. front: {
  16255. height: math.unit(6 + 1 / 12, "feet"),
  16256. weight: math.unit(192, "lb"),
  16257. name: "Front",
  16258. image: {
  16259. source: "./media/characters/veronica/front.svg",
  16260. extra: 319 / 309,
  16261. bottom: 0.005
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Normal",
  16268. height: math.unit(6 + 1 / 12, "feet"),
  16269. default: true
  16270. },
  16271. ]
  16272. ))
  16273. characterMakers.push(() => makeCharacter(
  16274. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16275. {
  16276. front: {
  16277. height: math.unit(9 + 3 / 12, "feet"),
  16278. weight: math.unit(1100, "lb"),
  16279. name: "Front",
  16280. image: {
  16281. source: "./media/characters/braxton/front.svg",
  16282. extra: 1057 / 984,
  16283. bottom: 0.05
  16284. }
  16285. },
  16286. },
  16287. [
  16288. {
  16289. name: "Normal",
  16290. height: math.unit(9 + 3 / 12, "feet")
  16291. },
  16292. {
  16293. name: "Giant",
  16294. height: math.unit(300, "feet"),
  16295. default: true
  16296. },
  16297. {
  16298. name: "Macro",
  16299. height: math.unit(700, "feet")
  16300. },
  16301. {
  16302. name: "Megamacro",
  16303. height: math.unit(6000, "feet")
  16304. },
  16305. ]
  16306. ))
  16307. characterMakers.push(() => makeCharacter(
  16308. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16309. {
  16310. front: {
  16311. height: math.unit(6 + 7 / 12, "feet"),
  16312. weight: math.unit(150, "lb"),
  16313. name: "Front",
  16314. image: {
  16315. source: "./media/characters/blue-feyonics/front.svg",
  16316. extra: 1403 / 1306,
  16317. bottom: 0.047
  16318. }
  16319. },
  16320. },
  16321. [
  16322. {
  16323. name: "Normal",
  16324. height: math.unit(6 + 7 / 12, "feet"),
  16325. default: true
  16326. },
  16327. ]
  16328. ))
  16329. characterMakers.push(() => makeCharacter(
  16330. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16331. {
  16332. front: {
  16333. height: math.unit(1.8, "meters"),
  16334. weight: math.unit(60, "kg"),
  16335. name: "Front",
  16336. image: {
  16337. source: "./media/characters/maxwell/front.svg",
  16338. extra: 2060 / 1873
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Micro",
  16345. height: math.unit(1, "mm")
  16346. },
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(1.8, "meter"),
  16350. default: true
  16351. },
  16352. {
  16353. name: "Macro",
  16354. height: math.unit(30, "meters")
  16355. },
  16356. {
  16357. name: "Megamacro",
  16358. height: math.unit(10, "km")
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16364. {
  16365. front: {
  16366. height: math.unit(6, "feet"),
  16367. weight: math.unit(150, "lb"),
  16368. name: "Front",
  16369. image: {
  16370. source: "./media/characters/jack/front.svg",
  16371. extra: 1754 / 1640,
  16372. bottom: 0.01
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Normal",
  16379. height: math.unit(80000, "feet"),
  16380. default: true
  16381. },
  16382. {
  16383. name: "Max size",
  16384. height: math.unit(10, "lightyears")
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16390. {
  16391. urban: {
  16392. height: math.unit(5, "feet"),
  16393. weight: math.unit(240, "lb"),
  16394. name: "Urban",
  16395. image: {
  16396. source: "./media/characters/cafat/urban.svg",
  16397. extra: 1223/1126,
  16398. bottom: 205/1428
  16399. }
  16400. },
  16401. summer: {
  16402. height: math.unit(5, "feet"),
  16403. weight: math.unit(240, "lb"),
  16404. name: "Summer",
  16405. image: {
  16406. source: "./media/characters/cafat/summer.svg",
  16407. extra: 1223/1126,
  16408. bottom: 205/1428
  16409. }
  16410. },
  16411. winter: {
  16412. height: math.unit(5, "feet"),
  16413. weight: math.unit(240, "lb"),
  16414. name: "Winter",
  16415. image: {
  16416. source: "./media/characters/cafat/winter.svg",
  16417. extra: 1223/1126,
  16418. bottom: 205/1428
  16419. }
  16420. },
  16421. lingerie: {
  16422. height: math.unit(5, "feet"),
  16423. weight: math.unit(240, "lb"),
  16424. name: "Lingerie",
  16425. image: {
  16426. source: "./media/characters/cafat/lingerie.svg",
  16427. extra: 1223/1126,
  16428. bottom: 205/1428
  16429. }
  16430. },
  16431. upright: {
  16432. height: math.unit(6.3, "feet"),
  16433. weight: math.unit(240, "lb"),
  16434. name: "Upright",
  16435. image: {
  16436. source: "./media/characters/cafat/upright.svg",
  16437. bottom: 0.01
  16438. }
  16439. },
  16440. uprightFull: {
  16441. height: math.unit(6.3, "feet"),
  16442. weight: math.unit(240, "lb"),
  16443. name: "Upright (Full)",
  16444. image: {
  16445. source: "./media/characters/cafat/upright-full.svg",
  16446. bottom: 0.01
  16447. }
  16448. },
  16449. },
  16450. [
  16451. {
  16452. name: "Small",
  16453. height: math.unit(5, "feet"),
  16454. default: true
  16455. },
  16456. {
  16457. name: "Large",
  16458. height: math.unit(13, "feet")
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16464. {
  16465. front: {
  16466. height: math.unit(6, "feet"),
  16467. weight: math.unit(150, "lb"),
  16468. name: "Front",
  16469. image: {
  16470. source: "./media/characters/verin-raharra/front.svg",
  16471. extra: 5019 / 4835,
  16472. bottom: 0.023
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(7 + 5 / 12, "feet"),
  16480. default: true
  16481. },
  16482. {
  16483. name: "Upsized",
  16484. height: math.unit(20, "feet")
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16490. {
  16491. front: {
  16492. height: math.unit(7, "feet"),
  16493. weight: math.unit(230, "lb"),
  16494. name: "Front",
  16495. image: {
  16496. source: "./media/characters/nakata/front.svg",
  16497. extra: 1.005,
  16498. bottom: 0.01
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(7, "feet"),
  16506. default: true
  16507. },
  16508. {
  16509. name: "Big",
  16510. height: math.unit(14, "feet")
  16511. },
  16512. {
  16513. name: "Macro",
  16514. height: math.unit(400, "feet")
  16515. },
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16520. {
  16521. front: {
  16522. height: math.unit(4.91, "feet"),
  16523. weight: math.unit(100, "lb"),
  16524. name: "Front",
  16525. image: {
  16526. source: "./media/characters/lily/front.svg",
  16527. extra: 1585 / 1415,
  16528. bottom: 0.02
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Normal",
  16535. height: math.unit(4.91, "feet"),
  16536. default: true
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16542. {
  16543. laying: {
  16544. height: math.unit(4 + 4 / 12, "feet"),
  16545. weight: math.unit(600, "lb"),
  16546. name: "Laying",
  16547. image: {
  16548. source: "./media/characters/sheila/laying.svg",
  16549. extra: 1333 / 1265,
  16550. bottom: 0.16
  16551. }
  16552. },
  16553. },
  16554. [
  16555. {
  16556. name: "Normal",
  16557. height: math.unit(4 + 4 / 12, "feet"),
  16558. default: true
  16559. },
  16560. ]
  16561. ))
  16562. characterMakers.push(() => makeCharacter(
  16563. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16564. {
  16565. front: {
  16566. height: math.unit(6, "feet"),
  16567. weight: math.unit(190, "lb"),
  16568. name: "Front",
  16569. image: {
  16570. source: "./media/characters/sax/front.svg",
  16571. extra: 1187 / 973,
  16572. bottom: 0.042
  16573. }
  16574. },
  16575. },
  16576. [
  16577. {
  16578. name: "Micro",
  16579. height: math.unit(4, "inches"),
  16580. default: true
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16586. {
  16587. front: {
  16588. height: math.unit(6, "feet"),
  16589. weight: math.unit(150, "lb"),
  16590. name: "Front",
  16591. image: {
  16592. source: "./media/characters/pandora/front.svg",
  16593. extra: 2720 / 2556,
  16594. bottom: 0.015
  16595. }
  16596. },
  16597. back: {
  16598. height: math.unit(6, "feet"),
  16599. weight: math.unit(150, "lb"),
  16600. name: "Back",
  16601. image: {
  16602. source: "./media/characters/pandora/back.svg",
  16603. extra: 2720 / 2556,
  16604. bottom: 0.01
  16605. }
  16606. },
  16607. beans: {
  16608. height: math.unit(6 / 8, "feet"),
  16609. name: "Beans",
  16610. image: {
  16611. source: "./media/characters/pandora/beans.svg"
  16612. }
  16613. },
  16614. collar: {
  16615. height: math.unit(0.31, "feet"),
  16616. name: "Collar",
  16617. image: {
  16618. source: "./media/characters/pandora/collar.svg"
  16619. }
  16620. },
  16621. skirt: {
  16622. height: math.unit(6, "feet"),
  16623. weight: math.unit(150, "lb"),
  16624. name: "Skirt",
  16625. image: {
  16626. source: "./media/characters/pandora/skirt.svg",
  16627. extra: 1622 / 1525,
  16628. bottom: 0.015
  16629. }
  16630. },
  16631. hoodie: {
  16632. height: math.unit(6, "feet"),
  16633. weight: math.unit(150, "lb"),
  16634. name: "Hoodie",
  16635. image: {
  16636. source: "./media/characters/pandora/hoodie.svg",
  16637. extra: 1622 / 1525,
  16638. bottom: 0.015
  16639. }
  16640. },
  16641. casual: {
  16642. height: math.unit(6, "feet"),
  16643. weight: math.unit(150, "lb"),
  16644. name: "Casual",
  16645. image: {
  16646. source: "./media/characters/pandora/casual.svg",
  16647. extra: 1622 / 1525,
  16648. bottom: 0.015
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(6, "feet")
  16656. },
  16657. {
  16658. name: "Big Steppy",
  16659. height: math.unit(1, "km"),
  16660. default: true
  16661. },
  16662. {
  16663. name: "Galactic Steppy",
  16664. height: math.unit(2, "gigameters")
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16670. {
  16671. side: {
  16672. height: math.unit(10, "feet"),
  16673. weight: math.unit(800, "kg"),
  16674. name: "Side",
  16675. image: {
  16676. source: "./media/characters/venio-darcony/side.svg",
  16677. extra: 1373 / 1003,
  16678. bottom: 0.037
  16679. }
  16680. },
  16681. front: {
  16682. height: math.unit(19, "feet"),
  16683. weight: math.unit(800, "kg"),
  16684. name: "Front",
  16685. image: {
  16686. source: "./media/characters/venio-darcony/front.svg"
  16687. }
  16688. },
  16689. back: {
  16690. height: math.unit(19, "feet"),
  16691. weight: math.unit(800, "kg"),
  16692. name: "Back",
  16693. image: {
  16694. source: "./media/characters/venio-darcony/back.svg"
  16695. }
  16696. },
  16697. sideNsfw: {
  16698. height: math.unit(10, "feet"),
  16699. weight: math.unit(800, "kg"),
  16700. name: "Side (NSFW)",
  16701. image: {
  16702. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16703. extra: 1373 / 1003,
  16704. bottom: 0.037
  16705. }
  16706. },
  16707. frontNsfw: {
  16708. height: math.unit(19, "feet"),
  16709. weight: math.unit(800, "kg"),
  16710. name: "Front (NSFW)",
  16711. image: {
  16712. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16713. }
  16714. },
  16715. backNsfw: {
  16716. height: math.unit(19, "feet"),
  16717. weight: math.unit(800, "kg"),
  16718. name: "Back (NSFW)",
  16719. image: {
  16720. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16721. }
  16722. },
  16723. sideArmored: {
  16724. height: math.unit(10, "feet"),
  16725. weight: math.unit(800, "kg"),
  16726. name: "Side (Armored)",
  16727. image: {
  16728. source: "./media/characters/venio-darcony/side-armored.svg",
  16729. extra: 1373 / 1003,
  16730. bottom: 0.037
  16731. }
  16732. },
  16733. frontArmored: {
  16734. height: math.unit(19, "feet"),
  16735. weight: math.unit(900, "kg"),
  16736. name: "Front (Armored)",
  16737. image: {
  16738. source: "./media/characters/venio-darcony/front-armored.svg"
  16739. }
  16740. },
  16741. backArmored: {
  16742. height: math.unit(19, "feet"),
  16743. weight: math.unit(900, "kg"),
  16744. name: "Back (Armored)",
  16745. image: {
  16746. source: "./media/characters/venio-darcony/back-armored.svg"
  16747. }
  16748. },
  16749. sword: {
  16750. height: math.unit(10, "feet"),
  16751. weight: math.unit(50, "lb"),
  16752. name: "Sword",
  16753. image: {
  16754. source: "./media/characters/venio-darcony/sword.svg"
  16755. }
  16756. },
  16757. },
  16758. [
  16759. {
  16760. name: "Normal",
  16761. height: math.unit(10, "feet")
  16762. },
  16763. {
  16764. name: "Macro",
  16765. height: math.unit(130, "feet"),
  16766. default: true
  16767. },
  16768. {
  16769. name: "Macro+",
  16770. height: math.unit(240, "feet")
  16771. },
  16772. ]
  16773. ))
  16774. characterMakers.push(() => makeCharacter(
  16775. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16776. {
  16777. front: {
  16778. height: math.unit(6, "feet"),
  16779. weight: math.unit(150, "lb"),
  16780. name: "Front",
  16781. image: {
  16782. source: "./media/characters/veski/front.svg",
  16783. extra: 1299 / 1225,
  16784. bottom: 0.04
  16785. }
  16786. },
  16787. back: {
  16788. height: math.unit(6, "feet"),
  16789. weight: math.unit(150, "lb"),
  16790. name: "Back",
  16791. image: {
  16792. source: "./media/characters/veski/back.svg",
  16793. extra: 1299 / 1225,
  16794. bottom: 0.008
  16795. }
  16796. },
  16797. maw: {
  16798. height: math.unit(1.5 * 1.21, "feet"),
  16799. name: "Maw",
  16800. image: {
  16801. source: "./media/characters/veski/maw.svg"
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Macro",
  16808. height: math.unit(2, "km"),
  16809. default: true
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(5 + 7 / 12, "feet"),
  16818. name: "Front",
  16819. image: {
  16820. source: "./media/characters/isabelle/front.svg",
  16821. extra: 2130 / 1976,
  16822. bottom: 0.05
  16823. }
  16824. },
  16825. },
  16826. [
  16827. {
  16828. name: "Supermicro",
  16829. height: math.unit(10, "micrometers")
  16830. },
  16831. {
  16832. name: "Micro",
  16833. height: math.unit(1, "inch")
  16834. },
  16835. {
  16836. name: "Tiny",
  16837. height: math.unit(5, "inches")
  16838. },
  16839. {
  16840. name: "Standard",
  16841. height: math.unit(5 + 7 / 12, "inches")
  16842. },
  16843. {
  16844. name: "Macro",
  16845. height: math.unit(80, "meters"),
  16846. default: true
  16847. },
  16848. {
  16849. name: "Megamacro",
  16850. height: math.unit(250, "meters")
  16851. },
  16852. {
  16853. name: "Gigamacro",
  16854. height: math.unit(5, "km")
  16855. },
  16856. {
  16857. name: "Cosmic",
  16858. height: math.unit(2.5e6, "miles")
  16859. },
  16860. ]
  16861. ))
  16862. characterMakers.push(() => makeCharacter(
  16863. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16864. {
  16865. front: {
  16866. height: math.unit(6, "feet"),
  16867. weight: math.unit(150, "lb"),
  16868. name: "Front",
  16869. image: {
  16870. source: "./media/characters/hanzo/front.svg",
  16871. extra: 374 / 344,
  16872. bottom: 0.02
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(8, "feet"),
  16880. default: true
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16886. {
  16887. front: {
  16888. height: math.unit(7, "feet"),
  16889. weight: math.unit(130, "lb"),
  16890. name: "Front",
  16891. image: {
  16892. source: "./media/characters/anna/front.svg",
  16893. extra: 169 / 145,
  16894. bottom: 0.06
  16895. }
  16896. },
  16897. full: {
  16898. height: math.unit(4.96, "feet"),
  16899. weight: math.unit(220, "lb"),
  16900. name: "Full",
  16901. image: {
  16902. source: "./media/characters/anna/full.svg",
  16903. extra: 138 / 114,
  16904. bottom: 0.15
  16905. }
  16906. },
  16907. tongue: {
  16908. height: math.unit(2.53, "feet"),
  16909. name: "Tongue",
  16910. image: {
  16911. source: "./media/characters/anna/tongue.svg"
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(7, "feet"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16925. {
  16926. front: {
  16927. height: math.unit(7, "feet"),
  16928. weight: math.unit(150, "lb"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/ian-corvid/front.svg",
  16932. extra: 150 / 142,
  16933. bottom: 0.02
  16934. }
  16935. },
  16936. back: {
  16937. height: math.unit(7, "feet"),
  16938. weight: math.unit(150, "lb"),
  16939. name: "Back",
  16940. image: {
  16941. source: "./media/characters/ian-corvid/back.svg",
  16942. extra: 150 / 143,
  16943. bottom: 0.01
  16944. }
  16945. },
  16946. stomping: {
  16947. height: math.unit(7, "feet"),
  16948. weight: math.unit(150, "lb"),
  16949. name: "Stomping",
  16950. image: {
  16951. source: "./media/characters/ian-corvid/stomping.svg",
  16952. extra: 76 / 72
  16953. }
  16954. },
  16955. sitting: {
  16956. height: math.unit(7 / 1.8, "feet"),
  16957. weight: math.unit(150, "lb"),
  16958. name: "Sitting",
  16959. image: {
  16960. source: "./media/characters/ian-corvid/sitting.svg",
  16961. extra: 1400 / 1269,
  16962. bottom: 0.15
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Tiny Microw",
  16969. height: math.unit(1, "inch")
  16970. },
  16971. {
  16972. name: "Microw",
  16973. height: math.unit(6, "inches")
  16974. },
  16975. {
  16976. name: "Crow",
  16977. height: math.unit(7 + 1 / 12, "feet"),
  16978. default: true
  16979. },
  16980. {
  16981. name: "Macrow",
  16982. height: math.unit(176, "feet")
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16988. {
  16989. front: {
  16990. height: math.unit(5 + 7 / 12, "feet"),
  16991. weight: math.unit(147, "lb"),
  16992. name: "Front",
  16993. image: {
  16994. source: "./media/characters/natalie-kellon/front.svg",
  16995. extra: 1214 / 1141,
  16996. bottom: 0.02
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Micro",
  17003. height: math.unit(1 / 16, "inch")
  17004. },
  17005. {
  17006. name: "Tiny",
  17007. height: math.unit(4, "inches")
  17008. },
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(5 + 7 / 12, "feet"),
  17012. default: true
  17013. },
  17014. {
  17015. name: "Amazon",
  17016. height: math.unit(12, "feet")
  17017. },
  17018. {
  17019. name: "Giantess",
  17020. height: math.unit(160, "meters")
  17021. },
  17022. {
  17023. name: "Titaness",
  17024. height: math.unit(800, "meters")
  17025. },
  17026. ]
  17027. ))
  17028. characterMakers.push(() => makeCharacter(
  17029. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17030. {
  17031. front: {
  17032. height: math.unit(6, "feet"),
  17033. weight: math.unit(150, "lb"),
  17034. name: "Front",
  17035. image: {
  17036. source: "./media/characters/alluria/front.svg",
  17037. extra: 806 / 738,
  17038. bottom: 0.01
  17039. }
  17040. },
  17041. side: {
  17042. height: math.unit(6, "feet"),
  17043. weight: math.unit(150, "lb"),
  17044. name: "Side",
  17045. image: {
  17046. source: "./media/characters/alluria/side.svg",
  17047. extra: 800 / 750,
  17048. }
  17049. },
  17050. back: {
  17051. height: math.unit(6, "feet"),
  17052. weight: math.unit(150, "lb"),
  17053. name: "Back",
  17054. image: {
  17055. source: "./media/characters/alluria/back.svg",
  17056. extra: 806 / 738,
  17057. }
  17058. },
  17059. frontMaid: {
  17060. height: math.unit(6, "feet"),
  17061. weight: math.unit(150, "lb"),
  17062. name: "Front (Maid)",
  17063. image: {
  17064. source: "./media/characters/alluria/front-maid.svg",
  17065. extra: 806 / 738,
  17066. bottom: 0.01
  17067. }
  17068. },
  17069. sideMaid: {
  17070. height: math.unit(6, "feet"),
  17071. weight: math.unit(150, "lb"),
  17072. name: "Side (Maid)",
  17073. image: {
  17074. source: "./media/characters/alluria/side-maid.svg",
  17075. extra: 800 / 750,
  17076. bottom: 0.005
  17077. }
  17078. },
  17079. backMaid: {
  17080. height: math.unit(6, "feet"),
  17081. weight: math.unit(150, "lb"),
  17082. name: "Back (Maid)",
  17083. image: {
  17084. source: "./media/characters/alluria/back-maid.svg",
  17085. extra: 806 / 738,
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Micro",
  17092. height: math.unit(6, "inches"),
  17093. default: true
  17094. },
  17095. ]
  17096. ))
  17097. characterMakers.push(() => makeCharacter(
  17098. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17099. {
  17100. front: {
  17101. height: math.unit(6, "feet"),
  17102. weight: math.unit(150, "lb"),
  17103. name: "Front",
  17104. image: {
  17105. source: "./media/characters/kyle/front.svg",
  17106. extra: 1069 / 962,
  17107. bottom: 77.228 / 1727.45
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Macro",
  17114. height: math.unit(150, "feet"),
  17115. default: true
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17121. {
  17122. front: {
  17123. height: math.unit(6, "feet"),
  17124. weight: math.unit(300, "lb"),
  17125. name: "Front",
  17126. image: {
  17127. source: "./media/characters/duncan/front.svg",
  17128. extra: 1650 / 1482,
  17129. bottom: 0.05
  17130. }
  17131. },
  17132. },
  17133. [
  17134. {
  17135. name: "Macro",
  17136. height: math.unit(100, "feet"),
  17137. default: true
  17138. },
  17139. ]
  17140. ))
  17141. characterMakers.push(() => makeCharacter(
  17142. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17143. {
  17144. front: {
  17145. height: math.unit(5 + 4 / 12, "feet"),
  17146. weight: math.unit(220, "lb"),
  17147. name: "Front",
  17148. image: {
  17149. source: "./media/characters/memory/front.svg",
  17150. extra: 3641 / 3545,
  17151. bottom: 0.03
  17152. }
  17153. },
  17154. back: {
  17155. height: math.unit(5 + 4 / 12, "feet"),
  17156. weight: math.unit(220, "lb"),
  17157. name: "Back",
  17158. image: {
  17159. source: "./media/characters/memory/back.svg",
  17160. extra: 3641 / 3545,
  17161. bottom: 0.025
  17162. }
  17163. },
  17164. frontSkirt: {
  17165. height: math.unit(5 + 4 / 12, "feet"),
  17166. weight: math.unit(220, "lb"),
  17167. name: "Front (Skirt)",
  17168. image: {
  17169. source: "./media/characters/memory/front-skirt.svg",
  17170. extra: 3641 / 3545,
  17171. bottom: 0.03
  17172. }
  17173. },
  17174. frontDress: {
  17175. height: math.unit(5 + 4 / 12, "feet"),
  17176. weight: math.unit(220, "lb"),
  17177. name: "Front (Dress)",
  17178. image: {
  17179. source: "./media/characters/memory/front-dress.svg",
  17180. extra: 3641 / 3545,
  17181. bottom: 0.03
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Micro",
  17188. height: math.unit(6, "inches"),
  17189. default: true
  17190. },
  17191. {
  17192. name: "Normal",
  17193. height: math.unit(5 + 4 / 12, "feet")
  17194. },
  17195. ]
  17196. ))
  17197. characterMakers.push(() => makeCharacter(
  17198. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17199. {
  17200. front: {
  17201. height: math.unit(4 + 11 / 12, "feet"),
  17202. weight: math.unit(100, "lb"),
  17203. name: "Front",
  17204. image: {
  17205. source: "./media/characters/luno/front.svg",
  17206. extra: 1535 / 1487,
  17207. bottom: 0.03
  17208. }
  17209. },
  17210. },
  17211. [
  17212. {
  17213. name: "Micro",
  17214. height: math.unit(3, "inches")
  17215. },
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(4 + 11 / 12, "feet"),
  17219. default: true
  17220. },
  17221. {
  17222. name: "Macro",
  17223. height: math.unit(300, "feet")
  17224. },
  17225. {
  17226. name: "Megamacro",
  17227. height: math.unit(700, "miles")
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17233. {
  17234. front: {
  17235. height: math.unit(6 + 2 / 12, "feet"),
  17236. weight: math.unit(170, "lb"),
  17237. name: "Front",
  17238. image: {
  17239. source: "./media/characters/jamesy/front.svg",
  17240. extra: 440 / 382,
  17241. bottom: 0.005
  17242. }
  17243. },
  17244. },
  17245. [
  17246. {
  17247. name: "Micro",
  17248. height: math.unit(3, "inches")
  17249. },
  17250. {
  17251. name: "Normal",
  17252. height: math.unit(6 + 2 / 12, "feet"),
  17253. default: true
  17254. },
  17255. {
  17256. name: "Macro",
  17257. height: math.unit(300, "feet")
  17258. },
  17259. {
  17260. name: "Megamacro",
  17261. height: math.unit(700, "miles")
  17262. },
  17263. ]
  17264. ))
  17265. characterMakers.push(() => makeCharacter(
  17266. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17267. {
  17268. front: {
  17269. height: math.unit(6, "feet"),
  17270. weight: math.unit(160, "lb"),
  17271. name: "Front",
  17272. image: {
  17273. source: "./media/characters/mark/front.svg",
  17274. extra: 3300 / 3100,
  17275. bottom: 136.42 / 3440.47
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Macro",
  17282. height: math.unit(120, "meters")
  17283. },
  17284. {
  17285. name: "Bigger Macro",
  17286. height: math.unit(350, "meters")
  17287. },
  17288. {
  17289. name: "Megamacro",
  17290. height: math.unit(8, "km"),
  17291. default: true
  17292. },
  17293. {
  17294. name: "Continental",
  17295. height: math.unit(4550, "km")
  17296. },
  17297. {
  17298. name: "Planetary",
  17299. height: math.unit(65000, "km")
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17305. {
  17306. front: {
  17307. height: math.unit(6, "feet"),
  17308. weight: math.unit(400, "lb"),
  17309. name: "Front",
  17310. image: {
  17311. source: "./media/characters/mac/front.svg",
  17312. extra: 1048 / 987.7,
  17313. bottom: 60 / 1107.6,
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Macro",
  17320. height: math.unit(500, "feet"),
  17321. default: true
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17327. {
  17328. front: {
  17329. height: math.unit(5 + 2 / 12, "feet"),
  17330. weight: math.unit(190, "lb"),
  17331. name: "Front",
  17332. image: {
  17333. source: "./media/characters/bari/front.svg",
  17334. extra: 3156 / 2880,
  17335. bottom: 0.03
  17336. }
  17337. },
  17338. back: {
  17339. height: math.unit(5 + 2 / 12, "feet"),
  17340. weight: math.unit(190, "lb"),
  17341. name: "Back",
  17342. image: {
  17343. source: "./media/characters/bari/back.svg",
  17344. extra: 3260 / 2834,
  17345. bottom: 0.025
  17346. }
  17347. },
  17348. frontPlush: {
  17349. height: math.unit(5 + 2 / 12, "feet"),
  17350. weight: math.unit(190, "lb"),
  17351. name: "Front (Plush)",
  17352. image: {
  17353. source: "./media/characters/bari/front-plush.svg",
  17354. extra: 1112 / 1061,
  17355. bottom: 0.002
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Micro",
  17362. height: math.unit(3, "inches")
  17363. },
  17364. {
  17365. name: "Normal",
  17366. height: math.unit(5 + 2 / 12, "feet"),
  17367. default: true
  17368. },
  17369. {
  17370. name: "Macro",
  17371. height: math.unit(20, "feet")
  17372. },
  17373. ]
  17374. ))
  17375. characterMakers.push(() => makeCharacter(
  17376. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17377. {
  17378. front: {
  17379. height: math.unit(6 + 1 / 12, "feet"),
  17380. weight: math.unit(275, "lb"),
  17381. name: "Front",
  17382. image: {
  17383. source: "./media/characters/hunter-misha-raven/front.svg"
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Mortal",
  17390. height: math.unit(6 + 1 / 12, "feet")
  17391. },
  17392. {
  17393. name: "Divine",
  17394. height: math.unit(1.12134e34, "parsecs"),
  17395. default: true
  17396. },
  17397. ]
  17398. ))
  17399. characterMakers.push(() => makeCharacter(
  17400. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17401. {
  17402. front: {
  17403. height: math.unit(6 + 3 / 12, "feet"),
  17404. weight: math.unit(220, "lb"),
  17405. name: "Front",
  17406. image: {
  17407. source: "./media/characters/max-calore/front.svg",
  17408. extra: 1700 / 1648,
  17409. bottom: 0.01
  17410. }
  17411. },
  17412. back: {
  17413. height: math.unit(6 + 3 / 12, "feet"),
  17414. weight: math.unit(220, "lb"),
  17415. name: "Back",
  17416. image: {
  17417. source: "./media/characters/max-calore/back.svg",
  17418. extra: 1700 / 1648,
  17419. bottom: 0.01
  17420. }
  17421. },
  17422. },
  17423. [
  17424. {
  17425. name: "Normal",
  17426. height: math.unit(6 + 3 / 12, "feet"),
  17427. default: true
  17428. },
  17429. ]
  17430. ))
  17431. characterMakers.push(() => makeCharacter(
  17432. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17433. {
  17434. side: {
  17435. height: math.unit(2 + 8 / 12, "feet"),
  17436. weight: math.unit(99, "lb"),
  17437. name: "Side",
  17438. image: {
  17439. source: "./media/characters/aspen/side.svg",
  17440. extra: 152 / 138,
  17441. bottom: 0.032
  17442. }
  17443. },
  17444. },
  17445. [
  17446. {
  17447. name: "Normal",
  17448. height: math.unit(2 + 8 / 12, "feet"),
  17449. default: true
  17450. },
  17451. ]
  17452. ))
  17453. characterMakers.push(() => makeCharacter(
  17454. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17455. {
  17456. side: {
  17457. height: math.unit(3 + 2 / 12, "feet"),
  17458. weight: math.unit(224, "lb"),
  17459. name: "Side",
  17460. image: {
  17461. source: "./media/characters/sheila-feral-wolf/side.svg",
  17462. extra: 179 / 166,
  17463. bottom: 0.03
  17464. }
  17465. },
  17466. },
  17467. [
  17468. {
  17469. name: "Normal",
  17470. height: math.unit(3 + 2 / 12, "feet"),
  17471. default: true
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17477. {
  17478. side: {
  17479. height: math.unit(1 + 9 / 12, "feet"),
  17480. weight: math.unit(38, "lb"),
  17481. name: "Side",
  17482. image: {
  17483. source: "./media/characters/michelle/side.svg",
  17484. extra: 147 / 136.7,
  17485. bottom: 0.03
  17486. }
  17487. },
  17488. },
  17489. [
  17490. {
  17491. name: "Normal",
  17492. height: math.unit(1 + 9 / 12, "feet"),
  17493. default: true
  17494. },
  17495. ]
  17496. ))
  17497. characterMakers.push(() => makeCharacter(
  17498. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17499. {
  17500. front: {
  17501. height: math.unit(1.54, "feet"),
  17502. weight: math.unit(50, "lb"),
  17503. name: "Front",
  17504. image: {
  17505. source: "./media/characters/nino/front.svg"
  17506. }
  17507. },
  17508. },
  17509. [
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(1.54, "feet"),
  17513. default: true
  17514. },
  17515. ]
  17516. ))
  17517. characterMakers.push(() => makeCharacter(
  17518. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17519. {
  17520. front: {
  17521. height: math.unit(1.49, "feet"),
  17522. weight: math.unit(45, "lb"),
  17523. name: "Front",
  17524. image: {
  17525. source: "./media/characters/viola/front.svg"
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(1.49, "feet"),
  17533. default: true
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17539. {
  17540. front: {
  17541. height: math.unit(6 + 5 / 12, "feet"),
  17542. weight: math.unit(580, "lb"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/atlas/front.svg",
  17546. extra: 298.5 / 290,
  17547. bottom: 0.015
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(6 + 5 / 12, "feet"),
  17555. default: true
  17556. },
  17557. ]
  17558. ))
  17559. characterMakers.push(() => makeCharacter(
  17560. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17561. {
  17562. side: {
  17563. height: math.unit(15.6, "inches"),
  17564. weight: math.unit(10, "lb"),
  17565. name: "Side",
  17566. image: {
  17567. source: "./media/characters/davy/side.svg",
  17568. extra: 200 / 170,
  17569. bottom: 0.01
  17570. }
  17571. },
  17572. },
  17573. [
  17574. {
  17575. name: "Normal",
  17576. height: math.unit(15.6, "inches"),
  17577. default: true
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17583. {
  17584. side: {
  17585. height: math.unit(4 + 8 / 12, "feet"),
  17586. weight: math.unit(166, "lb"),
  17587. name: "Side",
  17588. image: {
  17589. source: "./media/characters/fiona/side.svg",
  17590. extra: 232 / 220,
  17591. bottom: 0.03
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Normal",
  17598. height: math.unit(4 + 8 / 12, "feet"),
  17599. default: true
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17605. {
  17606. front: {
  17607. height: math.unit(26, "inches"),
  17608. weight: math.unit(35, "lb"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/lyla/front.svg",
  17612. bottom: 0.1
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(3, "feet"),
  17620. default: true
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17626. {
  17627. side: {
  17628. height: math.unit(1.8, "feet"),
  17629. weight: math.unit(44, "lb"),
  17630. name: "Side",
  17631. image: {
  17632. source: "./media/characters/perseus/side.svg",
  17633. bottom: 0.21
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Normal",
  17640. height: math.unit(1.8, "feet"),
  17641. default: true
  17642. },
  17643. ]
  17644. ))
  17645. characterMakers.push(() => makeCharacter(
  17646. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17647. {
  17648. side: {
  17649. height: math.unit(4 + 2 / 12, "feet"),
  17650. weight: math.unit(20, "lb"),
  17651. name: "Side",
  17652. image: {
  17653. source: "./media/characters/remus/side.svg"
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(4 + 2 / 12, "feet"),
  17661. default: true
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17667. {
  17668. front: {
  17669. height: math.unit(4 + 11 / 12, "feet"),
  17670. weight: math.unit(114, "lb"),
  17671. name: "Front",
  17672. image: {
  17673. source: "./media/characters/raf/front.svg",
  17674. extra: 1504/1339,
  17675. bottom: 26/1530
  17676. }
  17677. },
  17678. side: {
  17679. height: math.unit(4 + 11 / 12, "feet"),
  17680. weight: math.unit(114, "lb"),
  17681. name: "Side",
  17682. image: {
  17683. source: "./media/characters/raf/side.svg",
  17684. extra: 1466/1316,
  17685. bottom: 29/1495
  17686. }
  17687. },
  17688. },
  17689. [
  17690. {
  17691. name: "Micro",
  17692. height: math.unit(2, "inches")
  17693. },
  17694. {
  17695. name: "Normal",
  17696. height: math.unit(4 + 11 / 12, "feet"),
  17697. default: true
  17698. },
  17699. {
  17700. name: "Macro",
  17701. height: math.unit(70, "feet")
  17702. },
  17703. ]
  17704. ))
  17705. characterMakers.push(() => makeCharacter(
  17706. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17707. {
  17708. front: {
  17709. height: math.unit(1.5, "meters"),
  17710. weight: math.unit(68, "kg"),
  17711. name: "Front",
  17712. image: {
  17713. source: "./media/characters/liam-einarr/front.svg",
  17714. extra: 2822 / 2666
  17715. }
  17716. },
  17717. back: {
  17718. height: math.unit(1.5, "meters"),
  17719. weight: math.unit(68, "kg"),
  17720. name: "Back",
  17721. image: {
  17722. source: "./media/characters/liam-einarr/back.svg",
  17723. extra: 2822 / 2666,
  17724. bottom: 0.015
  17725. }
  17726. },
  17727. },
  17728. [
  17729. {
  17730. name: "Normal",
  17731. height: math.unit(1.5, "meters"),
  17732. default: true
  17733. },
  17734. {
  17735. name: "Macro",
  17736. height: math.unit(150, "meters")
  17737. },
  17738. {
  17739. name: "Megamacro",
  17740. height: math.unit(35, "km")
  17741. },
  17742. ]
  17743. ))
  17744. characterMakers.push(() => makeCharacter(
  17745. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17746. {
  17747. front: {
  17748. height: math.unit(6, "feet"),
  17749. weight: math.unit(75, "kg"),
  17750. name: "Front",
  17751. image: {
  17752. source: "./media/characters/linda/front.svg",
  17753. extra: 930 / 874,
  17754. bottom: 0.004
  17755. }
  17756. },
  17757. },
  17758. [
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(6, "feet"),
  17762. default: true
  17763. },
  17764. ]
  17765. ))
  17766. characterMakers.push(() => makeCharacter(
  17767. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17768. {
  17769. front: {
  17770. height: math.unit(6 + 8 / 12, "feet"),
  17771. weight: math.unit(220, "lb"),
  17772. name: "Front",
  17773. image: {
  17774. source: "./media/characters/caylex/front.svg",
  17775. extra: 821 / 772,
  17776. bottom: 0.07
  17777. }
  17778. },
  17779. back: {
  17780. height: math.unit(6 + 8 / 12, "feet"),
  17781. weight: math.unit(220, "lb"),
  17782. name: "Back",
  17783. image: {
  17784. source: "./media/characters/caylex/back.svg",
  17785. extra: 821 / 772,
  17786. bottom: 0.022
  17787. }
  17788. },
  17789. hand: {
  17790. height: math.unit(1.25, "feet"),
  17791. name: "Hand",
  17792. image: {
  17793. source: "./media/characters/caylex/hand.svg"
  17794. }
  17795. },
  17796. foot: {
  17797. height: math.unit(1.6, "feet"),
  17798. name: "Foot",
  17799. image: {
  17800. source: "./media/characters/caylex/foot.svg"
  17801. }
  17802. },
  17803. armored: {
  17804. height: math.unit(6 + 8 / 12, "feet"),
  17805. weight: math.unit(250, "lb"),
  17806. name: "Armored",
  17807. image: {
  17808. source: "./media/characters/caylex/armored.svg",
  17809. extra: 1420 / 1310,
  17810. bottom: 0.045
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(6 + 8 / 12, "feet"),
  17818. default: true
  17819. },
  17820. {
  17821. name: "Normal+",
  17822. height: math.unit(12, "feet")
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17828. {
  17829. front: {
  17830. height: math.unit(7 + 6 / 12, "feet"),
  17831. weight: math.unit(288, "lb"),
  17832. name: "Front",
  17833. image: {
  17834. source: "./media/characters/alana/front.svg",
  17835. extra: 679 / 653,
  17836. bottom: 22.5 / 701
  17837. }
  17838. },
  17839. },
  17840. [
  17841. {
  17842. name: "Normal",
  17843. height: math.unit(7 + 6 / 12, "feet")
  17844. },
  17845. {
  17846. name: "Large",
  17847. height: math.unit(50, "feet")
  17848. },
  17849. {
  17850. name: "Macro",
  17851. height: math.unit(100, "feet"),
  17852. default: true
  17853. },
  17854. {
  17855. name: "Macro+",
  17856. height: math.unit(200, "feet")
  17857. },
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17862. {
  17863. front: {
  17864. height: math.unit(6 + 1 / 12, "feet"),
  17865. weight: math.unit(210, "lb"),
  17866. name: "Front",
  17867. image: {
  17868. source: "./media/characters/hasani/front.svg",
  17869. extra: 244 / 232,
  17870. bottom: 0.01
  17871. }
  17872. },
  17873. back: {
  17874. height: math.unit(6 + 1 / 12, "feet"),
  17875. weight: math.unit(210, "lb"),
  17876. name: "Back",
  17877. image: {
  17878. source: "./media/characters/hasani/back.svg",
  17879. extra: 244 / 232,
  17880. bottom: 0.01
  17881. }
  17882. },
  17883. },
  17884. [
  17885. {
  17886. name: "Normal",
  17887. height: math.unit(6 + 1 / 12, "feet")
  17888. },
  17889. {
  17890. name: "Macro",
  17891. height: math.unit(175, "feet"),
  17892. default: true
  17893. },
  17894. ]
  17895. ))
  17896. characterMakers.push(() => makeCharacter(
  17897. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17898. {
  17899. front: {
  17900. height: math.unit(1.82, "meters"),
  17901. weight: math.unit(140, "lb"),
  17902. name: "Front",
  17903. image: {
  17904. source: "./media/characters/nita/front.svg",
  17905. extra: 2473 / 2363,
  17906. bottom: 0.01
  17907. }
  17908. },
  17909. },
  17910. [
  17911. {
  17912. name: "Normal",
  17913. height: math.unit(1.82, "m")
  17914. },
  17915. {
  17916. name: "Macro",
  17917. height: math.unit(300, "m")
  17918. },
  17919. {
  17920. name: "Mistake Canon",
  17921. height: math.unit(0.5, "miles"),
  17922. default: true
  17923. },
  17924. {
  17925. name: "Big Mistake",
  17926. height: math.unit(13, "miles")
  17927. },
  17928. {
  17929. name: "Playing God",
  17930. height: math.unit(2450, "miles")
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17936. {
  17937. front: {
  17938. height: math.unit(4, "feet"),
  17939. weight: math.unit(120, "lb"),
  17940. name: "Front",
  17941. image: {
  17942. source: "./media/characters/shiriko/front.svg",
  17943. extra: 970/934,
  17944. bottom: 5/975
  17945. }
  17946. },
  17947. },
  17948. [
  17949. {
  17950. name: "Normal",
  17951. height: math.unit(4, "feet"),
  17952. default: true
  17953. },
  17954. ]
  17955. ))
  17956. characterMakers.push(() => makeCharacter(
  17957. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17958. {
  17959. front: {
  17960. height: math.unit(6, "feet"),
  17961. name: "front",
  17962. image: {
  17963. source: "./media/characters/deja/front.svg",
  17964. extra: 926 / 840,
  17965. bottom: 0.07
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Planck Length",
  17972. height: math.unit(1.6e-35, "meters")
  17973. },
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(30.48, "meters"),
  17977. default: true
  17978. },
  17979. {
  17980. name: "Universal",
  17981. height: math.unit(8.8e26, "meters")
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17987. {
  17988. side: {
  17989. height: math.unit(8, "feet"),
  17990. weight: math.unit(6300, "lb"),
  17991. name: "Side",
  17992. image: {
  17993. source: "./media/characters/anima/side.svg",
  17994. bottom: 0.035
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Normal",
  18001. height: math.unit(8, "feet"),
  18002. default: true
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18008. {
  18009. front: {
  18010. height: math.unit(8, "feet"),
  18011. weight: math.unit(350, "lb"),
  18012. name: "Front",
  18013. image: {
  18014. source: "./media/characters/bianca/front.svg",
  18015. extra: 234 / 225,
  18016. bottom: 0.03
  18017. }
  18018. },
  18019. },
  18020. [
  18021. {
  18022. name: "Normal",
  18023. height: math.unit(8, "feet"),
  18024. default: true
  18025. },
  18026. ]
  18027. ))
  18028. characterMakers.push(() => makeCharacter(
  18029. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18030. {
  18031. front: {
  18032. height: math.unit(6, "feet"),
  18033. weight: math.unit(150, "lb"),
  18034. name: "Front",
  18035. image: {
  18036. source: "./media/characters/adinia/front.svg",
  18037. extra: 1845 / 1672,
  18038. bottom: 0.02
  18039. }
  18040. },
  18041. back: {
  18042. height: math.unit(6, "feet"),
  18043. weight: math.unit(150, "lb"),
  18044. name: "Back",
  18045. image: {
  18046. source: "./media/characters/adinia/back.svg",
  18047. extra: 1845 / 1672,
  18048. bottom: 0.002
  18049. }
  18050. },
  18051. },
  18052. [
  18053. {
  18054. name: "Normal",
  18055. height: math.unit(11 + 5 / 12, "feet"),
  18056. default: true
  18057. },
  18058. ]
  18059. ))
  18060. characterMakers.push(() => makeCharacter(
  18061. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18062. {
  18063. front: {
  18064. height: math.unit(3, "meters"),
  18065. weight: math.unit(200, "kg"),
  18066. name: "Front",
  18067. image: {
  18068. source: "./media/characters/lykasa/front.svg",
  18069. extra: 1076 / 976,
  18070. bottom: 0.06
  18071. }
  18072. },
  18073. },
  18074. [
  18075. {
  18076. name: "Normal",
  18077. height: math.unit(3, "meters")
  18078. },
  18079. {
  18080. name: "Kaiju",
  18081. height: math.unit(120, "meters"),
  18082. default: true
  18083. },
  18084. {
  18085. name: "Mega Kaiju",
  18086. height: math.unit(240, "km")
  18087. },
  18088. {
  18089. name: "Giga Kaiju",
  18090. height: math.unit(400, "megameters")
  18091. },
  18092. {
  18093. name: "Tera Kaiju",
  18094. height: math.unit(800, "gigameters")
  18095. },
  18096. {
  18097. name: "Kaiju Dragon Goddess",
  18098. height: math.unit(26, "zettaparsecs")
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18104. {
  18105. side: {
  18106. height: math.unit(283 / 124 * 6, "feet"),
  18107. weight: math.unit(35000, "lb"),
  18108. name: "Side",
  18109. image: {
  18110. source: "./media/characters/malfaren/side.svg",
  18111. extra: 1310/529,
  18112. bottom: 24/1334
  18113. }
  18114. },
  18115. front: {
  18116. height: math.unit(22.36, "feet"),
  18117. weight: math.unit(35000, "lb"),
  18118. name: "Front",
  18119. image: {
  18120. source: "./media/characters/malfaren/front.svg",
  18121. extra: 1237/1115,
  18122. bottom: 32/1269
  18123. }
  18124. },
  18125. maw: {
  18126. height: math.unit(6.9, "feet"),
  18127. name: "Maw",
  18128. image: {
  18129. source: "./media/characters/malfaren/maw.svg"
  18130. }
  18131. },
  18132. dick: {
  18133. height: math.unit(6.19, "feet"),
  18134. name: "Dick",
  18135. image: {
  18136. source: "./media/characters/malfaren/dick.svg"
  18137. }
  18138. },
  18139. eye: {
  18140. height: math.unit(0.69, "feet"),
  18141. name: "Eye",
  18142. image: {
  18143. source: "./media/characters/malfaren/eye.svg"
  18144. }
  18145. },
  18146. },
  18147. [
  18148. {
  18149. name: "Big",
  18150. height: math.unit(283 / 162 * 6, "feet"),
  18151. },
  18152. {
  18153. name: "Bigger",
  18154. height: math.unit(283 / 124 * 6, "feet")
  18155. },
  18156. {
  18157. name: "Massive",
  18158. height: math.unit(283 / 92 * 6, "feet"),
  18159. default: true
  18160. },
  18161. {
  18162. name: "👀💦",
  18163. height: math.unit(283 / 73 * 6, "feet"),
  18164. },
  18165. ]
  18166. ))
  18167. characterMakers.push(() => makeCharacter(
  18168. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18169. {
  18170. front: {
  18171. height: math.unit(1.7, "m"),
  18172. weight: math.unit(70, "kg"),
  18173. name: "Front",
  18174. image: {
  18175. source: "./media/characters/kernel/front.svg",
  18176. extra: 222 / 210,
  18177. bottom: 0.007
  18178. }
  18179. },
  18180. },
  18181. [
  18182. {
  18183. name: "Nano",
  18184. height: math.unit(17, "micrometers")
  18185. },
  18186. {
  18187. name: "Micro",
  18188. height: math.unit(1.7, "mm")
  18189. },
  18190. {
  18191. name: "Small",
  18192. height: math.unit(1.7, "cm")
  18193. },
  18194. {
  18195. name: "Normal",
  18196. height: math.unit(1.7, "m"),
  18197. default: true
  18198. },
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18203. {
  18204. front: {
  18205. height: math.unit(1.75, "meters"),
  18206. weight: math.unit(65, "kg"),
  18207. name: "Front",
  18208. image: {
  18209. source: "./media/characters/jayne-folest/front.svg",
  18210. extra: 2115 / 2007,
  18211. bottom: 0.02
  18212. }
  18213. },
  18214. back: {
  18215. height: math.unit(1.75, "meters"),
  18216. weight: math.unit(65, "kg"),
  18217. name: "Back",
  18218. image: {
  18219. source: "./media/characters/jayne-folest/back.svg",
  18220. extra: 2115 / 2007,
  18221. bottom: 0.005
  18222. }
  18223. },
  18224. frontClothed: {
  18225. height: math.unit(1.75, "meters"),
  18226. weight: math.unit(65, "kg"),
  18227. name: "Front (Clothed)",
  18228. image: {
  18229. source: "./media/characters/jayne-folest/front-clothed.svg",
  18230. extra: 2115 / 2007,
  18231. bottom: 0.035
  18232. }
  18233. },
  18234. hand: {
  18235. height: math.unit(1 / 1.260, "feet"),
  18236. name: "Hand",
  18237. image: {
  18238. source: "./media/characters/jayne-folest/hand.svg"
  18239. }
  18240. },
  18241. foot: {
  18242. height: math.unit(1 / 0.918, "feet"),
  18243. name: "Foot",
  18244. image: {
  18245. source: "./media/characters/jayne-folest/foot.svg"
  18246. }
  18247. },
  18248. },
  18249. [
  18250. {
  18251. name: "Micro",
  18252. height: math.unit(4, "cm")
  18253. },
  18254. {
  18255. name: "Normal",
  18256. height: math.unit(1.75, "meters")
  18257. },
  18258. {
  18259. name: "Macro",
  18260. height: math.unit(47.5, "meters"),
  18261. default: true
  18262. },
  18263. ]
  18264. ))
  18265. characterMakers.push(() => makeCharacter(
  18266. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18267. {
  18268. front: {
  18269. height: math.unit(180, "cm"),
  18270. weight: math.unit(70, "kg"),
  18271. name: "Front",
  18272. image: {
  18273. source: "./media/characters/algier/front.svg",
  18274. extra: 596 / 572,
  18275. bottom: 0.04
  18276. }
  18277. },
  18278. back: {
  18279. height: math.unit(180, "cm"),
  18280. weight: math.unit(70, "kg"),
  18281. name: "Back",
  18282. image: {
  18283. source: "./media/characters/algier/back.svg",
  18284. extra: 596 / 572,
  18285. bottom: 0.025
  18286. }
  18287. },
  18288. frontdressed: {
  18289. height: math.unit(180, "cm"),
  18290. weight: math.unit(150, "kg"),
  18291. name: "Front-dressed",
  18292. image: {
  18293. source: "./media/characters/algier/front-dressed.svg",
  18294. extra: 596 / 572,
  18295. bottom: 0.038
  18296. }
  18297. },
  18298. },
  18299. [
  18300. {
  18301. name: "Micro",
  18302. height: math.unit(5, "cm")
  18303. },
  18304. {
  18305. name: "Normal",
  18306. height: math.unit(180, "cm"),
  18307. default: true
  18308. },
  18309. {
  18310. name: "Macro",
  18311. height: math.unit(64, "m")
  18312. },
  18313. ]
  18314. ))
  18315. characterMakers.push(() => makeCharacter(
  18316. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18317. {
  18318. upright: {
  18319. height: math.unit(7, "feet"),
  18320. weight: math.unit(300, "lb"),
  18321. name: "Upright",
  18322. image: {
  18323. source: "./media/characters/pretzel/upright.svg",
  18324. extra: 534 / 522,
  18325. bottom: 0.065
  18326. }
  18327. },
  18328. sprawling: {
  18329. height: math.unit(3.75, "feet"),
  18330. weight: math.unit(300, "lb"),
  18331. name: "Sprawling",
  18332. image: {
  18333. source: "./media/characters/pretzel/sprawling.svg",
  18334. extra: 314 / 281,
  18335. bottom: 0.1
  18336. }
  18337. },
  18338. tongue: {
  18339. height: math.unit(2, "feet"),
  18340. name: "Tongue",
  18341. image: {
  18342. source: "./media/characters/pretzel/tongue.svg"
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Normal",
  18349. height: math.unit(7, "feet"),
  18350. default: true
  18351. },
  18352. {
  18353. name: "Oversized",
  18354. height: math.unit(15, "feet")
  18355. },
  18356. {
  18357. name: "Huge",
  18358. height: math.unit(30, "feet")
  18359. },
  18360. {
  18361. name: "Macro",
  18362. height: math.unit(250, "feet")
  18363. },
  18364. ]
  18365. ))
  18366. characterMakers.push(() => makeCharacter(
  18367. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18368. {
  18369. sideFront: {
  18370. height: math.unit(5 + 2 / 12, "feet"),
  18371. weight: math.unit(120, "lb"),
  18372. name: "Front Side",
  18373. image: {
  18374. source: "./media/characters/roxi/side-front.svg",
  18375. extra: 2924 / 2717,
  18376. bottom: 0.08
  18377. }
  18378. },
  18379. sideBack: {
  18380. height: math.unit(5 + 2 / 12, "feet"),
  18381. weight: math.unit(120, "lb"),
  18382. name: "Back Side",
  18383. image: {
  18384. source: "./media/characters/roxi/side-back.svg",
  18385. extra: 2904 / 2693,
  18386. bottom: 0.06
  18387. }
  18388. },
  18389. front: {
  18390. height: math.unit(5 + 2 / 12, "feet"),
  18391. weight: math.unit(120, "lb"),
  18392. name: "Front",
  18393. image: {
  18394. source: "./media/characters/roxi/front.svg",
  18395. extra: 2028 / 1907,
  18396. bottom: 0.01
  18397. }
  18398. },
  18399. frontAlt: {
  18400. height: math.unit(5 + 2 / 12, "feet"),
  18401. weight: math.unit(120, "lb"),
  18402. name: "Front (Alt)",
  18403. image: {
  18404. source: "./media/characters/roxi/front-alt.svg",
  18405. extra: 1828 / 1798,
  18406. bottom: 0.01
  18407. }
  18408. },
  18409. sitting: {
  18410. height: math.unit(2.8, "feet"),
  18411. weight: math.unit(120, "lb"),
  18412. name: "Sitting",
  18413. image: {
  18414. source: "./media/characters/roxi/sitting.svg",
  18415. extra: 2660 / 2462,
  18416. bottom: 0.1
  18417. }
  18418. },
  18419. },
  18420. [
  18421. {
  18422. name: "Normal",
  18423. height: math.unit(5 + 2 / 12, "feet"),
  18424. default: true
  18425. },
  18426. ]
  18427. ))
  18428. characterMakers.push(() => makeCharacter(
  18429. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18430. {
  18431. side: {
  18432. height: math.unit(55, "feet"),
  18433. weight: math.unit(153, "tons"),
  18434. name: "Side",
  18435. image: {
  18436. source: "./media/characters/shadow/side.svg",
  18437. extra: 701 / 628,
  18438. bottom: 0.02
  18439. }
  18440. },
  18441. flying: {
  18442. height: math.unit(145, "feet"),
  18443. weight: math.unit(153, "tons"),
  18444. name: "Flying",
  18445. image: {
  18446. source: "./media/characters/shadow/flying.svg"
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Normal",
  18453. height: math.unit(55, "feet"),
  18454. default: true
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18460. {
  18461. front: {
  18462. height: math.unit(6, "feet"),
  18463. weight: math.unit(200, "lb"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/marcie/front.svg",
  18467. extra: 960 / 876,
  18468. bottom: 58 / 1017.87
  18469. }
  18470. },
  18471. },
  18472. [
  18473. {
  18474. name: "Macro",
  18475. height: math.unit(1, "mile"),
  18476. default: true
  18477. },
  18478. ]
  18479. ))
  18480. characterMakers.push(() => makeCharacter(
  18481. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18482. {
  18483. front: {
  18484. height: math.unit(7, "feet"),
  18485. weight: math.unit(200, "lb"),
  18486. name: "Front",
  18487. image: {
  18488. source: "./media/characters/kachina/front.svg",
  18489. extra: 1290.68 / 1119,
  18490. bottom: 36.5 / 1327.18
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Normal",
  18497. height: math.unit(7, "feet"),
  18498. default: true
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18504. {
  18505. looking: {
  18506. height: math.unit(2, "meters"),
  18507. weight: math.unit(300, "kg"),
  18508. name: "Looking",
  18509. image: {
  18510. source: "./media/characters/kash/looking.svg",
  18511. extra: 474 / 344,
  18512. bottom: 0.03
  18513. }
  18514. },
  18515. side: {
  18516. height: math.unit(2, "meters"),
  18517. weight: math.unit(300, "kg"),
  18518. name: "Side",
  18519. image: {
  18520. source: "./media/characters/kash/side.svg",
  18521. extra: 302 / 251,
  18522. bottom: 0.03
  18523. }
  18524. },
  18525. front: {
  18526. height: math.unit(2, "meters"),
  18527. weight: math.unit(300, "kg"),
  18528. name: "Front",
  18529. image: {
  18530. source: "./media/characters/kash/front.svg",
  18531. extra: 495 / 360,
  18532. bottom: 0.015
  18533. }
  18534. },
  18535. },
  18536. [
  18537. {
  18538. name: "Normal",
  18539. height: math.unit(2, "meters"),
  18540. default: true
  18541. },
  18542. {
  18543. name: "Big",
  18544. height: math.unit(3, "meters")
  18545. },
  18546. {
  18547. name: "Large",
  18548. height: math.unit(5, "meters")
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18554. {
  18555. feeding: {
  18556. height: math.unit(6.7, "feet"),
  18557. weight: math.unit(350, "lb"),
  18558. name: "Feeding",
  18559. image: {
  18560. source: "./media/characters/lalim/feeding.svg",
  18561. }
  18562. },
  18563. },
  18564. [
  18565. {
  18566. name: "Normal",
  18567. height: math.unit(6.7, "feet"),
  18568. default: true
  18569. },
  18570. ]
  18571. ))
  18572. characterMakers.push(() => makeCharacter(
  18573. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18574. {
  18575. front: {
  18576. height: math.unit(9.5, "feet"),
  18577. weight: math.unit(600, "lb"),
  18578. name: "Front",
  18579. image: {
  18580. source: "./media/characters/de'vout/front.svg",
  18581. extra: 1443 / 1328,
  18582. bottom: 0.025
  18583. }
  18584. },
  18585. back: {
  18586. height: math.unit(9.5, "feet"),
  18587. weight: math.unit(600, "lb"),
  18588. name: "Back",
  18589. image: {
  18590. source: "./media/characters/de'vout/back.svg",
  18591. extra: 1443 / 1328
  18592. }
  18593. },
  18594. frontDressed: {
  18595. height: math.unit(9.5, "feet"),
  18596. weight: math.unit(600, "lb"),
  18597. name: "Front (Dressed",
  18598. image: {
  18599. source: "./media/characters/de'vout/front-dressed.svg",
  18600. extra: 1443 / 1328,
  18601. bottom: 0.025
  18602. }
  18603. },
  18604. backDressed: {
  18605. height: math.unit(9.5, "feet"),
  18606. weight: math.unit(600, "lb"),
  18607. name: "Back (Dressed",
  18608. image: {
  18609. source: "./media/characters/de'vout/back-dressed.svg",
  18610. extra: 1443 / 1328
  18611. }
  18612. },
  18613. },
  18614. [
  18615. {
  18616. name: "Normal",
  18617. height: math.unit(9.5, "feet"),
  18618. default: true
  18619. },
  18620. ]
  18621. ))
  18622. characterMakers.push(() => makeCharacter(
  18623. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18624. {
  18625. front: {
  18626. height: math.unit(8, "feet"),
  18627. weight: math.unit(225, "lb"),
  18628. name: "Front",
  18629. image: {
  18630. source: "./media/characters/talana/front.svg",
  18631. extra: 1410 / 1300,
  18632. bottom: 0.015
  18633. }
  18634. },
  18635. frontDressed: {
  18636. height: math.unit(8, "feet"),
  18637. weight: math.unit(225, "lb"),
  18638. name: "Front (Dressed",
  18639. image: {
  18640. source: "./media/characters/talana/front-dressed.svg",
  18641. extra: 1410 / 1300,
  18642. bottom: 0.015
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(8, "feet"),
  18650. default: true
  18651. },
  18652. ]
  18653. ))
  18654. characterMakers.push(() => makeCharacter(
  18655. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18656. {
  18657. side: {
  18658. height: math.unit(7.2, "feet"),
  18659. weight: math.unit(150, "lb"),
  18660. name: "Side",
  18661. image: {
  18662. source: "./media/characters/xeauvok/side.svg",
  18663. extra: 1975 / 1523,
  18664. bottom: 0.07
  18665. }
  18666. },
  18667. },
  18668. [
  18669. {
  18670. name: "Normal",
  18671. height: math.unit(7.2, "feet"),
  18672. default: true
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18678. {
  18679. side: {
  18680. height: math.unit(10, "feet"),
  18681. weight: math.unit(900, "kg"),
  18682. name: "Side",
  18683. image: {
  18684. source: "./media/characters/zara/side.svg",
  18685. extra: 504 / 498
  18686. }
  18687. },
  18688. },
  18689. [
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(10, "feet"),
  18693. default: true
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18699. {
  18700. side: {
  18701. height: math.unit(6, "feet"),
  18702. weight: math.unit(150, "lb"),
  18703. name: "Side",
  18704. image: {
  18705. source: "./media/characters/richard-dragon/side.svg",
  18706. extra: 845 / 340,
  18707. bottom: 0.017
  18708. }
  18709. },
  18710. maw: {
  18711. height: math.unit(2.97, "feet"),
  18712. name: "Maw",
  18713. image: {
  18714. source: "./media/characters/richard-dragon/maw.svg"
  18715. }
  18716. },
  18717. },
  18718. [
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18723. {
  18724. front: {
  18725. height: math.unit(4, "feet"),
  18726. weight: math.unit(100, "lb"),
  18727. name: "Front",
  18728. image: {
  18729. source: "./media/characters/richard-smeargle/front.svg",
  18730. extra: 2952 / 2820,
  18731. bottom: 0.028
  18732. }
  18733. },
  18734. },
  18735. [
  18736. {
  18737. name: "Normal",
  18738. height: math.unit(4, "feet"),
  18739. default: true
  18740. },
  18741. {
  18742. name: "Dynamax",
  18743. height: math.unit(20, "meters")
  18744. },
  18745. ]
  18746. ))
  18747. characterMakers.push(() => makeCharacter(
  18748. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18749. {
  18750. front: {
  18751. height: math.unit(6, "feet"),
  18752. weight: math.unit(110, "lb"),
  18753. name: "Front",
  18754. image: {
  18755. source: "./media/characters/klay/front.svg",
  18756. extra: 962 / 883,
  18757. bottom: 0.04
  18758. }
  18759. },
  18760. back: {
  18761. height: math.unit(6, "feet"),
  18762. weight: math.unit(110, "lb"),
  18763. name: "Back",
  18764. image: {
  18765. source: "./media/characters/klay/back.svg",
  18766. extra: 962 / 883
  18767. }
  18768. },
  18769. beans: {
  18770. height: math.unit(1.15, "feet"),
  18771. name: "Beans",
  18772. image: {
  18773. source: "./media/characters/klay/beans.svg"
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Micro",
  18780. height: math.unit(6, "inches")
  18781. },
  18782. {
  18783. name: "Mini",
  18784. height: math.unit(3, "feet")
  18785. },
  18786. {
  18787. name: "Normal",
  18788. height: math.unit(6, "feet"),
  18789. default: true
  18790. },
  18791. {
  18792. name: "Big",
  18793. height: math.unit(25, "feet")
  18794. },
  18795. {
  18796. name: "Macro",
  18797. height: math.unit(100, "feet")
  18798. },
  18799. {
  18800. name: "Megamacro",
  18801. height: math.unit(400, "feet")
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18807. {
  18808. front: {
  18809. height: math.unit(6, "feet"),
  18810. weight: math.unit(160, "lb"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/marcus/front.svg",
  18814. extra: 734 / 676,
  18815. bottom: 0.03
  18816. }
  18817. },
  18818. },
  18819. [
  18820. {
  18821. name: "Little",
  18822. height: math.unit(6, "feet")
  18823. },
  18824. {
  18825. name: "Normal",
  18826. height: math.unit(110, "feet"),
  18827. default: true
  18828. },
  18829. {
  18830. name: "Macro",
  18831. height: math.unit(250, "feet")
  18832. },
  18833. {
  18834. name: "Megamacro",
  18835. height: math.unit(1000, "feet")
  18836. },
  18837. ]
  18838. ))
  18839. characterMakers.push(() => makeCharacter(
  18840. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18841. {
  18842. front: {
  18843. height: math.unit(7, "feet"),
  18844. weight: math.unit(275, "lb"),
  18845. name: "Front",
  18846. image: {
  18847. source: "./media/characters/claude-delroute/front.svg",
  18848. extra: 902/827,
  18849. bottom: 26/928
  18850. }
  18851. },
  18852. side: {
  18853. height: math.unit(7, "feet"),
  18854. weight: math.unit(275, "lb"),
  18855. name: "Side",
  18856. image: {
  18857. source: "./media/characters/claude-delroute/side.svg",
  18858. extra: 908/853,
  18859. bottom: 16/924
  18860. }
  18861. },
  18862. back: {
  18863. height: math.unit(7, "feet"),
  18864. weight: math.unit(275, "lb"),
  18865. name: "Back",
  18866. image: {
  18867. source: "./media/characters/claude-delroute/back.svg",
  18868. extra: 911/829,
  18869. bottom: 18/929
  18870. }
  18871. },
  18872. maw: {
  18873. height: math.unit(0.6407, "meters"),
  18874. name: "Maw",
  18875. image: {
  18876. source: "./media/characters/claude-delroute/maw.svg"
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Normal",
  18883. height: math.unit(7, "feet"),
  18884. default: true
  18885. },
  18886. {
  18887. name: "Lorge",
  18888. height: math.unit(20, "feet")
  18889. },
  18890. ]
  18891. ))
  18892. characterMakers.push(() => makeCharacter(
  18893. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18894. {
  18895. front: {
  18896. height: math.unit(8 + 4 / 12, "feet"),
  18897. weight: math.unit(600, "lb"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/dragonien/front.svg",
  18901. extra: 100 / 94,
  18902. bottom: 3.3 / 103.3445
  18903. }
  18904. },
  18905. back: {
  18906. height: math.unit(8 + 4 / 12, "feet"),
  18907. weight: math.unit(600, "lb"),
  18908. name: "Back",
  18909. image: {
  18910. source: "./media/characters/dragonien/back.svg",
  18911. extra: 776 / 746,
  18912. bottom: 6.4 / 782.0616
  18913. }
  18914. },
  18915. foot: {
  18916. height: math.unit(1.54, "feet"),
  18917. name: "Foot",
  18918. image: {
  18919. source: "./media/characters/dragonien/foot.svg",
  18920. }
  18921. },
  18922. },
  18923. [
  18924. {
  18925. name: "Normal",
  18926. height: math.unit(8 + 4 / 12, "feet"),
  18927. default: true
  18928. },
  18929. {
  18930. name: "Macro",
  18931. height: math.unit(200, "feet")
  18932. },
  18933. {
  18934. name: "Megamacro",
  18935. height: math.unit(1, "mile")
  18936. },
  18937. {
  18938. name: "Gigamacro",
  18939. height: math.unit(1000, "miles")
  18940. },
  18941. ]
  18942. ))
  18943. characterMakers.push(() => makeCharacter(
  18944. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18945. {
  18946. front: {
  18947. height: math.unit(5 + 2 / 12, "feet"),
  18948. weight: math.unit(110, "lb"),
  18949. name: "Front",
  18950. image: {
  18951. source: "./media/characters/desta/front.svg",
  18952. extra: 767 / 726,
  18953. bottom: 11.7 / 779
  18954. }
  18955. },
  18956. back: {
  18957. height: math.unit(5 + 2 / 12, "feet"),
  18958. weight: math.unit(110, "lb"),
  18959. name: "Back",
  18960. image: {
  18961. source: "./media/characters/desta/back.svg",
  18962. extra: 777 / 728,
  18963. bottom: 6 / 784
  18964. }
  18965. },
  18966. frontAlt: {
  18967. height: math.unit(5 + 2 / 12, "feet"),
  18968. weight: math.unit(110, "lb"),
  18969. name: "Front",
  18970. image: {
  18971. source: "./media/characters/desta/front-alt.svg",
  18972. extra: 1482 / 1417
  18973. }
  18974. },
  18975. side: {
  18976. height: math.unit(5 + 2 / 12, "feet"),
  18977. weight: math.unit(110, "lb"),
  18978. name: "Side",
  18979. image: {
  18980. source: "./media/characters/desta/side.svg",
  18981. extra: 2579 / 2491,
  18982. bottom: 0.053
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Micro",
  18989. height: math.unit(6, "inches")
  18990. },
  18991. {
  18992. name: "Normal",
  18993. height: math.unit(5 + 2 / 12, "feet"),
  18994. default: true
  18995. },
  18996. {
  18997. name: "Macro",
  18998. height: math.unit(62, "feet")
  18999. },
  19000. {
  19001. name: "Megamacro",
  19002. height: math.unit(1800, "feet")
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(10, "feet"),
  19011. weight: math.unit(700, "lb"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/storm-alystar/front.svg",
  19015. extra: 2112 / 1898,
  19016. bottom: 0.034
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Micro",
  19023. height: math.unit(3.5, "inches")
  19024. },
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(10, "feet"),
  19028. default: true
  19029. },
  19030. {
  19031. name: "Macro",
  19032. height: math.unit(400, "feet")
  19033. },
  19034. {
  19035. name: "Deific",
  19036. height: math.unit(60, "miles")
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19042. {
  19043. front: {
  19044. height: math.unit(2.35, "meters"),
  19045. weight: math.unit(119, "kg"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/ilia/front.svg",
  19049. extra: 1285 / 1255,
  19050. bottom: 0.06
  19051. }
  19052. },
  19053. },
  19054. [
  19055. {
  19056. name: "Normal",
  19057. height: math.unit(2.35, "meters")
  19058. },
  19059. {
  19060. name: "Macro",
  19061. height: math.unit(140, "meters"),
  19062. default: true
  19063. },
  19064. {
  19065. name: "Megamacro",
  19066. height: math.unit(100, "miles")
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19072. {
  19073. front: {
  19074. height: math.unit(6 + 5 / 12, "feet"),
  19075. weight: math.unit(190, "lb"),
  19076. name: "Front",
  19077. image: {
  19078. source: "./media/characters/kingdead/front.svg",
  19079. extra: 1228 / 1177
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Micro",
  19086. height: math.unit(7, "inches")
  19087. },
  19088. {
  19089. name: "Normal",
  19090. height: math.unit(6 + 5 / 12, "feet")
  19091. },
  19092. {
  19093. name: "Macro",
  19094. height: math.unit(150, "feet"),
  19095. default: true
  19096. },
  19097. {
  19098. name: "Megamacro",
  19099. height: math.unit(200, "miles")
  19100. },
  19101. ]
  19102. ))
  19103. characterMakers.push(() => makeCharacter(
  19104. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19105. {
  19106. front: {
  19107. height: math.unit(8, "feet"),
  19108. weight: math.unit(600, "lb"),
  19109. name: "Front",
  19110. image: {
  19111. source: "./media/characters/kyrehx/front.svg",
  19112. extra: 1195 / 1095,
  19113. bottom: 0.034
  19114. }
  19115. },
  19116. },
  19117. [
  19118. {
  19119. name: "Micro",
  19120. height: math.unit(2, "inches")
  19121. },
  19122. {
  19123. name: "Normal",
  19124. height: math.unit(8, "feet"),
  19125. default: true
  19126. },
  19127. {
  19128. name: "Macro",
  19129. height: math.unit(255, "feet")
  19130. },
  19131. ]
  19132. ))
  19133. characterMakers.push(() => makeCharacter(
  19134. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19135. {
  19136. front: {
  19137. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19138. weight: math.unit(184, "lb"),
  19139. name: "Front",
  19140. image: {
  19141. source: "./media/characters/xang/front.svg",
  19142. extra: 845 / 755
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Normal",
  19149. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19150. default: true
  19151. },
  19152. {
  19153. name: "Macro",
  19154. height: math.unit(0.935 * 146, "feet")
  19155. },
  19156. {
  19157. name: "Megamacro",
  19158. height: math.unit(0.935 * 3, "miles")
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19164. {
  19165. frontDressed: {
  19166. height: math.unit(5 + 7 / 12, "feet"),
  19167. weight: math.unit(140, "lb"),
  19168. name: "Front (Dressed)",
  19169. image: {
  19170. source: "./media/characters/doc-weardno/front-dressed.svg",
  19171. extra: 263 / 234
  19172. }
  19173. },
  19174. backDressed: {
  19175. height: math.unit(5 + 7 / 12, "feet"),
  19176. weight: math.unit(140, "lb"),
  19177. name: "Back (Dressed)",
  19178. image: {
  19179. source: "./media/characters/doc-weardno/back-dressed.svg",
  19180. extra: 266 / 238
  19181. }
  19182. },
  19183. front: {
  19184. height: math.unit(5 + 7 / 12, "feet"),
  19185. weight: math.unit(140, "lb"),
  19186. name: "Front",
  19187. image: {
  19188. source: "./media/characters/doc-weardno/front.svg",
  19189. extra: 254 / 233
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Micro",
  19196. height: math.unit(3, "inches")
  19197. },
  19198. {
  19199. name: "Normal",
  19200. height: math.unit(5 + 7 / 12, "feet"),
  19201. default: true
  19202. },
  19203. {
  19204. name: "Macro",
  19205. height: math.unit(25, "feet")
  19206. },
  19207. {
  19208. name: "Megamacro",
  19209. height: math.unit(2, "miles")
  19210. },
  19211. ]
  19212. ))
  19213. characterMakers.push(() => makeCharacter(
  19214. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19215. {
  19216. front: {
  19217. height: math.unit(6 + 2 / 12, "feet"),
  19218. weight: math.unit(153, "lb"),
  19219. name: "Front",
  19220. image: {
  19221. source: "./media/characters/seth-whilst/front.svg",
  19222. bottom: 0.07
  19223. }
  19224. },
  19225. },
  19226. [
  19227. {
  19228. name: "Micro",
  19229. height: math.unit(5, "inches")
  19230. },
  19231. {
  19232. name: "Normal",
  19233. height: math.unit(6 + 2 / 12, "feet"),
  19234. default: true
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19240. {
  19241. front: {
  19242. height: math.unit(3, "inches"),
  19243. weight: math.unit(8, "grams"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/pocket-jabari/front.svg",
  19247. extra: 1024 / 974,
  19248. bottom: 0.039
  19249. }
  19250. },
  19251. },
  19252. [
  19253. {
  19254. name: "Minimicro",
  19255. height: math.unit(8, "mm")
  19256. },
  19257. {
  19258. name: "Micro",
  19259. height: math.unit(3, "inches"),
  19260. default: true
  19261. },
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(3, "feet")
  19265. },
  19266. ]
  19267. ))
  19268. characterMakers.push(() => makeCharacter(
  19269. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19270. {
  19271. frontDressed: {
  19272. height: math.unit(15, "feet"),
  19273. weight: math.unit(3280, "lb"),
  19274. name: "Front (Dressed)",
  19275. image: {
  19276. source: "./media/characters/sapphy/front-dressed.svg",
  19277. extra: 1951/1654,
  19278. bottom: 194/2145
  19279. },
  19280. form: "anthro",
  19281. default: true
  19282. },
  19283. backDressed: {
  19284. height: math.unit(15, "feet"),
  19285. weight: math.unit(3280, "lb"),
  19286. name: "Back (Dressed)",
  19287. image: {
  19288. source: "./media/characters/sapphy/back-dressed.svg",
  19289. extra: 2058/1918,
  19290. bottom: 125/2183
  19291. },
  19292. form: "anthro"
  19293. },
  19294. frontNude: {
  19295. height: math.unit(15, "feet"),
  19296. weight: math.unit(3280, "lb"),
  19297. name: "Front (Nude)",
  19298. image: {
  19299. source: "./media/characters/sapphy/front-nude.svg",
  19300. extra: 1951/1654,
  19301. bottom: 194/2145
  19302. },
  19303. form: "anthro"
  19304. },
  19305. backNude: {
  19306. height: math.unit(15, "feet"),
  19307. weight: math.unit(3280, "lb"),
  19308. name: "Back (Nude)",
  19309. image: {
  19310. source: "./media/characters/sapphy/back-nude.svg",
  19311. extra: 2058/1918,
  19312. bottom: 125/2183
  19313. },
  19314. form: "anthro"
  19315. },
  19316. full: {
  19317. height: math.unit(15, "feet"),
  19318. weight: math.unit(3280, "lb"),
  19319. name: "Full",
  19320. image: {
  19321. source: "./media/characters/sapphy/full.svg",
  19322. extra: 1396/1317,
  19323. bottom: 44/1440
  19324. },
  19325. form: "anthro"
  19326. },
  19327. dick: {
  19328. height: math.unit(3.8, "feet"),
  19329. name: "Dick",
  19330. image: {
  19331. source: "./media/characters/sapphy/dick.svg"
  19332. },
  19333. form: "anthro"
  19334. },
  19335. feral: {
  19336. height: math.unit(35, "feet"),
  19337. weight: math.unit(160, "tons"),
  19338. name: "Feral",
  19339. image: {
  19340. source: "./media/characters/sapphy/feral.svg",
  19341. extra: 1050/573,
  19342. bottom: 60/1110
  19343. },
  19344. form: "feral",
  19345. default: true
  19346. },
  19347. },
  19348. [
  19349. {
  19350. name: "Normal",
  19351. height: math.unit(15, "feet"),
  19352. form: "anthro"
  19353. },
  19354. {
  19355. name: "Casual Macro",
  19356. height: math.unit(120, "feet"),
  19357. form: "anthro"
  19358. },
  19359. {
  19360. name: "Macro",
  19361. height: math.unit(2150, "feet"),
  19362. default: true,
  19363. form: "anthro"
  19364. },
  19365. {
  19366. name: "Megamacro",
  19367. height: math.unit(8, "miles"),
  19368. form: "anthro"
  19369. },
  19370. {
  19371. name: "Galaxy Mom",
  19372. height: math.unit(6, "megalightyears"),
  19373. form: "anthro"
  19374. },
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(35, "feet"),
  19378. form: "feral",
  19379. default: true
  19380. },
  19381. {
  19382. name: "Macro",
  19383. height: math.unit(300, "feet"),
  19384. form: "feral"
  19385. },
  19386. {
  19387. name: "Galaxy Mom",
  19388. height: math.unit(10, "megalightyears"),
  19389. form: "feral"
  19390. },
  19391. ],
  19392. {
  19393. "anthro": {
  19394. name: "Anthro",
  19395. default: true
  19396. },
  19397. "feral": {
  19398. name: "Feral"
  19399. }
  19400. }
  19401. ))
  19402. characterMakers.push(() => makeCharacter(
  19403. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19404. {
  19405. front: {
  19406. height: math.unit(6, "feet"),
  19407. weight: math.unit(170, "lb"),
  19408. name: "Front",
  19409. image: {
  19410. source: "./media/characters/kiro/front.svg",
  19411. extra: 1064 / 1012,
  19412. bottom: 0.052
  19413. }
  19414. },
  19415. },
  19416. [
  19417. {
  19418. name: "Micro",
  19419. height: math.unit(6, "inches")
  19420. },
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(6, "feet"),
  19424. default: true
  19425. },
  19426. {
  19427. name: "Macro",
  19428. height: math.unit(72, "feet")
  19429. },
  19430. ]
  19431. ))
  19432. characterMakers.push(() => makeCharacter(
  19433. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19434. {
  19435. front: {
  19436. height: math.unit(5 + 9 / 12, "feet"),
  19437. weight: math.unit(175, "lb"),
  19438. name: "Front",
  19439. image: {
  19440. source: "./media/characters/irishfox/front.svg",
  19441. extra: 1912 / 1680,
  19442. bottom: 0.02
  19443. }
  19444. },
  19445. },
  19446. [
  19447. {
  19448. name: "Nano",
  19449. height: math.unit(1, "mm")
  19450. },
  19451. {
  19452. name: "Micro",
  19453. height: math.unit(2, "inches")
  19454. },
  19455. {
  19456. name: "Normal",
  19457. height: math.unit(5 + 9 / 12, "feet"),
  19458. default: true
  19459. },
  19460. {
  19461. name: "Macro",
  19462. height: math.unit(45, "feet")
  19463. },
  19464. ]
  19465. ))
  19466. characterMakers.push(() => makeCharacter(
  19467. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19468. {
  19469. front: {
  19470. height: math.unit(6 + 1 / 12, "feet"),
  19471. weight: math.unit(75, "lb"),
  19472. name: "Front",
  19473. image: {
  19474. source: "./media/characters/aronai-sieyes/front.svg",
  19475. extra: 1532/1450,
  19476. bottom: 42/1574
  19477. }
  19478. },
  19479. side: {
  19480. height: math.unit(6 + 1 / 12, "feet"),
  19481. weight: math.unit(75, "lb"),
  19482. name: "Side",
  19483. image: {
  19484. source: "./media/characters/aronai-sieyes/side.svg",
  19485. extra: 1422/1365,
  19486. bottom: 148/1570
  19487. }
  19488. },
  19489. back: {
  19490. height: math.unit(6 + 1 / 12, "feet"),
  19491. weight: math.unit(75, "lb"),
  19492. name: "Back",
  19493. image: {
  19494. source: "./media/characters/aronai-sieyes/back.svg",
  19495. extra: 1526/1464,
  19496. bottom: 51/1577
  19497. }
  19498. },
  19499. dressed: {
  19500. height: math.unit(6 + 1 / 12, "feet"),
  19501. weight: math.unit(75, "lb"),
  19502. name: "Dressed",
  19503. image: {
  19504. source: "./media/characters/aronai-sieyes/dressed.svg",
  19505. extra: 1559/1483,
  19506. bottom: 39/1598
  19507. }
  19508. },
  19509. slit: {
  19510. height: math.unit(1.3, "feet"),
  19511. name: "Slit",
  19512. image: {
  19513. source: "./media/characters/aronai-sieyes/slit.svg"
  19514. }
  19515. },
  19516. slitSpread: {
  19517. height: math.unit(0.9, "feet"),
  19518. name: "Slit (Spread)",
  19519. image: {
  19520. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19521. }
  19522. },
  19523. rump: {
  19524. height: math.unit(1.3, "feet"),
  19525. name: "Rump",
  19526. image: {
  19527. source: "./media/characters/aronai-sieyes/rump.svg"
  19528. }
  19529. },
  19530. maw: {
  19531. height: math.unit(1.25, "feet"),
  19532. name: "Maw",
  19533. image: {
  19534. source: "./media/characters/aronai-sieyes/maw.svg"
  19535. }
  19536. },
  19537. feral: {
  19538. height: math.unit(18, "feet"),
  19539. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19540. name: "Feral",
  19541. image: {
  19542. source: "./media/characters/aronai-sieyes/feral.svg",
  19543. extra: 1530 / 1240,
  19544. bottom: 0.035
  19545. }
  19546. },
  19547. },
  19548. [
  19549. {
  19550. name: "Micro",
  19551. height: math.unit(2, "inches")
  19552. },
  19553. {
  19554. name: "Normal",
  19555. height: math.unit(6 + 1 / 12, "feet"),
  19556. default: true
  19557. }
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(12, "feet"),
  19565. weight: math.unit(410, "kg"),
  19566. name: "Front",
  19567. image: {
  19568. source: "./media/characters/xuna/front.svg",
  19569. extra: 2184 / 1980
  19570. }
  19571. },
  19572. side: {
  19573. height: math.unit(12, "feet"),
  19574. weight: math.unit(410, "kg"),
  19575. name: "Side",
  19576. image: {
  19577. source: "./media/characters/xuna/side.svg",
  19578. extra: 2184 / 1980
  19579. }
  19580. },
  19581. back: {
  19582. height: math.unit(12, "feet"),
  19583. weight: math.unit(410, "kg"),
  19584. name: "Back",
  19585. image: {
  19586. source: "./media/characters/xuna/back.svg",
  19587. extra: 2184 / 1980
  19588. }
  19589. },
  19590. },
  19591. [
  19592. {
  19593. name: "Nano glow",
  19594. height: math.unit(10, "nm")
  19595. },
  19596. {
  19597. name: "Micro floof",
  19598. height: math.unit(0.3, "m")
  19599. },
  19600. {
  19601. name: "Huggable softy boi",
  19602. height: math.unit(3.6576, "m"),
  19603. default: true
  19604. },
  19605. {
  19606. name: "Admirable floof",
  19607. height: math.unit(80, "meters")
  19608. },
  19609. {
  19610. name: "Gentle macro",
  19611. height: math.unit(300, "meters")
  19612. },
  19613. {
  19614. name: "Very careful floof",
  19615. height: math.unit(3200, "meters")
  19616. },
  19617. {
  19618. name: "The mega floof",
  19619. height: math.unit(36000, "meters")
  19620. },
  19621. {
  19622. name: "Giga-fur-Wicker",
  19623. height: math.unit(4800000, "meters")
  19624. },
  19625. {
  19626. name: "Licky world",
  19627. height: math.unit(20000000, "meters")
  19628. },
  19629. {
  19630. name: "Floofy cyan sun",
  19631. height: math.unit(1500000000, "meters")
  19632. },
  19633. {
  19634. name: "Milky Wicker",
  19635. height: math.unit(1000000000000000000000, "meters")
  19636. },
  19637. {
  19638. name: "The observing Wicker",
  19639. height: math.unit(999999999999999999999999999, "meters")
  19640. },
  19641. ]
  19642. ))
  19643. characterMakers.push(() => makeCharacter(
  19644. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19645. {
  19646. front: {
  19647. height: math.unit(5 + 9 / 12, "feet"),
  19648. weight: math.unit(150, "lb"),
  19649. name: "Front",
  19650. image: {
  19651. source: "./media/characters/arokha-sieyes/front.svg",
  19652. extra: 1425 / 1284,
  19653. bottom: 0.05
  19654. }
  19655. },
  19656. },
  19657. [
  19658. {
  19659. name: "Normal",
  19660. height: math.unit(5 + 9 / 12, "feet")
  19661. },
  19662. {
  19663. name: "Macro",
  19664. height: math.unit(30, "meters"),
  19665. default: true
  19666. },
  19667. ]
  19668. ))
  19669. characterMakers.push(() => makeCharacter(
  19670. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19671. {
  19672. front: {
  19673. height: math.unit(6, "feet"),
  19674. weight: math.unit(180, "lb"),
  19675. name: "Front",
  19676. image: {
  19677. source: "./media/characters/arokh-sieyes/front.svg",
  19678. extra: 1830 / 1769,
  19679. bottom: 0.01
  19680. }
  19681. },
  19682. },
  19683. [
  19684. {
  19685. name: "Normal",
  19686. height: math.unit(6, "feet")
  19687. },
  19688. {
  19689. name: "Macro",
  19690. height: math.unit(30, "meters"),
  19691. default: true
  19692. },
  19693. ]
  19694. ))
  19695. characterMakers.push(() => makeCharacter(
  19696. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19697. {
  19698. side: {
  19699. height: math.unit(13 + 1 / 12, "feet"),
  19700. weight: math.unit(8.5, "tonnes"),
  19701. name: "Side",
  19702. image: {
  19703. source: "./media/characters/goldeneye/side.svg",
  19704. extra: 1182 / 778,
  19705. bottom: 0.067
  19706. }
  19707. },
  19708. paw: {
  19709. height: math.unit(3.4, "feet"),
  19710. name: "Paw",
  19711. image: {
  19712. source: "./media/characters/goldeneye/paw.svg"
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(13 + 1 / 12, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19726. {
  19727. front: {
  19728. height: math.unit(6 + 1 / 12, "feet"),
  19729. weight: math.unit(210, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/leonardo-lycheborne/front.svg",
  19733. extra: 776/723,
  19734. bottom: 34/810
  19735. }
  19736. },
  19737. side: {
  19738. height: math.unit(6 + 1 / 12, "feet"),
  19739. weight: math.unit(210, "lb"),
  19740. name: "Side",
  19741. image: {
  19742. source: "./media/characters/leonardo-lycheborne/side.svg",
  19743. extra: 780/728,
  19744. bottom: 12/792
  19745. }
  19746. },
  19747. back: {
  19748. height: math.unit(6 + 1 / 12, "feet"),
  19749. weight: math.unit(210, "lb"),
  19750. name: "Back",
  19751. image: {
  19752. source: "./media/characters/leonardo-lycheborne/back.svg",
  19753. extra: 775/721,
  19754. bottom: 17/792
  19755. }
  19756. },
  19757. hand: {
  19758. height: math.unit(1.08, "feet"),
  19759. name: "Hand",
  19760. image: {
  19761. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19762. }
  19763. },
  19764. foot: {
  19765. height: math.unit(1.32, "feet"),
  19766. name: "Foot",
  19767. image: {
  19768. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19769. }
  19770. },
  19771. maw: {
  19772. height: math.unit(1, "feet"),
  19773. name: "Maw",
  19774. image: {
  19775. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19776. }
  19777. },
  19778. were: {
  19779. height: math.unit(20, "feet"),
  19780. weight: math.unit(7800, "lb"),
  19781. name: "Were",
  19782. image: {
  19783. source: "./media/characters/leonardo-lycheborne/were.svg",
  19784. extra: 1224/1165,
  19785. bottom: 72/1296
  19786. }
  19787. },
  19788. feral: {
  19789. height: math.unit(7.5, "feet"),
  19790. weight: math.unit(600, "lb"),
  19791. name: "Feral",
  19792. image: {
  19793. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19794. extra: 797/702,
  19795. bottom: 139/936
  19796. }
  19797. },
  19798. taur: {
  19799. height: math.unit(11, "feet"),
  19800. weight: math.unit(3300, "lb"),
  19801. name: "Taur",
  19802. image: {
  19803. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19804. extra: 1271/1197,
  19805. bottom: 47/1318
  19806. }
  19807. },
  19808. barghest: {
  19809. height: math.unit(11, "feet"),
  19810. weight: math.unit(1300, "lb"),
  19811. name: "Barghest",
  19812. image: {
  19813. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19814. extra: 1291/1204,
  19815. bottom: 37/1328
  19816. }
  19817. },
  19818. dick: {
  19819. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19820. name: "Dick",
  19821. image: {
  19822. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19823. }
  19824. },
  19825. dickWere: {
  19826. height: math.unit((20) / 3.8, "feet"),
  19827. name: "Dick (Were)",
  19828. image: {
  19829. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(6 + 1 / 12, "feet"),
  19837. default: true
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19843. {
  19844. front: {
  19845. height: math.unit(10, "feet"),
  19846. weight: math.unit(350, "lb"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/jet/front.svg",
  19850. extra: 2050 / 1980,
  19851. bottom: 0.013
  19852. }
  19853. },
  19854. back: {
  19855. height: math.unit(10, "feet"),
  19856. weight: math.unit(350, "lb"),
  19857. name: "Back",
  19858. image: {
  19859. source: "./media/characters/jet/back.svg",
  19860. extra: 2050 / 1980,
  19861. bottom: 0.013
  19862. }
  19863. },
  19864. },
  19865. [
  19866. {
  19867. name: "Micro",
  19868. height: math.unit(6, "inches")
  19869. },
  19870. {
  19871. name: "Normal",
  19872. height: math.unit(10, "feet"),
  19873. default: true
  19874. },
  19875. {
  19876. name: "Macro",
  19877. height: math.unit(100, "feet")
  19878. },
  19879. ]
  19880. ))
  19881. characterMakers.push(() => makeCharacter(
  19882. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19883. {
  19884. front: {
  19885. height: math.unit(15, "feet"),
  19886. weight: math.unit(2800, "lb"),
  19887. name: "Front",
  19888. image: {
  19889. source: "./media/characters/tanarath/front.svg",
  19890. extra: 2392 / 2220,
  19891. bottom: 0.03
  19892. }
  19893. },
  19894. back: {
  19895. height: math.unit(15, "feet"),
  19896. weight: math.unit(2800, "lb"),
  19897. name: "Back",
  19898. image: {
  19899. source: "./media/characters/tanarath/back.svg",
  19900. extra: 2392 / 2220,
  19901. bottom: 0.03
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Normal",
  19908. height: math.unit(15, "feet"),
  19909. default: true
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19915. {
  19916. front: {
  19917. height: math.unit(7 + 1 / 12, "feet"),
  19918. weight: math.unit(175, "lb"),
  19919. name: "Front",
  19920. image: {
  19921. source: "./media/characters/patty-cattybatty/front.svg",
  19922. extra: 908 / 874,
  19923. bottom: 0.025
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Micro",
  19930. height: math.unit(1, "inch")
  19931. },
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(7 + 1 / 12, "feet")
  19935. },
  19936. {
  19937. name: "Mini Macro",
  19938. height: math.unit(155, "feet")
  19939. },
  19940. {
  19941. name: "Macro",
  19942. height: math.unit(1077, "feet")
  19943. },
  19944. {
  19945. name: "Mega Macro",
  19946. height: math.unit(47650, "feet"),
  19947. default: true
  19948. },
  19949. {
  19950. name: "Giga Macro",
  19951. height: math.unit(440, "miles")
  19952. },
  19953. {
  19954. name: "Tera Macro",
  19955. height: math.unit(8700, "miles")
  19956. },
  19957. {
  19958. name: "Planetary Macro",
  19959. height: math.unit(32700, "miles")
  19960. },
  19961. {
  19962. name: "Solar Macro",
  19963. height: math.unit(550000, "miles")
  19964. },
  19965. {
  19966. name: "Celestial Macro",
  19967. height: math.unit(2.5, "AU")
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19973. {
  19974. front: {
  19975. height: math.unit(4 + 5 / 12, "feet"),
  19976. weight: math.unit(90, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/cappu/front.svg",
  19980. extra: 1247 / 1152,
  19981. bottom: 0.012
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(4 + 5 / 12, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19995. {
  19996. frontDressed: {
  19997. height: math.unit(70, "cm"),
  19998. weight: math.unit(6, "kg"),
  19999. name: "Front (Dressed)",
  20000. image: {
  20001. source: "./media/characters/sebi/front-dressed.svg",
  20002. extra: 713.5 / 686.5,
  20003. bottom: 0.003
  20004. }
  20005. },
  20006. front: {
  20007. height: math.unit(70, "cm"),
  20008. weight: math.unit(5, "kg"),
  20009. name: "Front",
  20010. image: {
  20011. source: "./media/characters/sebi/front.svg",
  20012. extra: 713.5 / 686.5,
  20013. bottom: 0.003
  20014. }
  20015. }
  20016. },
  20017. [
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(70, "cm"),
  20021. default: true
  20022. },
  20023. {
  20024. name: "Macro",
  20025. height: math.unit(8, "meters")
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(6, "feet"),
  20034. weight: math.unit(150, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/typhek/front.svg",
  20038. extra: 1948 / 1929,
  20039. bottom: 0.025
  20040. }
  20041. },
  20042. side: {
  20043. height: math.unit(6, "feet"),
  20044. weight: math.unit(150, "lb"),
  20045. name: "Side",
  20046. image: {
  20047. source: "./media/characters/typhek/side.svg",
  20048. extra: 2034 / 2010,
  20049. bottom: 0.003
  20050. }
  20051. },
  20052. back: {
  20053. height: math.unit(6, "feet"),
  20054. weight: math.unit(150, "lb"),
  20055. name: "Back",
  20056. image: {
  20057. source: "./media/characters/typhek/back.svg",
  20058. extra: 2005 / 1978,
  20059. bottom: 0.004
  20060. }
  20061. },
  20062. palm: {
  20063. height: math.unit(1.2, "feet"),
  20064. name: "Palm",
  20065. image: {
  20066. source: "./media/characters/typhek/palm.svg"
  20067. }
  20068. },
  20069. fist: {
  20070. height: math.unit(1.1, "feet"),
  20071. name: "Fist",
  20072. image: {
  20073. source: "./media/characters/typhek/fist.svg"
  20074. }
  20075. },
  20076. foot: {
  20077. height: math.unit(1.57, "feet"),
  20078. name: "Foot",
  20079. image: {
  20080. source: "./media/characters/typhek/foot.svg"
  20081. }
  20082. },
  20083. sole: {
  20084. height: math.unit(2.05, "feet"),
  20085. name: "Sole",
  20086. image: {
  20087. source: "./media/characters/typhek/sole.svg"
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Macro",
  20094. height: math.unit(40, "stories"),
  20095. default: true
  20096. },
  20097. {
  20098. name: "Megamacro",
  20099. height: math.unit(1, "mile")
  20100. },
  20101. {
  20102. name: "Gigamacro",
  20103. height: math.unit(4000, "solarradii")
  20104. },
  20105. {
  20106. name: "Universal",
  20107. height: math.unit(1.1, "universes")
  20108. }
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20113. {
  20114. side: {
  20115. height: math.unit(5 + 7 / 12, "feet"),
  20116. weight: math.unit(150, "lb"),
  20117. name: "Side",
  20118. image: {
  20119. source: "./media/characters/kassy/side.svg",
  20120. extra: 1280 / 1225,
  20121. bottom: 0.002
  20122. }
  20123. },
  20124. front: {
  20125. height: math.unit(5 + 7 / 12, "feet"),
  20126. weight: math.unit(150, "lb"),
  20127. name: "Front",
  20128. image: {
  20129. source: "./media/characters/kassy/front.svg",
  20130. extra: 1280 / 1225,
  20131. bottom: 0.025
  20132. }
  20133. },
  20134. back: {
  20135. height: math.unit(5 + 7 / 12, "feet"),
  20136. weight: math.unit(150, "lb"),
  20137. name: "Back",
  20138. image: {
  20139. source: "./media/characters/kassy/back.svg",
  20140. extra: 1280 / 1225,
  20141. bottom: 0.002
  20142. }
  20143. },
  20144. foot: {
  20145. height: math.unit(1.266, "feet"),
  20146. name: "Foot",
  20147. image: {
  20148. source: "./media/characters/kassy/foot.svg"
  20149. }
  20150. },
  20151. },
  20152. [
  20153. {
  20154. name: "Normal",
  20155. height: math.unit(5 + 7 / 12, "feet")
  20156. },
  20157. {
  20158. name: "Macro",
  20159. height: math.unit(137, "feet"),
  20160. default: true
  20161. },
  20162. {
  20163. name: "Megamacro",
  20164. height: math.unit(1, "mile")
  20165. },
  20166. ]
  20167. ))
  20168. characterMakers.push(() => makeCharacter(
  20169. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20170. {
  20171. front: {
  20172. height: math.unit(6 + 1 / 12, "feet"),
  20173. weight: math.unit(200, "lb"),
  20174. name: "Front",
  20175. image: {
  20176. source: "./media/characters/neil/front.svg",
  20177. extra: 1326 / 1250,
  20178. bottom: 0.023
  20179. }
  20180. },
  20181. },
  20182. [
  20183. {
  20184. name: "Normal",
  20185. height: math.unit(6 + 1 / 12, "feet"),
  20186. default: true
  20187. },
  20188. {
  20189. name: "Macro",
  20190. height: math.unit(200, "feet")
  20191. },
  20192. ]
  20193. ))
  20194. characterMakers.push(() => makeCharacter(
  20195. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20196. {
  20197. front: {
  20198. height: math.unit(5 + 9 / 12, "feet"),
  20199. weight: math.unit(190, "lb"),
  20200. name: "Front",
  20201. image: {
  20202. source: "./media/characters/atticus/front.svg",
  20203. extra: 2934 / 2785,
  20204. bottom: 0.025
  20205. }
  20206. },
  20207. },
  20208. [
  20209. {
  20210. name: "Normal",
  20211. height: math.unit(5 + 9 / 12, "feet"),
  20212. default: true
  20213. },
  20214. {
  20215. name: "Macro",
  20216. height: math.unit(180, "feet")
  20217. },
  20218. ]
  20219. ))
  20220. characterMakers.push(() => makeCharacter(
  20221. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20222. {
  20223. side: {
  20224. height: math.unit(9, "feet"),
  20225. weight: math.unit(650, "lb"),
  20226. name: "Side",
  20227. image: {
  20228. source: "./media/characters/milo/side.svg",
  20229. extra: 2644 / 2310,
  20230. bottom: 0.032
  20231. }
  20232. },
  20233. },
  20234. [
  20235. {
  20236. name: "Normal",
  20237. height: math.unit(9, "feet"),
  20238. default: true
  20239. },
  20240. {
  20241. name: "Macro",
  20242. height: math.unit(300, "feet")
  20243. },
  20244. ]
  20245. ))
  20246. characterMakers.push(() => makeCharacter(
  20247. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20248. {
  20249. side: {
  20250. height: math.unit(8, "meters"),
  20251. weight: math.unit(90000, "kg"),
  20252. name: "Side",
  20253. image: {
  20254. source: "./media/characters/ijzer/side.svg",
  20255. extra: 2756 / 1600,
  20256. bottom: 0.01
  20257. }
  20258. },
  20259. },
  20260. [
  20261. {
  20262. name: "Small",
  20263. height: math.unit(3, "meters")
  20264. },
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(8, "meters"),
  20268. default: true
  20269. },
  20270. {
  20271. name: "Normal+",
  20272. height: math.unit(10, "meters")
  20273. },
  20274. {
  20275. name: "Bigger",
  20276. height: math.unit(24, "meters")
  20277. },
  20278. {
  20279. name: "Huge",
  20280. height: math.unit(80, "meters")
  20281. },
  20282. ]
  20283. ))
  20284. characterMakers.push(() => makeCharacter(
  20285. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20286. {
  20287. front: {
  20288. height: math.unit(6 + 2 / 12, "feet"),
  20289. weight: math.unit(153, "lb"),
  20290. name: "Front",
  20291. image: {
  20292. source: "./media/characters/luca-cervicum/front.svg",
  20293. extra: 370 / 327,
  20294. bottom: 0.015
  20295. }
  20296. },
  20297. back: {
  20298. height: math.unit(6 + 2 / 12, "feet"),
  20299. weight: math.unit(153, "lb"),
  20300. name: "Back",
  20301. image: {
  20302. source: "./media/characters/luca-cervicum/back.svg",
  20303. extra: 367 / 333,
  20304. bottom: 0.005
  20305. }
  20306. },
  20307. frontGear: {
  20308. height: math.unit(6 + 2 / 12, "feet"),
  20309. weight: math.unit(173, "lb"),
  20310. name: "Front (Gear)",
  20311. image: {
  20312. source: "./media/characters/luca-cervicum/front-gear.svg",
  20313. extra: 377 / 333,
  20314. bottom: 0.006
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Normal",
  20321. height: math.unit(6 + 2 / 12, "feet"),
  20322. default: true
  20323. },
  20324. ]
  20325. ))
  20326. characterMakers.push(() => makeCharacter(
  20327. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20328. {
  20329. front: {
  20330. height: math.unit(6 + 1 / 12, "feet"),
  20331. weight: math.unit(304, "lb"),
  20332. name: "Front",
  20333. image: {
  20334. source: "./media/characters/oliver/front.svg",
  20335. extra: 157 / 143,
  20336. bottom: 0.08
  20337. }
  20338. },
  20339. },
  20340. [
  20341. {
  20342. name: "Normal",
  20343. height: math.unit(6 + 1 / 12, "feet"),
  20344. default: true
  20345. },
  20346. ]
  20347. ))
  20348. characterMakers.push(() => makeCharacter(
  20349. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20350. {
  20351. front: {
  20352. height: math.unit(5 + 7 / 12, "feet"),
  20353. weight: math.unit(140, "lb"),
  20354. name: "Front",
  20355. image: {
  20356. source: "./media/characters/shane/front.svg",
  20357. extra: 304 / 289,
  20358. bottom: 0.005
  20359. }
  20360. },
  20361. },
  20362. [
  20363. {
  20364. name: "Normal",
  20365. height: math.unit(5 + 7 / 12, "feet"),
  20366. default: true
  20367. },
  20368. ]
  20369. ))
  20370. characterMakers.push(() => makeCharacter(
  20371. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20372. {
  20373. front: {
  20374. height: math.unit(5 + 9 / 12, "feet"),
  20375. weight: math.unit(178, "lb"),
  20376. name: "Front",
  20377. image: {
  20378. source: "./media/characters/shin/front.svg",
  20379. extra: 159 / 151,
  20380. bottom: 0.015
  20381. }
  20382. },
  20383. },
  20384. [
  20385. {
  20386. name: "Normal",
  20387. height: math.unit(5 + 9 / 12, "feet"),
  20388. default: true
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20394. {
  20395. front: {
  20396. height: math.unit(5 + 10 / 12, "feet"),
  20397. weight: math.unit(168, "lb"),
  20398. name: "Front",
  20399. image: {
  20400. source: "./media/characters/xerxes/front.svg",
  20401. extra: 282 / 260,
  20402. bottom: 0.045
  20403. }
  20404. },
  20405. },
  20406. [
  20407. {
  20408. name: "Normal",
  20409. height: math.unit(5 + 10 / 12, "feet"),
  20410. default: true
  20411. },
  20412. ]
  20413. ))
  20414. characterMakers.push(() => makeCharacter(
  20415. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20416. {
  20417. front: {
  20418. height: math.unit(6 + 7 / 12, "feet"),
  20419. weight: math.unit(208, "lb"),
  20420. name: "Front",
  20421. image: {
  20422. source: "./media/characters/chaska/front.svg",
  20423. extra: 332 / 319,
  20424. bottom: 0.015
  20425. }
  20426. },
  20427. },
  20428. [
  20429. {
  20430. name: "Normal",
  20431. height: math.unit(6 + 7 / 12, "feet"),
  20432. default: true
  20433. },
  20434. ]
  20435. ))
  20436. characterMakers.push(() => makeCharacter(
  20437. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20438. {
  20439. front: {
  20440. height: math.unit(5 + 8 / 12, "feet"),
  20441. weight: math.unit(208, "lb"),
  20442. name: "Front",
  20443. image: {
  20444. source: "./media/characters/enuk/front.svg",
  20445. extra: 437 / 406,
  20446. bottom: 0.02
  20447. }
  20448. },
  20449. },
  20450. [
  20451. {
  20452. name: "Normal",
  20453. height: math.unit(5 + 8 / 12, "feet"),
  20454. default: true
  20455. },
  20456. ]
  20457. ))
  20458. characterMakers.push(() => makeCharacter(
  20459. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20460. {
  20461. front: {
  20462. height: math.unit(5 + 10 / 12, "feet"),
  20463. weight: math.unit(252, "lb"),
  20464. name: "Front",
  20465. image: {
  20466. source: "./media/characters/bruun/front.svg",
  20467. extra: 197 / 187,
  20468. bottom: 0.012
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Normal",
  20475. height: math.unit(5 + 10 / 12, "feet"),
  20476. default: true
  20477. },
  20478. ]
  20479. ))
  20480. characterMakers.push(() => makeCharacter(
  20481. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20482. {
  20483. front: {
  20484. height: math.unit(6 + 10 / 12, "feet"),
  20485. weight: math.unit(255, "lb"),
  20486. name: "Front",
  20487. image: {
  20488. source: "./media/characters/alexeev/front.svg",
  20489. extra: 213 / 200,
  20490. bottom: 0.05
  20491. }
  20492. },
  20493. },
  20494. [
  20495. {
  20496. name: "Normal",
  20497. height: math.unit(6 + 10 / 12, "feet"),
  20498. default: true
  20499. },
  20500. ]
  20501. ))
  20502. characterMakers.push(() => makeCharacter(
  20503. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20504. {
  20505. front: {
  20506. height: math.unit(2 + 8 / 12, "feet"),
  20507. weight: math.unit(22, "lb"),
  20508. name: "Front",
  20509. image: {
  20510. source: "./media/characters/evelyn/front.svg",
  20511. extra: 208 / 180
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(2 + 8 / 12, "feet"),
  20519. default: true
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20525. {
  20526. front: {
  20527. height: math.unit(5 + 9 / 12, "feet"),
  20528. weight: math.unit(139, "lb"),
  20529. name: "Front",
  20530. image: {
  20531. source: "./media/characters/inca/front.svg",
  20532. extra: 294 / 291,
  20533. bottom: 0.03
  20534. }
  20535. },
  20536. },
  20537. [
  20538. {
  20539. name: "Normal",
  20540. height: math.unit(5 + 9 / 12, "feet"),
  20541. default: true
  20542. },
  20543. ]
  20544. ))
  20545. characterMakers.push(() => makeCharacter(
  20546. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20547. {
  20548. front: {
  20549. height: math.unit(6 + 3 / 12, "feet"),
  20550. weight: math.unit(185, "lb"),
  20551. name: "Front",
  20552. image: {
  20553. source: "./media/characters/mera/front.svg",
  20554. extra: 291 / 277,
  20555. bottom: 0.03
  20556. }
  20557. },
  20558. },
  20559. [
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(6 + 3 / 12, "feet"),
  20563. default: true
  20564. },
  20565. ]
  20566. ))
  20567. characterMakers.push(() => makeCharacter(
  20568. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20569. {
  20570. front: {
  20571. height: math.unit(6 + 7 / 12, "feet"),
  20572. weight: math.unit(160, "lb"),
  20573. name: "Front",
  20574. image: {
  20575. source: "./media/characters/ceres/front.svg",
  20576. extra: 1023 / 950,
  20577. bottom: 0.027
  20578. }
  20579. },
  20580. back: {
  20581. height: math.unit(6 + 7 / 12, "feet"),
  20582. weight: math.unit(160, "lb"),
  20583. name: "Back",
  20584. image: {
  20585. source: "./media/characters/ceres/back.svg",
  20586. extra: 1023 / 950
  20587. }
  20588. },
  20589. },
  20590. [
  20591. {
  20592. name: "Normal",
  20593. height: math.unit(6 + 7 / 12, "feet"),
  20594. default: true
  20595. },
  20596. ]
  20597. ))
  20598. characterMakers.push(() => makeCharacter(
  20599. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20600. {
  20601. front: {
  20602. height: math.unit(5 + 10 / 12, "feet"),
  20603. weight: math.unit(150, "lb"),
  20604. name: "Front",
  20605. image: {
  20606. source: "./media/characters/kris/front.svg",
  20607. extra: 885 / 803,
  20608. bottom: 0.03
  20609. }
  20610. },
  20611. },
  20612. [
  20613. {
  20614. name: "Normal",
  20615. height: math.unit(5 + 10 / 12, "feet"),
  20616. default: true
  20617. },
  20618. ]
  20619. ))
  20620. characterMakers.push(() => makeCharacter(
  20621. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20622. {
  20623. front: {
  20624. height: math.unit(7, "feet"),
  20625. weight: math.unit(120, "kg"),
  20626. name: "Front",
  20627. image: {
  20628. source: "./media/characters/taluthus/front.svg",
  20629. extra: 903 / 833,
  20630. bottom: 0.015
  20631. }
  20632. },
  20633. },
  20634. [
  20635. {
  20636. name: "Normal",
  20637. height: math.unit(7, "feet"),
  20638. default: true
  20639. },
  20640. {
  20641. name: "Macro",
  20642. height: math.unit(300, "feet")
  20643. },
  20644. ]
  20645. ))
  20646. characterMakers.push(() => makeCharacter(
  20647. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20648. {
  20649. front: {
  20650. height: math.unit(5 + 9 / 12, "feet"),
  20651. weight: math.unit(145, "lb"),
  20652. name: "Front",
  20653. image: {
  20654. source: "./media/characters/dawn/front.svg",
  20655. extra: 2094 / 2016,
  20656. bottom: 0.025
  20657. }
  20658. },
  20659. back: {
  20660. height: math.unit(5 + 9 / 12, "feet"),
  20661. weight: math.unit(160, "lb"),
  20662. name: "Back",
  20663. image: {
  20664. source: "./media/characters/dawn/back.svg",
  20665. extra: 2112 / 2080,
  20666. bottom: 0.005
  20667. }
  20668. },
  20669. },
  20670. [
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(6 + 7 / 12, "feet"),
  20674. default: true
  20675. },
  20676. ]
  20677. ))
  20678. characterMakers.push(() => makeCharacter(
  20679. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20680. {
  20681. anthro: {
  20682. height: math.unit(8 + 3 / 12, "feet"),
  20683. weight: math.unit(450, "lb"),
  20684. name: "Anthro",
  20685. image: {
  20686. source: "./media/characters/arador/anthro.svg",
  20687. extra: 1835 / 1718,
  20688. bottom: 0.025
  20689. }
  20690. },
  20691. feral: {
  20692. height: math.unit(4, "feet"),
  20693. weight: math.unit(200, "lb"),
  20694. name: "Feral",
  20695. image: {
  20696. source: "./media/characters/arador/feral.svg",
  20697. extra: 1683 / 1514,
  20698. bottom: 0.07
  20699. }
  20700. },
  20701. },
  20702. [
  20703. {
  20704. name: "Normal",
  20705. height: math.unit(8 + 3 / 12, "feet")
  20706. },
  20707. {
  20708. name: "Macro",
  20709. height: math.unit(82.5, "feet"),
  20710. default: true
  20711. },
  20712. ]
  20713. ))
  20714. characterMakers.push(() => makeCharacter(
  20715. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20716. {
  20717. front: {
  20718. height: math.unit(5 + 10 / 12, "feet"),
  20719. weight: math.unit(125, "lb"),
  20720. name: "Front",
  20721. image: {
  20722. source: "./media/characters/dharsi/front.svg",
  20723. extra: 716 / 630,
  20724. bottom: 0.035
  20725. }
  20726. },
  20727. },
  20728. [
  20729. {
  20730. name: "Nano",
  20731. height: math.unit(100, "nm")
  20732. },
  20733. {
  20734. name: "Micro",
  20735. height: math.unit(2, "inches")
  20736. },
  20737. {
  20738. name: "Normal",
  20739. height: math.unit(5 + 10 / 12, "feet"),
  20740. default: true
  20741. },
  20742. {
  20743. name: "Macro",
  20744. height: math.unit(1000, "feet")
  20745. },
  20746. {
  20747. name: "Megamacro",
  20748. height: math.unit(10, "miles")
  20749. },
  20750. {
  20751. name: "Gigamacro",
  20752. height: math.unit(3000, "miles")
  20753. },
  20754. {
  20755. name: "Teramacro",
  20756. height: math.unit(500000, "miles")
  20757. },
  20758. {
  20759. name: "Teramacro+",
  20760. height: math.unit(30, "galaxies")
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20766. {
  20767. front: {
  20768. height: math.unit(6, "feet"),
  20769. weight: math.unit(150, "lb"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/deathy/front.svg",
  20773. extra: 1552 / 1463,
  20774. bottom: 0.025
  20775. }
  20776. },
  20777. side: {
  20778. height: math.unit(6, "feet"),
  20779. weight: math.unit(150, "lb"),
  20780. name: "Side",
  20781. image: {
  20782. source: "./media/characters/deathy/side.svg",
  20783. extra: 1604 / 1455,
  20784. bottom: 0.025
  20785. }
  20786. },
  20787. back: {
  20788. height: math.unit(6, "feet"),
  20789. weight: math.unit(150, "lb"),
  20790. name: "Back",
  20791. image: {
  20792. source: "./media/characters/deathy/back.svg",
  20793. extra: 1580 / 1463,
  20794. bottom: 0.005
  20795. }
  20796. },
  20797. },
  20798. [
  20799. {
  20800. name: "Micro",
  20801. height: math.unit(5, "millimeters")
  20802. },
  20803. {
  20804. name: "Normal",
  20805. height: math.unit(6 + 5 / 12, "feet"),
  20806. default: true
  20807. },
  20808. ]
  20809. ))
  20810. characterMakers.push(() => makeCharacter(
  20811. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20812. {
  20813. front: {
  20814. height: math.unit(16, "feet"),
  20815. weight: math.unit(4000, "lb"),
  20816. name: "Front",
  20817. image: {
  20818. source: "./media/characters/juniper/front.svg",
  20819. bottom: 0.04
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(16, "feet"),
  20827. default: true
  20828. },
  20829. ]
  20830. ))
  20831. characterMakers.push(() => makeCharacter(
  20832. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20833. {
  20834. front: {
  20835. height: math.unit(6, "feet"),
  20836. weight: math.unit(150, "lb"),
  20837. name: "Front",
  20838. image: {
  20839. source: "./media/characters/hipster/front.svg",
  20840. extra: 1312 / 1209,
  20841. bottom: 0.025
  20842. }
  20843. },
  20844. back: {
  20845. height: math.unit(6, "feet"),
  20846. weight: math.unit(150, "lb"),
  20847. name: "Back",
  20848. image: {
  20849. source: "./media/characters/hipster/back.svg",
  20850. extra: 1281 / 1196,
  20851. bottom: 0.01
  20852. }
  20853. },
  20854. },
  20855. [
  20856. {
  20857. name: "Micro",
  20858. height: math.unit(1, "mm")
  20859. },
  20860. {
  20861. name: "Normal",
  20862. height: math.unit(4, "inches"),
  20863. default: true
  20864. },
  20865. {
  20866. name: "Macro",
  20867. height: math.unit(500, "feet")
  20868. },
  20869. {
  20870. name: "Megamacro",
  20871. height: math.unit(1000, "miles")
  20872. },
  20873. ]
  20874. ))
  20875. characterMakers.push(() => makeCharacter(
  20876. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20877. {
  20878. front: {
  20879. height: math.unit(6, "feet"),
  20880. weight: math.unit(150, "lb"),
  20881. name: "Front",
  20882. image: {
  20883. source: "./media/characters/tendirmuldr/front.svg",
  20884. extra: 1878 / 1772,
  20885. bottom: 0.015
  20886. }
  20887. },
  20888. },
  20889. [
  20890. {
  20891. name: "Megamacro",
  20892. height: math.unit(1500, "miles"),
  20893. default: true
  20894. },
  20895. ]
  20896. ))
  20897. characterMakers.push(() => makeCharacter(
  20898. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20899. {
  20900. front: {
  20901. height: math.unit(14, "feet"),
  20902. weight: math.unit(12000, "lb"),
  20903. name: "Front",
  20904. image: {
  20905. source: "./media/characters/mort/front.svg",
  20906. extra: 365 / 318,
  20907. bottom: 0.01
  20908. }
  20909. },
  20910. side: {
  20911. height: math.unit(14, "feet"),
  20912. weight: math.unit(12000, "lb"),
  20913. name: "Side",
  20914. image: {
  20915. source: "./media/characters/mort/side.svg",
  20916. extra: 365 / 318,
  20917. bottom: 0.052
  20918. },
  20919. default: true
  20920. },
  20921. back: {
  20922. height: math.unit(14, "feet"),
  20923. weight: math.unit(12000, "lb"),
  20924. name: "Back",
  20925. image: {
  20926. source: "./media/characters/mort/back.svg",
  20927. extra: 371 / 332,
  20928. bottom: 0.18
  20929. }
  20930. },
  20931. },
  20932. [
  20933. {
  20934. name: "Normal",
  20935. height: math.unit(14, "feet"),
  20936. default: true
  20937. },
  20938. ]
  20939. ))
  20940. characterMakers.push(() => makeCharacter(
  20941. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20942. {
  20943. front: {
  20944. height: math.unit(8, "feet"),
  20945. weight: math.unit(1, "ton"),
  20946. name: "Front",
  20947. image: {
  20948. source: "./media/characters/lycoa/front.svg",
  20949. extra: 1836/1728,
  20950. bottom: 81/1917
  20951. }
  20952. },
  20953. back: {
  20954. height: math.unit(8, "feet"),
  20955. weight: math.unit(1, "ton"),
  20956. name: "Back",
  20957. image: {
  20958. source: "./media/characters/lycoa/back.svg",
  20959. extra: 1785/1720,
  20960. bottom: 91/1876
  20961. }
  20962. },
  20963. head: {
  20964. height: math.unit(1.6243, "feet"),
  20965. name: "Head",
  20966. image: {
  20967. source: "./media/characters/lycoa/head.svg",
  20968. extra: 1011/782,
  20969. bottom: 0/1011
  20970. }
  20971. },
  20972. tailmaw: {
  20973. height: math.unit(1.9, "feet"),
  20974. name: "Tailmaw",
  20975. image: {
  20976. source: "./media/characters/lycoa/tailmaw.svg"
  20977. }
  20978. },
  20979. tentacles: {
  20980. height: math.unit(2.1, "feet"),
  20981. name: "Tentacles",
  20982. image: {
  20983. source: "./media/characters/lycoa/tentacles.svg"
  20984. }
  20985. },
  20986. dick: {
  20987. height: math.unit(1.73, "feet"),
  20988. name: "Dick",
  20989. image: {
  20990. source: "./media/characters/lycoa/dick.svg"
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(8, "feet"),
  20998. default: true
  20999. },
  21000. {
  21001. name: "Macro",
  21002. height: math.unit(30, "feet")
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21008. {
  21009. front: {
  21010. height: math.unit(4 + 2 / 12, "feet"),
  21011. weight: math.unit(70, "lb"),
  21012. name: "Front",
  21013. image: {
  21014. source: "./media/characters/naldara/front.svg",
  21015. extra: 1664/1387,
  21016. bottom: 81/1745
  21017. },
  21018. form: "anthro",
  21019. default: true
  21020. },
  21021. naga: {
  21022. height: math.unit(20, "feet"),
  21023. weight: math.unit(15000, "kg"),
  21024. name: "Front",
  21025. image: {
  21026. source: "./media/characters/naldara/naga.svg",
  21027. extra: 1590/1396,
  21028. bottom: 285/1875
  21029. },
  21030. form: "naga",
  21031. default: true
  21032. },
  21033. },
  21034. [
  21035. {
  21036. name: "Normal",
  21037. height: math.unit(4 + 2 / 12, "feet"),
  21038. form: "anthro",
  21039. default: true
  21040. },
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(20, "feet"),
  21044. form: "naga",
  21045. default: true
  21046. },
  21047. ],
  21048. {
  21049. "anthro": {
  21050. name: "Anthro",
  21051. default: true
  21052. },
  21053. "naga": {
  21054. name: "Naga"
  21055. }
  21056. }
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21060. {
  21061. front: {
  21062. height: math.unit(13 + 7 / 12, "feet"),
  21063. weight: math.unit(1500, "lb"),
  21064. name: "Front",
  21065. image: {
  21066. source: "./media/characters/briar/front.svg",
  21067. extra: 1223/1157,
  21068. bottom: 123/1346
  21069. }
  21070. },
  21071. },
  21072. [
  21073. {
  21074. name: "Normal",
  21075. height: math.unit(13 + 7 / 12, "feet"),
  21076. default: true
  21077. },
  21078. ]
  21079. ))
  21080. characterMakers.push(() => makeCharacter(
  21081. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21082. {
  21083. side: {
  21084. height: math.unit(16, "feet"),
  21085. weight: math.unit(500, "lb"),
  21086. name: "Side",
  21087. image: {
  21088. source: "./media/characters/vanguard/side.svg",
  21089. extra: 1022/914,
  21090. bottom: 30/1052
  21091. }
  21092. },
  21093. sideAlt: {
  21094. height: math.unit(10, "feet"),
  21095. weight: math.unit(500, "lb"),
  21096. name: "Side (Alt)",
  21097. image: {
  21098. source: "./media/characters/vanguard/side-alt.svg",
  21099. extra: 502 / 425,
  21100. bottom: 0.087
  21101. }
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Normal",
  21107. height: math.unit(17.71, "feet"),
  21108. default: true
  21109. },
  21110. ]
  21111. ))
  21112. characterMakers.push(() => makeCharacter(
  21113. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21114. {
  21115. front: {
  21116. height: math.unit(7.5, "feet"),
  21117. weight: math.unit(2, "lb"),
  21118. name: "Front",
  21119. image: {
  21120. source: "./media/characters/artemis/work-safe-front.svg",
  21121. extra: 1192 / 1075,
  21122. bottom: 0.07
  21123. },
  21124. form: "work-safe",
  21125. default: true
  21126. },
  21127. frontNsfw: {
  21128. height: math.unit(7.5, "feet"),
  21129. weight: math.unit(2, "lb"),
  21130. name: "Front",
  21131. image: {
  21132. source: "./media/characters/artemis/calibrating-front.svg",
  21133. extra: 1192 / 1075,
  21134. bottom: 0.07
  21135. },
  21136. form: "calibrating",
  21137. default: true
  21138. },
  21139. frontNsfwer: {
  21140. height: math.unit(7.5, "feet"),
  21141. weight: math.unit(2, "lb"),
  21142. name: "Front",
  21143. image: {
  21144. source: "./media/characters/artemis/oversize-load-front.svg",
  21145. extra: 1192 / 1075,
  21146. bottom: 0.07
  21147. },
  21148. form: "oversize-load",
  21149. default: true
  21150. },
  21151. side: {
  21152. height: math.unit(7.5, "feet"),
  21153. weight: math.unit(2, "lb"),
  21154. name: "Side",
  21155. image: {
  21156. source: "./media/characters/artemis/work-safe-side.svg",
  21157. extra: 1192 / 1075,
  21158. bottom: 0.07
  21159. },
  21160. form: "work-safe"
  21161. },
  21162. sideNsfw: {
  21163. height: math.unit(7.5, "feet"),
  21164. weight: math.unit(2, "lb"),
  21165. name: "Side",
  21166. image: {
  21167. source: "./media/characters/artemis/calibrating-side.svg",
  21168. extra: 1192 / 1075,
  21169. bottom: 0.07
  21170. },
  21171. form: "calibrating"
  21172. },
  21173. sideNsfwer: {
  21174. height: math.unit(7.5, "feet"),
  21175. weight: math.unit(2, "lb"),
  21176. name: "Side",
  21177. image: {
  21178. source: "./media/characters/artemis/oversize-load-side.svg",
  21179. extra: 1192 / 1075,
  21180. bottom: 0.07
  21181. },
  21182. form: "oversize-load"
  21183. },
  21184. maw: {
  21185. height: math.unit(1.1, "feet"),
  21186. name: "Maw",
  21187. image: {
  21188. source: "./media/characters/artemis/maw.svg"
  21189. },
  21190. form: "work-safe"
  21191. },
  21192. stomach: {
  21193. height: math.unit(0.95, "feet"),
  21194. name: "Stomach",
  21195. image: {
  21196. source: "./media/characters/artemis/stomach.svg"
  21197. },
  21198. form: "work-safe"
  21199. },
  21200. dickCanine: {
  21201. height: math.unit(1, "feet"),
  21202. name: "Dick (Canine)",
  21203. image: {
  21204. source: "./media/characters/artemis/dick-canine.svg"
  21205. },
  21206. form: "calibrating"
  21207. },
  21208. dickEquine: {
  21209. height: math.unit(0.85, "feet"),
  21210. name: "Dick (Equine)",
  21211. image: {
  21212. source: "./media/characters/artemis/dick-equine.svg"
  21213. },
  21214. form: "calibrating"
  21215. },
  21216. dickExotic: {
  21217. height: math.unit(0.85, "feet"),
  21218. name: "Dick (Exotic)",
  21219. image: {
  21220. source: "./media/characters/artemis/dick-exotic.svg"
  21221. },
  21222. form: "calibrating"
  21223. },
  21224. dickCanineBigger: {
  21225. height: math.unit(1 * 1.33, "feet"),
  21226. name: "Dick (Canine)",
  21227. image: {
  21228. source: "./media/characters/artemis/dick-canine.svg"
  21229. },
  21230. form: "oversize-load"
  21231. },
  21232. dickEquineBigger: {
  21233. height: math.unit(0.85 * 1.33, "feet"),
  21234. name: "Dick (Equine)",
  21235. image: {
  21236. source: "./media/characters/artemis/dick-equine.svg"
  21237. },
  21238. form: "oversize-load"
  21239. },
  21240. dickExoticBigger: {
  21241. height: math.unit(0.85 * 1.33, "feet"),
  21242. name: "Dick (Exotic)",
  21243. image: {
  21244. source: "./media/characters/artemis/dick-exotic.svg"
  21245. },
  21246. form: "oversize-load"
  21247. },
  21248. },
  21249. [
  21250. {
  21251. name: "Normal",
  21252. height: math.unit(7.5, "feet"),
  21253. form: "work-safe",
  21254. default: true
  21255. },
  21256. {
  21257. name: "Normal",
  21258. height: math.unit(7.5, "feet"),
  21259. form: "calibrating",
  21260. default: true
  21261. },
  21262. {
  21263. name: "Normal",
  21264. height: math.unit(7.5, "feet"),
  21265. form: "oversize-load",
  21266. default: true
  21267. },
  21268. {
  21269. name: "Enlarged",
  21270. height: math.unit(12, "feet"),
  21271. form: "work-safe",
  21272. },
  21273. {
  21274. name: "Enlarged",
  21275. height: math.unit(12, "feet"),
  21276. form: "calibrating",
  21277. },
  21278. {
  21279. name: "Enlarged",
  21280. height: math.unit(12, "feet"),
  21281. form: "oversize-load",
  21282. },
  21283. ],
  21284. {
  21285. "work-safe": {
  21286. name: "Work-Safe",
  21287. default: true
  21288. },
  21289. "calibrating": {
  21290. name: "Calibrating"
  21291. },
  21292. "oversize-load": {
  21293. name: "Oversize Load"
  21294. }
  21295. }
  21296. ))
  21297. characterMakers.push(() => makeCharacter(
  21298. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21299. {
  21300. front: {
  21301. height: math.unit(5 + 3 / 12, "feet"),
  21302. weight: math.unit(160, "lb"),
  21303. name: "Front",
  21304. image: {
  21305. source: "./media/characters/kira/front.svg",
  21306. extra: 906 / 786,
  21307. bottom: 0.01
  21308. }
  21309. },
  21310. back: {
  21311. height: math.unit(5 + 3 / 12, "feet"),
  21312. weight: math.unit(160, "lb"),
  21313. name: "Back",
  21314. image: {
  21315. source: "./media/characters/kira/back.svg",
  21316. extra: 882 / 757,
  21317. bottom: 0.005
  21318. }
  21319. },
  21320. frontDressed: {
  21321. height: math.unit(5 + 3 / 12, "feet"),
  21322. weight: math.unit(160, "lb"),
  21323. name: "Front (Dressed)",
  21324. image: {
  21325. source: "./media/characters/kira/front-dressed.svg",
  21326. extra: 906 / 786,
  21327. bottom: 0.01
  21328. }
  21329. },
  21330. beans: {
  21331. height: math.unit(0.92, "feet"),
  21332. name: "Beans",
  21333. image: {
  21334. source: "./media/characters/kira/beans.svg"
  21335. }
  21336. },
  21337. },
  21338. [
  21339. {
  21340. name: "Normal",
  21341. height: math.unit(5 + 3 / 12, "feet"),
  21342. default: true
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21348. {
  21349. front: {
  21350. height: math.unit(5 + 4 / 12, "feet"),
  21351. weight: math.unit(145, "lb"),
  21352. name: "Front",
  21353. image: {
  21354. source: "./media/characters/scramble/front.svg",
  21355. extra: 763 / 727,
  21356. bottom: 0.05
  21357. }
  21358. },
  21359. back: {
  21360. height: math.unit(5 + 4 / 12, "feet"),
  21361. weight: math.unit(145, "lb"),
  21362. name: "Back",
  21363. image: {
  21364. source: "./media/characters/scramble/back.svg",
  21365. extra: 826 / 737,
  21366. bottom: 0.002
  21367. }
  21368. },
  21369. },
  21370. [
  21371. {
  21372. name: "Normal",
  21373. height: math.unit(5 + 4 / 12, "feet"),
  21374. default: true
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21380. {
  21381. side: {
  21382. height: math.unit(6 + 2 / 12, "feet"),
  21383. weight: math.unit(190, "lb"),
  21384. name: "Side",
  21385. image: {
  21386. source: "./media/characters/biscuit/side.svg",
  21387. extra: 858 / 791,
  21388. bottom: 0.044
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Normal",
  21395. height: math.unit(6 + 2 / 12, "feet"),
  21396. default: true
  21397. },
  21398. ]
  21399. ))
  21400. characterMakers.push(() => makeCharacter(
  21401. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21402. {
  21403. front: {
  21404. height: math.unit(5 + 2 / 12, "feet"),
  21405. weight: math.unit(120, "lb"),
  21406. name: "Front",
  21407. image: {
  21408. source: "./media/characters/poffin/front.svg",
  21409. extra: 786 / 680,
  21410. bottom: 0.005
  21411. }
  21412. },
  21413. },
  21414. [
  21415. {
  21416. name: "Normal",
  21417. height: math.unit(5 + 2 / 12, "feet"),
  21418. default: true
  21419. },
  21420. ]
  21421. ))
  21422. characterMakers.push(() => makeCharacter(
  21423. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21424. {
  21425. front: {
  21426. height: math.unit(6 + 3 / 12, "feet"),
  21427. weight: math.unit(519, "lb"),
  21428. name: "Front",
  21429. image: {
  21430. source: "./media/characters/dhari/front.svg",
  21431. extra: 1048 / 946,
  21432. bottom: 0.015
  21433. }
  21434. },
  21435. back: {
  21436. height: math.unit(6 + 3 / 12, "feet"),
  21437. weight: math.unit(519, "lb"),
  21438. name: "Back",
  21439. image: {
  21440. source: "./media/characters/dhari/back.svg",
  21441. extra: 1048 / 931,
  21442. bottom: 0.005
  21443. }
  21444. },
  21445. frontDressed: {
  21446. height: math.unit(6 + 3 / 12, "feet"),
  21447. weight: math.unit(519, "lb"),
  21448. name: "Front (Dressed)",
  21449. image: {
  21450. source: "./media/characters/dhari/front-dressed.svg",
  21451. extra: 1713 / 1546,
  21452. bottom: 0.02
  21453. }
  21454. },
  21455. backDressed: {
  21456. height: math.unit(6 + 3 / 12, "feet"),
  21457. weight: math.unit(519, "lb"),
  21458. name: "Back (Dressed)",
  21459. image: {
  21460. source: "./media/characters/dhari/back-dressed.svg",
  21461. extra: 1699 / 1537,
  21462. bottom: 0.01
  21463. }
  21464. },
  21465. maw: {
  21466. height: math.unit(0.95, "feet"),
  21467. name: "Maw",
  21468. image: {
  21469. source: "./media/characters/dhari/maw.svg"
  21470. }
  21471. },
  21472. wereFront: {
  21473. height: math.unit(12 + 8 / 12, "feet"),
  21474. weight: math.unit(4000, "lb"),
  21475. name: "Front (Were)",
  21476. image: {
  21477. source: "./media/characters/dhari/were-front.svg",
  21478. extra: 1065 / 969,
  21479. bottom: 0.015
  21480. }
  21481. },
  21482. wereBack: {
  21483. height: math.unit(12 + 8 / 12, "feet"),
  21484. weight: math.unit(4000, "lb"),
  21485. name: "Back (Were)",
  21486. image: {
  21487. source: "./media/characters/dhari/were-back.svg",
  21488. extra: 1065 / 969,
  21489. bottom: 0.012
  21490. }
  21491. },
  21492. wereMaw: {
  21493. height: math.unit(0.625, "meters"),
  21494. name: "Maw (Were)",
  21495. image: {
  21496. source: "./media/characters/dhari/were-maw.svg"
  21497. }
  21498. },
  21499. },
  21500. [
  21501. {
  21502. name: "Normal",
  21503. height: math.unit(6 + 3 / 12, "feet"),
  21504. default: true
  21505. },
  21506. ]
  21507. ))
  21508. characterMakers.push(() => makeCharacter(
  21509. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21510. {
  21511. anthro: {
  21512. height: math.unit(5 + 7 / 12, "feet"),
  21513. weight: math.unit(175, "lb"),
  21514. name: "Anthro",
  21515. image: {
  21516. source: "./media/characters/rena-dyne/anthro.svg",
  21517. extra: 1849 / 1785,
  21518. bottom: 0.005
  21519. }
  21520. },
  21521. taur: {
  21522. height: math.unit(15 + 6 / 12, "feet"),
  21523. weight: math.unit(8000, "lb"),
  21524. name: "Taur",
  21525. image: {
  21526. source: "./media/characters/rena-dyne/taur.svg",
  21527. extra: 2315 / 2234,
  21528. bottom: 0.033
  21529. }
  21530. },
  21531. },
  21532. [
  21533. {
  21534. name: "Normal",
  21535. height: math.unit(5 + 7 / 12, "feet"),
  21536. default: true
  21537. },
  21538. ]
  21539. ))
  21540. characterMakers.push(() => makeCharacter(
  21541. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21542. {
  21543. front: {
  21544. height: math.unit(8, "feet"),
  21545. weight: math.unit(600, "lb"),
  21546. name: "Front",
  21547. image: {
  21548. source: "./media/characters/weremeep/front.svg",
  21549. extra: 967 / 862,
  21550. bottom: 0.01
  21551. }
  21552. },
  21553. },
  21554. [
  21555. {
  21556. name: "Normal",
  21557. height: math.unit(8, "feet"),
  21558. default: true
  21559. },
  21560. {
  21561. name: "Lorg",
  21562. height: math.unit(12, "feet")
  21563. },
  21564. {
  21565. name: "Oh Lawd She Comin'",
  21566. height: math.unit(20, "feet")
  21567. },
  21568. ]
  21569. ))
  21570. characterMakers.push(() => makeCharacter(
  21571. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21572. {
  21573. front: {
  21574. height: math.unit(4, "feet"),
  21575. weight: math.unit(90, "lb"),
  21576. name: "Front",
  21577. image: {
  21578. source: "./media/characters/reza/front.svg",
  21579. extra: 1183 / 1111,
  21580. bottom: 0.017
  21581. }
  21582. },
  21583. back: {
  21584. height: math.unit(4, "feet"),
  21585. weight: math.unit(90, "lb"),
  21586. name: "Back",
  21587. image: {
  21588. source: "./media/characters/reza/back.svg",
  21589. extra: 1183 / 1111,
  21590. bottom: 0.01
  21591. }
  21592. },
  21593. drake: {
  21594. height: math.unit(30, "feet"),
  21595. weight: math.unit(246960, "lb"),
  21596. name: "Drake",
  21597. image: {
  21598. source: "./media/characters/reza/drake.svg",
  21599. extra: 2350 / 2024,
  21600. bottom: 60.7 / 2403
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(4, "feet"),
  21608. default: true
  21609. },
  21610. ]
  21611. ))
  21612. characterMakers.push(() => makeCharacter(
  21613. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21614. {
  21615. side: {
  21616. height: math.unit(15, "feet"),
  21617. weight: math.unit(14, "tons"),
  21618. name: "Side",
  21619. image: {
  21620. source: "./media/characters/athea/side.svg",
  21621. extra: 960 / 540,
  21622. bottom: 0.003
  21623. }
  21624. },
  21625. sitting: {
  21626. height: math.unit(6 * 2.85, "feet"),
  21627. weight: math.unit(14, "tons"),
  21628. name: "Sitting",
  21629. image: {
  21630. source: "./media/characters/athea/sitting.svg",
  21631. extra: 621 / 581,
  21632. bottom: 0.075
  21633. }
  21634. },
  21635. maw: {
  21636. height: math.unit(7.59498031496063, "feet"),
  21637. name: "Maw",
  21638. image: {
  21639. source: "./media/characters/athea/maw.svg"
  21640. }
  21641. },
  21642. },
  21643. [
  21644. {
  21645. name: "Lap Cat",
  21646. height: math.unit(2.5, "feet")
  21647. },
  21648. {
  21649. name: "Minimacro",
  21650. height: math.unit(15, "feet"),
  21651. default: true
  21652. },
  21653. {
  21654. name: "Macro",
  21655. height: math.unit(120, "feet")
  21656. },
  21657. {
  21658. name: "Macro+",
  21659. height: math.unit(640, "feet")
  21660. },
  21661. {
  21662. name: "Colossus",
  21663. height: math.unit(2.2, "miles")
  21664. },
  21665. ]
  21666. ))
  21667. characterMakers.push(() => makeCharacter(
  21668. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21669. {
  21670. front: {
  21671. height: math.unit(8 + 8 / 12, "feet"),
  21672. weight: math.unit(130, "kg"),
  21673. name: "Front",
  21674. image: {
  21675. source: "./media/characters/seroko/front.svg",
  21676. extra: 1385 / 1280,
  21677. bottom: 0.025
  21678. }
  21679. },
  21680. back: {
  21681. height: math.unit(8 + 8 / 12, "feet"),
  21682. weight: math.unit(130, "kg"),
  21683. name: "Back",
  21684. image: {
  21685. source: "./media/characters/seroko/back.svg",
  21686. extra: 1369 / 1238,
  21687. bottom: 0.018
  21688. }
  21689. },
  21690. frontDressed: {
  21691. height: math.unit(8 + 8 / 12, "feet"),
  21692. weight: math.unit(130, "kg"),
  21693. name: "Front (Dressed)",
  21694. image: {
  21695. source: "./media/characters/seroko/front-dressed.svg",
  21696. extra: 1366 / 1275,
  21697. bottom: 0.03
  21698. }
  21699. },
  21700. },
  21701. [
  21702. {
  21703. name: "Normal",
  21704. height: math.unit(8 + 8 / 12, "feet"),
  21705. default: true
  21706. },
  21707. ]
  21708. ))
  21709. characterMakers.push(() => makeCharacter(
  21710. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21711. {
  21712. front: {
  21713. height: math.unit(5.5, "feet"),
  21714. weight: math.unit(160, "lb"),
  21715. name: "Front",
  21716. image: {
  21717. source: "./media/characters/quatzi/front.svg",
  21718. extra: 2346 / 2242,
  21719. bottom: 0.015
  21720. }
  21721. },
  21722. },
  21723. [
  21724. {
  21725. name: "Normal",
  21726. height: math.unit(5.5, "feet"),
  21727. default: true
  21728. },
  21729. {
  21730. name: "Big",
  21731. height: math.unit(7.7, "feet")
  21732. },
  21733. ]
  21734. ))
  21735. characterMakers.push(() => makeCharacter(
  21736. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21737. {
  21738. front: {
  21739. height: math.unit(5 + 11 / 12, "feet"),
  21740. weight: math.unit(180, "lb"),
  21741. name: "Front",
  21742. image: {
  21743. source: "./media/characters/sen/front.svg",
  21744. extra: 1321 / 1254,
  21745. bottom: 0.015
  21746. }
  21747. },
  21748. side: {
  21749. height: math.unit(5 + 11 / 12, "feet"),
  21750. weight: math.unit(180, "lb"),
  21751. name: "Side",
  21752. image: {
  21753. source: "./media/characters/sen/side.svg",
  21754. extra: 1321 / 1254,
  21755. bottom: 0.007
  21756. }
  21757. },
  21758. back: {
  21759. height: math.unit(5 + 11 / 12, "feet"),
  21760. weight: math.unit(180, "lb"),
  21761. name: "Back",
  21762. image: {
  21763. source: "./media/characters/sen/back.svg",
  21764. extra: 1321 / 1254
  21765. }
  21766. },
  21767. },
  21768. [
  21769. {
  21770. name: "Normal",
  21771. height: math.unit(5 + 11 / 12, "feet"),
  21772. default: true
  21773. },
  21774. ]
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21778. {
  21779. front: {
  21780. height: math.unit(166.6, "cm"),
  21781. weight: math.unit(66.6, "kg"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/fruity/front.svg",
  21785. extra: 1510 / 1386,
  21786. bottom: 0.04
  21787. }
  21788. },
  21789. back: {
  21790. height: math.unit(166.6, "cm"),
  21791. weight: math.unit(66.6, "lb"),
  21792. name: "Back",
  21793. image: {
  21794. source: "./media/characters/fruity/back.svg",
  21795. extra: 1563 / 1435,
  21796. bottom: 0.005
  21797. }
  21798. },
  21799. },
  21800. [
  21801. {
  21802. name: "Normal",
  21803. height: math.unit(166.6, "cm"),
  21804. default: true
  21805. },
  21806. {
  21807. name: "Demonic",
  21808. height: math.unit(166.6, "feet")
  21809. },
  21810. ]
  21811. ))
  21812. characterMakers.push(() => makeCharacter(
  21813. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21814. {
  21815. side: {
  21816. height: math.unit(10, "feet"),
  21817. weight: math.unit(500, "lb"),
  21818. name: "Side",
  21819. image: {
  21820. source: "./media/characters/zost/side.svg",
  21821. extra: 2870/2533,
  21822. bottom: 252/3122
  21823. }
  21824. },
  21825. mawFront: {
  21826. height: math.unit(1.08, "meters"),
  21827. name: "Maw (Front)",
  21828. image: {
  21829. source: "./media/characters/zost/maw-front.svg"
  21830. }
  21831. },
  21832. mawSide: {
  21833. height: math.unit(2.66, "feet"),
  21834. name: "Maw (Side)",
  21835. image: {
  21836. source: "./media/characters/zost/maw-side.svg"
  21837. }
  21838. },
  21839. wingspan: {
  21840. height: math.unit(7.4, "feet"),
  21841. name: "Wingspan",
  21842. image: {
  21843. source: "./media/characters/zost/wingspan.svg"
  21844. }
  21845. },
  21846. },
  21847. [
  21848. {
  21849. name: "Normal",
  21850. height: math.unit(10, "feet"),
  21851. default: true
  21852. },
  21853. ]
  21854. ))
  21855. characterMakers.push(() => makeCharacter(
  21856. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21857. {
  21858. front: {
  21859. height: math.unit(5 + 4 / 12, "feet"),
  21860. weight: math.unit(120, "lb"),
  21861. name: "Front",
  21862. image: {
  21863. source: "./media/characters/luci/front.svg",
  21864. extra: 1985 / 1884,
  21865. bottom: 0.04
  21866. }
  21867. },
  21868. back: {
  21869. height: math.unit(5 + 4 / 12, "feet"),
  21870. weight: math.unit(120, "lb"),
  21871. name: "Back",
  21872. image: {
  21873. source: "./media/characters/luci/back.svg",
  21874. extra: 1892 / 1791,
  21875. bottom: 0.002
  21876. }
  21877. },
  21878. },
  21879. [
  21880. {
  21881. name: "Normal",
  21882. height: math.unit(5 + 4 / 12, "feet"),
  21883. default: true
  21884. },
  21885. ]
  21886. ))
  21887. characterMakers.push(() => makeCharacter(
  21888. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21889. {
  21890. front: {
  21891. height: math.unit(1500, "feet"),
  21892. weight: math.unit(3.8e6, "tons"),
  21893. name: "Front",
  21894. image: {
  21895. source: "./media/characters/2th/front.svg",
  21896. extra: 3489 / 3350,
  21897. bottom: 0.1
  21898. }
  21899. },
  21900. foot: {
  21901. height: math.unit(461, "feet"),
  21902. name: "Foot",
  21903. image: {
  21904. source: "./media/characters/2th/foot.svg"
  21905. }
  21906. },
  21907. },
  21908. [
  21909. {
  21910. name: "\"Micro\"",
  21911. height: math.unit(15 + 7 / 12, "feet")
  21912. },
  21913. {
  21914. name: "Normal",
  21915. height: math.unit(1500, "feet"),
  21916. default: true
  21917. },
  21918. {
  21919. name: "Macro",
  21920. height: math.unit(5000, "feet")
  21921. },
  21922. {
  21923. name: "Megamacro",
  21924. height: math.unit(15, "miles")
  21925. },
  21926. {
  21927. name: "Gigamacro",
  21928. height: math.unit(4000, "miles")
  21929. },
  21930. {
  21931. name: "Galactic",
  21932. height: math.unit(50, "AU")
  21933. },
  21934. ]
  21935. ))
  21936. characterMakers.push(() => makeCharacter(
  21937. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21938. {
  21939. front: {
  21940. height: math.unit(5 + 6 / 12, "feet"),
  21941. weight: math.unit(220, "lb"),
  21942. name: "Front",
  21943. image: {
  21944. source: "./media/characters/amethyst/front.svg",
  21945. extra: 2078 / 2040,
  21946. bottom: 0.045
  21947. }
  21948. },
  21949. back: {
  21950. height: math.unit(5 + 6 / 12, "feet"),
  21951. weight: math.unit(220, "lb"),
  21952. name: "Back",
  21953. image: {
  21954. source: "./media/characters/amethyst/back.svg",
  21955. extra: 2021 / 1989,
  21956. bottom: 0.02
  21957. }
  21958. },
  21959. },
  21960. [
  21961. {
  21962. name: "Normal",
  21963. height: math.unit(5 + 6 / 12, "feet"),
  21964. default: true
  21965. },
  21966. ]
  21967. ))
  21968. characterMakers.push(() => makeCharacter(
  21969. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21970. {
  21971. front: {
  21972. height: math.unit(4 + 11 / 12, "feet"),
  21973. weight: math.unit(120, "lb"),
  21974. name: "Front",
  21975. image: {
  21976. source: "./media/characters/yumi-akiyama/front.svg",
  21977. extra: 1327 / 1235,
  21978. bottom: 0.02
  21979. }
  21980. },
  21981. back: {
  21982. height: math.unit(4 + 11 / 12, "feet"),
  21983. weight: math.unit(120, "lb"),
  21984. name: "Back",
  21985. image: {
  21986. source: "./media/characters/yumi-akiyama/back.svg",
  21987. extra: 1287 / 1245,
  21988. bottom: 0.002
  21989. }
  21990. },
  21991. },
  21992. [
  21993. {
  21994. name: "Galactic",
  21995. height: math.unit(50, "galaxies"),
  21996. default: true
  21997. },
  21998. {
  21999. name: "Universal",
  22000. height: math.unit(100, "universes")
  22001. },
  22002. ]
  22003. ))
  22004. characterMakers.push(() => makeCharacter(
  22005. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22006. {
  22007. front: {
  22008. height: math.unit(8, "feet"),
  22009. weight: math.unit(500, "lb"),
  22010. name: "Front",
  22011. image: {
  22012. source: "./media/characters/rifter-yrmori/front.svg",
  22013. extra: 1180 / 1125,
  22014. bottom: 0.02
  22015. }
  22016. },
  22017. back: {
  22018. height: math.unit(8, "feet"),
  22019. weight: math.unit(500, "lb"),
  22020. name: "Back",
  22021. image: {
  22022. source: "./media/characters/rifter-yrmori/back.svg",
  22023. extra: 1190 / 1145,
  22024. bottom: 0.001
  22025. }
  22026. },
  22027. wings: {
  22028. height: math.unit(7.75, "feet"),
  22029. weight: math.unit(500, "lb"),
  22030. name: "Wings",
  22031. image: {
  22032. source: "./media/characters/rifter-yrmori/wings.svg",
  22033. extra: 1357 / 1285
  22034. }
  22035. },
  22036. maw: {
  22037. height: math.unit(0.8, "feet"),
  22038. name: "Maw",
  22039. image: {
  22040. source: "./media/characters/rifter-yrmori/maw.svg"
  22041. }
  22042. },
  22043. mawfront: {
  22044. height: math.unit(1.45, "feet"),
  22045. name: "Maw (Front)",
  22046. image: {
  22047. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22048. }
  22049. },
  22050. },
  22051. [
  22052. {
  22053. name: "Normal",
  22054. height: math.unit(8, "feet"),
  22055. default: true
  22056. },
  22057. {
  22058. name: "Macro",
  22059. height: math.unit(42, "meters")
  22060. },
  22061. ]
  22062. ))
  22063. characterMakers.push(() => makeCharacter(
  22064. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22065. {
  22066. were: {
  22067. height: math.unit(25 + 6 / 12, "feet"),
  22068. weight: math.unit(10000, "lb"),
  22069. name: "Were",
  22070. image: {
  22071. source: "./media/characters/tahajin/were.svg",
  22072. extra: 801 / 770,
  22073. bottom: 0.042
  22074. }
  22075. },
  22076. aquatic: {
  22077. height: math.unit(6 + 4 / 12, "feet"),
  22078. weight: math.unit(160, "lb"),
  22079. name: "Aquatic",
  22080. image: {
  22081. source: "./media/characters/tahajin/aquatic.svg",
  22082. extra: 572 / 542,
  22083. bottom: 0.04
  22084. }
  22085. },
  22086. chow: {
  22087. height: math.unit(8 + 11 / 12, "feet"),
  22088. weight: math.unit(450, "lb"),
  22089. name: "Chow",
  22090. image: {
  22091. source: "./media/characters/tahajin/chow.svg",
  22092. extra: 660 / 640,
  22093. bottom: 0.015
  22094. }
  22095. },
  22096. demiNaga: {
  22097. height: math.unit(6 + 8 / 12, "feet"),
  22098. weight: math.unit(300, "lb"),
  22099. name: "Demi Naga",
  22100. image: {
  22101. source: "./media/characters/tahajin/demi-naga.svg",
  22102. extra: 643 / 615,
  22103. bottom: 0.1
  22104. }
  22105. },
  22106. data: {
  22107. height: math.unit(5, "inches"),
  22108. weight: math.unit(0.1, "lb"),
  22109. name: "Data",
  22110. image: {
  22111. source: "./media/characters/tahajin/data.svg"
  22112. }
  22113. },
  22114. fluu: {
  22115. height: math.unit(5 + 7 / 12, "feet"),
  22116. weight: math.unit(140, "lb"),
  22117. name: "Fluu",
  22118. image: {
  22119. source: "./media/characters/tahajin/fluu.svg",
  22120. extra: 628 / 592,
  22121. bottom: 0.02
  22122. }
  22123. },
  22124. starWarrior: {
  22125. height: math.unit(4 + 5 / 12, "feet"),
  22126. weight: math.unit(50, "lb"),
  22127. name: "Star Warrior",
  22128. image: {
  22129. source: "./media/characters/tahajin/star-warrior.svg"
  22130. }
  22131. },
  22132. },
  22133. [
  22134. {
  22135. name: "Normal",
  22136. height: math.unit(25 + 6 / 12, "feet"),
  22137. default: true
  22138. },
  22139. ]
  22140. ))
  22141. characterMakers.push(() => makeCharacter(
  22142. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22143. {
  22144. front: {
  22145. height: math.unit(8, "feet"),
  22146. weight: math.unit(350, "lb"),
  22147. name: "Front",
  22148. image: {
  22149. source: "./media/characters/gabira/front.svg",
  22150. extra: 608 / 580,
  22151. bottom: 0.03
  22152. }
  22153. },
  22154. back: {
  22155. height: math.unit(8, "feet"),
  22156. weight: math.unit(350, "lb"),
  22157. name: "Back",
  22158. image: {
  22159. source: "./media/characters/gabira/back.svg",
  22160. extra: 608 / 580,
  22161. bottom: 0.03
  22162. }
  22163. },
  22164. },
  22165. [
  22166. {
  22167. name: "Normal",
  22168. height: math.unit(8, "feet"),
  22169. default: true
  22170. },
  22171. ]
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22175. {
  22176. front: {
  22177. height: math.unit(5 + 3 / 12, "feet"),
  22178. weight: math.unit(137, "lb"),
  22179. name: "Front",
  22180. image: {
  22181. source: "./media/characters/sasha-katraine/front.svg",
  22182. extra: 1745/1694,
  22183. bottom: 37/1782
  22184. }
  22185. },
  22186. back: {
  22187. height: math.unit(5 + 3 / 12, "feet"),
  22188. weight: math.unit(137, "lb"),
  22189. name: "Back",
  22190. image: {
  22191. source: "./media/characters/sasha-katraine/back.svg",
  22192. extra: 1776/1699,
  22193. bottom: 26/1802
  22194. }
  22195. },
  22196. },
  22197. [
  22198. {
  22199. name: "Micro",
  22200. height: math.unit(5, "inches")
  22201. },
  22202. {
  22203. name: "Normal",
  22204. height: math.unit(5 + 3 / 12, "feet"),
  22205. default: true
  22206. },
  22207. ]
  22208. ))
  22209. characterMakers.push(() => makeCharacter(
  22210. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22211. {
  22212. side: {
  22213. height: math.unit(4, "inches"),
  22214. weight: math.unit(200, "grams"),
  22215. name: "Side",
  22216. image: {
  22217. source: "./media/characters/der/side.svg",
  22218. extra: 719 / 400,
  22219. bottom: 30.6 / 749.9187
  22220. }
  22221. },
  22222. },
  22223. [
  22224. {
  22225. name: "Micro",
  22226. height: math.unit(4, "inches"),
  22227. default: true
  22228. },
  22229. ]
  22230. ))
  22231. characterMakers.push(() => makeCharacter(
  22232. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22233. {
  22234. side: {
  22235. height: math.unit(30, "meters"),
  22236. weight: math.unit(700, "tonnes"),
  22237. name: "Side",
  22238. image: {
  22239. source: "./media/characters/fixerdragon/side.svg",
  22240. extra: (1293.0514 - 116.03) / 1106.86,
  22241. bottom: 116.03 / 1293.0514
  22242. }
  22243. },
  22244. },
  22245. [
  22246. {
  22247. name: "Planck",
  22248. height: math.unit(1.6e-35, "meters")
  22249. },
  22250. {
  22251. name: "Micro",
  22252. height: math.unit(0.4, "meters")
  22253. },
  22254. {
  22255. name: "Normal",
  22256. height: math.unit(30, "meters"),
  22257. default: true
  22258. },
  22259. {
  22260. name: "Megamacro",
  22261. height: math.unit(1.2, "megameters")
  22262. },
  22263. {
  22264. name: "Teramacro",
  22265. height: math.unit(130, "terameters")
  22266. },
  22267. {
  22268. name: "Yottamacro",
  22269. height: math.unit(6200, "yottameters")
  22270. },
  22271. ]
  22272. ));
  22273. characterMakers.push(() => makeCharacter(
  22274. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22275. {
  22276. front: {
  22277. height: math.unit(8, "feet"),
  22278. weight: math.unit(250, "lb"),
  22279. name: "Front",
  22280. image: {
  22281. source: "./media/characters/kite/front.svg",
  22282. extra: 2796 / 2659,
  22283. bottom: 0.002
  22284. }
  22285. },
  22286. },
  22287. [
  22288. {
  22289. name: "Normal",
  22290. height: math.unit(8, "feet"),
  22291. default: true
  22292. },
  22293. {
  22294. name: "Macro",
  22295. height: math.unit(360, "feet")
  22296. },
  22297. {
  22298. name: "Megamacro",
  22299. height: math.unit(1500, "feet")
  22300. },
  22301. ]
  22302. ))
  22303. characterMakers.push(() => makeCharacter(
  22304. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22305. {
  22306. front: {
  22307. height: math.unit(5 + 11/12, "feet"),
  22308. weight: math.unit(170, "lb"),
  22309. name: "Front",
  22310. image: {
  22311. source: "./media/characters/poojawa-vynar/front.svg",
  22312. extra: 1735/1585,
  22313. bottom: 96/1831
  22314. }
  22315. },
  22316. back: {
  22317. height: math.unit(5 + 11/12, "feet"),
  22318. weight: math.unit(170, "lb"),
  22319. name: "Back",
  22320. image: {
  22321. source: "./media/characters/poojawa-vynar/back.svg",
  22322. extra: 1749/1607,
  22323. bottom: 28/1777
  22324. }
  22325. },
  22326. male: {
  22327. height: math.unit(5 + 11/12, "feet"),
  22328. weight: math.unit(170, "lb"),
  22329. name: "Male",
  22330. image: {
  22331. source: "./media/characters/poojawa-vynar/male.svg",
  22332. extra: 1855/1713,
  22333. bottom: 63/1918
  22334. }
  22335. },
  22336. taur: {
  22337. height: math.unit(5 + 11/12, "feet"),
  22338. weight: math.unit(170, "lb"),
  22339. name: "Taur",
  22340. image: {
  22341. source: "./media/characters/poojawa-vynar/taur.svg",
  22342. extra: 1151/1059,
  22343. bottom: 356/1507
  22344. }
  22345. },
  22346. frontDressed: {
  22347. height: math.unit(5 + 11/12, "feet"),
  22348. weight: math.unit(170, "lb"),
  22349. name: "Front (Dressed)",
  22350. image: {
  22351. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22352. extra: 1735/1585,
  22353. bottom: 96/1831
  22354. }
  22355. },
  22356. backDressed: {
  22357. height: math.unit(5 + 11/12, "feet"),
  22358. weight: math.unit(170, "lb"),
  22359. name: "Back (Dressed)",
  22360. image: {
  22361. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22362. extra: 1749/1607,
  22363. bottom: 28/1777
  22364. }
  22365. },
  22366. maleDressed: {
  22367. height: math.unit(5 + 11/12, "feet"),
  22368. weight: math.unit(170, "lb"),
  22369. name: "Male (Dressed)",
  22370. image: {
  22371. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22372. extra: 1855/1713,
  22373. bottom: 63/1918
  22374. }
  22375. },
  22376. taurDressed: {
  22377. height: math.unit(5 + 11/12, "feet"),
  22378. weight: math.unit(170, "lb"),
  22379. name: "Taur (Dressed)",
  22380. image: {
  22381. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22382. extra: 1151/1059,
  22383. bottom: 356/1507
  22384. }
  22385. },
  22386. maw: {
  22387. height: math.unit(1.46, "feet"),
  22388. name: "Maw",
  22389. image: {
  22390. source: "./media/characters/poojawa-vynar/maw.svg"
  22391. }
  22392. },
  22393. head: {
  22394. height: math.unit(2.34, "feet"),
  22395. name: "Head",
  22396. image: {
  22397. source: "./media/characters/poojawa-vynar/head.svg"
  22398. }
  22399. },
  22400. paw: {
  22401. height: math.unit(1.61, "feet"),
  22402. name: "Paw",
  22403. image: {
  22404. source: "./media/characters/poojawa-vynar/paw.svg"
  22405. }
  22406. },
  22407. pawToering: {
  22408. height: math.unit(1.72, "feet"),
  22409. name: "Paw (Toering)",
  22410. image: {
  22411. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22412. }
  22413. },
  22414. toering: {
  22415. height: math.unit(2.9, "inches"),
  22416. name: "Toering",
  22417. image: {
  22418. source: "./media/characters/poojawa-vynar/toering.svg"
  22419. }
  22420. },
  22421. shaft: {
  22422. height: math.unit(0.625, "feet"),
  22423. name: "Shaft",
  22424. image: {
  22425. source: "./media/characters/poojawa-vynar/shaft.svg"
  22426. }
  22427. },
  22428. spade: {
  22429. height: math.unit(0.42, "feet"),
  22430. name: "Spade",
  22431. image: {
  22432. source: "./media/characters/poojawa-vynar/spade.svg"
  22433. }
  22434. },
  22435. },
  22436. [
  22437. {
  22438. name: "Shortstack",
  22439. height: math.unit(4, "feet")
  22440. },
  22441. {
  22442. name: "Normal",
  22443. height: math.unit(5 + 11 / 12, "feet"),
  22444. default: true
  22445. },
  22446. {
  22447. name: "Tauric",
  22448. height: math.unit(4, "meters")
  22449. },
  22450. ]
  22451. ))
  22452. characterMakers.push(() => makeCharacter(
  22453. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22454. {
  22455. front: {
  22456. height: math.unit(293, "meters"),
  22457. weight: math.unit(70400, "tons"),
  22458. name: "Front",
  22459. image: {
  22460. source: "./media/characters/violette/front.svg",
  22461. extra: 1227 / 1180,
  22462. bottom: 0.005
  22463. }
  22464. },
  22465. back: {
  22466. height: math.unit(293, "meters"),
  22467. weight: math.unit(70400, "tons"),
  22468. name: "Back",
  22469. image: {
  22470. source: "./media/characters/violette/back.svg",
  22471. extra: 1227 / 1180,
  22472. bottom: 0.005
  22473. }
  22474. },
  22475. },
  22476. [
  22477. {
  22478. name: "Macro",
  22479. height: math.unit(293, "meters"),
  22480. default: true
  22481. },
  22482. ]
  22483. ))
  22484. characterMakers.push(() => makeCharacter(
  22485. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22486. {
  22487. front: {
  22488. height: math.unit(1050, "feet"),
  22489. weight: math.unit(200000, "tons"),
  22490. name: "Front",
  22491. image: {
  22492. source: "./media/characters/alessandra/front.svg",
  22493. extra: 960 / 912,
  22494. bottom: 0.06
  22495. }
  22496. },
  22497. },
  22498. [
  22499. {
  22500. name: "Macro",
  22501. height: math.unit(1050, "feet")
  22502. },
  22503. {
  22504. name: "Macro+",
  22505. height: math.unit(900, "meters"),
  22506. default: true
  22507. },
  22508. ]
  22509. ))
  22510. characterMakers.push(() => makeCharacter(
  22511. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22512. {
  22513. front: {
  22514. height: math.unit(5, "feet"),
  22515. weight: math.unit(187, "lb"),
  22516. name: "Front",
  22517. image: {
  22518. source: "./media/characters/person/front.svg",
  22519. extra: 3087 / 2945,
  22520. bottom: 91 / 3181
  22521. }
  22522. },
  22523. },
  22524. [
  22525. {
  22526. name: "Micro",
  22527. height: math.unit(3, "inches")
  22528. },
  22529. {
  22530. name: "Normal",
  22531. height: math.unit(5, "feet"),
  22532. default: true
  22533. },
  22534. {
  22535. name: "Macro",
  22536. height: math.unit(90, "feet")
  22537. },
  22538. {
  22539. name: "Max Size",
  22540. height: math.unit(280, "feet")
  22541. },
  22542. ]
  22543. ))
  22544. characterMakers.push(() => makeCharacter(
  22545. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22546. {
  22547. front: {
  22548. height: math.unit(4.5, "meters"),
  22549. weight: math.unit(3200, "lb"),
  22550. name: "Front",
  22551. image: {
  22552. source: "./media/characters/ty/front.svg",
  22553. extra: 1038 / 960,
  22554. bottom: 31.156 / 1068
  22555. }
  22556. },
  22557. back: {
  22558. height: math.unit(4.5, "meters"),
  22559. weight: math.unit(3200, "lb"),
  22560. name: "Back",
  22561. image: {
  22562. source: "./media/characters/ty/back.svg",
  22563. extra: 1044 / 966,
  22564. bottom: 7.48 / 1049
  22565. }
  22566. },
  22567. },
  22568. [
  22569. {
  22570. name: "Normal",
  22571. height: math.unit(4.5, "meters"),
  22572. default: true
  22573. },
  22574. ]
  22575. ))
  22576. characterMakers.push(() => makeCharacter(
  22577. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22578. {
  22579. front: {
  22580. height: math.unit(5 + 4 / 12, "feet"),
  22581. weight: math.unit(115, "lb"),
  22582. name: "Front",
  22583. image: {
  22584. source: "./media/characters/rocky/front.svg",
  22585. extra: 1012 / 975,
  22586. bottom: 54 / 1066
  22587. }
  22588. },
  22589. },
  22590. [
  22591. {
  22592. name: "Normal",
  22593. height: math.unit(5 + 4 / 12, "feet"),
  22594. default: true
  22595. },
  22596. ]
  22597. ))
  22598. characterMakers.push(() => makeCharacter(
  22599. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22600. {
  22601. upright: {
  22602. height: math.unit(6, "meters"),
  22603. weight: math.unit(4000, "kg"),
  22604. name: "Upright",
  22605. image: {
  22606. source: "./media/characters/ruin/upright.svg",
  22607. extra: 668 / 661,
  22608. bottom: 42 / 799.8396
  22609. }
  22610. },
  22611. },
  22612. [
  22613. {
  22614. name: "Normal",
  22615. height: math.unit(6, "meters"),
  22616. default: true
  22617. },
  22618. ]
  22619. ))
  22620. characterMakers.push(() => makeCharacter(
  22621. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22622. {
  22623. front: {
  22624. height: math.unit(5, "feet"),
  22625. weight: math.unit(106, "lb"),
  22626. name: "Front",
  22627. image: {
  22628. source: "./media/characters/robin/front.svg",
  22629. extra: 862 / 799,
  22630. bottom: 42.4 / 914.8856
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(5, "feet"),
  22638. default: true
  22639. },
  22640. ]
  22641. ))
  22642. characterMakers.push(() => makeCharacter(
  22643. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22644. {
  22645. side: {
  22646. height: math.unit(3, "feet"),
  22647. weight: math.unit(225, "lb"),
  22648. name: "Side",
  22649. image: {
  22650. source: "./media/characters/saian/side.svg",
  22651. extra: 566 / 356,
  22652. bottom: 79.7 / 643
  22653. }
  22654. },
  22655. maw: {
  22656. height: math.unit(2.85, "feet"),
  22657. name: "Maw",
  22658. image: {
  22659. source: "./media/characters/saian/maw.svg"
  22660. }
  22661. },
  22662. },
  22663. [
  22664. {
  22665. name: "Normal",
  22666. height: math.unit(3, "feet"),
  22667. default: true
  22668. },
  22669. ]
  22670. ))
  22671. characterMakers.push(() => makeCharacter(
  22672. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22673. {
  22674. side: {
  22675. height: math.unit(8, "feet"),
  22676. weight: math.unit(300, "lb"),
  22677. name: "Side",
  22678. image: {
  22679. source: "./media/characters/equus-silvermane/side.svg",
  22680. extra: 2176 / 2050,
  22681. bottom: 65.7 / 2245
  22682. }
  22683. },
  22684. front: {
  22685. height: math.unit(8, "feet"),
  22686. weight: math.unit(300, "lb"),
  22687. name: "Front",
  22688. image: {
  22689. source: "./media/characters/equus-silvermane/front.svg",
  22690. extra: 4633 / 4400,
  22691. bottom: 71.3 / 4706.915
  22692. }
  22693. },
  22694. sideStepping: {
  22695. height: math.unit(8, "feet"),
  22696. weight: math.unit(300, "lb"),
  22697. name: "Side (Stepping)",
  22698. image: {
  22699. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22700. extra: 1968 / 1860,
  22701. bottom: 16.4 / 1989
  22702. }
  22703. },
  22704. },
  22705. [
  22706. {
  22707. name: "Normal",
  22708. height: math.unit(8, "feet")
  22709. },
  22710. {
  22711. name: "Minimacro",
  22712. height: math.unit(75, "feet"),
  22713. default: true
  22714. },
  22715. {
  22716. name: "Macro",
  22717. height: math.unit(150, "feet")
  22718. },
  22719. {
  22720. name: "Macro+",
  22721. height: math.unit(1000, "feet")
  22722. },
  22723. {
  22724. name: "Megamacro",
  22725. height: math.unit(1, "mile")
  22726. },
  22727. ]
  22728. ))
  22729. characterMakers.push(() => makeCharacter(
  22730. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22731. {
  22732. side: {
  22733. height: math.unit(20, "feet"),
  22734. weight: math.unit(30000, "kg"),
  22735. name: "Side",
  22736. image: {
  22737. source: "./media/characters/windar/side.svg",
  22738. extra: 1491 / 1248,
  22739. bottom: 82.56 / 1568
  22740. }
  22741. },
  22742. },
  22743. [
  22744. {
  22745. name: "Normal",
  22746. height: math.unit(20, "feet"),
  22747. default: true
  22748. },
  22749. ]
  22750. ))
  22751. characterMakers.push(() => makeCharacter(
  22752. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22753. {
  22754. side: {
  22755. height: math.unit(15.66, "feet"),
  22756. weight: math.unit(150, "lb"),
  22757. name: "Side",
  22758. image: {
  22759. source: "./media/characters/melody/side.svg",
  22760. extra: 1097 / 944,
  22761. bottom: 11.8 / 1109
  22762. }
  22763. },
  22764. sideOutfit: {
  22765. height: math.unit(15.66, "feet"),
  22766. weight: math.unit(150, "lb"),
  22767. name: "Side (Outfit)",
  22768. image: {
  22769. source: "./media/characters/melody/side-outfit.svg",
  22770. extra: 1097 / 944,
  22771. bottom: 11.8 / 1109
  22772. }
  22773. },
  22774. },
  22775. [
  22776. {
  22777. name: "Normal",
  22778. height: math.unit(15.66, "feet"),
  22779. default: true
  22780. },
  22781. ]
  22782. ))
  22783. characterMakers.push(() => makeCharacter(
  22784. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22785. {
  22786. front: {
  22787. height: math.unit(8, "feet"),
  22788. weight: math.unit(325, "lb"),
  22789. name: "Front",
  22790. image: {
  22791. source: "./media/characters/windera/front.svg",
  22792. extra: 3180 / 2845,
  22793. bottom: 178 / 3365
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Normal",
  22800. height: math.unit(8, "feet"),
  22801. default: true
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22807. {
  22808. front: {
  22809. height: math.unit(28.75, "feet"),
  22810. weight: math.unit(2000, "kg"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/sonear/front.svg",
  22814. extra: 1041.1 / 964.9,
  22815. bottom: 53.7 / 1096.6
  22816. }
  22817. },
  22818. },
  22819. [
  22820. {
  22821. name: "Normal",
  22822. height: math.unit(28.75, "feet"),
  22823. default: true
  22824. },
  22825. ]
  22826. ))
  22827. characterMakers.push(() => makeCharacter(
  22828. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22829. {
  22830. side: {
  22831. height: math.unit(25.5, "feet"),
  22832. weight: math.unit(23000, "kg"),
  22833. name: "Side",
  22834. image: {
  22835. source: "./media/characters/kanara/side.svg"
  22836. }
  22837. },
  22838. },
  22839. [
  22840. {
  22841. name: "Normal",
  22842. height: math.unit(25.5, "feet"),
  22843. default: true
  22844. },
  22845. ]
  22846. ))
  22847. characterMakers.push(() => makeCharacter(
  22848. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22849. {
  22850. side: {
  22851. height: math.unit(10, "feet"),
  22852. weight: math.unit(1000, "kg"),
  22853. name: "Side",
  22854. image: {
  22855. source: "./media/characters/ereus/side.svg",
  22856. extra: 1157 / 959,
  22857. bottom: 153 / 1312.5
  22858. }
  22859. },
  22860. },
  22861. [
  22862. {
  22863. name: "Normal",
  22864. height: math.unit(10, "feet"),
  22865. default: true
  22866. },
  22867. ]
  22868. ))
  22869. characterMakers.push(() => makeCharacter(
  22870. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22871. {
  22872. side: {
  22873. height: math.unit(4.5, "feet"),
  22874. weight: math.unit(500, "lb"),
  22875. name: "Side",
  22876. image: {
  22877. source: "./media/characters/e-ter/side.svg",
  22878. extra: 1550 / 1248,
  22879. bottom: 146 / 1694
  22880. }
  22881. },
  22882. },
  22883. [
  22884. {
  22885. name: "Normal",
  22886. height: math.unit(4.5, "feet"),
  22887. default: true
  22888. },
  22889. ]
  22890. ))
  22891. characterMakers.push(() => makeCharacter(
  22892. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22893. {
  22894. side: {
  22895. height: math.unit(9.7, "feet"),
  22896. weight: math.unit(4000, "kg"),
  22897. name: "Side",
  22898. image: {
  22899. source: "./media/characters/yamie/side.svg"
  22900. }
  22901. },
  22902. },
  22903. [
  22904. {
  22905. name: "Normal",
  22906. height: math.unit(9.7, "feet"),
  22907. default: true
  22908. },
  22909. ]
  22910. ))
  22911. characterMakers.push(() => makeCharacter(
  22912. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22913. {
  22914. front: {
  22915. height: math.unit(50, "feet"),
  22916. weight: math.unit(50000, "kg"),
  22917. name: "Front",
  22918. image: {
  22919. source: "./media/characters/anders/front.svg",
  22920. extra: 570 / 539,
  22921. bottom: 14.7 / 586.7
  22922. }
  22923. },
  22924. },
  22925. [
  22926. {
  22927. name: "Large",
  22928. height: math.unit(50, "feet")
  22929. },
  22930. {
  22931. name: "Macro",
  22932. height: math.unit(2000, "feet"),
  22933. default: true
  22934. },
  22935. {
  22936. name: "Megamacro",
  22937. height: math.unit(12, "miles")
  22938. },
  22939. ]
  22940. ))
  22941. characterMakers.push(() => makeCharacter(
  22942. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22943. {
  22944. front: {
  22945. height: math.unit(7 + 2 / 12, "feet"),
  22946. weight: math.unit(300, "lb"),
  22947. name: "Front",
  22948. image: {
  22949. source: "./media/characters/reban/front.svg",
  22950. extra: 1287/1212,
  22951. bottom: 148/1435
  22952. }
  22953. },
  22954. head: {
  22955. height: math.unit(1.95, "feet"),
  22956. name: "Head",
  22957. image: {
  22958. source: "./media/characters/reban/head.svg"
  22959. }
  22960. },
  22961. maw: {
  22962. height: math.unit(0.95, "feet"),
  22963. name: "Maw",
  22964. image: {
  22965. source: "./media/characters/reban/maw.svg"
  22966. }
  22967. },
  22968. foot: {
  22969. height: math.unit(1.65, "feet"),
  22970. name: "Foot",
  22971. image: {
  22972. source: "./media/characters/reban/foot.svg"
  22973. }
  22974. },
  22975. dick: {
  22976. height: math.unit(7 / 5, "feet"),
  22977. name: "Dick",
  22978. image: {
  22979. source: "./media/characters/reban/dick.svg"
  22980. }
  22981. },
  22982. },
  22983. [
  22984. {
  22985. name: "Natural Height",
  22986. height: math.unit(7 + 2 / 12, "feet")
  22987. },
  22988. {
  22989. name: "Macro",
  22990. height: math.unit(500, "feet"),
  22991. default: true
  22992. },
  22993. {
  22994. name: "Canon Height",
  22995. height: math.unit(50, "AU")
  22996. },
  22997. ]
  22998. ))
  22999. characterMakers.push(() => makeCharacter(
  23000. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23001. {
  23002. front: {
  23003. height: math.unit(6, "feet"),
  23004. weight: math.unit(150, "lb"),
  23005. name: "Front",
  23006. image: {
  23007. source: "./media/characters/terrance-keayes/front.svg",
  23008. extra: 1.005,
  23009. bottom: 151 / 1615
  23010. }
  23011. },
  23012. side: {
  23013. height: math.unit(6, "feet"),
  23014. weight: math.unit(150, "lb"),
  23015. name: "Side",
  23016. image: {
  23017. source: "./media/characters/terrance-keayes/side.svg",
  23018. extra: 1.005,
  23019. bottom: 129.4 / 1544
  23020. }
  23021. },
  23022. back: {
  23023. height: math.unit(6, "feet"),
  23024. weight: math.unit(150, "lb"),
  23025. name: "Back",
  23026. image: {
  23027. source: "./media/characters/terrance-keayes/back.svg",
  23028. extra: 1.005,
  23029. bottom: 58.4 / 1557.3
  23030. }
  23031. },
  23032. dick: {
  23033. height: math.unit(6 * 0.208, "feet"),
  23034. name: "Dick",
  23035. image: {
  23036. source: "./media/characters/terrance-keayes/dick.svg"
  23037. }
  23038. },
  23039. },
  23040. [
  23041. {
  23042. name: "Canon Height",
  23043. height: math.unit(35, "miles"),
  23044. default: true
  23045. },
  23046. ]
  23047. ))
  23048. characterMakers.push(() => makeCharacter(
  23049. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23050. {
  23051. front: {
  23052. height: math.unit(6, "feet"),
  23053. weight: math.unit(150, "lb"),
  23054. name: "Front",
  23055. image: {
  23056. source: "./media/characters/ofelia/front.svg",
  23057. extra: 1130/1117,
  23058. bottom: 91/1221
  23059. }
  23060. },
  23061. back: {
  23062. height: math.unit(6, "feet"),
  23063. weight: math.unit(150, "lb"),
  23064. name: "Back",
  23065. image: {
  23066. source: "./media/characters/ofelia/back.svg",
  23067. extra: 1172/1159,
  23068. bottom: 28/1200
  23069. }
  23070. },
  23071. maw: {
  23072. height: math.unit(1, "feet"),
  23073. name: "Maw",
  23074. image: {
  23075. source: "./media/characters/ofelia/maw.svg"
  23076. }
  23077. },
  23078. foot: {
  23079. height: math.unit(1.949, "feet"),
  23080. name: "Foot",
  23081. image: {
  23082. source: "./media/characters/ofelia/foot.svg"
  23083. }
  23084. },
  23085. },
  23086. [
  23087. {
  23088. name: "Canon Height",
  23089. height: math.unit(2000, "miles"),
  23090. default: true
  23091. },
  23092. ]
  23093. ))
  23094. characterMakers.push(() => makeCharacter(
  23095. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23096. {
  23097. front: {
  23098. height: math.unit(6, "feet"),
  23099. weight: math.unit(150, "lb"),
  23100. name: "Front",
  23101. image: {
  23102. source: "./media/characters/samuel/front.svg",
  23103. extra: 265 / 258,
  23104. bottom: 2 / 266.1566
  23105. }
  23106. },
  23107. },
  23108. [
  23109. {
  23110. name: "Macro",
  23111. height: math.unit(100, "feet"),
  23112. default: true
  23113. },
  23114. {
  23115. name: "Full Size",
  23116. height: math.unit(1000, "miles")
  23117. },
  23118. ]
  23119. ))
  23120. characterMakers.push(() => makeCharacter(
  23121. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23122. {
  23123. front: {
  23124. height: math.unit(6, "feet"),
  23125. weight: math.unit(300, "lb"),
  23126. name: "Front",
  23127. image: {
  23128. source: "./media/characters/beishir-kiel/front.svg",
  23129. extra: 569 / 547,
  23130. bottom: 41.9 / 609
  23131. }
  23132. },
  23133. maw: {
  23134. height: math.unit(6 * 0.202, "feet"),
  23135. name: "Maw",
  23136. image: {
  23137. source: "./media/characters/beishir-kiel/maw.svg"
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Macro",
  23144. height: math.unit(300, "feet"),
  23145. default: true
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23151. {
  23152. front: {
  23153. height: math.unit(5 + 7/12, "feet"),
  23154. weight: math.unit(120, "lb"),
  23155. name: "Front",
  23156. image: {
  23157. source: "./media/characters/logan-grey/front.svg",
  23158. extra: 1836/1738,
  23159. bottom: 108/1944
  23160. }
  23161. },
  23162. back: {
  23163. height: math.unit(5 + 7/12, "feet"),
  23164. weight: math.unit(120, "lb"),
  23165. name: "Back",
  23166. image: {
  23167. source: "./media/characters/logan-grey/back.svg",
  23168. extra: 1880/1794,
  23169. bottom: 24/1904
  23170. }
  23171. },
  23172. frontSfw: {
  23173. height: math.unit(5 + 7/12, "feet"),
  23174. weight: math.unit(120, "lb"),
  23175. name: "Front (SFW)",
  23176. image: {
  23177. source: "./media/characters/logan-grey/front-sfw.svg",
  23178. extra: 1836/1738,
  23179. bottom: 108/1944
  23180. }
  23181. },
  23182. backSfw: {
  23183. height: math.unit(5 + 7/12, "feet"),
  23184. weight: math.unit(120, "lb"),
  23185. name: "Back (SFW)",
  23186. image: {
  23187. source: "./media/characters/logan-grey/back-sfw.svg",
  23188. extra: 1880/1794,
  23189. bottom: 24/1904
  23190. }
  23191. },
  23192. hands: {
  23193. height: math.unit(0.84, "feet"),
  23194. name: "Hands",
  23195. image: {
  23196. source: "./media/characters/logan-grey/hands.svg"
  23197. }
  23198. },
  23199. paws: {
  23200. height: math.unit(0.72, "feet"),
  23201. name: "Paws",
  23202. image: {
  23203. source: "./media/characters/logan-grey/paws.svg"
  23204. }
  23205. },
  23206. cock: {
  23207. height: math.unit(1.45, "feet"),
  23208. name: "Cock",
  23209. image: {
  23210. source: "./media/characters/logan-grey/cock.svg"
  23211. }
  23212. },
  23213. cockAlt: {
  23214. height: math.unit(1.437, "feet"),
  23215. name: "Cock (alt)",
  23216. image: {
  23217. source: "./media/characters/logan-grey/cock-alt.svg"
  23218. }
  23219. },
  23220. },
  23221. [
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(5 + 8 / 12, "feet")
  23225. },
  23226. {
  23227. name: "The 500 Foot Femboy",
  23228. height: math.unit(500, "feet"),
  23229. default: true
  23230. },
  23231. {
  23232. name: "Megmacro",
  23233. height: math.unit(20, "miles")
  23234. },
  23235. ]
  23236. ))
  23237. characterMakers.push(() => makeCharacter(
  23238. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23239. {
  23240. front: {
  23241. height: math.unit(8 + 2 / 12, "feet"),
  23242. weight: math.unit(275, "lb"),
  23243. name: "Front",
  23244. image: {
  23245. source: "./media/characters/draganta/front.svg",
  23246. extra: 1177 / 1135,
  23247. bottom: 33.46 / 1212.1
  23248. }
  23249. },
  23250. },
  23251. [
  23252. {
  23253. name: "Normal",
  23254. height: math.unit(8 + 6 / 12, "feet"),
  23255. default: true
  23256. },
  23257. {
  23258. name: "Macro",
  23259. height: math.unit(150, "feet")
  23260. },
  23261. {
  23262. name: "Megamacro",
  23263. height: math.unit(1000, "miles")
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23269. {
  23270. front: {
  23271. height: math.unit(1.72, "m"),
  23272. weight: math.unit(80, "lb"),
  23273. name: "Front",
  23274. image: {
  23275. source: "./media/characters/voski/front.svg",
  23276. extra: 2076.22 / 2022.4,
  23277. bottom: 102.7 / 2177.3866
  23278. }
  23279. },
  23280. frontFlaccid: {
  23281. height: math.unit(1.72, "m"),
  23282. weight: math.unit(80, "lb"),
  23283. name: "Front (Flaccid)",
  23284. image: {
  23285. source: "./media/characters/voski/front-flaccid.svg",
  23286. extra: 2076.22 / 2022.4,
  23287. bottom: 102.7 / 2177.3866
  23288. }
  23289. },
  23290. frontErect: {
  23291. height: math.unit(1.72, "m"),
  23292. weight: math.unit(80, "lb"),
  23293. name: "Front (Erect)",
  23294. image: {
  23295. source: "./media/characters/voski/front-erect.svg",
  23296. extra: 2076.22 / 2022.4,
  23297. bottom: 102.7 / 2177.3866
  23298. }
  23299. },
  23300. back: {
  23301. height: math.unit(1.72, "m"),
  23302. weight: math.unit(80, "lb"),
  23303. name: "Back",
  23304. image: {
  23305. source: "./media/characters/voski/back.svg",
  23306. extra: 2104 / 2051,
  23307. bottom: 10.45 / 2113.63
  23308. }
  23309. },
  23310. },
  23311. [
  23312. {
  23313. name: "Normal",
  23314. height: math.unit(1.72, "m")
  23315. },
  23316. {
  23317. name: "Macro",
  23318. height: math.unit(55, "m"),
  23319. default: true
  23320. },
  23321. {
  23322. name: "Macro+",
  23323. height: math.unit(300, "m")
  23324. },
  23325. {
  23326. name: "Macro++",
  23327. height: math.unit(700, "m")
  23328. },
  23329. {
  23330. name: "Macro+++",
  23331. height: math.unit(4500, "m")
  23332. },
  23333. {
  23334. name: "Macro++++",
  23335. height: math.unit(45, "km")
  23336. },
  23337. {
  23338. name: "Macro+++++",
  23339. height: math.unit(1220, "km")
  23340. },
  23341. ]
  23342. ))
  23343. characterMakers.push(() => makeCharacter(
  23344. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23345. {
  23346. front: {
  23347. height: math.unit(2.3, "m"),
  23348. weight: math.unit(304, "kg"),
  23349. name: "Front",
  23350. image: {
  23351. source: "./media/characters/icowom-lee/front.svg",
  23352. extra: 985 / 955,
  23353. bottom: 25.4 / 1012
  23354. }
  23355. },
  23356. fronttentacles: {
  23357. height: math.unit(2.3, "m"),
  23358. weight: math.unit(304, "kg"),
  23359. name: "Front-tentacles",
  23360. image: {
  23361. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23362. extra: 985 / 955,
  23363. bottom: 25.4 / 1012
  23364. }
  23365. },
  23366. back: {
  23367. height: math.unit(2.3, "m"),
  23368. weight: math.unit(304, "kg"),
  23369. name: "Back",
  23370. image: {
  23371. source: "./media/characters/icowom-lee/back.svg",
  23372. extra: 975 / 954,
  23373. bottom: 9.5 / 985
  23374. }
  23375. },
  23376. backtentacles: {
  23377. height: math.unit(2.3, "m"),
  23378. weight: math.unit(304, "kg"),
  23379. name: "Back-tentacles",
  23380. image: {
  23381. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23382. extra: 975 / 954,
  23383. bottom: 9.5 / 985
  23384. }
  23385. },
  23386. frontDressed: {
  23387. height: math.unit(2.3, "m"),
  23388. weight: math.unit(304, "kg"),
  23389. name: "Front (Dressed)",
  23390. image: {
  23391. source: "./media/characters/icowom-lee/front-dressed.svg",
  23392. extra: 3076 / 2933,
  23393. bottom: 51.4 / 3125.1889
  23394. }
  23395. },
  23396. rump: {
  23397. height: math.unit(0.776, "meters"),
  23398. name: "Rump",
  23399. image: {
  23400. source: "./media/characters/icowom-lee/rump.svg"
  23401. }
  23402. },
  23403. genitals: {
  23404. height: math.unit(0.78, "meters"),
  23405. name: "Genitals",
  23406. image: {
  23407. source: "./media/characters/icowom-lee/genitals.svg"
  23408. }
  23409. },
  23410. },
  23411. [
  23412. {
  23413. name: "Normal",
  23414. height: math.unit(2.3, "meters"),
  23415. default: true
  23416. },
  23417. {
  23418. name: "Macro",
  23419. height: math.unit(94, "meters"),
  23420. default: true
  23421. },
  23422. ]
  23423. ))
  23424. characterMakers.push(() => makeCharacter(
  23425. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23426. {
  23427. front: {
  23428. height: math.unit(22, "meters"),
  23429. weight: math.unit(21000, "kg"),
  23430. name: "Front",
  23431. image: {
  23432. source: "./media/characters/shock-diamond/front.svg",
  23433. extra: 2204 / 2053,
  23434. bottom: 65 / 2239.47
  23435. }
  23436. },
  23437. frontNude: {
  23438. height: math.unit(22, "meters"),
  23439. weight: math.unit(21000, "kg"),
  23440. name: "Front (Nude)",
  23441. image: {
  23442. source: "./media/characters/shock-diamond/front-nude.svg",
  23443. extra: 2514 / 2285,
  23444. bottom: 13 / 2527.56
  23445. }
  23446. },
  23447. },
  23448. [
  23449. {
  23450. name: "Normal",
  23451. height: math.unit(3, "meters")
  23452. },
  23453. {
  23454. name: "Macro",
  23455. height: math.unit(22, "meters"),
  23456. default: true
  23457. },
  23458. ]
  23459. ))
  23460. characterMakers.push(() => makeCharacter(
  23461. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23462. {
  23463. front: {
  23464. height: math.unit(5 + 4 / 12, "feet"),
  23465. weight: math.unit(120, "lb"),
  23466. name: "Front",
  23467. image: {
  23468. source: "./media/characters/rory/front.svg",
  23469. extra: 1318/1241,
  23470. bottom: 42/1360
  23471. }
  23472. },
  23473. back: {
  23474. height: math.unit(5 + 4 / 12, "feet"),
  23475. weight: math.unit(120, "lb"),
  23476. name: "Back",
  23477. image: {
  23478. source: "./media/characters/rory/back.svg",
  23479. extra: 1318/1241,
  23480. bottom: 42/1360
  23481. }
  23482. },
  23483. butt: {
  23484. height: math.unit(1.74, "feet"),
  23485. name: "Butt",
  23486. image: {
  23487. source: "./media/characters/rory/butt.svg"
  23488. }
  23489. },
  23490. dick: {
  23491. height: math.unit(1.02, "feet"),
  23492. name: "Dick",
  23493. image: {
  23494. source: "./media/characters/rory/dick.svg"
  23495. }
  23496. },
  23497. paws: {
  23498. height: math.unit(1, "feet"),
  23499. name: "Paws",
  23500. image: {
  23501. source: "./media/characters/rory/paws.svg"
  23502. }
  23503. },
  23504. frontAlt: {
  23505. height: math.unit(5 + 4 / 12, "feet"),
  23506. weight: math.unit(120, "lb"),
  23507. name: "Front (Alt)",
  23508. image: {
  23509. source: "./media/characters/rory/front-alt.svg",
  23510. extra: 589 / 556,
  23511. bottom: 45.7 / 635.76
  23512. }
  23513. },
  23514. frontAltNude: {
  23515. height: math.unit(5 + 4 / 12, "feet"),
  23516. weight: math.unit(120, "lb"),
  23517. name: "Front (Alt, Nude)",
  23518. image: {
  23519. source: "./media/characters/rory/front-alt-nude.svg",
  23520. extra: 589 / 556,
  23521. bottom: 45.7 / 635.76
  23522. }
  23523. },
  23524. side: {
  23525. height: math.unit(5 + 4 / 12, "feet"),
  23526. weight: math.unit(120, "lb"),
  23527. name: "Side",
  23528. image: {
  23529. source: "./media/characters/rory/side.svg",
  23530. extra: 597 / 564,
  23531. bottom: 55 / 653
  23532. }
  23533. },
  23534. backAlt: {
  23535. height: math.unit(5 + 4 / 12, "feet"),
  23536. weight: math.unit(120, "lb"),
  23537. name: "Back (Alt)",
  23538. image: {
  23539. source: "./media/characters/rory/back-alt.svg",
  23540. extra: 620 / 585,
  23541. bottom: 8.86 / 630.43
  23542. }
  23543. },
  23544. dickAlt: {
  23545. height: math.unit(0.86, "feet"),
  23546. name: "Dick (Alt)",
  23547. image: {
  23548. source: "./media/characters/rory/dick-alt.svg"
  23549. }
  23550. },
  23551. },
  23552. [
  23553. {
  23554. name: "Normal",
  23555. height: math.unit(5 + 4 / 12, "feet"),
  23556. default: true
  23557. },
  23558. {
  23559. name: "Macro",
  23560. height: math.unit(100, "feet")
  23561. },
  23562. {
  23563. name: "Macro+",
  23564. height: math.unit(140, "feet")
  23565. },
  23566. {
  23567. name: "Macro++",
  23568. height: math.unit(300, "feet")
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23574. {
  23575. front: {
  23576. height: math.unit(5 + 9 / 12, "feet"),
  23577. weight: math.unit(190, "lb"),
  23578. name: "Front",
  23579. image: {
  23580. source: "./media/characters/sprisk/front.svg",
  23581. extra: 1225 / 1180,
  23582. bottom: 42.7 / 1266.4
  23583. }
  23584. },
  23585. frontNsfw: {
  23586. height: math.unit(5 + 9 / 12, "feet"),
  23587. weight: math.unit(190, "lb"),
  23588. name: "Front (NSFW)",
  23589. image: {
  23590. source: "./media/characters/sprisk/front-nsfw.svg",
  23591. extra: 1225 / 1180,
  23592. bottom: 42.7 / 1266.4
  23593. }
  23594. },
  23595. back: {
  23596. height: math.unit(5 + 9 / 12, "feet"),
  23597. weight: math.unit(190, "lb"),
  23598. name: "Back",
  23599. image: {
  23600. source: "./media/characters/sprisk/back.svg",
  23601. extra: 1247 / 1200,
  23602. bottom: 5.6 / 1253.04
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Tiny",
  23609. height: math.unit(2, "inches")
  23610. },
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(5 + 9 / 12, "feet"),
  23614. default: true
  23615. },
  23616. {
  23617. name: "Mini Macro",
  23618. height: math.unit(18, "feet")
  23619. },
  23620. {
  23621. name: "Macro",
  23622. height: math.unit(100, "feet")
  23623. },
  23624. {
  23625. name: "MACRO",
  23626. height: math.unit(50, "miles")
  23627. },
  23628. {
  23629. name: "M A C R O",
  23630. height: math.unit(300, "miles")
  23631. },
  23632. ]
  23633. ))
  23634. characterMakers.push(() => makeCharacter(
  23635. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23636. {
  23637. side: {
  23638. height: math.unit(15.6, "meters"),
  23639. weight: math.unit(700000, "kg"),
  23640. name: "Side",
  23641. image: {
  23642. source: "./media/characters/bunsen/side.svg",
  23643. extra: 1644 / 358
  23644. }
  23645. },
  23646. foot: {
  23647. height: math.unit(1.611 * 1644 / 358, "meter"),
  23648. name: "Foot",
  23649. image: {
  23650. source: "./media/characters/bunsen/foot.svg"
  23651. }
  23652. },
  23653. },
  23654. [
  23655. {
  23656. name: "Small",
  23657. height: math.unit(10, "feet")
  23658. },
  23659. {
  23660. name: "Normal",
  23661. height: math.unit(15.6, "meters"),
  23662. default: true
  23663. },
  23664. ]
  23665. ))
  23666. characterMakers.push(() => makeCharacter(
  23667. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23668. {
  23669. front: {
  23670. height: math.unit(4 + 11 / 12, "feet"),
  23671. weight: math.unit(140, "lb"),
  23672. name: "Front",
  23673. image: {
  23674. source: "./media/characters/sesh/front.svg",
  23675. extra: 3420 / 3231,
  23676. bottom: 72 / 3949.5
  23677. }
  23678. },
  23679. },
  23680. [
  23681. {
  23682. name: "Normal",
  23683. height: math.unit(4 + 11 / 12, "feet")
  23684. },
  23685. {
  23686. name: "Grown",
  23687. height: math.unit(15, "feet"),
  23688. default: true
  23689. },
  23690. {
  23691. name: "Macro",
  23692. height: math.unit(1500, "feet")
  23693. },
  23694. {
  23695. name: "Megamacro",
  23696. height: math.unit(30, "miles")
  23697. },
  23698. {
  23699. name: "Continental",
  23700. height: math.unit(3000, "miles")
  23701. },
  23702. {
  23703. name: "Gravity Mass",
  23704. height: math.unit(300000, "miles")
  23705. },
  23706. {
  23707. name: "Planet Buster",
  23708. height: math.unit(30000000, "miles")
  23709. },
  23710. {
  23711. name: "Big",
  23712. height: math.unit(3000000000, "miles")
  23713. },
  23714. ]
  23715. ))
  23716. characterMakers.push(() => makeCharacter(
  23717. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23718. {
  23719. front: {
  23720. height: math.unit(9, "feet"),
  23721. weight: math.unit(350, "lb"),
  23722. name: "Front",
  23723. image: {
  23724. source: "./media/characters/pepper/front.svg",
  23725. extra: 1448 / 1312,
  23726. bottom: 9.4 / 1457.88
  23727. }
  23728. },
  23729. back: {
  23730. height: math.unit(9, "feet"),
  23731. weight: math.unit(350, "lb"),
  23732. name: "Back",
  23733. image: {
  23734. source: "./media/characters/pepper/back.svg",
  23735. extra: 1423 / 1300,
  23736. bottom: 4.6 / 1429
  23737. }
  23738. },
  23739. maw: {
  23740. height: math.unit(0.932, "feet"),
  23741. name: "Maw",
  23742. image: {
  23743. source: "./media/characters/pepper/maw.svg"
  23744. }
  23745. },
  23746. },
  23747. [
  23748. {
  23749. name: "Normal",
  23750. height: math.unit(9, "feet"),
  23751. default: true
  23752. },
  23753. ]
  23754. ))
  23755. characterMakers.push(() => makeCharacter(
  23756. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23757. {
  23758. front: {
  23759. height: math.unit(6, "feet"),
  23760. weight: math.unit(150, "lb"),
  23761. name: "Front",
  23762. image: {
  23763. source: "./media/characters/maelstrom/front.svg",
  23764. extra: 2100 / 1883,
  23765. bottom: 94 / 2196.7
  23766. }
  23767. },
  23768. },
  23769. [
  23770. {
  23771. name: "Less Kaiju",
  23772. height: math.unit(200, "feet")
  23773. },
  23774. {
  23775. name: "Kaiju",
  23776. height: math.unit(400, "feet"),
  23777. default: true
  23778. },
  23779. {
  23780. name: "Kaiju-er",
  23781. height: math.unit(600, "feet")
  23782. },
  23783. ]
  23784. ))
  23785. characterMakers.push(() => makeCharacter(
  23786. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23787. {
  23788. front: {
  23789. height: math.unit(6 + 5 / 12, "feet"),
  23790. weight: math.unit(180, "lb"),
  23791. name: "Front",
  23792. image: {
  23793. source: "./media/characters/lexir/front.svg",
  23794. extra: 180 / 172,
  23795. bottom: 12 / 192
  23796. }
  23797. },
  23798. back: {
  23799. height: math.unit(6 + 5 / 12, "feet"),
  23800. weight: math.unit(180, "lb"),
  23801. name: "Back",
  23802. image: {
  23803. source: "./media/characters/lexir/back.svg",
  23804. extra: 1273/1201,
  23805. bottom: 39/1312
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Very Smal",
  23812. height: math.unit(1, "nm")
  23813. },
  23814. {
  23815. name: "Normal",
  23816. height: math.unit(6 + 5 / 12, "feet"),
  23817. default: true
  23818. },
  23819. {
  23820. name: "Macro",
  23821. height: math.unit(1, "mile")
  23822. },
  23823. {
  23824. name: "Megamacro",
  23825. height: math.unit(50, "miles")
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23831. {
  23832. front: {
  23833. height: math.unit(1.5, "meters"),
  23834. weight: math.unit(100, "lb"),
  23835. name: "Front",
  23836. image: {
  23837. source: "./media/characters/maksio/front.svg",
  23838. extra: 1549 / 1531,
  23839. bottom: 123.7 / 1674.5429
  23840. }
  23841. },
  23842. back: {
  23843. height: math.unit(1.5, "meters"),
  23844. weight: math.unit(100, "lb"),
  23845. name: "Back",
  23846. image: {
  23847. source: "./media/characters/maksio/back.svg",
  23848. extra: 1541 / 1509,
  23849. bottom: 97 / 1639
  23850. }
  23851. },
  23852. hand: {
  23853. height: math.unit(0.621, "feet"),
  23854. name: "Hand",
  23855. image: {
  23856. source: "./media/characters/maksio/hand.svg"
  23857. }
  23858. },
  23859. foot: {
  23860. height: math.unit(1.611, "feet"),
  23861. name: "Foot",
  23862. image: {
  23863. source: "./media/characters/maksio/foot.svg"
  23864. }
  23865. },
  23866. },
  23867. [
  23868. {
  23869. name: "Shrunken",
  23870. height: math.unit(10, "cm")
  23871. },
  23872. {
  23873. name: "Normal",
  23874. height: math.unit(150, "cm"),
  23875. default: true
  23876. },
  23877. ]
  23878. ))
  23879. characterMakers.push(() => makeCharacter(
  23880. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23881. {
  23882. front: {
  23883. height: math.unit(100, "feet"),
  23884. name: "Front",
  23885. image: {
  23886. source: "./media/characters/erza-bear/front.svg",
  23887. extra: 2449 / 2390,
  23888. bottom: 46 / 2494
  23889. }
  23890. },
  23891. back: {
  23892. height: math.unit(100, "feet"),
  23893. name: "Back",
  23894. image: {
  23895. source: "./media/characters/erza-bear/back.svg",
  23896. extra: 2489 / 2430,
  23897. bottom: 85.4 / 2480
  23898. }
  23899. },
  23900. tail: {
  23901. height: math.unit(42, "feet"),
  23902. name: "Tail",
  23903. image: {
  23904. source: "./media/characters/erza-bear/tail.svg"
  23905. }
  23906. },
  23907. tongue: {
  23908. height: math.unit(8, "feet"),
  23909. name: "Tongue",
  23910. image: {
  23911. source: "./media/characters/erza-bear/tongue.svg"
  23912. }
  23913. },
  23914. dick: {
  23915. height: math.unit(10.5, "feet"),
  23916. name: "Dick",
  23917. image: {
  23918. source: "./media/characters/erza-bear/dick.svg"
  23919. }
  23920. },
  23921. dickVertical: {
  23922. height: math.unit(16.9, "feet"),
  23923. name: "Dick (Vertical)",
  23924. image: {
  23925. source: "./media/characters/erza-bear/dick-vertical.svg"
  23926. }
  23927. },
  23928. },
  23929. [
  23930. {
  23931. name: "Macro",
  23932. height: math.unit(100, "feet"),
  23933. default: true
  23934. },
  23935. ]
  23936. ))
  23937. characterMakers.push(() => makeCharacter(
  23938. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23939. {
  23940. front: {
  23941. height: math.unit(172, "cm"),
  23942. weight: math.unit(73, "kg"),
  23943. name: "Front",
  23944. image: {
  23945. source: "./media/characters/violet-flor/front.svg",
  23946. extra: 1530 / 1442,
  23947. bottom: 61.9 / 1588.8
  23948. }
  23949. },
  23950. back: {
  23951. height: math.unit(180, "cm"),
  23952. weight: math.unit(73, "kg"),
  23953. name: "Back",
  23954. image: {
  23955. source: "./media/characters/violet-flor/back.svg",
  23956. extra: 1692 / 1630,
  23957. bottom: 20 / 1712
  23958. }
  23959. },
  23960. },
  23961. [
  23962. {
  23963. name: "Normal",
  23964. height: math.unit(172, "cm"),
  23965. default: true
  23966. },
  23967. ]
  23968. ))
  23969. characterMakers.push(() => makeCharacter(
  23970. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23971. {
  23972. front: {
  23973. height: math.unit(6, "feet"),
  23974. weight: math.unit(220, "lb"),
  23975. name: "Front",
  23976. image: {
  23977. source: "./media/characters/lynn-rhea/front.svg",
  23978. extra: 310 / 273
  23979. }
  23980. },
  23981. back: {
  23982. height: math.unit(6, "feet"),
  23983. weight: math.unit(220, "lb"),
  23984. name: "Back",
  23985. image: {
  23986. source: "./media/characters/lynn-rhea/back.svg",
  23987. extra: 310 / 273
  23988. }
  23989. },
  23990. dicks: {
  23991. height: math.unit(0.9, "feet"),
  23992. name: "Dicks",
  23993. image: {
  23994. source: "./media/characters/lynn-rhea/dicks.svg"
  23995. }
  23996. },
  23997. slit: {
  23998. height: math.unit(0.4, "feet"),
  23999. name: "Slit",
  24000. image: {
  24001. source: "./media/characters/lynn-rhea/slit.svg"
  24002. }
  24003. },
  24004. },
  24005. [
  24006. {
  24007. name: "Micro",
  24008. height: math.unit(1, "inch")
  24009. },
  24010. {
  24011. name: "Macro",
  24012. height: math.unit(60, "feet"),
  24013. default: true
  24014. },
  24015. {
  24016. name: "Megamacro",
  24017. height: math.unit(2, "miles")
  24018. },
  24019. {
  24020. name: "Gigamacro",
  24021. height: math.unit(3, "earths")
  24022. },
  24023. {
  24024. name: "Galactic",
  24025. height: math.unit(0.8, "galaxies")
  24026. },
  24027. ]
  24028. ))
  24029. characterMakers.push(() => makeCharacter(
  24030. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24031. {
  24032. front: {
  24033. height: math.unit(1600, "feet"),
  24034. weight: math.unit(85758785169, "kg"),
  24035. name: "Front",
  24036. image: {
  24037. source: "./media/characters/valathos/front.svg",
  24038. extra: 1451 / 1339
  24039. }
  24040. },
  24041. },
  24042. [
  24043. {
  24044. name: "Macro",
  24045. height: math.unit(1600, "feet"),
  24046. default: true
  24047. },
  24048. ]
  24049. ))
  24050. characterMakers.push(() => makeCharacter(
  24051. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24052. {
  24053. front: {
  24054. height: math.unit(7 + 5 / 12, "feet"),
  24055. weight: math.unit(300, "lb"),
  24056. name: "Front",
  24057. image: {
  24058. source: "./media/characters/azula/front.svg",
  24059. extra: 3208 / 2880,
  24060. bottom: 80.2 / 3277
  24061. }
  24062. },
  24063. back: {
  24064. height: math.unit(7 + 5 / 12, "feet"),
  24065. weight: math.unit(300, "lb"),
  24066. name: "Back",
  24067. image: {
  24068. source: "./media/characters/azula/back.svg",
  24069. extra: 3169 / 2822,
  24070. bottom: 150.6 / 3321
  24071. }
  24072. },
  24073. },
  24074. [
  24075. {
  24076. name: "Normal",
  24077. height: math.unit(7 + 5 / 12, "feet"),
  24078. default: true
  24079. },
  24080. {
  24081. name: "Big",
  24082. height: math.unit(20, "feet")
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24088. {
  24089. front: {
  24090. height: math.unit(5 + 1 / 12, "feet"),
  24091. weight: math.unit(110, "lb"),
  24092. name: "Front",
  24093. image: {
  24094. source: "./media/characters/rupert/front.svg",
  24095. extra: 1549 / 1495,
  24096. bottom: 54.2 / 1604.4
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(5 + 1 / 12, "feet"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24110. {
  24111. front: {
  24112. height: math.unit(8 + 4 / 12, "feet"),
  24113. weight: math.unit(350, "lb"),
  24114. name: "Front",
  24115. image: {
  24116. source: "./media/characters/sheera-castellar/front.svg",
  24117. extra: 1957 / 1894,
  24118. bottom: 26.97 / 1975.017
  24119. }
  24120. },
  24121. side: {
  24122. height: math.unit(8 + 4 / 12, "feet"),
  24123. weight: math.unit(350, "lb"),
  24124. name: "Side",
  24125. image: {
  24126. source: "./media/characters/sheera-castellar/side.svg",
  24127. extra: 1957 / 1894
  24128. }
  24129. },
  24130. back: {
  24131. height: math.unit(8 + 4 / 12, "feet"),
  24132. weight: math.unit(350, "lb"),
  24133. name: "Back",
  24134. image: {
  24135. source: "./media/characters/sheera-castellar/back.svg",
  24136. extra: 1957 / 1894
  24137. }
  24138. },
  24139. angled: {
  24140. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24141. weight: math.unit(350, "lb"),
  24142. name: "Angled",
  24143. image: {
  24144. source: "./media/characters/sheera-castellar/angled.svg",
  24145. extra: 1807 / 1707,
  24146. bottom: 68 / 1875
  24147. }
  24148. },
  24149. genitals: {
  24150. height: math.unit(2.2, "feet"),
  24151. name: "Genitals",
  24152. image: {
  24153. source: "./media/characters/sheera-castellar/genitals.svg"
  24154. }
  24155. },
  24156. taur: {
  24157. height: math.unit(10 + 6/12, "feet"),
  24158. name: "Taur",
  24159. image: {
  24160. source: "./media/characters/sheera-castellar/taur.svg",
  24161. extra: 2017/1909,
  24162. bottom: 185/2202
  24163. }
  24164. },
  24165. },
  24166. [
  24167. {
  24168. name: "Normal",
  24169. height: math.unit(8 + 4 / 12, "feet")
  24170. },
  24171. {
  24172. name: "Macro",
  24173. height: math.unit(150, "feet"),
  24174. default: true
  24175. },
  24176. {
  24177. name: "Macro+",
  24178. height: math.unit(800, "feet")
  24179. },
  24180. ]
  24181. ))
  24182. characterMakers.push(() => makeCharacter(
  24183. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24184. {
  24185. front: {
  24186. height: math.unit(6, "feet"),
  24187. weight: math.unit(150, "lb"),
  24188. name: "Front",
  24189. image: {
  24190. source: "./media/characters/jaipur/front.svg",
  24191. extra: 3860 / 3731,
  24192. bottom: 287 / 4140
  24193. }
  24194. },
  24195. back: {
  24196. height: math.unit(6, "feet"),
  24197. weight: math.unit(150, "lb"),
  24198. name: "Back",
  24199. image: {
  24200. source: "./media/characters/jaipur/back.svg",
  24201. extra: 1637/1561,
  24202. bottom: 154/1791
  24203. }
  24204. },
  24205. },
  24206. [
  24207. {
  24208. name: "Normal",
  24209. height: math.unit(1.85, "meters"),
  24210. default: true
  24211. },
  24212. {
  24213. name: "Macro",
  24214. height: math.unit(150, "meters")
  24215. },
  24216. {
  24217. name: "Macro+",
  24218. height: math.unit(0.5, "miles")
  24219. },
  24220. {
  24221. name: "Macro++",
  24222. height: math.unit(2.5, "miles")
  24223. },
  24224. {
  24225. name: "Macro+++",
  24226. height: math.unit(12, "miles")
  24227. },
  24228. {
  24229. name: "Macro++++",
  24230. height: math.unit(120, "miles")
  24231. },
  24232. {
  24233. name: "Macro+++++",
  24234. height: math.unit(1200, "miles")
  24235. },
  24236. ]
  24237. ))
  24238. characterMakers.push(() => makeCharacter(
  24239. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24240. {
  24241. front: {
  24242. height: math.unit(6, "feet"),
  24243. weight: math.unit(150, "lb"),
  24244. name: "Front",
  24245. image: {
  24246. source: "./media/characters/sheila-wolf/front.svg",
  24247. extra: 1931 / 1808,
  24248. bottom: 29.5 / 1960
  24249. }
  24250. },
  24251. dick: {
  24252. height: math.unit(1.464, "feet"),
  24253. name: "Dick",
  24254. image: {
  24255. source: "./media/characters/sheila-wolf/dick.svg"
  24256. }
  24257. },
  24258. muzzle: {
  24259. height: math.unit(0.513, "feet"),
  24260. name: "Muzzle",
  24261. image: {
  24262. source: "./media/characters/sheila-wolf/muzzle.svg"
  24263. }
  24264. },
  24265. },
  24266. [
  24267. {
  24268. name: "Macro",
  24269. height: math.unit(70, "feet"),
  24270. default: true
  24271. },
  24272. ]
  24273. ))
  24274. characterMakers.push(() => makeCharacter(
  24275. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24276. {
  24277. front: {
  24278. height: math.unit(32, "meters"),
  24279. weight: math.unit(300000, "kg"),
  24280. name: "Front",
  24281. image: {
  24282. source: "./media/characters/almor/front.svg",
  24283. extra: 1408 / 1322,
  24284. bottom: 94.6 / 1506.5
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Macro",
  24291. height: math.unit(32, "meters"),
  24292. default: true
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24298. {
  24299. front: {
  24300. height: math.unit(7, "feet"),
  24301. weight: math.unit(200, "lb"),
  24302. name: "Front",
  24303. image: {
  24304. source: "./media/characters/silver/front.svg",
  24305. extra: 472.1 / 450.5,
  24306. bottom: 26.5 / 499.424
  24307. }
  24308. },
  24309. },
  24310. [
  24311. {
  24312. name: "Normal",
  24313. height: math.unit(7, "feet"),
  24314. default: true
  24315. },
  24316. {
  24317. name: "Macro",
  24318. height: math.unit(800, "feet")
  24319. },
  24320. {
  24321. name: "Megamacro",
  24322. height: math.unit(250, "miles")
  24323. },
  24324. ]
  24325. ))
  24326. characterMakers.push(() => makeCharacter(
  24327. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24328. {
  24329. front: {
  24330. height: math.unit(6, "feet"),
  24331. weight: math.unit(150, "lb"),
  24332. name: "Front",
  24333. image: {
  24334. source: "./media/characters/pliskin/front.svg",
  24335. extra: 1469 / 1359,
  24336. bottom: 70 / 1540
  24337. }
  24338. },
  24339. },
  24340. [
  24341. {
  24342. name: "Micro",
  24343. height: math.unit(3, "inches")
  24344. },
  24345. {
  24346. name: "Normal",
  24347. height: math.unit(5 + 11 / 12, "feet"),
  24348. default: true
  24349. },
  24350. {
  24351. name: "Macro",
  24352. height: math.unit(120, "feet")
  24353. },
  24354. ]
  24355. ))
  24356. characterMakers.push(() => makeCharacter(
  24357. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24358. {
  24359. front: {
  24360. height: math.unit(6, "feet"),
  24361. weight: math.unit(150, "lb"),
  24362. name: "Front",
  24363. image: {
  24364. source: "./media/characters/sammy/front.svg",
  24365. extra: 1193 / 1089,
  24366. bottom: 30.5 / 1226
  24367. }
  24368. },
  24369. },
  24370. [
  24371. {
  24372. name: "Macro",
  24373. height: math.unit(1700, "feet"),
  24374. default: true
  24375. },
  24376. {
  24377. name: "Examacro",
  24378. height: math.unit(2.5e9, "lightyears")
  24379. },
  24380. ]
  24381. ))
  24382. characterMakers.push(() => makeCharacter(
  24383. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24384. {
  24385. front: {
  24386. height: math.unit(21, "meters"),
  24387. weight: math.unit(12, "tonnes"),
  24388. name: "Front",
  24389. image: {
  24390. source: "./media/characters/kuru/front.svg",
  24391. extra: 4301 / 3785,
  24392. bottom: 371.3 / 4691
  24393. }
  24394. },
  24395. },
  24396. [
  24397. {
  24398. name: "Macro",
  24399. height: math.unit(21, "meters"),
  24400. default: true
  24401. },
  24402. ]
  24403. ))
  24404. characterMakers.push(() => makeCharacter(
  24405. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24406. {
  24407. front: {
  24408. height: math.unit(23, "meters"),
  24409. weight: math.unit(12.2, "tonnes"),
  24410. name: "Front",
  24411. image: {
  24412. source: "./media/characters/rakka/front.svg",
  24413. extra: 4670 / 4169,
  24414. bottom: 301 / 4968.7
  24415. }
  24416. },
  24417. },
  24418. [
  24419. {
  24420. name: "Macro",
  24421. height: math.unit(23, "meters"),
  24422. default: true
  24423. },
  24424. ]
  24425. ))
  24426. characterMakers.push(() => makeCharacter(
  24427. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24428. {
  24429. front: {
  24430. height: math.unit(6, "feet"),
  24431. weight: math.unit(150, "lb"),
  24432. name: "Front",
  24433. image: {
  24434. source: "./media/characters/rhys-feline/front.svg",
  24435. extra: 2488 / 2308,
  24436. bottom: 35.67 / 2519.19
  24437. }
  24438. },
  24439. },
  24440. [
  24441. {
  24442. name: "Really Small",
  24443. height: math.unit(1, "nm")
  24444. },
  24445. {
  24446. name: "Micro",
  24447. height: math.unit(4, "inches")
  24448. },
  24449. {
  24450. name: "Normal",
  24451. height: math.unit(4 + 10 / 12, "feet"),
  24452. default: true
  24453. },
  24454. {
  24455. name: "Macro",
  24456. height: math.unit(100, "feet")
  24457. },
  24458. {
  24459. name: "Megamacto",
  24460. height: math.unit(50, "miles")
  24461. },
  24462. ]
  24463. ))
  24464. characterMakers.push(() => makeCharacter(
  24465. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24466. {
  24467. side: {
  24468. height: math.unit(30, "feet"),
  24469. weight: math.unit(35000, "kg"),
  24470. name: "Side",
  24471. image: {
  24472. source: "./media/characters/alydar/side.svg",
  24473. extra: 234 / 222,
  24474. bottom: 6.5 / 241
  24475. }
  24476. },
  24477. front: {
  24478. height: math.unit(30, "feet"),
  24479. weight: math.unit(35000, "kg"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/alydar/front.svg",
  24483. extra: 223.37 / 210.2,
  24484. bottom: 22.3 / 246.76
  24485. }
  24486. },
  24487. top: {
  24488. height: math.unit(64.54, "feet"),
  24489. weight: math.unit(35000, "kg"),
  24490. name: "Top",
  24491. image: {
  24492. source: "./media/characters/alydar/top.svg"
  24493. }
  24494. },
  24495. anthro: {
  24496. height: math.unit(30, "feet"),
  24497. weight: math.unit(9000, "kg"),
  24498. name: "Anthro",
  24499. image: {
  24500. source: "./media/characters/alydar/anthro.svg",
  24501. extra: 432 / 421,
  24502. bottom: 7.18 / 440
  24503. }
  24504. },
  24505. maw: {
  24506. height: math.unit(11.693, "feet"),
  24507. name: "Maw",
  24508. image: {
  24509. source: "./media/characters/alydar/maw.svg"
  24510. }
  24511. },
  24512. head: {
  24513. height: math.unit(11.693, "feet"),
  24514. name: "Head",
  24515. image: {
  24516. source: "./media/characters/alydar/head.svg"
  24517. }
  24518. },
  24519. headAlt: {
  24520. height: math.unit(12.861, "feet"),
  24521. name: "Head (Alt)",
  24522. image: {
  24523. source: "./media/characters/alydar/head-alt.svg"
  24524. }
  24525. },
  24526. wing: {
  24527. height: math.unit(20.712, "feet"),
  24528. name: "Wing",
  24529. image: {
  24530. source: "./media/characters/alydar/wing.svg"
  24531. }
  24532. },
  24533. wingFeather: {
  24534. height: math.unit(9.662, "feet"),
  24535. name: "Wing Feather",
  24536. image: {
  24537. source: "./media/characters/alydar/wing-feather.svg"
  24538. }
  24539. },
  24540. countourFeather: {
  24541. height: math.unit(4.154, "feet"),
  24542. name: "Contour Feather",
  24543. image: {
  24544. source: "./media/characters/alydar/contour-feather.svg"
  24545. }
  24546. },
  24547. },
  24548. [
  24549. {
  24550. name: "Diplomatic",
  24551. height: math.unit(13, "feet"),
  24552. default: true
  24553. },
  24554. {
  24555. name: "Small",
  24556. height: math.unit(30, "feet")
  24557. },
  24558. {
  24559. name: "Normal",
  24560. height: math.unit(95, "feet"),
  24561. default: true
  24562. },
  24563. {
  24564. name: "Large",
  24565. height: math.unit(285, "feet")
  24566. },
  24567. {
  24568. name: "Incomprehensible",
  24569. height: math.unit(450, "megameters")
  24570. },
  24571. ]
  24572. ))
  24573. characterMakers.push(() => makeCharacter(
  24574. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24575. {
  24576. side: {
  24577. height: math.unit(11, "feet"),
  24578. weight: math.unit(1750, "kg"),
  24579. name: "Side",
  24580. image: {
  24581. source: "./media/characters/selicia/side.svg",
  24582. extra: 440 / 396,
  24583. bottom: 24.8 / 465.979
  24584. }
  24585. },
  24586. maw: {
  24587. height: math.unit(4.665, "feet"),
  24588. name: "Maw",
  24589. image: {
  24590. source: "./media/characters/selicia/maw.svg"
  24591. }
  24592. },
  24593. },
  24594. [
  24595. {
  24596. name: "Normal",
  24597. height: math.unit(11, "feet"),
  24598. default: true
  24599. },
  24600. ]
  24601. ))
  24602. characterMakers.push(() => makeCharacter(
  24603. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24604. {
  24605. side: {
  24606. height: math.unit(2 + 6 / 12, "feet"),
  24607. weight: math.unit(30, "lb"),
  24608. name: "Side",
  24609. image: {
  24610. source: "./media/characters/layla/side.svg",
  24611. extra: 244 / 188,
  24612. bottom: 18.2 / 262.1
  24613. }
  24614. },
  24615. back: {
  24616. height: math.unit(2 + 6 / 12, "feet"),
  24617. weight: math.unit(30, "lb"),
  24618. name: "Back",
  24619. image: {
  24620. source: "./media/characters/layla/back.svg",
  24621. extra: 308 / 241.5,
  24622. bottom: 8.9 / 316.8
  24623. }
  24624. },
  24625. cumming: {
  24626. height: math.unit(2 + 6 / 12, "feet"),
  24627. weight: math.unit(30, "lb"),
  24628. name: "Cumming",
  24629. image: {
  24630. source: "./media/characters/layla/cumming.svg",
  24631. extra: 342 / 279,
  24632. bottom: 595 / 938
  24633. }
  24634. },
  24635. dickFlaccid: {
  24636. height: math.unit(2.595, "feet"),
  24637. name: "Flaccid Genitals",
  24638. image: {
  24639. source: "./media/characters/layla/dick-flaccid.svg"
  24640. }
  24641. },
  24642. dickErect: {
  24643. height: math.unit(2.359, "feet"),
  24644. name: "Erect Genitals",
  24645. image: {
  24646. source: "./media/characters/layla/dick-erect.svg"
  24647. }
  24648. },
  24649. dragon: {
  24650. height: math.unit(40, "feet"),
  24651. name: "Dragon",
  24652. image: {
  24653. source: "./media/characters/layla/dragon.svg",
  24654. extra: 610/535,
  24655. bottom: 367/977
  24656. }
  24657. },
  24658. taur: {
  24659. height: math.unit(30, "feet"),
  24660. name: "Taur",
  24661. image: {
  24662. source: "./media/characters/layla/taur.svg",
  24663. extra: 1268/1199,
  24664. bottom: 112/1380
  24665. }
  24666. },
  24667. },
  24668. [
  24669. {
  24670. name: "Micro",
  24671. height: math.unit(1, "inch")
  24672. },
  24673. {
  24674. name: "Small",
  24675. height: math.unit(1, "foot")
  24676. },
  24677. {
  24678. name: "Normal",
  24679. height: math.unit(2 + 6 / 12, "feet"),
  24680. default: true
  24681. },
  24682. {
  24683. name: "Macro",
  24684. height: math.unit(200, "feet")
  24685. },
  24686. {
  24687. name: "Megamacro",
  24688. height: math.unit(1000, "miles")
  24689. },
  24690. {
  24691. name: "Planetary",
  24692. height: math.unit(8000, "miles")
  24693. },
  24694. {
  24695. name: "True Layla",
  24696. height: math.unit(200000 * 7, "multiverses")
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24702. {
  24703. back: {
  24704. height: math.unit(10.5, "feet"),
  24705. weight: math.unit(800, "lb"),
  24706. name: "Back",
  24707. image: {
  24708. source: "./media/characters/knox/back.svg",
  24709. extra: 1486 / 1089,
  24710. bottom: 107 / 1601.4
  24711. }
  24712. },
  24713. side: {
  24714. height: math.unit(10.5, "feet"),
  24715. weight: math.unit(800, "lb"),
  24716. name: "Side",
  24717. image: {
  24718. source: "./media/characters/knox/side.svg",
  24719. extra: 244 / 218,
  24720. bottom: 14 / 260
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Compact",
  24727. height: math.unit(10.5, "feet"),
  24728. default: true
  24729. },
  24730. {
  24731. name: "Dynamax",
  24732. height: math.unit(210, "feet")
  24733. },
  24734. {
  24735. name: "Full Macro",
  24736. height: math.unit(850, "feet")
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(28, "feet"),
  24745. weight: math.unit(10500, "lb"),
  24746. name: "Front",
  24747. image: {
  24748. source: "./media/characters/kayda/front.svg",
  24749. extra: 1536 / 1428,
  24750. bottom: 68.7 / 1603
  24751. }
  24752. },
  24753. back: {
  24754. height: math.unit(28, "feet"),
  24755. weight: math.unit(10500, "lb"),
  24756. name: "Back",
  24757. image: {
  24758. source: "./media/characters/kayda/back.svg",
  24759. extra: 1557 / 1464,
  24760. bottom: 39.5 / 1597.49
  24761. }
  24762. },
  24763. dick: {
  24764. height: math.unit(3.858, "feet"),
  24765. name: "Dick",
  24766. image: {
  24767. source: "./media/characters/kayda/dick.svg"
  24768. }
  24769. },
  24770. },
  24771. [
  24772. {
  24773. name: "Macro",
  24774. height: math.unit(28, "feet"),
  24775. default: true
  24776. },
  24777. ]
  24778. ))
  24779. characterMakers.push(() => makeCharacter(
  24780. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24781. {
  24782. front: {
  24783. height: math.unit(10 + 11 / 12, "feet"),
  24784. weight: math.unit(1400, "lb"),
  24785. name: "Front",
  24786. image: {
  24787. source: "./media/characters/brian/front.svg",
  24788. extra: 737 / 692,
  24789. bottom: 55.4 / 785
  24790. }
  24791. },
  24792. },
  24793. [
  24794. {
  24795. name: "Normal",
  24796. height: math.unit(10 + 11 / 12, "feet"),
  24797. default: true
  24798. },
  24799. ]
  24800. ))
  24801. characterMakers.push(() => makeCharacter(
  24802. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24803. {
  24804. front: {
  24805. height: math.unit(5 + 8 / 12, "feet"),
  24806. weight: math.unit(140, "lb"),
  24807. name: "Front",
  24808. image: {
  24809. source: "./media/characters/khemri/front.svg",
  24810. extra: 4780 / 4059,
  24811. bottom: 80.1 / 4859.25
  24812. }
  24813. },
  24814. },
  24815. [
  24816. {
  24817. name: "Micro",
  24818. height: math.unit(6, "inches")
  24819. },
  24820. {
  24821. name: "Normal",
  24822. height: math.unit(5 + 8 / 12, "feet"),
  24823. default: true
  24824. },
  24825. ]
  24826. ))
  24827. characterMakers.push(() => makeCharacter(
  24828. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24829. {
  24830. front: {
  24831. height: math.unit(13, "feet"),
  24832. weight: math.unit(1700, "lb"),
  24833. name: "Front",
  24834. image: {
  24835. source: "./media/characters/felix-braveheart/front.svg",
  24836. extra: 1222 / 1157,
  24837. bottom: 53.2 / 1280
  24838. }
  24839. },
  24840. back: {
  24841. height: math.unit(13, "feet"),
  24842. weight: math.unit(1700, "lb"),
  24843. name: "Back",
  24844. image: {
  24845. source: "./media/characters/felix-braveheart/back.svg",
  24846. extra: 1277 / 1203,
  24847. bottom: 50.2 / 1327
  24848. }
  24849. },
  24850. feral: {
  24851. height: math.unit(6, "feet"),
  24852. weight: math.unit(400, "lb"),
  24853. name: "Feral",
  24854. image: {
  24855. source: "./media/characters/felix-braveheart/feral.svg",
  24856. extra: 682 / 625,
  24857. bottom: 6.9 / 688
  24858. }
  24859. },
  24860. },
  24861. [
  24862. {
  24863. name: "Normal",
  24864. height: math.unit(13, "feet"),
  24865. default: true
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24871. {
  24872. side: {
  24873. height: math.unit(5 + 11 / 12, "feet"),
  24874. weight: math.unit(1400, "lb"),
  24875. name: "Side",
  24876. image: {
  24877. source: "./media/characters/shadow-blade/side.svg",
  24878. extra: 1726 / 1267,
  24879. bottom: 58.4 / 1785
  24880. }
  24881. },
  24882. },
  24883. [
  24884. {
  24885. name: "Normal",
  24886. height: math.unit(5 + 11 / 12, "feet"),
  24887. default: true
  24888. },
  24889. ]
  24890. ))
  24891. characterMakers.push(() => makeCharacter(
  24892. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24893. {
  24894. front: {
  24895. height: math.unit(1 + 6 / 12, "feet"),
  24896. weight: math.unit(25, "lb"),
  24897. name: "Front",
  24898. image: {
  24899. source: "./media/characters/karla-halldor/front.svg",
  24900. extra: 1459 / 1383,
  24901. bottom: 12 / 1472
  24902. }
  24903. },
  24904. },
  24905. [
  24906. {
  24907. name: "Normal",
  24908. height: math.unit(1 + 6 / 12, "feet"),
  24909. default: true
  24910. },
  24911. ]
  24912. ))
  24913. characterMakers.push(() => makeCharacter(
  24914. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24915. {
  24916. front: {
  24917. height: math.unit(6 + 2 / 12, "feet"),
  24918. weight: math.unit(160, "lb"),
  24919. name: "Front",
  24920. image: {
  24921. source: "./media/characters/ariam/front.svg",
  24922. extra: 1073/976,
  24923. bottom: 52/1125
  24924. }
  24925. },
  24926. back: {
  24927. height: math.unit(6 + 2/12, "feet"),
  24928. weight: math.unit(160, "lb"),
  24929. name: "Back",
  24930. image: {
  24931. source: "./media/characters/ariam/back.svg",
  24932. extra: 1103/1023,
  24933. bottom: 9/1112
  24934. }
  24935. },
  24936. dressed: {
  24937. height: math.unit(6 + 2/12, "feet"),
  24938. weight: math.unit(160, "lb"),
  24939. name: "Dressed",
  24940. image: {
  24941. source: "./media/characters/ariam/dressed.svg",
  24942. extra: 1099/1009,
  24943. bottom: 25/1124
  24944. }
  24945. },
  24946. squatting: {
  24947. height: math.unit(4.1, "feet"),
  24948. weight: math.unit(160, "lb"),
  24949. name: "Squatting",
  24950. image: {
  24951. source: "./media/characters/ariam/squatting.svg",
  24952. extra: 2617 / 2112,
  24953. bottom: 61.2 / 2681,
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Normal",
  24960. height: math.unit(6 + 2 / 12, "feet"),
  24961. default: true
  24962. },
  24963. {
  24964. name: "Normal+",
  24965. height: math.unit(4, "meters")
  24966. },
  24967. {
  24968. name: "Macro",
  24969. height: math.unit(50, "meters")
  24970. },
  24971. {
  24972. name: "Macro+",
  24973. height: math.unit(100, "meters")
  24974. },
  24975. {
  24976. name: "Megamacro",
  24977. height: math.unit(20, "km")
  24978. },
  24979. {
  24980. name: "Caretaker",
  24981. height: math.unit(444, "megameters")
  24982. },
  24983. ]
  24984. ))
  24985. characterMakers.push(() => makeCharacter(
  24986. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24987. {
  24988. front: {
  24989. height: math.unit(1.67, "meters"),
  24990. weight: math.unit(140, "lb"),
  24991. name: "Front",
  24992. image: {
  24993. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24994. extra: 438 / 410,
  24995. bottom: 0.75 / 439
  24996. }
  24997. },
  24998. },
  24999. [
  25000. {
  25001. name: "Shrunken",
  25002. height: math.unit(7.6, "cm")
  25003. },
  25004. {
  25005. name: "Human Scale",
  25006. height: math.unit(1.67, "meters")
  25007. },
  25008. {
  25009. name: "Wolxi Scale",
  25010. height: math.unit(36.7, "meters"),
  25011. default: true
  25012. },
  25013. ]
  25014. ))
  25015. characterMakers.push(() => makeCharacter(
  25016. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25017. {
  25018. front: {
  25019. height: math.unit(1.73, "meters"),
  25020. weight: math.unit(240, "lb"),
  25021. name: "Front",
  25022. image: {
  25023. source: "./media/characters/izue-two-mothers/front.svg",
  25024. extra: 469 / 437,
  25025. bottom: 1.24 / 470.6
  25026. }
  25027. },
  25028. },
  25029. [
  25030. {
  25031. name: "Shrunken",
  25032. height: math.unit(7.86, "cm")
  25033. },
  25034. {
  25035. name: "Human Scale",
  25036. height: math.unit(1.73, "meters")
  25037. },
  25038. {
  25039. name: "Wolxi Scale",
  25040. height: math.unit(38, "meters"),
  25041. default: true
  25042. },
  25043. ]
  25044. ))
  25045. characterMakers.push(() => makeCharacter(
  25046. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25047. {
  25048. front: {
  25049. height: math.unit(1.55, "meters"),
  25050. weight: math.unit(120, "lb"),
  25051. name: "Front",
  25052. image: {
  25053. source: "./media/characters/teeku-love-shack/front.svg",
  25054. extra: 387 / 362,
  25055. bottom: 1.51 / 388
  25056. }
  25057. },
  25058. },
  25059. [
  25060. {
  25061. name: "Shrunken",
  25062. height: math.unit(7, "cm")
  25063. },
  25064. {
  25065. name: "Human Scale",
  25066. height: math.unit(1.55, "meters")
  25067. },
  25068. {
  25069. name: "Wolxi Scale",
  25070. height: math.unit(34.1, "meters"),
  25071. default: true
  25072. },
  25073. ]
  25074. ))
  25075. characterMakers.push(() => makeCharacter(
  25076. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25077. {
  25078. front: {
  25079. height: math.unit(1.83, "meters"),
  25080. weight: math.unit(135, "lb"),
  25081. name: "Front",
  25082. image: {
  25083. source: "./media/characters/dejma-the-red/front.svg",
  25084. extra: 480 / 458,
  25085. bottom: 1.8 / 482
  25086. }
  25087. },
  25088. },
  25089. [
  25090. {
  25091. name: "Shrunken",
  25092. height: math.unit(8.3, "cm")
  25093. },
  25094. {
  25095. name: "Human Scale",
  25096. height: math.unit(1.83, "meters")
  25097. },
  25098. {
  25099. name: "Wolxi Scale",
  25100. height: math.unit(40, "meters"),
  25101. default: true
  25102. },
  25103. ]
  25104. ))
  25105. characterMakers.push(() => makeCharacter(
  25106. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25107. {
  25108. front: {
  25109. height: math.unit(1.78, "meters"),
  25110. weight: math.unit(65, "kg"),
  25111. name: "Front",
  25112. image: {
  25113. source: "./media/characters/aki/front.svg",
  25114. extra: 452 / 415
  25115. }
  25116. },
  25117. frontNsfw: {
  25118. height: math.unit(1.78, "meters"),
  25119. weight: math.unit(65, "kg"),
  25120. name: "Front (NSFW)",
  25121. image: {
  25122. source: "./media/characters/aki/front-nsfw.svg",
  25123. extra: 452 / 415
  25124. }
  25125. },
  25126. back: {
  25127. height: math.unit(1.78, "meters"),
  25128. weight: math.unit(65, "kg"),
  25129. name: "Back",
  25130. image: {
  25131. source: "./media/characters/aki/back.svg",
  25132. extra: 452 / 415
  25133. }
  25134. },
  25135. rump: {
  25136. height: math.unit(2.05, "feet"),
  25137. name: "Rump",
  25138. image: {
  25139. source: "./media/characters/aki/rump.svg"
  25140. }
  25141. },
  25142. dick: {
  25143. height: math.unit(0.95, "feet"),
  25144. name: "Dick",
  25145. image: {
  25146. source: "./media/characters/aki/dick.svg"
  25147. }
  25148. },
  25149. },
  25150. [
  25151. {
  25152. name: "Micro",
  25153. height: math.unit(15, "cm")
  25154. },
  25155. {
  25156. name: "Normal",
  25157. height: math.unit(178, "cm"),
  25158. default: true
  25159. },
  25160. {
  25161. name: "Macro",
  25162. height: math.unit(214, "m")
  25163. },
  25164. {
  25165. name: "Macro+",
  25166. height: math.unit(534, "m")
  25167. },
  25168. ]
  25169. ))
  25170. characterMakers.push(() => makeCharacter(
  25171. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25172. {
  25173. front: {
  25174. height: math.unit(5 + 5 / 12, "feet"),
  25175. weight: math.unit(120, "lb"),
  25176. name: "Front",
  25177. image: {
  25178. source: "./media/characters/ari/front.svg",
  25179. extra: 1550/1471,
  25180. bottom: 39/1589
  25181. }
  25182. },
  25183. },
  25184. [
  25185. {
  25186. name: "Normal",
  25187. height: math.unit(5 + 5 / 12, "feet")
  25188. },
  25189. {
  25190. name: "Macro",
  25191. height: math.unit(100, "feet"),
  25192. default: true
  25193. },
  25194. {
  25195. name: "Megamacro",
  25196. height: math.unit(100, "miles")
  25197. },
  25198. {
  25199. name: "Gigamacro",
  25200. height: math.unit(80000, "miles")
  25201. },
  25202. ]
  25203. ))
  25204. characterMakers.push(() => makeCharacter(
  25205. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25206. {
  25207. side: {
  25208. height: math.unit(9, "feet"),
  25209. weight: math.unit(400, "kg"),
  25210. name: "Side",
  25211. image: {
  25212. source: "./media/characters/bolt/side.svg",
  25213. extra: 1126 / 896,
  25214. bottom: 60 / 1187.3,
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Micro",
  25221. height: math.unit(5, "inches")
  25222. },
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(9, "feet"),
  25226. default: true
  25227. },
  25228. {
  25229. name: "Macro",
  25230. height: math.unit(700, "feet")
  25231. },
  25232. {
  25233. name: "Max Size",
  25234. height: math.unit(1.52e22, "yottameters")
  25235. },
  25236. ]
  25237. ))
  25238. characterMakers.push(() => makeCharacter(
  25239. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25240. {
  25241. front: {
  25242. height: math.unit(4.3, "meters"),
  25243. weight: math.unit(3, "tons"),
  25244. name: "Front",
  25245. image: {
  25246. source: "./media/characters/draekon-sylviar/front.svg",
  25247. extra: 2072/1512,
  25248. bottom: 74/2146
  25249. }
  25250. },
  25251. back: {
  25252. height: math.unit(4.3, "meters"),
  25253. weight: math.unit(3, "tons"),
  25254. name: "Back",
  25255. image: {
  25256. source: "./media/characters/draekon-sylviar/back.svg",
  25257. extra: 1639/1483,
  25258. bottom: 41/1680
  25259. }
  25260. },
  25261. feral: {
  25262. height: math.unit(1.15, "meters"),
  25263. weight: math.unit(3, "tons"),
  25264. name: "Feral",
  25265. image: {
  25266. source: "./media/characters/draekon-sylviar/feral.svg",
  25267. extra: 1033/395,
  25268. bottom: 130/1163
  25269. }
  25270. },
  25271. maw: {
  25272. height: math.unit(1.3, "meters"),
  25273. name: "Maw",
  25274. image: {
  25275. source: "./media/characters/draekon-sylviar/maw.svg"
  25276. }
  25277. },
  25278. mawSeparated: {
  25279. height: math.unit(1.53, "meters"),
  25280. name: "Separated Maw",
  25281. image: {
  25282. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25283. }
  25284. },
  25285. tail: {
  25286. height: math.unit(1.15, "meters"),
  25287. name: "Tail",
  25288. image: {
  25289. source: "./media/characters/draekon-sylviar/tail.svg"
  25290. }
  25291. },
  25292. tailDick: {
  25293. height: math.unit(1.15, "meters"),
  25294. name: "Tail (Dick)",
  25295. image: {
  25296. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25297. }
  25298. },
  25299. tailDickSeparated: {
  25300. height: math.unit(1.19, "meters"),
  25301. name: "Tail (Separated Dick)",
  25302. image: {
  25303. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25304. }
  25305. },
  25306. slit: {
  25307. height: math.unit(1, "meters"),
  25308. name: "Slit",
  25309. image: {
  25310. source: "./media/characters/draekon-sylviar/slit.svg"
  25311. }
  25312. },
  25313. dick: {
  25314. height: math.unit(1.15, "meters"),
  25315. name: "Dick",
  25316. image: {
  25317. source: "./media/characters/draekon-sylviar/dick.svg"
  25318. }
  25319. },
  25320. dickSeparated: {
  25321. height: math.unit(1.1, "meters"),
  25322. name: "Separated Dick",
  25323. image: {
  25324. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25325. }
  25326. },
  25327. sheath: {
  25328. height: math.unit(1.15, "meters"),
  25329. name: "Sheath",
  25330. image: {
  25331. source: "./media/characters/draekon-sylviar/sheath.svg"
  25332. }
  25333. },
  25334. },
  25335. [
  25336. {
  25337. name: "Small",
  25338. height: math.unit(4.53 / 2, "meters"),
  25339. default: true
  25340. },
  25341. {
  25342. name: "Normal",
  25343. height: math.unit(4.53, "meters"),
  25344. default: true
  25345. },
  25346. {
  25347. name: "Large",
  25348. height: math.unit(4.53 * 2, "meters"),
  25349. },
  25350. ]
  25351. ))
  25352. characterMakers.push(() => makeCharacter(
  25353. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25354. {
  25355. front: {
  25356. height: math.unit(6 + 2 / 12, "feet"),
  25357. weight: math.unit(180, "lb"),
  25358. name: "Front",
  25359. image: {
  25360. source: "./media/characters/brawler/front.svg",
  25361. extra: 3301 / 3027,
  25362. bottom: 138 / 3439
  25363. }
  25364. },
  25365. },
  25366. [
  25367. {
  25368. name: "Normal",
  25369. height: math.unit(6 + 2 / 12, "feet"),
  25370. default: true
  25371. },
  25372. ]
  25373. ))
  25374. characterMakers.push(() => makeCharacter(
  25375. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25376. {
  25377. front: {
  25378. height: math.unit(11, "feet"),
  25379. weight: math.unit(1000, "lb"),
  25380. name: "Front",
  25381. image: {
  25382. source: "./media/characters/alex/front.svg",
  25383. bottom: 44.5 / 620
  25384. }
  25385. },
  25386. },
  25387. [
  25388. {
  25389. name: "Micro",
  25390. height: math.unit(5, "inches")
  25391. },
  25392. {
  25393. name: "Normal",
  25394. height: math.unit(11, "feet"),
  25395. default: true
  25396. },
  25397. {
  25398. name: "Macro",
  25399. height: math.unit(9.5e9, "feet")
  25400. },
  25401. {
  25402. name: "Max Size",
  25403. height: math.unit(1.4e283, "yottameters")
  25404. },
  25405. ]
  25406. ))
  25407. characterMakers.push(() => makeCharacter(
  25408. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25409. {
  25410. female: {
  25411. height: math.unit(29.9, "m"),
  25412. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25413. name: "Female",
  25414. image: {
  25415. source: "./media/characters/zenari/female.svg",
  25416. extra: 3281.6 / 3217,
  25417. bottom: 72.2 / 3353
  25418. }
  25419. },
  25420. male: {
  25421. height: math.unit(27.7, "m"),
  25422. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25423. name: "Male",
  25424. image: {
  25425. source: "./media/characters/zenari/male.svg",
  25426. extra: 3008 / 2991,
  25427. bottom: 54.6 / 3069
  25428. }
  25429. },
  25430. },
  25431. [
  25432. {
  25433. name: "Macro",
  25434. height: math.unit(29.7, "meters"),
  25435. default: true
  25436. },
  25437. ]
  25438. ))
  25439. characterMakers.push(() => makeCharacter(
  25440. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25441. {
  25442. female: {
  25443. height: math.unit(23.8, "m"),
  25444. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25445. name: "Female",
  25446. image: {
  25447. source: "./media/characters/mactarian/female.svg",
  25448. extra: 2662 / 2569,
  25449. bottom: 73 / 2736
  25450. }
  25451. },
  25452. male: {
  25453. height: math.unit(23.8, "m"),
  25454. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25455. name: "Male",
  25456. image: {
  25457. source: "./media/characters/mactarian/male.svg",
  25458. extra: 2673 / 2600,
  25459. bottom: 76 / 2750
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Macro",
  25466. height: math.unit(23.8, "meters"),
  25467. default: true
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25473. {
  25474. female: {
  25475. height: math.unit(19.3, "m"),
  25476. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25477. name: "Female",
  25478. image: {
  25479. source: "./media/characters/umok/female.svg",
  25480. extra: 2186 / 2078,
  25481. bottom: 87 / 2277
  25482. }
  25483. },
  25484. male: {
  25485. height: math.unit(19.5, "m"),
  25486. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25487. name: "Male",
  25488. image: {
  25489. source: "./media/characters/umok/male.svg",
  25490. extra: 2233 / 2140,
  25491. bottom: 24.4 / 2258
  25492. }
  25493. },
  25494. },
  25495. [
  25496. {
  25497. name: "Macro",
  25498. height: math.unit(19.3, "meters"),
  25499. default: true
  25500. },
  25501. ]
  25502. ))
  25503. characterMakers.push(() => makeCharacter(
  25504. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25505. {
  25506. female: {
  25507. height: math.unit(26.15, "m"),
  25508. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25509. name: "Female",
  25510. image: {
  25511. source: "./media/characters/joraxian/female.svg",
  25512. extra: 2912 / 2824,
  25513. bottom: 36 / 2956
  25514. }
  25515. },
  25516. male: {
  25517. height: math.unit(25.4, "m"),
  25518. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25519. name: "Male",
  25520. image: {
  25521. source: "./media/characters/joraxian/male.svg",
  25522. extra: 2877 / 2721,
  25523. bottom: 82 / 2967
  25524. }
  25525. },
  25526. },
  25527. [
  25528. {
  25529. name: "Macro",
  25530. height: math.unit(26.15, "meters"),
  25531. default: true
  25532. },
  25533. ]
  25534. ))
  25535. characterMakers.push(() => makeCharacter(
  25536. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25537. {
  25538. female: {
  25539. height: math.unit(21.6, "m"),
  25540. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25541. name: "Female",
  25542. image: {
  25543. source: "./media/characters/sthara/female.svg",
  25544. extra: 2516 / 2347,
  25545. bottom: 21.5 / 2537
  25546. }
  25547. },
  25548. male: {
  25549. height: math.unit(24, "m"),
  25550. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25551. name: "Male",
  25552. image: {
  25553. source: "./media/characters/sthara/male.svg",
  25554. extra: 2732 / 2607,
  25555. bottom: 23 / 2732
  25556. }
  25557. },
  25558. },
  25559. [
  25560. {
  25561. name: "Macro",
  25562. height: math.unit(21.6, "meters"),
  25563. default: true
  25564. },
  25565. ]
  25566. ))
  25567. characterMakers.push(() => makeCharacter(
  25568. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25569. {
  25570. front: {
  25571. height: math.unit(6 + 4 / 12, "feet"),
  25572. weight: math.unit(175, "lb"),
  25573. name: "Front",
  25574. image: {
  25575. source: "./media/characters/luka-bryzant/front.svg",
  25576. extra: 311 / 289,
  25577. bottom: 4 / 315
  25578. }
  25579. },
  25580. back: {
  25581. height: math.unit(6 + 4 / 12, "feet"),
  25582. weight: math.unit(175, "lb"),
  25583. name: "Back",
  25584. image: {
  25585. source: "./media/characters/luka-bryzant/back.svg",
  25586. extra: 311 / 289,
  25587. bottom: 3.8 / 313.7
  25588. }
  25589. },
  25590. },
  25591. [
  25592. {
  25593. name: "Micro",
  25594. height: math.unit(10, "inches")
  25595. },
  25596. {
  25597. name: "Normal",
  25598. height: math.unit(6 + 4 / 12, "feet"),
  25599. default: true
  25600. },
  25601. {
  25602. name: "Large",
  25603. height: math.unit(12, "feet")
  25604. },
  25605. ]
  25606. ))
  25607. characterMakers.push(() => makeCharacter(
  25608. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25609. {
  25610. front: {
  25611. height: math.unit(5 + 7 / 12, "feet"),
  25612. weight: math.unit(185, "lb"),
  25613. name: "Front",
  25614. image: {
  25615. source: "./media/characters/aman-aquila/front.svg",
  25616. extra: 1013 / 976,
  25617. bottom: 45.6 / 1057
  25618. }
  25619. },
  25620. side: {
  25621. height: math.unit(5 + 7 / 12, "feet"),
  25622. weight: math.unit(185, "lb"),
  25623. name: "Side",
  25624. image: {
  25625. source: "./media/characters/aman-aquila/side.svg",
  25626. extra: 1054 / 1011,
  25627. bottom: 15 / 1070
  25628. }
  25629. },
  25630. back: {
  25631. height: math.unit(5 + 7 / 12, "feet"),
  25632. weight: math.unit(185, "lb"),
  25633. name: "Back",
  25634. image: {
  25635. source: "./media/characters/aman-aquila/back.svg",
  25636. extra: 1026 / 970,
  25637. bottom: 12 / 1039
  25638. }
  25639. },
  25640. head: {
  25641. height: math.unit(1.211, "feet"),
  25642. name: "Head",
  25643. image: {
  25644. source: "./media/characters/aman-aquila/head.svg",
  25645. }
  25646. },
  25647. },
  25648. [
  25649. {
  25650. name: "Minimicro",
  25651. height: math.unit(0.057, "inches")
  25652. },
  25653. {
  25654. name: "Micro",
  25655. height: math.unit(7, "inches")
  25656. },
  25657. {
  25658. name: "Mini",
  25659. height: math.unit(3 + 7 / 12, "feet")
  25660. },
  25661. {
  25662. name: "Normal",
  25663. height: math.unit(5 + 7 / 12, "feet"),
  25664. default: true
  25665. },
  25666. {
  25667. name: "Macro",
  25668. height: math.unit(157 + 7 / 12, "feet")
  25669. },
  25670. {
  25671. name: "Megamacro",
  25672. height: math.unit(1557 + 7 / 12, "feet")
  25673. },
  25674. {
  25675. name: "Gigamacro",
  25676. height: math.unit(15557 + 7 / 12, "feet")
  25677. },
  25678. ]
  25679. ))
  25680. characterMakers.push(() => makeCharacter(
  25681. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25682. {
  25683. front: {
  25684. height: math.unit(3 + 2 / 12, "inches"),
  25685. weight: math.unit(0.3, "ounces"),
  25686. name: "Front",
  25687. image: {
  25688. source: "./media/characters/hiphae/front.svg",
  25689. extra: 1931 / 1683,
  25690. bottom: 24 / 1955
  25691. }
  25692. },
  25693. },
  25694. [
  25695. {
  25696. name: "Normal",
  25697. height: math.unit(3 + 1 / 2, "inches"),
  25698. default: true
  25699. },
  25700. ]
  25701. ))
  25702. characterMakers.push(() => makeCharacter(
  25703. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25704. {
  25705. front: {
  25706. height: math.unit(5 + 10 / 12, "feet"),
  25707. weight: math.unit(165, "lb"),
  25708. name: "Front",
  25709. image: {
  25710. source: "./media/characters/nicky/front.svg",
  25711. extra: 3144 / 2886,
  25712. bottom: 45.6 / 3192
  25713. }
  25714. },
  25715. back: {
  25716. height: math.unit(5 + 10 / 12, "feet"),
  25717. weight: math.unit(165, "lb"),
  25718. name: "Back",
  25719. image: {
  25720. source: "./media/characters/nicky/back.svg",
  25721. extra: 3055 / 2804,
  25722. bottom: 28.4 / 3087
  25723. }
  25724. },
  25725. frontclothed: {
  25726. height: math.unit(5 + 10 / 12, "feet"),
  25727. weight: math.unit(165, "lb"),
  25728. name: "Front-clothed",
  25729. image: {
  25730. source: "./media/characters/nicky/front-clothed.svg",
  25731. extra: 3184.9 / 2926.9,
  25732. bottom: 86.5 / 3239.9
  25733. }
  25734. },
  25735. foot: {
  25736. height: math.unit(1.16, "feet"),
  25737. name: "Foot",
  25738. image: {
  25739. source: "./media/characters/nicky/foot.svg"
  25740. }
  25741. },
  25742. feet: {
  25743. height: math.unit(1.34, "feet"),
  25744. name: "Feet",
  25745. image: {
  25746. source: "./media/characters/nicky/feet.svg"
  25747. }
  25748. },
  25749. maw: {
  25750. height: math.unit(0.9, "feet"),
  25751. name: "Maw",
  25752. image: {
  25753. source: "./media/characters/nicky/maw.svg"
  25754. }
  25755. },
  25756. },
  25757. [
  25758. {
  25759. name: "Normal",
  25760. height: math.unit(5 + 10 / 12, "feet"),
  25761. default: true
  25762. },
  25763. {
  25764. name: "Macro",
  25765. height: math.unit(60, "feet")
  25766. },
  25767. {
  25768. name: "Megamacro",
  25769. height: math.unit(1, "mile")
  25770. },
  25771. ]
  25772. ))
  25773. characterMakers.push(() => makeCharacter(
  25774. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25775. {
  25776. side: {
  25777. height: math.unit(10, "feet"),
  25778. weight: math.unit(600, "lb"),
  25779. name: "Side",
  25780. image: {
  25781. source: "./media/characters/blair/side.svg",
  25782. bottom: 16.6 / 475,
  25783. extra: 458 / 431
  25784. }
  25785. },
  25786. },
  25787. [
  25788. {
  25789. name: "Micro",
  25790. height: math.unit(8, "inches")
  25791. },
  25792. {
  25793. name: "Normal",
  25794. height: math.unit(10, "feet"),
  25795. default: true
  25796. },
  25797. {
  25798. name: "Macro",
  25799. height: math.unit(180, "feet")
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25805. {
  25806. front: {
  25807. height: math.unit(5 + 4 / 12, "feet"),
  25808. weight: math.unit(125, "lb"),
  25809. name: "Front",
  25810. image: {
  25811. source: "./media/characters/fisher/front.svg",
  25812. extra: 444 / 390,
  25813. bottom: 2 / 444.8
  25814. }
  25815. },
  25816. },
  25817. [
  25818. {
  25819. name: "Micro",
  25820. height: math.unit(4, "inches")
  25821. },
  25822. {
  25823. name: "Normal",
  25824. height: math.unit(5 + 4 / 12, "feet"),
  25825. default: true
  25826. },
  25827. {
  25828. name: "Macro",
  25829. height: math.unit(100, "feet")
  25830. },
  25831. ]
  25832. ))
  25833. characterMakers.push(() => makeCharacter(
  25834. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25835. {
  25836. front: {
  25837. height: math.unit(6.71, "feet"),
  25838. weight: math.unit(200, "lb"),
  25839. capacity: math.unit(1000000, "people"),
  25840. name: "Front",
  25841. image: {
  25842. source: "./media/characters/gliss/front.svg",
  25843. extra: 2347 / 2231,
  25844. bottom: 113 / 2462
  25845. }
  25846. },
  25847. hammerspaceSize: {
  25848. height: math.unit(6.71 * 717, "feet"),
  25849. weight: math.unit(200, "lb"),
  25850. capacity: math.unit(1000000, "people"),
  25851. name: "Hammerspace Size",
  25852. image: {
  25853. source: "./media/characters/gliss/front.svg",
  25854. extra: 2347 / 2231,
  25855. bottom: 113 / 2462
  25856. }
  25857. },
  25858. },
  25859. [
  25860. {
  25861. name: "Normal",
  25862. height: math.unit(6.71, "feet"),
  25863. default: true
  25864. },
  25865. ]
  25866. ))
  25867. characterMakers.push(() => makeCharacter(
  25868. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25869. {
  25870. side: {
  25871. height: math.unit(1.44, "m"),
  25872. weight: math.unit(80, "kg"),
  25873. name: "Side",
  25874. image: {
  25875. source: "./media/characters/dune-anderson/side.svg",
  25876. bottom: 49 / 1426
  25877. }
  25878. },
  25879. },
  25880. [
  25881. {
  25882. name: "Wolf-sized",
  25883. height: math.unit(1.44, "meters")
  25884. },
  25885. {
  25886. name: "Normal",
  25887. height: math.unit(5.05, "meters"),
  25888. default: true
  25889. },
  25890. {
  25891. name: "Big",
  25892. height: math.unit(14.4, "meters")
  25893. },
  25894. {
  25895. name: "Huge",
  25896. height: math.unit(144, "meters")
  25897. },
  25898. ]
  25899. ))
  25900. characterMakers.push(() => makeCharacter(
  25901. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25902. {
  25903. front: {
  25904. height: math.unit(7, "feet"),
  25905. weight: math.unit(425, "lb"),
  25906. name: "Front",
  25907. image: {
  25908. source: "./media/characters/hind/front.svg",
  25909. extra: 2091 / 1860,
  25910. bottom: 129 / 2220
  25911. }
  25912. },
  25913. back: {
  25914. height: math.unit(7, "feet"),
  25915. weight: math.unit(425, "lb"),
  25916. name: "Back",
  25917. image: {
  25918. source: "./media/characters/hind/back.svg",
  25919. extra: 2091 / 1860,
  25920. bottom: 24.6 / 2309
  25921. }
  25922. },
  25923. tail: {
  25924. height: math.unit(2.8, "feet"),
  25925. name: "Tail",
  25926. image: {
  25927. source: "./media/characters/hind/tail.svg"
  25928. }
  25929. },
  25930. head: {
  25931. height: math.unit(2.55, "feet"),
  25932. name: "Head",
  25933. image: {
  25934. source: "./media/characters/hind/head.svg"
  25935. }
  25936. },
  25937. },
  25938. [
  25939. {
  25940. name: "XS",
  25941. height: math.unit(0.7, "feet")
  25942. },
  25943. {
  25944. name: "Normal",
  25945. height: math.unit(7, "feet"),
  25946. default: true
  25947. },
  25948. {
  25949. name: "XL",
  25950. height: math.unit(70, "feet")
  25951. },
  25952. ]
  25953. ))
  25954. characterMakers.push(() => makeCharacter(
  25955. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25956. {
  25957. front: {
  25958. height: math.unit(2.1, "meters"),
  25959. weight: math.unit(150, "lb"),
  25960. name: "Front",
  25961. image: {
  25962. source: "./media/characters/tharquench-sizestealer/front.svg",
  25963. extra: 1605/1470,
  25964. bottom: 36/1641
  25965. }
  25966. },
  25967. frontAlt: {
  25968. height: math.unit(2.1, "meters"),
  25969. weight: math.unit(150, "lb"),
  25970. name: "Front (Alt)",
  25971. image: {
  25972. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25973. extra: 2318 / 2063,
  25974. bottom: 93.4 / 2410
  25975. }
  25976. },
  25977. },
  25978. [
  25979. {
  25980. name: "Nano",
  25981. height: math.unit(1, "mm")
  25982. },
  25983. {
  25984. name: "Micro",
  25985. height: math.unit(1, "cm")
  25986. },
  25987. {
  25988. name: "Normal",
  25989. height: math.unit(2.1, "meters"),
  25990. default: true
  25991. },
  25992. ]
  25993. ))
  25994. characterMakers.push(() => makeCharacter(
  25995. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25996. {
  25997. front: {
  25998. height: math.unit(7 + 5 / 12, "feet"),
  25999. weight: math.unit(357, "lb"),
  26000. name: "Front",
  26001. image: {
  26002. source: "./media/characters/solex-draconov/front.svg",
  26003. extra: 1993 / 1865,
  26004. bottom: 117 / 2111
  26005. }
  26006. },
  26007. },
  26008. [
  26009. {
  26010. name: "Natural Height",
  26011. height: math.unit(7 + 5 / 12, "feet"),
  26012. default: true
  26013. },
  26014. {
  26015. name: "Macro",
  26016. height: math.unit(350, "feet")
  26017. },
  26018. {
  26019. name: "Macro+",
  26020. height: math.unit(1000, "feet")
  26021. },
  26022. {
  26023. name: "Megamacro",
  26024. height: math.unit(20, "km")
  26025. },
  26026. {
  26027. name: "Megamacro+",
  26028. height: math.unit(1000, "km")
  26029. },
  26030. {
  26031. name: "Gigamacro",
  26032. height: math.unit(2.5, "Gm")
  26033. },
  26034. {
  26035. name: "Teramacro",
  26036. height: math.unit(15, "Tm")
  26037. },
  26038. {
  26039. name: "Galactic",
  26040. height: math.unit(30, "Zm")
  26041. },
  26042. {
  26043. name: "Universal",
  26044. height: math.unit(21000, "Ym")
  26045. },
  26046. {
  26047. name: "Omniversal",
  26048. height: math.unit(9.861e50, "Ym")
  26049. },
  26050. {
  26051. name: "Existential",
  26052. height: math.unit(1e300, "meters")
  26053. },
  26054. ]
  26055. ))
  26056. characterMakers.push(() => makeCharacter(
  26057. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26058. {
  26059. side: {
  26060. height: math.unit(25, "feet"),
  26061. weight: math.unit(90000, "lb"),
  26062. name: "Side",
  26063. image: {
  26064. source: "./media/characters/mandarax/side.svg",
  26065. extra: 614 / 332,
  26066. bottom: 55 / 630
  26067. }
  26068. },
  26069. lounging: {
  26070. height: math.unit(15.4, "feet"),
  26071. weight: math.unit(90000, "lb"),
  26072. name: "Lounging",
  26073. image: {
  26074. source: "./media/characters/mandarax/lounging.svg",
  26075. extra: 817/609,
  26076. bottom: 685/1502
  26077. }
  26078. },
  26079. head: {
  26080. height: math.unit(11.4, "feet"),
  26081. name: "Head",
  26082. image: {
  26083. source: "./media/characters/mandarax/head.svg"
  26084. }
  26085. },
  26086. belly: {
  26087. height: math.unit(33, "feet"),
  26088. name: "Belly",
  26089. capacity: math.unit(500, "people"),
  26090. image: {
  26091. source: "./media/characters/mandarax/belly.svg"
  26092. }
  26093. },
  26094. dick: {
  26095. height: math.unit(8.46, "feet"),
  26096. name: "Dick",
  26097. image: {
  26098. source: "./media/characters/mandarax/dick.svg"
  26099. }
  26100. },
  26101. top: {
  26102. height: math.unit(28, "meters"),
  26103. name: "Top",
  26104. image: {
  26105. source: "./media/characters/mandarax/top.svg"
  26106. }
  26107. },
  26108. },
  26109. [
  26110. {
  26111. name: "Normal",
  26112. height: math.unit(25, "feet"),
  26113. default: true
  26114. },
  26115. ]
  26116. ))
  26117. characterMakers.push(() => makeCharacter(
  26118. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26119. {
  26120. front: {
  26121. height: math.unit(5, "feet"),
  26122. weight: math.unit(90, "lb"),
  26123. name: "Front",
  26124. image: {
  26125. source: "./media/characters/pixil/front.svg",
  26126. extra: 2000 / 1618,
  26127. bottom: 12.3 / 2011
  26128. }
  26129. },
  26130. },
  26131. [
  26132. {
  26133. name: "Normal",
  26134. height: math.unit(5, "feet"),
  26135. default: true
  26136. },
  26137. {
  26138. name: "Megamacro",
  26139. height: math.unit(10, "miles"),
  26140. },
  26141. ]
  26142. ))
  26143. characterMakers.push(() => makeCharacter(
  26144. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26145. {
  26146. front: {
  26147. height: math.unit(7 + 2 / 12, "feet"),
  26148. weight: math.unit(200, "lb"),
  26149. name: "Front",
  26150. image: {
  26151. source: "./media/characters/angel/front.svg",
  26152. extra: 1830 / 1737,
  26153. bottom: 22.6 / 1854,
  26154. }
  26155. },
  26156. },
  26157. [
  26158. {
  26159. name: "Normal",
  26160. height: math.unit(7 + 2 / 12, "feet"),
  26161. default: true
  26162. },
  26163. {
  26164. name: "Macro",
  26165. height: math.unit(1000, "feet")
  26166. },
  26167. {
  26168. name: "Megamacro",
  26169. height: math.unit(2, "miles")
  26170. },
  26171. {
  26172. name: "Gigamacro",
  26173. height: math.unit(20, "earths")
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(5, "feet"),
  26182. weight: math.unit(180, "lb"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/mekana/front.svg",
  26186. extra: 1671 / 1605,
  26187. bottom: 3.5 / 1691
  26188. }
  26189. },
  26190. side: {
  26191. height: math.unit(5, "feet"),
  26192. weight: math.unit(180, "lb"),
  26193. name: "Side",
  26194. image: {
  26195. source: "./media/characters/mekana/side.svg",
  26196. extra: 1671 / 1605,
  26197. bottom: 3.5 / 1691
  26198. }
  26199. },
  26200. back: {
  26201. height: math.unit(5, "feet"),
  26202. weight: math.unit(180, "lb"),
  26203. name: "Back",
  26204. image: {
  26205. source: "./media/characters/mekana/back.svg",
  26206. extra: 1671 / 1605,
  26207. bottom: 3.5 / 1691
  26208. }
  26209. },
  26210. },
  26211. [
  26212. {
  26213. name: "Normal",
  26214. height: math.unit(5, "feet"),
  26215. default: true
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(4 + 6 / 12, "feet"),
  26224. weight: math.unit(80, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/pixie/front.svg",
  26228. extra: 1924 / 1825,
  26229. bottom: 22.4 / 1946
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(4 + 6 / 12, "feet"),
  26237. default: true
  26238. },
  26239. {
  26240. name: "Macro",
  26241. height: math.unit(40, "feet")
  26242. },
  26243. ]
  26244. ))
  26245. characterMakers.push(() => makeCharacter(
  26246. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26247. {
  26248. front: {
  26249. height: math.unit(2.1, "meters"),
  26250. weight: math.unit(200, "lb"),
  26251. name: "Front",
  26252. image: {
  26253. source: "./media/characters/the-lascivious/front.svg",
  26254. extra: 1 / 0.893,
  26255. bottom: 3.5 / 573.7
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Human Scale",
  26262. height: math.unit(2.1, "meters")
  26263. },
  26264. {
  26265. name: "Wolxi Scale",
  26266. height: math.unit(46.2, "m"),
  26267. default: true
  26268. },
  26269. {
  26270. name: "Boinker of Buildings",
  26271. height: math.unit(10, "km")
  26272. },
  26273. {
  26274. name: "Shagger of Skyscrapers",
  26275. height: math.unit(40, "km")
  26276. },
  26277. {
  26278. name: "Banger of Boroughs",
  26279. height: math.unit(4000, "km")
  26280. },
  26281. {
  26282. name: "Screwer of States",
  26283. height: math.unit(100000, "km")
  26284. },
  26285. {
  26286. name: "Pounder of Planets",
  26287. height: math.unit(2000000, "km")
  26288. },
  26289. ]
  26290. ))
  26291. characterMakers.push(() => makeCharacter(
  26292. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26293. {
  26294. front: {
  26295. height: math.unit(6, "feet"),
  26296. weight: math.unit(150, "lb"),
  26297. name: "Front",
  26298. image: {
  26299. source: "./media/characters/aj/front.svg",
  26300. extra: 2039 / 1562,
  26301. bottom: 40 / 2079
  26302. }
  26303. },
  26304. },
  26305. [
  26306. {
  26307. name: "Normal",
  26308. height: math.unit(11 + 6 / 12, "feet"),
  26309. default: true
  26310. },
  26311. {
  26312. name: "Megamacro",
  26313. height: math.unit(60, "megameters")
  26314. },
  26315. ]
  26316. ))
  26317. characterMakers.push(() => makeCharacter(
  26318. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26319. {
  26320. side: {
  26321. height: math.unit(31 + 8 / 12, "feet"),
  26322. weight: math.unit(75000, "kg"),
  26323. name: "Side",
  26324. image: {
  26325. source: "./media/characters/koros/side.svg",
  26326. extra: 1442 / 1297,
  26327. bottom: 122.7 / 1562
  26328. }
  26329. },
  26330. dicksKingsCrown: {
  26331. height: math.unit(6, "feet"),
  26332. name: "Dicks (King's Crown)",
  26333. image: {
  26334. source: "./media/characters/koros/dicks-kings-crown.svg"
  26335. }
  26336. },
  26337. dicksTailSet: {
  26338. height: math.unit(3, "feet"),
  26339. name: "Dicks (Tail Set)",
  26340. image: {
  26341. source: "./media/characters/koros/dicks-tail-set.svg"
  26342. }
  26343. },
  26344. dickCumming: {
  26345. height: math.unit(7.98, "feet"),
  26346. name: "Dick (Cumming)",
  26347. image: {
  26348. source: "./media/characters/koros/dick-cumming.svg"
  26349. }
  26350. },
  26351. dicksBack: {
  26352. height: math.unit(5.9, "feet"),
  26353. name: "Dicks (Back)",
  26354. image: {
  26355. source: "./media/characters/koros/dicks-back.svg"
  26356. }
  26357. },
  26358. dicksFront: {
  26359. height: math.unit(3.72, "feet"),
  26360. name: "Dicks (Front)",
  26361. image: {
  26362. source: "./media/characters/koros/dicks-front.svg"
  26363. }
  26364. },
  26365. dicksPeeking: {
  26366. height: math.unit(3.0, "feet"),
  26367. name: "Dicks (Peeking)",
  26368. image: {
  26369. source: "./media/characters/koros/dicks-peeking.svg"
  26370. }
  26371. },
  26372. eye: {
  26373. height: math.unit(1.7, "feet"),
  26374. name: "Eye",
  26375. image: {
  26376. source: "./media/characters/koros/eye.svg"
  26377. }
  26378. },
  26379. headFront: {
  26380. height: math.unit(11.69, "feet"),
  26381. name: "Head (Front)",
  26382. image: {
  26383. source: "./media/characters/koros/head-front.svg"
  26384. }
  26385. },
  26386. headSide: {
  26387. height: math.unit(14, "feet"),
  26388. name: "Head (Side)",
  26389. image: {
  26390. source: "./media/characters/koros/head-side.svg"
  26391. }
  26392. },
  26393. leg: {
  26394. height: math.unit(17, "feet"),
  26395. name: "Leg",
  26396. image: {
  26397. source: "./media/characters/koros/leg.svg"
  26398. }
  26399. },
  26400. mawSide: {
  26401. height: math.unit(12.8, "feet"),
  26402. name: "Maw (Side)",
  26403. image: {
  26404. source: "./media/characters/koros/maw-side.svg"
  26405. }
  26406. },
  26407. mawSpitting: {
  26408. height: math.unit(17, "feet"),
  26409. name: "Maw (Spitting)",
  26410. image: {
  26411. source: "./media/characters/koros/maw-spitting.svg"
  26412. }
  26413. },
  26414. slit: {
  26415. height: math.unit(2.8, "feet"),
  26416. name: "Slit",
  26417. image: {
  26418. source: "./media/characters/koros/slit.svg"
  26419. }
  26420. },
  26421. stomach: {
  26422. height: math.unit(6.8, "feet"),
  26423. capacity: math.unit(20, "people"),
  26424. name: "Stomach",
  26425. image: {
  26426. source: "./media/characters/koros/stomach.svg"
  26427. }
  26428. },
  26429. wingspanBottom: {
  26430. height: math.unit(114, "feet"),
  26431. name: "Wingspan (Bottom)",
  26432. image: {
  26433. source: "./media/characters/koros/wingspan-bottom.svg"
  26434. }
  26435. },
  26436. wingspanTop: {
  26437. height: math.unit(104, "feet"),
  26438. name: "Wingspan (Top)",
  26439. image: {
  26440. source: "./media/characters/koros/wingspan-top.svg"
  26441. }
  26442. },
  26443. },
  26444. [
  26445. {
  26446. name: "Normal",
  26447. height: math.unit(31 + 8 / 12, "feet"),
  26448. default: true
  26449. },
  26450. ]
  26451. ))
  26452. characterMakers.push(() => makeCharacter(
  26453. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26454. {
  26455. front: {
  26456. height: math.unit(18 + 5 / 12, "feet"),
  26457. weight: math.unit(3750, "kg"),
  26458. name: "Front",
  26459. image: {
  26460. source: "./media/characters/vexx/front.svg",
  26461. extra: 426 / 396,
  26462. bottom: 31.5 / 458
  26463. }
  26464. },
  26465. maw: {
  26466. height: math.unit(6, "feet"),
  26467. name: "Maw",
  26468. image: {
  26469. source: "./media/characters/vexx/maw.svg"
  26470. }
  26471. },
  26472. },
  26473. [
  26474. {
  26475. name: "Normal",
  26476. height: math.unit(18 + 5 / 12, "feet"),
  26477. default: true
  26478. },
  26479. ]
  26480. ))
  26481. characterMakers.push(() => makeCharacter(
  26482. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26483. {
  26484. front: {
  26485. height: math.unit(17 + 6 / 12, "feet"),
  26486. weight: math.unit(150, "lb"),
  26487. name: "Front",
  26488. image: {
  26489. source: "./media/characters/baadra/front.svg",
  26490. extra: 1694/1553,
  26491. bottom: 179/1873
  26492. }
  26493. },
  26494. frontAlt: {
  26495. height: math.unit(17 + 6 / 12, "feet"),
  26496. weight: math.unit(150, "lb"),
  26497. name: "Front (Alt)",
  26498. image: {
  26499. source: "./media/characters/baadra/front-alt.svg",
  26500. extra: 3137 / 2890,
  26501. bottom: 168.4 / 3305
  26502. }
  26503. },
  26504. back: {
  26505. height: math.unit(17 + 6 / 12, "feet"),
  26506. weight: math.unit(150, "lb"),
  26507. name: "Back",
  26508. image: {
  26509. source: "./media/characters/baadra/back.svg",
  26510. extra: 3142 / 2890,
  26511. bottom: 220 / 3371
  26512. }
  26513. },
  26514. head: {
  26515. height: math.unit(5.45, "feet"),
  26516. name: "Head",
  26517. image: {
  26518. source: "./media/characters/baadra/head.svg"
  26519. }
  26520. },
  26521. headAngry: {
  26522. height: math.unit(4.95, "feet"),
  26523. name: "Head (Angry)",
  26524. image: {
  26525. source: "./media/characters/baadra/head-angry.svg"
  26526. }
  26527. },
  26528. headOpen: {
  26529. height: math.unit(6, "feet"),
  26530. name: "Head (Open)",
  26531. image: {
  26532. source: "./media/characters/baadra/head-open.svg"
  26533. }
  26534. },
  26535. },
  26536. [
  26537. {
  26538. name: "Normal",
  26539. height: math.unit(17 + 6 / 12, "feet"),
  26540. default: true
  26541. },
  26542. ]
  26543. ))
  26544. characterMakers.push(() => makeCharacter(
  26545. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26546. {
  26547. front: {
  26548. height: math.unit(7 + 3 / 12, "feet"),
  26549. weight: math.unit(180, "lb"),
  26550. name: "Front",
  26551. image: {
  26552. source: "./media/characters/juri/front.svg",
  26553. extra: 1401 / 1237,
  26554. bottom: 18.5 / 1418
  26555. }
  26556. },
  26557. side: {
  26558. height: math.unit(7 + 3 / 12, "feet"),
  26559. weight: math.unit(180, "lb"),
  26560. name: "Side",
  26561. image: {
  26562. source: "./media/characters/juri/side.svg",
  26563. extra: 1424 / 1242,
  26564. bottom: 18.5 / 1447
  26565. }
  26566. },
  26567. sitting: {
  26568. height: math.unit(6, "feet"),
  26569. weight: math.unit(180, "lb"),
  26570. name: "Sitting",
  26571. image: {
  26572. source: "./media/characters/juri/sitting.svg",
  26573. extra: 1270 / 1143,
  26574. bottom: 100 / 1343
  26575. }
  26576. },
  26577. back: {
  26578. height: math.unit(7 + 3 / 12, "feet"),
  26579. weight: math.unit(180, "lb"),
  26580. name: "Back",
  26581. image: {
  26582. source: "./media/characters/juri/back.svg",
  26583. extra: 1377 / 1240,
  26584. bottom: 23.7 / 1405
  26585. }
  26586. },
  26587. maw: {
  26588. height: math.unit(2.8, "feet"),
  26589. name: "Maw",
  26590. image: {
  26591. source: "./media/characters/juri/maw.svg"
  26592. }
  26593. },
  26594. stomach: {
  26595. height: math.unit(0.89, "feet"),
  26596. capacity: math.unit(4, "liters"),
  26597. name: "Stomach",
  26598. image: {
  26599. source: "./media/characters/juri/stomach.svg"
  26600. }
  26601. },
  26602. },
  26603. [
  26604. {
  26605. name: "Normal",
  26606. height: math.unit(7 + 3 / 12, "feet"),
  26607. default: true
  26608. },
  26609. ]
  26610. ))
  26611. characterMakers.push(() => makeCharacter(
  26612. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26613. {
  26614. fox: {
  26615. height: math.unit(5 + 6 / 12, "feet"),
  26616. weight: math.unit(140, "lb"),
  26617. name: "Fox",
  26618. image: {
  26619. source: "./media/characters/maxene-sita/fox.svg",
  26620. extra: 146 / 138,
  26621. bottom: 2.1 / 148.19
  26622. }
  26623. },
  26624. foxLaying: {
  26625. height: math.unit(1.70, "feet"),
  26626. weight: math.unit(140, "lb"),
  26627. name: "Fox (Laying)",
  26628. image: {
  26629. source: "./media/characters/maxene-sita/fox-laying.svg",
  26630. extra: 910 / 572,
  26631. bottom: 71 / 981
  26632. }
  26633. },
  26634. kitsune: {
  26635. height: math.unit(10, "feet"),
  26636. weight: math.unit(800, "lb"),
  26637. name: "Kitsune",
  26638. image: {
  26639. source: "./media/characters/maxene-sita/kitsune.svg",
  26640. extra: 185 / 176,
  26641. bottom: 4.7 / 189.9
  26642. }
  26643. },
  26644. hellhound: {
  26645. height: math.unit(10, "feet"),
  26646. weight: math.unit(700, "lb"),
  26647. name: "Hellhound",
  26648. image: {
  26649. source: "./media/characters/maxene-sita/hellhound.svg",
  26650. extra: 1600 / 1545,
  26651. bottom: 81 / 1681
  26652. }
  26653. },
  26654. },
  26655. [
  26656. {
  26657. name: "Normal",
  26658. height: math.unit(5 + 6 / 12, "feet"),
  26659. default: true
  26660. },
  26661. ]
  26662. ))
  26663. characterMakers.push(() => makeCharacter(
  26664. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26665. {
  26666. front: {
  26667. height: math.unit(3 + 4 / 12, "feet"),
  26668. weight: math.unit(70, "lb"),
  26669. name: "Front",
  26670. image: {
  26671. source: "./media/characters/maia/front.svg",
  26672. extra: 227 / 219.5,
  26673. bottom: 40 / 267
  26674. }
  26675. },
  26676. back: {
  26677. height: math.unit(3 + 4 / 12, "feet"),
  26678. weight: math.unit(70, "lb"),
  26679. name: "Back",
  26680. image: {
  26681. source: "./media/characters/maia/back.svg",
  26682. extra: 237 / 225
  26683. }
  26684. },
  26685. },
  26686. [
  26687. {
  26688. name: "Normal",
  26689. height: math.unit(3 + 4 / 12, "feet"),
  26690. default: true
  26691. },
  26692. ]
  26693. ))
  26694. characterMakers.push(() => makeCharacter(
  26695. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26696. {
  26697. front: {
  26698. height: math.unit(5 + 10 / 12, "feet"),
  26699. weight: math.unit(197, "lb"),
  26700. name: "Front",
  26701. image: {
  26702. source: "./media/characters/jabaro/front.svg",
  26703. extra: 225 / 216,
  26704. bottom: 5.06 / 230
  26705. }
  26706. },
  26707. back: {
  26708. height: math.unit(5 + 10 / 12, "feet"),
  26709. weight: math.unit(197, "lb"),
  26710. name: "Back",
  26711. image: {
  26712. source: "./media/characters/jabaro/back.svg",
  26713. extra: 225 / 219,
  26714. bottom: 1.9 / 227
  26715. }
  26716. },
  26717. },
  26718. [
  26719. {
  26720. name: "Normal",
  26721. height: math.unit(5 + 10 / 12, "feet"),
  26722. default: true
  26723. },
  26724. ]
  26725. ))
  26726. characterMakers.push(() => makeCharacter(
  26727. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26728. {
  26729. front: {
  26730. height: math.unit(5 + 8 / 12, "feet"),
  26731. weight: math.unit(139, "lb"),
  26732. name: "Front",
  26733. image: {
  26734. source: "./media/characters/risa/front.svg",
  26735. extra: 270 / 260,
  26736. bottom: 11.2 / 282
  26737. }
  26738. },
  26739. back: {
  26740. height: math.unit(5 + 8 / 12, "feet"),
  26741. weight: math.unit(139, "lb"),
  26742. name: "Back",
  26743. image: {
  26744. source: "./media/characters/risa/back.svg",
  26745. extra: 264 / 255,
  26746. bottom: 4 / 268
  26747. }
  26748. },
  26749. },
  26750. [
  26751. {
  26752. name: "Normal",
  26753. height: math.unit(5 + 8 / 12, "feet"),
  26754. default: true
  26755. },
  26756. ]
  26757. ))
  26758. characterMakers.push(() => makeCharacter(
  26759. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26760. {
  26761. front: {
  26762. height: math.unit(2 + 11 / 12, "feet"),
  26763. weight: math.unit(30, "lb"),
  26764. name: "Front",
  26765. image: {
  26766. source: "./media/characters/weatley/front.svg",
  26767. bottom: 10.7 / 414,
  26768. extra: 403.5 / 362
  26769. }
  26770. },
  26771. back: {
  26772. height: math.unit(2 + 11 / 12, "feet"),
  26773. weight: math.unit(30, "lb"),
  26774. name: "Back",
  26775. image: {
  26776. source: "./media/characters/weatley/back.svg",
  26777. bottom: 10.7 / 414,
  26778. extra: 403.5 / 362
  26779. }
  26780. },
  26781. },
  26782. [
  26783. {
  26784. name: "Normal",
  26785. height: math.unit(2 + 11 / 12, "feet"),
  26786. default: true
  26787. },
  26788. ]
  26789. ))
  26790. characterMakers.push(() => makeCharacter(
  26791. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26792. {
  26793. front: {
  26794. height: math.unit(5 + 2 / 12, "feet"),
  26795. weight: math.unit(50, "kg"),
  26796. name: "Front",
  26797. image: {
  26798. source: "./media/characters/mercury-crescent/front.svg",
  26799. extra: 1088 / 1033,
  26800. bottom: 18.9 / 1109
  26801. }
  26802. },
  26803. },
  26804. [
  26805. {
  26806. name: "Normal",
  26807. height: math.unit(5 + 2 / 12, "feet"),
  26808. default: true
  26809. },
  26810. ]
  26811. ))
  26812. characterMakers.push(() => makeCharacter(
  26813. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26814. {
  26815. front: {
  26816. height: math.unit(2, "feet"),
  26817. weight: math.unit(15, "kg"),
  26818. name: "Front",
  26819. image: {
  26820. source: "./media/characters/diamond-jones/front.svg",
  26821. extra: 727/723,
  26822. bottom: 46/773
  26823. }
  26824. },
  26825. },
  26826. [
  26827. {
  26828. name: "Normal",
  26829. height: math.unit(2, "feet"),
  26830. default: true
  26831. },
  26832. ]
  26833. ))
  26834. characterMakers.push(() => makeCharacter(
  26835. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26836. {
  26837. front: {
  26838. height: math.unit(3, "feet"),
  26839. weight: math.unit(30, "kg"),
  26840. name: "Front",
  26841. image: {
  26842. source: "./media/characters/sweet-bit/front.svg",
  26843. extra: 675 / 567,
  26844. bottom: 27.7 / 703
  26845. }
  26846. },
  26847. },
  26848. [
  26849. {
  26850. name: "Normal",
  26851. height: math.unit(3, "feet"),
  26852. default: true
  26853. },
  26854. ]
  26855. ))
  26856. characterMakers.push(() => makeCharacter(
  26857. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26858. {
  26859. side: {
  26860. height: math.unit(9.178, "feet"),
  26861. weight: math.unit(500, "lb"),
  26862. name: "Side",
  26863. image: {
  26864. source: "./media/characters/umbrazen/side.svg",
  26865. extra: 1730 / 1473,
  26866. bottom: 34.6 / 1765
  26867. }
  26868. },
  26869. },
  26870. [
  26871. {
  26872. name: "Normal",
  26873. height: math.unit(9.178, "feet"),
  26874. default: true
  26875. },
  26876. ]
  26877. ))
  26878. characterMakers.push(() => makeCharacter(
  26879. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26880. {
  26881. front: {
  26882. height: math.unit(10, "feet"),
  26883. weight: math.unit(750, "lb"),
  26884. name: "Front",
  26885. image: {
  26886. source: "./media/characters/arlist/front.svg",
  26887. extra: 961 / 778,
  26888. bottom: 6.2 / 986
  26889. }
  26890. },
  26891. },
  26892. [
  26893. {
  26894. name: "Normal",
  26895. height: math.unit(10, "feet"),
  26896. default: true
  26897. },
  26898. ]
  26899. ))
  26900. characterMakers.push(() => makeCharacter(
  26901. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26902. {
  26903. front: {
  26904. height: math.unit(5 + 1 / 12, "feet"),
  26905. weight: math.unit(110, "lb"),
  26906. name: "Front",
  26907. image: {
  26908. source: "./media/characters/aradel/front.svg",
  26909. extra: 324 / 303,
  26910. bottom: 3.6 / 329.4
  26911. }
  26912. },
  26913. },
  26914. [
  26915. {
  26916. name: "Normal",
  26917. height: math.unit(5 + 1 / 12, "feet"),
  26918. default: true
  26919. },
  26920. ]
  26921. ))
  26922. characterMakers.push(() => makeCharacter(
  26923. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26924. {
  26925. dressed: {
  26926. height: math.unit(3 + 8 / 12, "feet"),
  26927. weight: math.unit(50, "lb"),
  26928. name: "Dressed",
  26929. image: {
  26930. source: "./media/characters/serryn/dressed.svg",
  26931. extra: 1792 / 1656,
  26932. bottom: 43.5 / 1840
  26933. }
  26934. },
  26935. nude: {
  26936. height: math.unit(3 + 8 / 12, "feet"),
  26937. weight: math.unit(50, "lb"),
  26938. name: "Nude",
  26939. image: {
  26940. source: "./media/characters/serryn/nude.svg",
  26941. extra: 1792 / 1656,
  26942. bottom: 43.5 / 1840
  26943. }
  26944. },
  26945. },
  26946. [
  26947. {
  26948. name: "Normal",
  26949. height: math.unit(3 + 8 / 12, "feet"),
  26950. default: true
  26951. },
  26952. ]
  26953. ))
  26954. characterMakers.push(() => makeCharacter(
  26955. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26956. {
  26957. front: {
  26958. height: math.unit(7 + 10 / 12, "feet"),
  26959. weight: math.unit(255, "lb"),
  26960. name: "Front",
  26961. image: {
  26962. source: "./media/characters/xavier-thyme/front.svg",
  26963. extra: 3733 / 3642,
  26964. bottom: 131 / 3869
  26965. }
  26966. },
  26967. frontRaven: {
  26968. height: math.unit(7 + 10 / 12, "feet"),
  26969. weight: math.unit(255, "lb"),
  26970. name: "Front (Raven)",
  26971. image: {
  26972. source: "./media/characters/xavier-thyme/front-raven.svg",
  26973. extra: 4385 / 3642,
  26974. bottom: 131 / 4517
  26975. }
  26976. },
  26977. },
  26978. [
  26979. {
  26980. name: "Normal",
  26981. height: math.unit(7 + 10 / 12, "feet"),
  26982. default: true
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(1.6, "m"),
  26991. weight: math.unit(50, "kg"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/kiki/front.svg",
  26995. extra: 4682 / 3610,
  26996. bottom: 115 / 4777
  26997. }
  26998. },
  26999. },
  27000. [
  27001. {
  27002. name: "Normal",
  27003. height: math.unit(1.6, "meters"),
  27004. default: true
  27005. },
  27006. ]
  27007. ))
  27008. characterMakers.push(() => makeCharacter(
  27009. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27010. {
  27011. front: {
  27012. height: math.unit(50, "m"),
  27013. weight: math.unit(500, "tonnes"),
  27014. name: "Front",
  27015. image: {
  27016. source: "./media/characters/ryoko/front.svg",
  27017. extra: 4632 / 3926,
  27018. bottom: 193 / 4823
  27019. }
  27020. },
  27021. },
  27022. [
  27023. {
  27024. name: "Normal",
  27025. height: math.unit(50, "meters"),
  27026. default: true
  27027. },
  27028. ]
  27029. ))
  27030. characterMakers.push(() => makeCharacter(
  27031. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27032. {
  27033. front: {
  27034. height: math.unit(30, "m"),
  27035. weight: math.unit(22, "tonnes"),
  27036. name: "Front",
  27037. image: {
  27038. source: "./media/characters/elio/front.svg",
  27039. extra: 4582 / 3720,
  27040. bottom: 236 / 4828
  27041. }
  27042. },
  27043. },
  27044. [
  27045. {
  27046. name: "Normal",
  27047. height: math.unit(30, "meters"),
  27048. default: true
  27049. },
  27050. ]
  27051. ))
  27052. characterMakers.push(() => makeCharacter(
  27053. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27054. {
  27055. front: {
  27056. height: math.unit(6 + 3 / 12, "feet"),
  27057. weight: math.unit(120, "lb"),
  27058. name: "Front",
  27059. image: {
  27060. source: "./media/characters/azura/front.svg",
  27061. extra: 1149 / 1135,
  27062. bottom: 45 / 1194
  27063. }
  27064. },
  27065. frontClothed: {
  27066. height: math.unit(6 + 3 / 12, "feet"),
  27067. weight: math.unit(120, "lb"),
  27068. name: "Front (Clothed)",
  27069. image: {
  27070. source: "./media/characters/azura/front-clothed.svg",
  27071. extra: 1149 / 1135,
  27072. bottom: 45 / 1194
  27073. }
  27074. },
  27075. },
  27076. [
  27077. {
  27078. name: "Normal",
  27079. height: math.unit(6 + 3 / 12, "feet"),
  27080. default: true
  27081. },
  27082. {
  27083. name: "Macro",
  27084. height: math.unit(20 + 6 / 12, "feet")
  27085. },
  27086. {
  27087. name: "Megamacro",
  27088. height: math.unit(12, "miles")
  27089. },
  27090. {
  27091. name: "Gigamacro",
  27092. height: math.unit(10000, "miles")
  27093. },
  27094. {
  27095. name: "Teramacro",
  27096. height: math.unit(900000, "miles")
  27097. },
  27098. ]
  27099. ))
  27100. characterMakers.push(() => makeCharacter(
  27101. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27102. {
  27103. front: {
  27104. height: math.unit(12, "feet"),
  27105. weight: math.unit(1, "ton"),
  27106. capacity: math.unit(660000, "gallons"),
  27107. name: "Front",
  27108. image: {
  27109. source: "./media/characters/zeus/front.svg",
  27110. extra: 5005 / 4717,
  27111. bottom: 363 / 5388
  27112. }
  27113. },
  27114. },
  27115. [
  27116. {
  27117. name: "Normal",
  27118. height: math.unit(12, "feet")
  27119. },
  27120. {
  27121. name: "Preferred Size",
  27122. height: math.unit(0.5, "miles"),
  27123. default: true
  27124. },
  27125. {
  27126. name: "Giga Horse",
  27127. height: math.unit(300, "miles")
  27128. },
  27129. {
  27130. name: "Riding Planets",
  27131. height: math.unit(30, "megameters")
  27132. },
  27133. {
  27134. name: "Cosmic Giant",
  27135. height: math.unit(3, "zettameters")
  27136. },
  27137. {
  27138. name: "Breeding God",
  27139. height: math.unit(9.92e22, "yottameters")
  27140. },
  27141. ]
  27142. ))
  27143. characterMakers.push(() => makeCharacter(
  27144. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27145. {
  27146. side: {
  27147. height: math.unit(9, "feet"),
  27148. weight: math.unit(1500, "kg"),
  27149. name: "Side",
  27150. image: {
  27151. source: "./media/characters/fang/side.svg",
  27152. extra: 924 / 866,
  27153. bottom: 47.5 / 972.3
  27154. }
  27155. },
  27156. },
  27157. [
  27158. {
  27159. name: "Normal",
  27160. height: math.unit(9, "feet"),
  27161. default: true
  27162. },
  27163. {
  27164. name: "Macro",
  27165. height: math.unit(75 + 6 / 12, "feet")
  27166. },
  27167. {
  27168. name: "Teramacro",
  27169. height: math.unit(50000, "miles")
  27170. },
  27171. ]
  27172. ))
  27173. characterMakers.push(() => makeCharacter(
  27174. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27175. {
  27176. front: {
  27177. height: math.unit(10, "feet"),
  27178. weight: math.unit(2, "tons"),
  27179. name: "Front",
  27180. image: {
  27181. source: "./media/characters/rekhit/front.svg",
  27182. extra: 2796 / 2590,
  27183. bottom: 225 / 3022
  27184. }
  27185. },
  27186. },
  27187. [
  27188. {
  27189. name: "Normal",
  27190. height: math.unit(10, "feet"),
  27191. default: true
  27192. },
  27193. {
  27194. name: "Macro",
  27195. height: math.unit(500, "feet")
  27196. },
  27197. ]
  27198. ))
  27199. characterMakers.push(() => makeCharacter(
  27200. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27201. {
  27202. front: {
  27203. height: math.unit(7 + 6.451 / 12, "feet"),
  27204. weight: math.unit(310, "lb"),
  27205. name: "Front",
  27206. image: {
  27207. source: "./media/characters/dahlia-verrick/front.svg",
  27208. extra: 1488 / 1365,
  27209. bottom: 6.2 / 1495
  27210. }
  27211. },
  27212. back: {
  27213. height: math.unit(7 + 6.451 / 12, "feet"),
  27214. weight: math.unit(310, "lb"),
  27215. name: "Back",
  27216. image: {
  27217. source: "./media/characters/dahlia-verrick/back.svg",
  27218. extra: 1472 / 1351,
  27219. bottom: 5.28 / 1477
  27220. }
  27221. },
  27222. frontBusiness: {
  27223. height: math.unit(7 + 6.451 / 12, "feet"),
  27224. weight: math.unit(200, "lb"),
  27225. name: "Front (Business)",
  27226. image: {
  27227. source: "./media/characters/dahlia-verrick/front-business.svg",
  27228. extra: 1478 / 1381,
  27229. bottom: 5.5 / 1484
  27230. }
  27231. },
  27232. frontCasual: {
  27233. height: math.unit(7 + 6.451 / 12, "feet"),
  27234. weight: math.unit(200, "lb"),
  27235. name: "Front (Casual)",
  27236. image: {
  27237. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27238. extra: 1478 / 1381,
  27239. bottom: 5.5 / 1484
  27240. }
  27241. },
  27242. },
  27243. [
  27244. {
  27245. name: "Travel-Sized",
  27246. height: math.unit(7.45, "inches")
  27247. },
  27248. {
  27249. name: "Normal",
  27250. height: math.unit(7 + 6.451 / 12, "feet"),
  27251. default: true
  27252. },
  27253. {
  27254. name: "Hitting the Town",
  27255. height: math.unit(37 + 8 / 12, "feet")
  27256. },
  27257. {
  27258. name: "Stomp in the Suburbs",
  27259. height: math.unit(964 + 9.728 / 12, "feet")
  27260. },
  27261. {
  27262. name: "Sit on the City",
  27263. height: math.unit(61747 + 10.592 / 12, "feet")
  27264. },
  27265. {
  27266. name: "Glomp the Globe",
  27267. height: math.unit(252919327 + 4.832 / 12, "feet")
  27268. },
  27269. ]
  27270. ))
  27271. characterMakers.push(() => makeCharacter(
  27272. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27273. {
  27274. front: {
  27275. height: math.unit(6 + 4 / 12, "feet"),
  27276. weight: math.unit(320, "lb"),
  27277. name: "Front",
  27278. image: {
  27279. source: "./media/characters/balina-mahigan/front.svg",
  27280. extra: 447 / 428,
  27281. bottom: 18 / 466
  27282. }
  27283. },
  27284. back: {
  27285. height: math.unit(6 + 4 / 12, "feet"),
  27286. weight: math.unit(320, "lb"),
  27287. name: "Back",
  27288. image: {
  27289. source: "./media/characters/balina-mahigan/back.svg",
  27290. extra: 445 / 428,
  27291. bottom: 4.07 / 448
  27292. }
  27293. },
  27294. arm: {
  27295. height: math.unit(1.88, "feet"),
  27296. name: "Arm",
  27297. image: {
  27298. source: "./media/characters/balina-mahigan/arm.svg"
  27299. }
  27300. },
  27301. backPort: {
  27302. height: math.unit(0.685, "feet"),
  27303. name: "Back Port",
  27304. image: {
  27305. source: "./media/characters/balina-mahigan/back-port.svg"
  27306. }
  27307. },
  27308. hoofpaw: {
  27309. height: math.unit(1.41, "feet"),
  27310. name: "Hoofpaw",
  27311. image: {
  27312. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27313. }
  27314. },
  27315. leftHandBack: {
  27316. height: math.unit(0.938, "feet"),
  27317. name: "Left Hand (Back)",
  27318. image: {
  27319. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27320. }
  27321. },
  27322. leftHandFront: {
  27323. height: math.unit(0.938, "feet"),
  27324. name: "Left Hand (Front)",
  27325. image: {
  27326. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27327. }
  27328. },
  27329. rightHandBack: {
  27330. height: math.unit(0.95, "feet"),
  27331. name: "Right Hand (Back)",
  27332. image: {
  27333. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27334. }
  27335. },
  27336. rightHandFront: {
  27337. height: math.unit(0.95, "feet"),
  27338. name: "Right Hand (Front)",
  27339. image: {
  27340. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27341. }
  27342. },
  27343. },
  27344. [
  27345. {
  27346. name: "Normal",
  27347. height: math.unit(6 + 4 / 12, "feet"),
  27348. default: true
  27349. },
  27350. ]
  27351. ))
  27352. characterMakers.push(() => makeCharacter(
  27353. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27354. {
  27355. front: {
  27356. height: math.unit(6, "feet"),
  27357. weight: math.unit(320, "lb"),
  27358. name: "Front",
  27359. image: {
  27360. source: "./media/characters/balina-mejeri/front.svg",
  27361. extra: 517 / 488,
  27362. bottom: 44.2 / 561
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "Normal",
  27369. height: math.unit(6 + 4 / 12, "feet")
  27370. },
  27371. {
  27372. name: "Business",
  27373. height: math.unit(155, "feet"),
  27374. default: true
  27375. },
  27376. ]
  27377. ))
  27378. characterMakers.push(() => makeCharacter(
  27379. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27380. {
  27381. kneeling: {
  27382. height: math.unit(6 + 4 / 12, "feet"),
  27383. weight: math.unit(300 * 20, "lb"),
  27384. name: "Kneeling",
  27385. image: {
  27386. source: "./media/characters/balbarian/kneeling.svg",
  27387. extra: 922 / 862,
  27388. bottom: 42.4 / 965
  27389. }
  27390. },
  27391. },
  27392. [
  27393. {
  27394. name: "Normal",
  27395. height: math.unit(6 + 4 / 12, "feet")
  27396. },
  27397. {
  27398. name: "Treasured",
  27399. height: math.unit(18 + 9 / 12, "feet"),
  27400. default: true
  27401. },
  27402. {
  27403. name: "Macro",
  27404. height: math.unit(900, "feet")
  27405. },
  27406. ]
  27407. ))
  27408. characterMakers.push(() => makeCharacter(
  27409. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27410. {
  27411. front: {
  27412. height: math.unit(6 + 4 / 12, "feet"),
  27413. weight: math.unit(325, "lb"),
  27414. name: "Front",
  27415. image: {
  27416. source: "./media/characters/balina-amarini/front.svg",
  27417. extra: 415 / 403,
  27418. bottom: 19 / 433.4
  27419. }
  27420. },
  27421. back: {
  27422. height: math.unit(6 + 4 / 12, "feet"),
  27423. weight: math.unit(325, "lb"),
  27424. name: "Back",
  27425. image: {
  27426. source: "./media/characters/balina-amarini/back.svg",
  27427. extra: 415 / 403,
  27428. bottom: 13.5 / 432
  27429. }
  27430. },
  27431. overdrive: {
  27432. height: math.unit(6 + 4 / 12, "feet"),
  27433. weight: math.unit(400, "lb"),
  27434. name: "Overdrive",
  27435. image: {
  27436. source: "./media/characters/balina-amarini/overdrive.svg",
  27437. extra: 269 / 259,
  27438. bottom: 12 / 282
  27439. }
  27440. },
  27441. },
  27442. [
  27443. {
  27444. name: "Boom",
  27445. height: math.unit(9 + 10 / 12, "feet"),
  27446. default: true
  27447. },
  27448. {
  27449. name: "Macro",
  27450. height: math.unit(280, "feet")
  27451. },
  27452. ]
  27453. ))
  27454. characterMakers.push(() => makeCharacter(
  27455. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27456. {
  27457. goddess: {
  27458. height: math.unit(600, "feet"),
  27459. weight: math.unit(2000000, "tons"),
  27460. name: "Goddess",
  27461. image: {
  27462. source: "./media/characters/lady-kubwa/goddess.svg",
  27463. extra: 1240.5 / 1223,
  27464. bottom: 22 / 1263
  27465. }
  27466. },
  27467. goddesser: {
  27468. height: math.unit(900, "feet"),
  27469. weight: math.unit(20000000, "lb"),
  27470. name: "Goddess-er",
  27471. image: {
  27472. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27473. extra: 899 / 888,
  27474. bottom: 12.6 / 912
  27475. }
  27476. },
  27477. },
  27478. [
  27479. {
  27480. name: "Macro",
  27481. height: math.unit(600, "feet"),
  27482. default: true
  27483. },
  27484. {
  27485. name: "Megamacro",
  27486. height: math.unit(250, "miles")
  27487. },
  27488. ]
  27489. ))
  27490. characterMakers.push(() => makeCharacter(
  27491. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27492. {
  27493. front: {
  27494. height: math.unit(7 + 7 / 12, "feet"),
  27495. weight: math.unit(250, "lb"),
  27496. name: "Front",
  27497. image: {
  27498. source: "./media/characters/tala-grovehorn/front.svg",
  27499. extra: 2636 / 2525,
  27500. bottom: 147 / 2781
  27501. }
  27502. },
  27503. back: {
  27504. height: math.unit(7 + 7 / 12, "feet"),
  27505. weight: math.unit(250, "lb"),
  27506. name: "Back",
  27507. image: {
  27508. source: "./media/characters/tala-grovehorn/back.svg",
  27509. extra: 2635 / 2539,
  27510. bottom: 100 / 2732.8
  27511. }
  27512. },
  27513. mouth: {
  27514. height: math.unit(1.15, "feet"),
  27515. name: "Mouth",
  27516. image: {
  27517. source: "./media/characters/tala-grovehorn/mouth.svg"
  27518. }
  27519. },
  27520. dick: {
  27521. height: math.unit(2.36, "feet"),
  27522. name: "Dick",
  27523. image: {
  27524. source: "./media/characters/tala-grovehorn/dick.svg"
  27525. }
  27526. },
  27527. slit: {
  27528. height: math.unit(0.61, "feet"),
  27529. name: "Slit",
  27530. image: {
  27531. source: "./media/characters/tala-grovehorn/slit.svg"
  27532. }
  27533. },
  27534. },
  27535. [
  27536. ]
  27537. ))
  27538. characterMakers.push(() => makeCharacter(
  27539. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27540. {
  27541. front: {
  27542. height: math.unit(7 + 7 / 12, "feet"),
  27543. weight: math.unit(225, "lb"),
  27544. name: "Front",
  27545. image: {
  27546. source: "./media/characters/epona/front.svg",
  27547. extra: 2445 / 2290,
  27548. bottom: 251 / 2696
  27549. }
  27550. },
  27551. back: {
  27552. height: math.unit(7 + 7 / 12, "feet"),
  27553. weight: math.unit(225, "lb"),
  27554. name: "Back",
  27555. image: {
  27556. source: "./media/characters/epona/back.svg",
  27557. extra: 2546 / 2408,
  27558. bottom: 44 / 2589
  27559. }
  27560. },
  27561. genitals: {
  27562. height: math.unit(1.5, "feet"),
  27563. name: "Genitals",
  27564. image: {
  27565. source: "./media/characters/epona/genitals.svg"
  27566. }
  27567. },
  27568. },
  27569. [
  27570. {
  27571. name: "Normal",
  27572. height: math.unit(7 + 7 / 12, "feet"),
  27573. default: true
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27579. {
  27580. front: {
  27581. height: math.unit(7, "feet"),
  27582. weight: math.unit(518, "lb"),
  27583. name: "Front",
  27584. image: {
  27585. source: "./media/characters/avia-bloodbourn/front.svg",
  27586. extra: 1466 / 1350,
  27587. bottom: 65 / 1527
  27588. }
  27589. },
  27590. },
  27591. [
  27592. ]
  27593. ))
  27594. characterMakers.push(() => makeCharacter(
  27595. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27596. {
  27597. front: {
  27598. height: math.unit(9.35, "feet"),
  27599. weight: math.unit(600, "lb"),
  27600. name: "Front",
  27601. image: {
  27602. source: "./media/characters/amera/front.svg",
  27603. extra: 891 / 818,
  27604. bottom: 30 / 922.7
  27605. }
  27606. },
  27607. back: {
  27608. height: math.unit(9.35, "feet"),
  27609. weight: math.unit(600, "lb"),
  27610. name: "Back",
  27611. image: {
  27612. source: "./media/characters/amera/back.svg",
  27613. extra: 876 / 824,
  27614. bottom: 6.8 / 884
  27615. }
  27616. },
  27617. dick: {
  27618. height: math.unit(2.14, "feet"),
  27619. name: "Dick",
  27620. image: {
  27621. source: "./media/characters/amera/dick.svg"
  27622. }
  27623. },
  27624. },
  27625. [
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(9.35, "feet"),
  27629. default: true
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27635. {
  27636. kneeling: {
  27637. height: math.unit(3 + 4 / 12, "feet"),
  27638. weight: math.unit(90, "lb"),
  27639. name: "Kneeling",
  27640. image: {
  27641. source: "./media/characters/rosewen/kneeling.svg",
  27642. extra: 1835 / 1571,
  27643. bottom: 27.7 / 1862
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Normal",
  27650. height: math.unit(3 + 4 / 12, "feet"),
  27651. default: true
  27652. },
  27653. ]
  27654. ))
  27655. characterMakers.push(() => makeCharacter(
  27656. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27657. {
  27658. front: {
  27659. height: math.unit(5 + 10 / 12, "feet"),
  27660. weight: math.unit(200, "lb"),
  27661. name: "Front",
  27662. image: {
  27663. source: "./media/characters/sabah/front.svg",
  27664. extra: 849 / 763,
  27665. bottom: 33.9 / 881
  27666. }
  27667. },
  27668. },
  27669. [
  27670. {
  27671. name: "Normal",
  27672. height: math.unit(5 + 10 / 12, "feet"),
  27673. default: true
  27674. },
  27675. ]
  27676. ))
  27677. characterMakers.push(() => makeCharacter(
  27678. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27679. {
  27680. front: {
  27681. height: math.unit(3 + 5 / 12, "feet"),
  27682. weight: math.unit(40, "kg"),
  27683. name: "Front",
  27684. image: {
  27685. source: "./media/characters/purple-flame/front.svg",
  27686. extra: 1577 / 1412,
  27687. bottom: 97 / 1694
  27688. }
  27689. },
  27690. frontDressed: {
  27691. height: math.unit(3 + 5 / 12, "feet"),
  27692. weight: math.unit(40, "kg"),
  27693. name: "Front (Dressed)",
  27694. image: {
  27695. source: "./media/characters/purple-flame/front-dressed.svg",
  27696. extra: 1577 / 1412,
  27697. bottom: 97 / 1694
  27698. }
  27699. },
  27700. headphones: {
  27701. height: math.unit(0.85, "feet"),
  27702. name: "Headphones",
  27703. image: {
  27704. source: "./media/characters/purple-flame/headphones.svg"
  27705. }
  27706. },
  27707. },
  27708. [
  27709. {
  27710. name: "Really Small",
  27711. height: math.unit(5, "cm")
  27712. },
  27713. {
  27714. name: "Micro",
  27715. height: math.unit(1 + 5 / 12, "feet")
  27716. },
  27717. {
  27718. name: "Normal",
  27719. height: math.unit(3 + 5 / 12, "feet"),
  27720. default: true
  27721. },
  27722. {
  27723. name: "Minimacro",
  27724. height: math.unit(125, "feet")
  27725. },
  27726. {
  27727. name: "Macro",
  27728. height: math.unit(0.5, "miles")
  27729. },
  27730. {
  27731. name: "Megamacro",
  27732. height: math.unit(50, "miles")
  27733. },
  27734. {
  27735. name: "Gigantic",
  27736. height: math.unit(750, "miles")
  27737. },
  27738. {
  27739. name: "Planetary",
  27740. height: math.unit(15000, "miles")
  27741. },
  27742. ]
  27743. ))
  27744. characterMakers.push(() => makeCharacter(
  27745. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27746. {
  27747. front: {
  27748. height: math.unit(14, "feet"),
  27749. weight: math.unit(959, "lb"),
  27750. name: "Front",
  27751. image: {
  27752. source: "./media/characters/arsenal/front.svg",
  27753. extra: 2357 / 2157,
  27754. bottom: 93 / 2458
  27755. }
  27756. },
  27757. },
  27758. [
  27759. {
  27760. name: "Normal",
  27761. height: math.unit(14, "feet"),
  27762. default: true
  27763. },
  27764. ]
  27765. ))
  27766. characterMakers.push(() => makeCharacter(
  27767. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27768. {
  27769. front: {
  27770. height: math.unit(6, "feet"),
  27771. weight: math.unit(150, "lb"),
  27772. name: "Front",
  27773. image: {
  27774. source: "./media/characters/adira/front.svg",
  27775. extra: 1078 / 1029,
  27776. bottom: 87 / 1166
  27777. }
  27778. },
  27779. },
  27780. [
  27781. {
  27782. name: "Micro",
  27783. height: math.unit(4, "inches"),
  27784. default: true
  27785. },
  27786. {
  27787. name: "Macro",
  27788. height: math.unit(50, "feet")
  27789. },
  27790. ]
  27791. ))
  27792. characterMakers.push(() => makeCharacter(
  27793. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27794. {
  27795. front: {
  27796. height: math.unit(16, "feet"),
  27797. weight: math.unit(1000, "lb"),
  27798. name: "Front",
  27799. image: {
  27800. source: "./media/characters/grim/front.svg",
  27801. extra: 622 / 614,
  27802. bottom: 18.1 / 642
  27803. }
  27804. },
  27805. back: {
  27806. height: math.unit(16, "feet"),
  27807. weight: math.unit(1000, "lb"),
  27808. name: "Back",
  27809. image: {
  27810. source: "./media/characters/grim/back.svg",
  27811. extra: 610.6 / 602,
  27812. bottom: 40.8 / 652
  27813. }
  27814. },
  27815. hunched: {
  27816. height: math.unit(9.75, "feet"),
  27817. weight: math.unit(1000, "lb"),
  27818. name: "Hunched",
  27819. image: {
  27820. source: "./media/characters/grim/hunched.svg",
  27821. extra: 304 / 297,
  27822. bottom: 35.4 / 394
  27823. }
  27824. },
  27825. },
  27826. [
  27827. {
  27828. name: "Normal",
  27829. height: math.unit(16, "feet"),
  27830. default: true
  27831. },
  27832. ]
  27833. ))
  27834. characterMakers.push(() => makeCharacter(
  27835. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27836. {
  27837. front: {
  27838. height: math.unit(2.3, "meters"),
  27839. weight: math.unit(300, "lb"),
  27840. name: "Front",
  27841. image: {
  27842. source: "./media/characters/sinja/front-sfw.svg",
  27843. extra: 1393 / 1294,
  27844. bottom: 70 / 1463
  27845. }
  27846. },
  27847. frontNsfw: {
  27848. height: math.unit(2.3, "meters"),
  27849. weight: math.unit(300, "lb"),
  27850. name: "Front (NSFW)",
  27851. image: {
  27852. source: "./media/characters/sinja/front-nsfw.svg",
  27853. extra: 1393 / 1294,
  27854. bottom: 70 / 1463
  27855. }
  27856. },
  27857. back: {
  27858. height: math.unit(2.3, "meters"),
  27859. weight: math.unit(300, "lb"),
  27860. name: "Back",
  27861. image: {
  27862. source: "./media/characters/sinja/back.svg",
  27863. extra: 1393 / 1294,
  27864. bottom: 70 / 1463
  27865. }
  27866. },
  27867. head: {
  27868. height: math.unit(1.771, "feet"),
  27869. name: "Head",
  27870. image: {
  27871. source: "./media/characters/sinja/head.svg"
  27872. }
  27873. },
  27874. slit: {
  27875. height: math.unit(0.8, "feet"),
  27876. name: "Slit",
  27877. image: {
  27878. source: "./media/characters/sinja/slit.svg"
  27879. }
  27880. },
  27881. },
  27882. [
  27883. {
  27884. name: "Normal",
  27885. height: math.unit(2.3, "meters")
  27886. },
  27887. {
  27888. name: "Macro",
  27889. height: math.unit(91, "meters"),
  27890. default: true
  27891. },
  27892. {
  27893. name: "Megamacro",
  27894. height: math.unit(91440, "meters")
  27895. },
  27896. {
  27897. name: "Gigamacro",
  27898. height: math.unit(60960000, "meters")
  27899. },
  27900. {
  27901. name: "Teramacro",
  27902. height: math.unit(9144000000, "meters")
  27903. },
  27904. ]
  27905. ))
  27906. characterMakers.push(() => makeCharacter(
  27907. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27908. {
  27909. front: {
  27910. height: math.unit(1.7, "meters"),
  27911. weight: math.unit(130, "lb"),
  27912. name: "Front",
  27913. image: {
  27914. source: "./media/characters/kyu/front.svg",
  27915. extra: 415 / 395,
  27916. bottom: 5 / 420
  27917. }
  27918. },
  27919. head: {
  27920. height: math.unit(1.75, "feet"),
  27921. name: "Head",
  27922. image: {
  27923. source: "./media/characters/kyu/head.svg"
  27924. }
  27925. },
  27926. foot: {
  27927. height: math.unit(0.81, "feet"),
  27928. name: "Foot",
  27929. image: {
  27930. source: "./media/characters/kyu/foot.svg"
  27931. }
  27932. },
  27933. },
  27934. [
  27935. {
  27936. name: "Normal",
  27937. height: math.unit(1.7, "meters")
  27938. },
  27939. {
  27940. name: "Macro",
  27941. height: math.unit(131, "feet"),
  27942. default: true
  27943. },
  27944. {
  27945. name: "Megamacro",
  27946. height: math.unit(91440, "meters")
  27947. },
  27948. {
  27949. name: "Gigamacro",
  27950. height: math.unit(60960000, "meters")
  27951. },
  27952. {
  27953. name: "Teramacro",
  27954. height: math.unit(9144000000, "meters")
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27960. {
  27961. front: {
  27962. height: math.unit(7 + 1 / 12, "feet"),
  27963. weight: math.unit(250, "lb"),
  27964. name: "Front",
  27965. image: {
  27966. source: "./media/characters/joey/front.svg",
  27967. extra: 1791 / 1537,
  27968. bottom: 28 / 1816
  27969. }
  27970. },
  27971. },
  27972. [
  27973. {
  27974. name: "Micro",
  27975. height: math.unit(3, "inches")
  27976. },
  27977. {
  27978. name: "Normal",
  27979. height: math.unit(7 + 1 / 12, "feet"),
  27980. default: true
  27981. },
  27982. ]
  27983. ))
  27984. characterMakers.push(() => makeCharacter(
  27985. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27986. {
  27987. front: {
  27988. height: math.unit(165, "cm"),
  27989. weight: math.unit(140, "lb"),
  27990. name: "Front",
  27991. image: {
  27992. source: "./media/characters/sam-evans/front.svg",
  27993. extra: 3417 / 3230,
  27994. bottom: 41.3 / 3417
  27995. }
  27996. },
  27997. frontSixTails: {
  27998. height: math.unit(165, "cm"),
  27999. weight: math.unit(140, "lb"),
  28000. name: "Front-six-tails",
  28001. image: {
  28002. source: "./media/characters/sam-evans/front-six-tails.svg",
  28003. extra: 3417 / 3230,
  28004. bottom: 41.3 / 3417
  28005. }
  28006. },
  28007. back: {
  28008. height: math.unit(165, "cm"),
  28009. weight: math.unit(140, "lb"),
  28010. name: "Back",
  28011. image: {
  28012. source: "./media/characters/sam-evans/back.svg",
  28013. extra: 3227 / 3032,
  28014. bottom: 6.8 / 3234
  28015. }
  28016. },
  28017. face: {
  28018. height: math.unit(0.68, "feet"),
  28019. name: "Face",
  28020. image: {
  28021. source: "./media/characters/sam-evans/face.svg"
  28022. }
  28023. },
  28024. },
  28025. [
  28026. {
  28027. name: "Normal",
  28028. height: math.unit(165, "cm"),
  28029. default: true
  28030. },
  28031. {
  28032. name: "Macro",
  28033. height: math.unit(100, "meters")
  28034. },
  28035. {
  28036. name: "Macro+",
  28037. height: math.unit(800, "meters")
  28038. },
  28039. {
  28040. name: "Macro++",
  28041. height: math.unit(3, "km")
  28042. },
  28043. {
  28044. name: "Macro+++",
  28045. height: math.unit(30, "km")
  28046. },
  28047. ]
  28048. ))
  28049. characterMakers.push(() => makeCharacter(
  28050. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28051. {
  28052. front: {
  28053. height: math.unit(10, "feet"),
  28054. weight: math.unit(750, "lb"),
  28055. name: "Front",
  28056. image: {
  28057. source: "./media/characters/juliet-a/front.svg",
  28058. extra: 1766 / 1720,
  28059. bottom: 43 / 1809
  28060. }
  28061. },
  28062. back: {
  28063. height: math.unit(10, "feet"),
  28064. weight: math.unit(750, "lb"),
  28065. name: "Back",
  28066. image: {
  28067. source: "./media/characters/juliet-a/back.svg",
  28068. extra: 1781 / 1734,
  28069. bottom: 35 / 1810,
  28070. }
  28071. },
  28072. },
  28073. [
  28074. {
  28075. name: "Normal",
  28076. height: math.unit(10, "feet"),
  28077. default: true
  28078. },
  28079. {
  28080. name: "Dragon Form",
  28081. height: math.unit(250, "feet")
  28082. },
  28083. {
  28084. name: "Macro",
  28085. height: math.unit(1000, "feet")
  28086. },
  28087. {
  28088. name: "Megamacro",
  28089. height: math.unit(10000, "feet")
  28090. }
  28091. ]
  28092. ))
  28093. characterMakers.push(() => makeCharacter(
  28094. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28095. {
  28096. regular: {
  28097. height: math.unit(7 + 3 / 12, "feet"),
  28098. weight: math.unit(260, "lb"),
  28099. name: "Regular",
  28100. image: {
  28101. source: "./media/characters/wild/regular.svg",
  28102. extra: 97.45 / 92,
  28103. bottom: 6.8 / 104.3
  28104. }
  28105. },
  28106. biggums: {
  28107. height: math.unit(8 + 6 / 12, "feet"),
  28108. weight: math.unit(425, "lb"),
  28109. name: "Biggums",
  28110. image: {
  28111. source: "./media/characters/wild/biggums.svg",
  28112. extra: 97.45 / 92,
  28113. bottom: 7.5 / 132.34
  28114. }
  28115. },
  28116. mawRegular: {
  28117. height: math.unit(1.24, "feet"),
  28118. name: "Maw (Regular)",
  28119. image: {
  28120. source: "./media/characters/wild/maw.svg"
  28121. }
  28122. },
  28123. mawBiggums: {
  28124. height: math.unit(1.47, "feet"),
  28125. name: "Maw (Biggums)",
  28126. image: {
  28127. source: "./media/characters/wild/maw.svg"
  28128. }
  28129. },
  28130. },
  28131. [
  28132. {
  28133. name: "Normal",
  28134. height: math.unit(7 + 3 / 12, "feet"),
  28135. default: true
  28136. },
  28137. ]
  28138. ))
  28139. characterMakers.push(() => makeCharacter(
  28140. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28141. {
  28142. front: {
  28143. height: math.unit(2.5, "meters"),
  28144. weight: math.unit(200, "kg"),
  28145. name: "Front",
  28146. image: {
  28147. source: "./media/characters/vidar/front.svg",
  28148. extra: 2994 / 2795,
  28149. bottom: 56 / 3061
  28150. }
  28151. },
  28152. back: {
  28153. height: math.unit(2.5, "meters"),
  28154. weight: math.unit(200, "kg"),
  28155. name: "Back",
  28156. image: {
  28157. source: "./media/characters/vidar/back.svg",
  28158. extra: 3131 / 2928,
  28159. bottom: 13.5 / 3141.5
  28160. }
  28161. },
  28162. feral: {
  28163. height: math.unit(2.5, "meters"),
  28164. weight: math.unit(2000, "kg"),
  28165. name: "Feral",
  28166. image: {
  28167. source: "./media/characters/vidar/feral.svg",
  28168. extra: 2790 / 1765,
  28169. bottom: 6 / 2796
  28170. }
  28171. },
  28172. },
  28173. [
  28174. {
  28175. name: "Normal",
  28176. height: math.unit(2.5, "meters"),
  28177. default: true
  28178. },
  28179. {
  28180. name: "Macro",
  28181. height: math.unit(100, "meters")
  28182. },
  28183. ]
  28184. ))
  28185. characterMakers.push(() => makeCharacter(
  28186. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28187. {
  28188. front: {
  28189. height: math.unit(5 + 9 / 12, "feet"),
  28190. weight: math.unit(120, "lb"),
  28191. name: "Front",
  28192. image: {
  28193. source: "./media/characters/ash/front.svg",
  28194. extra: 2189 / 1961,
  28195. bottom: 5.2 / 2194
  28196. }
  28197. },
  28198. },
  28199. [
  28200. {
  28201. name: "Normal",
  28202. height: math.unit(5 + 9 / 12, "feet"),
  28203. default: true
  28204. },
  28205. ]
  28206. ))
  28207. characterMakers.push(() => makeCharacter(
  28208. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28209. {
  28210. front: {
  28211. height: math.unit(9, "feet"),
  28212. weight: math.unit(10000, "lb"),
  28213. name: "Front",
  28214. image: {
  28215. source: "./media/characters/gygabite/front.svg",
  28216. bottom: 31.7 / 537.8,
  28217. extra: 505 / 370
  28218. }
  28219. },
  28220. },
  28221. [
  28222. {
  28223. name: "Normal",
  28224. height: math.unit(9, "feet"),
  28225. default: true
  28226. },
  28227. ]
  28228. ))
  28229. characterMakers.push(() => makeCharacter(
  28230. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28231. {
  28232. front: {
  28233. height: math.unit(12, "feet"),
  28234. weight: math.unit(35000, "lb"),
  28235. name: "Front",
  28236. image: {
  28237. source: "./media/characters/p0tat0/front.svg",
  28238. extra: 1065 / 921,
  28239. bottom: 55.7 / 1121.25
  28240. }
  28241. },
  28242. },
  28243. [
  28244. {
  28245. name: "Normal",
  28246. height: math.unit(12, "feet"),
  28247. default: true
  28248. },
  28249. ]
  28250. ))
  28251. characterMakers.push(() => makeCharacter(
  28252. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28253. {
  28254. side: {
  28255. height: math.unit(6.5, "feet"),
  28256. weight: math.unit(800, "lb"),
  28257. name: "Side",
  28258. image: {
  28259. source: "./media/characters/dusk/side.svg",
  28260. extra: 615 / 373,
  28261. bottom: 53 / 664
  28262. }
  28263. },
  28264. sitting: {
  28265. height: math.unit(7, "feet"),
  28266. weight: math.unit(800, "lb"),
  28267. name: "Sitting",
  28268. image: {
  28269. source: "./media/characters/dusk/sitting.svg",
  28270. extra: 753 / 425,
  28271. bottom: 33 / 774
  28272. }
  28273. },
  28274. head: {
  28275. height: math.unit(6.1, "feet"),
  28276. name: "Head",
  28277. image: {
  28278. source: "./media/characters/dusk/head.svg"
  28279. }
  28280. },
  28281. },
  28282. [
  28283. {
  28284. name: "Normal",
  28285. height: math.unit(7, "feet"),
  28286. default: true
  28287. },
  28288. ]
  28289. ))
  28290. characterMakers.push(() => makeCharacter(
  28291. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28292. {
  28293. front: {
  28294. height: math.unit(15, "feet"),
  28295. weight: math.unit(7000, "lb"),
  28296. name: "Front",
  28297. image: {
  28298. source: "./media/characters/jay-direwolf/front.svg",
  28299. extra: 1810 / 1732,
  28300. bottom: 66 / 1892
  28301. }
  28302. },
  28303. },
  28304. [
  28305. {
  28306. name: "Normal",
  28307. height: math.unit(15, "feet"),
  28308. default: true
  28309. },
  28310. ]
  28311. ))
  28312. characterMakers.push(() => makeCharacter(
  28313. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28314. {
  28315. front: {
  28316. height: math.unit(4 + 9 / 12, "feet"),
  28317. weight: math.unit(130, "lb"),
  28318. name: "Front",
  28319. image: {
  28320. source: "./media/characters/anchovie/front.svg",
  28321. extra: 382 / 350,
  28322. bottom: 25 / 409
  28323. }
  28324. },
  28325. back: {
  28326. height: math.unit(4 + 9 / 12, "feet"),
  28327. weight: math.unit(130, "lb"),
  28328. name: "Back",
  28329. image: {
  28330. source: "./media/characters/anchovie/back.svg",
  28331. extra: 385 / 352,
  28332. bottom: 16.6 / 402
  28333. }
  28334. },
  28335. frontDressed: {
  28336. height: math.unit(4 + 9 / 12, "feet"),
  28337. weight: math.unit(130, "lb"),
  28338. name: "Front (Dressed)",
  28339. image: {
  28340. source: "./media/characters/anchovie/front-dressed.svg",
  28341. extra: 382 / 350,
  28342. bottom: 25 / 409
  28343. }
  28344. },
  28345. backDressed: {
  28346. height: math.unit(4 + 9 / 12, "feet"),
  28347. weight: math.unit(130, "lb"),
  28348. name: "Back (Dressed)",
  28349. image: {
  28350. source: "./media/characters/anchovie/back-dressed.svg",
  28351. extra: 385 / 352,
  28352. bottom: 16.6 / 402
  28353. }
  28354. },
  28355. },
  28356. [
  28357. {
  28358. name: "Micro",
  28359. height: math.unit(6.4, "inches")
  28360. },
  28361. {
  28362. name: "Normal",
  28363. height: math.unit(4 + 9 / 12, "feet"),
  28364. default: true
  28365. },
  28366. ]
  28367. ))
  28368. characterMakers.push(() => makeCharacter(
  28369. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28370. {
  28371. front: {
  28372. height: math.unit(2, "meters"),
  28373. weight: math.unit(180, "lb"),
  28374. name: "Front",
  28375. image: {
  28376. source: "./media/characters/acidrenamon/front.svg",
  28377. extra: 987 / 890,
  28378. bottom: 22.8 / 1009
  28379. }
  28380. },
  28381. back: {
  28382. height: math.unit(2, "meters"),
  28383. weight: math.unit(180, "lb"),
  28384. name: "Back",
  28385. image: {
  28386. source: "./media/characters/acidrenamon/back.svg",
  28387. extra: 983 / 891,
  28388. bottom: 8.4 / 992
  28389. }
  28390. },
  28391. head: {
  28392. height: math.unit(1.92, "feet"),
  28393. name: "Head",
  28394. image: {
  28395. source: "./media/characters/acidrenamon/head.svg"
  28396. }
  28397. },
  28398. rump: {
  28399. height: math.unit(1.72, "feet"),
  28400. name: "Rump",
  28401. image: {
  28402. source: "./media/characters/acidrenamon/rump.svg"
  28403. }
  28404. },
  28405. tail: {
  28406. height: math.unit(4.2, "feet"),
  28407. name: "Tail",
  28408. image: {
  28409. source: "./media/characters/acidrenamon/tail.svg"
  28410. }
  28411. },
  28412. },
  28413. [
  28414. {
  28415. name: "Normal",
  28416. height: math.unit(2, "meters"),
  28417. default: true
  28418. },
  28419. {
  28420. name: "Minimacro",
  28421. height: math.unit(7, "meters")
  28422. },
  28423. {
  28424. name: "Macro",
  28425. height: math.unit(200, "meters")
  28426. },
  28427. {
  28428. name: "Gigamacro",
  28429. height: math.unit(0.2, "earths")
  28430. },
  28431. ]
  28432. ))
  28433. characterMakers.push(() => makeCharacter(
  28434. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28435. {
  28436. front: {
  28437. height: math.unit(152, "feet"),
  28438. name: "Front",
  28439. image: {
  28440. source: "./media/characters/kenzie-lee/front.svg",
  28441. extra: 1869/1774,
  28442. bottom: 128/1997
  28443. }
  28444. },
  28445. side: {
  28446. height: math.unit(86, "feet"),
  28447. name: "Side",
  28448. image: {
  28449. source: "./media/characters/kenzie-lee/side.svg",
  28450. extra: 930/815,
  28451. bottom: 177/1107
  28452. }
  28453. },
  28454. paw: {
  28455. height: math.unit(15, "feet"),
  28456. name: "Paw",
  28457. image: {
  28458. source: "./media/characters/kenzie-lee/paw.svg"
  28459. }
  28460. },
  28461. },
  28462. [
  28463. {
  28464. name: "Micro",
  28465. height: math.unit(1.5, "inches")
  28466. },
  28467. {
  28468. name: "Normal",
  28469. height: math.unit(152, "feet"),
  28470. default: true
  28471. },
  28472. {
  28473. name: "Megamacro",
  28474. height: math.unit(7, "miles")
  28475. },
  28476. {
  28477. name: "Gigamacro",
  28478. height: math.unit(8000, "miles")
  28479. },
  28480. ]
  28481. ))
  28482. characterMakers.push(() => makeCharacter(
  28483. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28484. {
  28485. side: {
  28486. height: math.unit(6, "feet"),
  28487. weight: math.unit(150, "lb"),
  28488. name: "Side",
  28489. image: {
  28490. source: "./media/characters/withers/side.svg",
  28491. extra: 1830 / 1728,
  28492. bottom: 96 / 1927
  28493. }
  28494. },
  28495. front: {
  28496. height: math.unit(6, "feet"),
  28497. weight: math.unit(150, "lb"),
  28498. name: "Front",
  28499. image: {
  28500. source: "./media/characters/withers/front.svg",
  28501. extra: 1514 / 1438,
  28502. bottom: 118 / 1632
  28503. }
  28504. },
  28505. },
  28506. [
  28507. {
  28508. name: "Macro",
  28509. height: math.unit(168, "feet"),
  28510. default: true
  28511. },
  28512. {
  28513. name: "Megamacro",
  28514. height: math.unit(15, "miles")
  28515. }
  28516. ]
  28517. ))
  28518. characterMakers.push(() => makeCharacter(
  28519. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28520. {
  28521. front: {
  28522. height: math.unit(6 + 7 / 12, "feet"),
  28523. weight: math.unit(250, "lb"),
  28524. name: "Front",
  28525. image: {
  28526. source: "./media/characters/nemoskii/front.svg",
  28527. extra: 2270 / 1734,
  28528. bottom: 86 / 2354
  28529. }
  28530. },
  28531. back: {
  28532. height: math.unit(6 + 7 / 12, "feet"),
  28533. weight: math.unit(250, "lb"),
  28534. name: "Back",
  28535. image: {
  28536. source: "./media/characters/nemoskii/back.svg",
  28537. extra: 1845 / 1788,
  28538. bottom: 10.5 / 1852
  28539. }
  28540. },
  28541. head: {
  28542. height: math.unit(1.31, "feet"),
  28543. name: "Head",
  28544. image: {
  28545. source: "./media/characters/nemoskii/head.svg"
  28546. }
  28547. },
  28548. },
  28549. [
  28550. {
  28551. name: "Micro",
  28552. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28553. },
  28554. {
  28555. name: "Normal",
  28556. height: math.unit(6 + 7 / 12, "feet"),
  28557. default: true
  28558. },
  28559. {
  28560. name: "Macro",
  28561. height: math.unit((6 + 7 / 12) * 150, "feet")
  28562. },
  28563. {
  28564. name: "Macro+",
  28565. height: math.unit((6 + 7 / 12) * 500, "feet")
  28566. },
  28567. {
  28568. name: "Megamacro",
  28569. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28570. },
  28571. ]
  28572. ))
  28573. characterMakers.push(() => makeCharacter(
  28574. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28575. {
  28576. front: {
  28577. height: math.unit(1, "mile"),
  28578. weight: math.unit(265261.9, "lb"),
  28579. name: "Front",
  28580. image: {
  28581. source: "./media/characters/shui/front.svg",
  28582. extra: 1633 / 1564,
  28583. bottom: 91.5 / 1726
  28584. }
  28585. },
  28586. },
  28587. [
  28588. {
  28589. name: "Macro",
  28590. height: math.unit(1, "mile"),
  28591. default: true
  28592. },
  28593. ]
  28594. ))
  28595. characterMakers.push(() => makeCharacter(
  28596. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28597. {
  28598. front: {
  28599. height: math.unit(12 + 6 / 12, "feet"),
  28600. weight: math.unit(1342, "lb"),
  28601. name: "Front",
  28602. image: {
  28603. source: "./media/characters/arokh-takakura/front.svg",
  28604. extra: 1089 / 1043,
  28605. bottom: 77.4 / 1176.7
  28606. }
  28607. },
  28608. back: {
  28609. height: math.unit(12 + 6 / 12, "feet"),
  28610. weight: math.unit(1342, "lb"),
  28611. name: "Back",
  28612. image: {
  28613. source: "./media/characters/arokh-takakura/back.svg",
  28614. extra: 1046 / 1019,
  28615. bottom: 102 / 1150
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Big",
  28622. height: math.unit(12 + 6 / 12, "feet"),
  28623. default: true
  28624. },
  28625. ]
  28626. ))
  28627. characterMakers.push(() => makeCharacter(
  28628. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28629. {
  28630. front: {
  28631. height: math.unit(5 + 6 / 12, "feet"),
  28632. weight: math.unit(150, "lb"),
  28633. name: "Front",
  28634. image: {
  28635. source: "./media/characters/theo/front.svg",
  28636. extra: 1184 / 1131,
  28637. bottom: 7.4 / 1191
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Micro",
  28644. height: math.unit(5, "inches")
  28645. },
  28646. {
  28647. name: "Normal",
  28648. height: math.unit(5 + 6 / 12, "feet"),
  28649. default: true
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28655. {
  28656. front: {
  28657. height: math.unit(5 + 9 / 12, "feet"),
  28658. weight: math.unit(130, "lb"),
  28659. name: "Front",
  28660. image: {
  28661. source: "./media/characters/cecelia-swift/front.svg",
  28662. extra: 502 / 484,
  28663. bottom: 23 / 523
  28664. }
  28665. },
  28666. back: {
  28667. height: math.unit(5 + 9 / 12, "feet"),
  28668. weight: math.unit(130, "lb"),
  28669. name: "Back",
  28670. image: {
  28671. source: "./media/characters/cecelia-swift/back.svg",
  28672. extra: 499 / 485,
  28673. bottom: 12 / 511
  28674. }
  28675. },
  28676. head: {
  28677. height: math.unit(0.90, "feet"),
  28678. name: "Head",
  28679. image: {
  28680. source: "./media/characters/cecelia-swift/head.svg"
  28681. }
  28682. },
  28683. rump: {
  28684. height: math.unit(1.75, "feet"),
  28685. name: "Rump",
  28686. image: {
  28687. source: "./media/characters/cecelia-swift/rump.svg"
  28688. }
  28689. },
  28690. },
  28691. [
  28692. {
  28693. name: "Normal",
  28694. height: math.unit(5 + 9 / 12, "feet"),
  28695. default: true
  28696. },
  28697. {
  28698. name: "Big",
  28699. height: math.unit(50, "feet")
  28700. },
  28701. {
  28702. name: "Macro",
  28703. height: math.unit(100, "feet")
  28704. },
  28705. {
  28706. name: "Macro+",
  28707. height: math.unit(500, "feet")
  28708. },
  28709. {
  28710. name: "Macro++",
  28711. height: math.unit(1000, "feet")
  28712. },
  28713. ]
  28714. ))
  28715. characterMakers.push(() => makeCharacter(
  28716. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28717. {
  28718. front: {
  28719. height: math.unit(6, "feet"),
  28720. weight: math.unit(150, "lb"),
  28721. name: "Front",
  28722. image: {
  28723. source: "./media/characters/kaunan/front.svg",
  28724. extra: 2890 / 2523,
  28725. bottom: 49 / 2939
  28726. }
  28727. },
  28728. },
  28729. [
  28730. {
  28731. name: "Macro",
  28732. height: math.unit(150, "feet"),
  28733. default: true
  28734. },
  28735. ]
  28736. ))
  28737. characterMakers.push(() => makeCharacter(
  28738. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28739. {
  28740. front: {
  28741. height: math.unit(175, "cm"),
  28742. weight: math.unit(60, "kg"),
  28743. name: "Front",
  28744. image: {
  28745. source: "./media/characters/fei/front.svg",
  28746. extra: 1873/1723,
  28747. bottom: 53/1926
  28748. }
  28749. },
  28750. },
  28751. [
  28752. {
  28753. name: "Mortal",
  28754. height: math.unit(175, "cm")
  28755. },
  28756. {
  28757. name: "Normal",
  28758. height: math.unit(3500, "m"),
  28759. default: true
  28760. },
  28761. {
  28762. name: "Stroll",
  28763. height: math.unit(17.5, "km")
  28764. },
  28765. {
  28766. name: "Showoff",
  28767. height: math.unit(175, "km")
  28768. },
  28769. ]
  28770. ))
  28771. characterMakers.push(() => makeCharacter(
  28772. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28773. {
  28774. front: {
  28775. height: math.unit(7, "feet"),
  28776. weight: math.unit(1000, "kg"),
  28777. name: "Front",
  28778. image: {
  28779. source: "./media/characters/edrax/front.svg",
  28780. extra: 2838 / 2550,
  28781. bottom: 130 / 2968
  28782. }
  28783. },
  28784. },
  28785. [
  28786. {
  28787. name: "Small",
  28788. height: math.unit(7, "feet")
  28789. },
  28790. {
  28791. name: "Normal",
  28792. height: math.unit(1500, "meters")
  28793. },
  28794. {
  28795. name: "Mega",
  28796. height: math.unit(12000000, "km"),
  28797. default: true
  28798. },
  28799. {
  28800. name: "Megamacro",
  28801. height: math.unit(10600000, "lightyears")
  28802. },
  28803. {
  28804. name: "Hypermacro",
  28805. height: math.unit(256, "yottameters")
  28806. },
  28807. ]
  28808. ))
  28809. characterMakers.push(() => makeCharacter(
  28810. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28811. {
  28812. front: {
  28813. height: math.unit(10, "feet"),
  28814. weight: math.unit(750, "lb"),
  28815. name: "Front",
  28816. image: {
  28817. source: "./media/characters/clove/front.svg",
  28818. extra: 1918/1751,
  28819. bottom: 52/1970
  28820. }
  28821. },
  28822. back: {
  28823. height: math.unit(10, "feet"),
  28824. weight: math.unit(750, "lb"),
  28825. name: "Back",
  28826. image: {
  28827. source: "./media/characters/clove/back.svg",
  28828. extra: 1912/1747,
  28829. bottom: 50/1962
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Normal",
  28836. height: math.unit(10, "feet"),
  28837. default: true
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(4, "feet"),
  28846. weight: math.unit(50, "lb"),
  28847. name: "Front",
  28848. image: {
  28849. source: "./media/characters/alex-rabbit/front.svg",
  28850. extra: 507 / 458,
  28851. bottom: 18.5 / 527
  28852. }
  28853. },
  28854. back: {
  28855. height: math.unit(4, "feet"),
  28856. weight: math.unit(50, "lb"),
  28857. name: "Back",
  28858. image: {
  28859. source: "./media/characters/alex-rabbit/back.svg",
  28860. extra: 502 / 460,
  28861. bottom: 18.9 / 521
  28862. }
  28863. },
  28864. },
  28865. [
  28866. {
  28867. name: "Normal",
  28868. height: math.unit(4, "feet"),
  28869. default: true
  28870. },
  28871. ]
  28872. ))
  28873. characterMakers.push(() => makeCharacter(
  28874. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28875. {
  28876. front: {
  28877. height: math.unit(1 + 3 / 12, "feet"),
  28878. weight: math.unit(80, "lb"),
  28879. name: "Front",
  28880. image: {
  28881. source: "./media/characters/zander-rose/front.svg",
  28882. extra: 916 / 797,
  28883. bottom: 17 / 933
  28884. }
  28885. },
  28886. back: {
  28887. height: math.unit(1 + 3 / 12, "feet"),
  28888. weight: math.unit(80, "lb"),
  28889. name: "Back",
  28890. image: {
  28891. source: "./media/characters/zander-rose/back.svg",
  28892. extra: 903 / 779,
  28893. bottom: 31 / 934
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Normal",
  28900. height: math.unit(1 + 3 / 12, "feet"),
  28901. default: true
  28902. },
  28903. ]
  28904. ))
  28905. characterMakers.push(() => makeCharacter(
  28906. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28907. {
  28908. anthro: {
  28909. height: math.unit(6, "feet"),
  28910. weight: math.unit(150, "lb"),
  28911. name: "Anthro",
  28912. image: {
  28913. source: "./media/characters/razz/anthro.svg",
  28914. extra: 1437 / 1343,
  28915. bottom: 48 / 1485
  28916. }
  28917. },
  28918. feral: {
  28919. height: math.unit(6, "feet"),
  28920. weight: math.unit(150, "lb"),
  28921. name: "Feral",
  28922. image: {
  28923. source: "./media/characters/razz/feral.svg",
  28924. extra: 2569 / 1385,
  28925. bottom: 95 / 2664
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Normal",
  28932. height: math.unit(6, "feet"),
  28933. default: true
  28934. },
  28935. ]
  28936. ))
  28937. characterMakers.push(() => makeCharacter(
  28938. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28939. {
  28940. front: {
  28941. height: math.unit(9 + 4 / 12, "feet"),
  28942. weight: math.unit(500, "lb"),
  28943. name: "Front",
  28944. image: {
  28945. source: "./media/characters/morrigan/front.svg",
  28946. extra: 2707 / 2579,
  28947. bottom: 156 / 2863
  28948. }
  28949. },
  28950. },
  28951. [
  28952. {
  28953. name: "Normal",
  28954. height: math.unit(9 + 4 / 12, "feet"),
  28955. default: true
  28956. },
  28957. ]
  28958. ))
  28959. characterMakers.push(() => makeCharacter(
  28960. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28961. {
  28962. front: {
  28963. height: math.unit(5, "stories"),
  28964. weight: math.unit(4000, "lb"),
  28965. name: "Front",
  28966. image: {
  28967. source: "./media/characters/jenene/front.svg",
  28968. extra: 1780 / 1710,
  28969. bottom: 57 / 1837
  28970. }
  28971. },
  28972. },
  28973. [
  28974. {
  28975. name: "Normal",
  28976. height: math.unit(5, "stories"),
  28977. default: true
  28978. },
  28979. ]
  28980. ))
  28981. characterMakers.push(() => makeCharacter(
  28982. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28983. {
  28984. taurSfw: {
  28985. height: math.unit(10, "meters"),
  28986. weight: math.unit(17500, "kg"),
  28987. name: "Taur",
  28988. image: {
  28989. source: "./media/characters/faey/taur-sfw.svg",
  28990. extra: 1200 / 968,
  28991. bottom: 41 / 1241
  28992. }
  28993. },
  28994. chestmaw: {
  28995. height: math.unit(2.01, "meters"),
  28996. name: "Chestmaw",
  28997. image: {
  28998. source: "./media/characters/faey/chestmaw.svg"
  28999. }
  29000. },
  29001. foot: {
  29002. height: math.unit(2.43, "meters"),
  29003. name: "Foot",
  29004. image: {
  29005. source: "./media/characters/faey/foot.svg"
  29006. }
  29007. },
  29008. jaws: {
  29009. height: math.unit(1.66, "meters"),
  29010. name: "Jaws",
  29011. image: {
  29012. source: "./media/characters/faey/jaws.svg"
  29013. }
  29014. },
  29015. tongues: {
  29016. height: math.unit(2.01, "meters"),
  29017. name: "Tongues",
  29018. image: {
  29019. source: "./media/characters/faey/tongues.svg"
  29020. }
  29021. },
  29022. },
  29023. [
  29024. {
  29025. name: "Small",
  29026. height: math.unit(10, "meters"),
  29027. default: true
  29028. },
  29029. {
  29030. name: "Big",
  29031. height: math.unit(500000, "km")
  29032. },
  29033. ]
  29034. ))
  29035. characterMakers.push(() => makeCharacter(
  29036. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29037. {
  29038. front: {
  29039. height: math.unit(7, "feet"),
  29040. weight: math.unit(275, "lb"),
  29041. name: "Front",
  29042. image: {
  29043. source: "./media/characters/roku/front.svg",
  29044. extra: 903 / 878,
  29045. bottom: 37 / 940
  29046. }
  29047. },
  29048. },
  29049. [
  29050. {
  29051. name: "Normal",
  29052. height: math.unit(7, "feet"),
  29053. default: true
  29054. },
  29055. {
  29056. name: "Macro",
  29057. height: math.unit(500, "feet")
  29058. },
  29059. {
  29060. name: "Megamacro",
  29061. height: math.unit(200, "miles")
  29062. },
  29063. ]
  29064. ))
  29065. characterMakers.push(() => makeCharacter(
  29066. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29067. {
  29068. front: {
  29069. height: math.unit(6 + 2 / 12, "feet"),
  29070. weight: math.unit(150, "lb"),
  29071. name: "Front",
  29072. image: {
  29073. source: "./media/characters/lira/front.svg",
  29074. extra: 1727 / 1605,
  29075. bottom: 26 / 1753
  29076. }
  29077. },
  29078. back: {
  29079. height: math.unit(6 + 2 / 12, "feet"),
  29080. weight: math.unit(150, "lb"),
  29081. name: "Back",
  29082. image: {
  29083. source: "./media/characters/lira/back.svg",
  29084. extra: 1713/1621,
  29085. bottom: 20/1733
  29086. }
  29087. },
  29088. hand: {
  29089. height: math.unit(0.75, "feet"),
  29090. name: "Hand",
  29091. image: {
  29092. source: "./media/characters/lira/hand.svg"
  29093. }
  29094. },
  29095. maw: {
  29096. height: math.unit(0.65, "feet"),
  29097. name: "Maw",
  29098. image: {
  29099. source: "./media/characters/lira/maw.svg"
  29100. }
  29101. },
  29102. pawDigi: {
  29103. height: math.unit(1.6, "feet"),
  29104. name: "Paw Digi",
  29105. image: {
  29106. source: "./media/characters/lira/paw-digi.svg"
  29107. }
  29108. },
  29109. pawPlanti: {
  29110. height: math.unit(1.4, "feet"),
  29111. name: "Paw Planti",
  29112. image: {
  29113. source: "./media/characters/lira/paw-planti.svg"
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Normal",
  29120. height: math.unit(6 + 2 / 12, "feet"),
  29121. default: true
  29122. },
  29123. {
  29124. name: "Macro",
  29125. height: math.unit(100, "feet")
  29126. },
  29127. {
  29128. name: "Macro²",
  29129. height: math.unit(1600, "feet")
  29130. },
  29131. {
  29132. name: "Planetary",
  29133. height: math.unit(20, "earths")
  29134. },
  29135. ]
  29136. ))
  29137. characterMakers.push(() => makeCharacter(
  29138. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29139. {
  29140. front: {
  29141. height: math.unit(6, "feet"),
  29142. weight: math.unit(150, "lb"),
  29143. name: "Front",
  29144. image: {
  29145. source: "./media/characters/hadjet/front.svg",
  29146. extra: 1480 / 1346,
  29147. bottom: 26 / 1506
  29148. }
  29149. },
  29150. frontNsfw: {
  29151. height: math.unit(6, "feet"),
  29152. weight: math.unit(150, "lb"),
  29153. name: "Front (NSFW)",
  29154. image: {
  29155. source: "./media/characters/hadjet/front-nsfw.svg",
  29156. extra: 1440 / 1358,
  29157. bottom: 52 / 1492
  29158. }
  29159. },
  29160. },
  29161. [
  29162. {
  29163. name: "Macro",
  29164. height: math.unit(10, "stories"),
  29165. default: true
  29166. },
  29167. {
  29168. name: "Megamacro",
  29169. height: math.unit(1.5, "miles")
  29170. },
  29171. {
  29172. name: "Megamacro+",
  29173. height: math.unit(5, "miles")
  29174. },
  29175. ]
  29176. ))
  29177. characterMakers.push(() => makeCharacter(
  29178. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29179. {
  29180. side: {
  29181. height: math.unit(106, "feet"),
  29182. weight: math.unit(500, "tonnes"),
  29183. name: "Side",
  29184. image: {
  29185. source: "./media/characters/kodran/side.svg",
  29186. extra: 553 / 480,
  29187. bottom: 33 / 586
  29188. }
  29189. },
  29190. front: {
  29191. height: math.unit(132, "feet"),
  29192. weight: math.unit(500, "tonnes"),
  29193. name: "Front",
  29194. image: {
  29195. source: "./media/characters/kodran/front.svg",
  29196. extra: 667 / 643,
  29197. bottom: 42 / 709
  29198. }
  29199. },
  29200. flying: {
  29201. height: math.unit(350, "feet"),
  29202. weight: math.unit(500, "tonnes"),
  29203. name: "Flying",
  29204. image: {
  29205. source: "./media/characters/kodran/flying.svg"
  29206. }
  29207. },
  29208. foot: {
  29209. height: math.unit(33, "feet"),
  29210. name: "Foot",
  29211. image: {
  29212. source: "./media/characters/kodran/foot.svg"
  29213. }
  29214. },
  29215. footFront: {
  29216. height: math.unit(19, "feet"),
  29217. name: "Foot (Front)",
  29218. image: {
  29219. source: "./media/characters/kodran/foot-front.svg",
  29220. extra: 261 / 261,
  29221. bottom: 91 / 352
  29222. }
  29223. },
  29224. headFront: {
  29225. height: math.unit(53, "feet"),
  29226. name: "Head (Front)",
  29227. image: {
  29228. source: "./media/characters/kodran/head-front.svg"
  29229. }
  29230. },
  29231. headSide: {
  29232. height: math.unit(65, "feet"),
  29233. name: "Head (Side)",
  29234. image: {
  29235. source: "./media/characters/kodran/head-side.svg"
  29236. }
  29237. },
  29238. throat: {
  29239. height: math.unit(79, "feet"),
  29240. name: "Throat",
  29241. image: {
  29242. source: "./media/characters/kodran/throat.svg"
  29243. }
  29244. },
  29245. },
  29246. [
  29247. {
  29248. name: "Large",
  29249. height: math.unit(106, "feet"),
  29250. default: true
  29251. },
  29252. ]
  29253. ))
  29254. characterMakers.push(() => makeCharacter(
  29255. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29256. {
  29257. side: {
  29258. height: math.unit(11, "feet"),
  29259. weight: math.unit(150, "lb"),
  29260. name: "Side",
  29261. image: {
  29262. source: "./media/characters/pyxaron/side.svg",
  29263. extra: 305 / 195,
  29264. bottom: 17 / 322
  29265. }
  29266. },
  29267. },
  29268. [
  29269. {
  29270. name: "Normal",
  29271. height: math.unit(11, "feet"),
  29272. default: true
  29273. },
  29274. ]
  29275. ))
  29276. characterMakers.push(() => makeCharacter(
  29277. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29278. {
  29279. front: {
  29280. height: math.unit(6, "feet"),
  29281. weight: math.unit(150, "lb"),
  29282. name: "Front",
  29283. image: {
  29284. source: "./media/characters/meep/front.svg",
  29285. extra: 88 / 80,
  29286. bottom: 6 / 94
  29287. }
  29288. },
  29289. },
  29290. [
  29291. {
  29292. name: "Fun Sized",
  29293. height: math.unit(2, "inches"),
  29294. default: true
  29295. },
  29296. {
  29297. name: "Friend Sized",
  29298. height: math.unit(8, "inches")
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29304. {
  29305. front: {
  29306. height: math.unit(15, "feet"),
  29307. weight: math.unit(2500, "lb"),
  29308. name: "Front",
  29309. image: {
  29310. source: "./media/characters/holly-rabbit/front.svg",
  29311. extra: 1433 / 1233,
  29312. bottom: 125 / 1558
  29313. }
  29314. },
  29315. dick: {
  29316. height: math.unit(4.6, "feet"),
  29317. name: "Dick",
  29318. image: {
  29319. source: "./media/characters/holly-rabbit/dick.svg"
  29320. }
  29321. },
  29322. },
  29323. [
  29324. {
  29325. name: "Normal",
  29326. height: math.unit(15, "feet"),
  29327. default: true
  29328. },
  29329. {
  29330. name: "Macro",
  29331. height: math.unit(250, "feet")
  29332. },
  29333. {
  29334. name: "Macro+",
  29335. height: math.unit(2500, "feet")
  29336. },
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29341. {
  29342. front: {
  29343. height: math.unit(3.02, "meters"),
  29344. weight: math.unit(500, "kg"),
  29345. name: "Front",
  29346. image: {
  29347. source: "./media/characters/drena/front.svg",
  29348. extra: 282 / 243,
  29349. bottom: 8 / 290
  29350. }
  29351. },
  29352. side: {
  29353. height: math.unit(3.02, "meters"),
  29354. weight: math.unit(500, "kg"),
  29355. name: "Side",
  29356. image: {
  29357. source: "./media/characters/drena/side.svg",
  29358. extra: 280 / 245,
  29359. bottom: 10 / 290
  29360. }
  29361. },
  29362. back: {
  29363. height: math.unit(3.02, "meters"),
  29364. weight: math.unit(500, "kg"),
  29365. name: "Back",
  29366. image: {
  29367. source: "./media/characters/drena/back.svg",
  29368. extra: 278 / 243,
  29369. bottom: 2 / 280
  29370. }
  29371. },
  29372. foot: {
  29373. height: math.unit(0.75, "meters"),
  29374. name: "Foot",
  29375. image: {
  29376. source: "./media/characters/drena/foot.svg"
  29377. }
  29378. },
  29379. maw: {
  29380. height: math.unit(0.82, "meters"),
  29381. name: "Maw",
  29382. image: {
  29383. source: "./media/characters/drena/maw.svg"
  29384. }
  29385. },
  29386. eating: {
  29387. height: math.unit(0.75, "meters"),
  29388. name: "Eating",
  29389. image: {
  29390. source: "./media/characters/drena/eating.svg"
  29391. }
  29392. },
  29393. rump: {
  29394. height: math.unit(0.93, "meters"),
  29395. name: "Rump",
  29396. image: {
  29397. source: "./media/characters/drena/rump.svg"
  29398. }
  29399. },
  29400. },
  29401. [
  29402. {
  29403. name: "Normal",
  29404. height: math.unit(3.02, "meters"),
  29405. default: true
  29406. },
  29407. ]
  29408. ))
  29409. characterMakers.push(() => makeCharacter(
  29410. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29411. {
  29412. front: {
  29413. height: math.unit(6 + 4 / 12, "feet"),
  29414. weight: math.unit(250, "lb"),
  29415. name: "Front",
  29416. image: {
  29417. source: "./media/characters/remmyzilla/front.svg",
  29418. extra: 4033 / 3588,
  29419. bottom: 123 / 4156
  29420. }
  29421. },
  29422. back: {
  29423. height: math.unit(6 + 4 / 12, "feet"),
  29424. weight: math.unit(250, "lb"),
  29425. name: "Back",
  29426. image: {
  29427. source: "./media/characters/remmyzilla/back.svg",
  29428. extra: 2687 / 2555,
  29429. bottom: 48 / 2735
  29430. }
  29431. },
  29432. paw: {
  29433. height: math.unit(1.73, "feet"),
  29434. name: "Paw",
  29435. image: {
  29436. source: "./media/characters/remmyzilla/paw.svg"
  29437. }
  29438. },
  29439. maw: {
  29440. height: math.unit(1.73, "feet"),
  29441. name: "Maw",
  29442. image: {
  29443. source: "./media/characters/remmyzilla/maw.svg"
  29444. }
  29445. },
  29446. },
  29447. [
  29448. {
  29449. name: "Normal",
  29450. height: math.unit(6 + 4 / 12, "feet")
  29451. },
  29452. {
  29453. name: "Minimacro",
  29454. height: math.unit(12 + 8 / 12, "feet")
  29455. },
  29456. {
  29457. name: "Normal",
  29458. height: math.unit(640, "feet"),
  29459. default: true
  29460. },
  29461. {
  29462. name: "Megamacro",
  29463. height: math.unit(6400, "feet")
  29464. },
  29465. {
  29466. name: "Gigamacro",
  29467. height: math.unit(64000, "miles")
  29468. },
  29469. ]
  29470. ))
  29471. characterMakers.push(() => makeCharacter(
  29472. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29473. {
  29474. front: {
  29475. height: math.unit(2.5, "meters"),
  29476. weight: math.unit(300, "lb"),
  29477. name: "Front",
  29478. image: {
  29479. source: "./media/characters/lawrence/front.svg",
  29480. extra: 357 / 335,
  29481. bottom: 30 / 387
  29482. }
  29483. },
  29484. back: {
  29485. height: math.unit(2.5, "meters"),
  29486. weight: math.unit(300, "lb"),
  29487. name: "Back",
  29488. image: {
  29489. source: "./media/characters/lawrence/back.svg",
  29490. extra: 357 / 338,
  29491. bottom: 16 / 373
  29492. }
  29493. },
  29494. head: {
  29495. height: math.unit(0.9, "meter"),
  29496. name: "Head",
  29497. image: {
  29498. source: "./media/characters/lawrence/head.svg"
  29499. }
  29500. },
  29501. maw: {
  29502. height: math.unit(0.7, "meter"),
  29503. name: "Maw",
  29504. image: {
  29505. source: "./media/characters/lawrence/maw.svg"
  29506. }
  29507. },
  29508. footBottom: {
  29509. height: math.unit(0.5, "meter"),
  29510. name: "Foot (Bottom)",
  29511. image: {
  29512. source: "./media/characters/lawrence/foot-bottom.svg"
  29513. }
  29514. },
  29515. footTop: {
  29516. height: math.unit(0.5, "meter"),
  29517. name: "Foot (Top)",
  29518. image: {
  29519. source: "./media/characters/lawrence/foot-top.svg"
  29520. }
  29521. },
  29522. },
  29523. [
  29524. {
  29525. name: "Normal",
  29526. height: math.unit(2.5, "meters"),
  29527. default: true
  29528. },
  29529. {
  29530. name: "Macro",
  29531. height: math.unit(95, "meters")
  29532. },
  29533. {
  29534. name: "Megamacro",
  29535. height: math.unit(150, "km")
  29536. },
  29537. ]
  29538. ))
  29539. characterMakers.push(() => makeCharacter(
  29540. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29541. {
  29542. front: {
  29543. height: math.unit(4.2, "meters"),
  29544. name: "Front",
  29545. image: {
  29546. source: "./media/characters/sydney/front.svg",
  29547. extra: 1323 / 1277,
  29548. bottom: 111 / 1434
  29549. }
  29550. },
  29551. },
  29552. [
  29553. {
  29554. name: "Normal",
  29555. height: math.unit(4.2, "meters"),
  29556. default: true
  29557. },
  29558. ]
  29559. ))
  29560. characterMakers.push(() => makeCharacter(
  29561. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29562. {
  29563. back: {
  29564. height: math.unit(201, "feet"),
  29565. name: "Back",
  29566. image: {
  29567. source: "./media/characters/jessica/back.svg",
  29568. extra: 273 / 259,
  29569. bottom: 7 / 280
  29570. }
  29571. },
  29572. },
  29573. [
  29574. {
  29575. name: "Normal",
  29576. height: math.unit(201, "feet"),
  29577. default: true
  29578. },
  29579. {
  29580. name: "Megamacro",
  29581. height: math.unit(8, "miles")
  29582. },
  29583. ]
  29584. ))
  29585. characterMakers.push(() => makeCharacter(
  29586. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29587. {
  29588. side: {
  29589. height: math.unit(5.6, "m"),
  29590. weight: math.unit(8000, "kg"),
  29591. name: "Side",
  29592. image: {
  29593. source: "./media/characters/victoria/side.svg",
  29594. extra: 1542/1229,
  29595. bottom: 124/1666
  29596. }
  29597. },
  29598. maw: {
  29599. height: math.unit(7.14, "feet"),
  29600. name: "Maw",
  29601. image: {
  29602. source: "./media/characters/victoria/maw.svg"
  29603. }
  29604. },
  29605. },
  29606. [
  29607. {
  29608. name: "Normal",
  29609. height: math.unit(5.6, "m"),
  29610. default: true
  29611. },
  29612. ]
  29613. ))
  29614. characterMakers.push(() => makeCharacter(
  29615. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29616. {
  29617. front: {
  29618. height: math.unit(5 + 6 / 12, "feet"),
  29619. name: "Front",
  29620. image: {
  29621. source: "./media/characters/cat/front.svg",
  29622. extra: 1449/1295,
  29623. bottom: 34/1483
  29624. },
  29625. form: "cat",
  29626. default: true
  29627. },
  29628. back: {
  29629. height: math.unit(5 + 6 / 12, "feet"),
  29630. name: "Back",
  29631. image: {
  29632. source: "./media/characters/cat/back.svg",
  29633. extra: 1466/1301,
  29634. bottom: 19/1485
  29635. },
  29636. form: "cat"
  29637. },
  29638. taur: {
  29639. height: math.unit(7, "feet"),
  29640. name: "Taur",
  29641. image: {
  29642. source: "./media/characters/cat/taur.svg",
  29643. extra: 1389/1233,
  29644. bottom: 83/1472
  29645. },
  29646. form: "taur",
  29647. default: true
  29648. },
  29649. lucarioFront: {
  29650. height: math.unit(4, "feet"),
  29651. name: "Lucario (Front)",
  29652. image: {
  29653. source: "./media/characters/cat/lucario-front.svg",
  29654. extra: 1149/1019,
  29655. bottom: 84/1233
  29656. },
  29657. form: "lucario",
  29658. default: true
  29659. },
  29660. lucarioBack: {
  29661. height: math.unit(4, "feet"),
  29662. name: "Lucario (Back)",
  29663. image: {
  29664. source: "./media/characters/cat/lucario-back.svg",
  29665. extra: 1190/1059,
  29666. bottom: 33/1223
  29667. },
  29668. form: "lucario"
  29669. },
  29670. megaLucario: {
  29671. height: math.unit(4, "feet"),
  29672. name: "Mega Lucario",
  29673. image: {
  29674. source: "./media/characters/cat/mega-lucario.svg",
  29675. extra: 1515 / 1319,
  29676. bottom: 63 / 1578
  29677. },
  29678. form: "lucario"
  29679. },
  29680. nickit: {
  29681. height: math.unit(2, "feet"),
  29682. name: "Nickit",
  29683. image: {
  29684. source: "./media/characters/cat/nickit.svg",
  29685. extra: 1980 / 1585,
  29686. bottom: 102 / 2082
  29687. },
  29688. form: "nickit",
  29689. default: true
  29690. },
  29691. lopunnyFront: {
  29692. height: math.unit(5, "feet"),
  29693. name: "Lopunny (Front)",
  29694. image: {
  29695. source: "./media/characters/cat/lopunny-front.svg",
  29696. extra: 1782 / 1469,
  29697. bottom: 38 / 1820
  29698. },
  29699. form: "lopunny",
  29700. default: true
  29701. },
  29702. lopunnyBack: {
  29703. height: math.unit(5, "feet"),
  29704. name: "Lopunny (Back)",
  29705. image: {
  29706. source: "./media/characters/cat/lopunny-back.svg",
  29707. extra: 1660 / 1490,
  29708. bottom: 25 / 1685
  29709. },
  29710. form: "lopunny"
  29711. },
  29712. },
  29713. [
  29714. {
  29715. name: "Really small",
  29716. height: math.unit(1, "nm")
  29717. },
  29718. {
  29719. name: "Micro",
  29720. height: math.unit(5, "inches")
  29721. },
  29722. {
  29723. name: "Normal",
  29724. height: math.unit(5 + 6 / 12, "feet"),
  29725. default: true
  29726. },
  29727. {
  29728. name: "Macro",
  29729. height: math.unit(50, "feet")
  29730. },
  29731. {
  29732. name: "Macro+",
  29733. height: math.unit(150, "feet")
  29734. },
  29735. {
  29736. name: "Megamacro",
  29737. height: math.unit(100, "miles")
  29738. },
  29739. ]
  29740. ))
  29741. characterMakers.push(() => makeCharacter(
  29742. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29743. {
  29744. front: {
  29745. height: math.unit(63.4, "meters"),
  29746. weight: math.unit(3.28349e+6, "kilograms"),
  29747. name: "Front",
  29748. image: {
  29749. source: "./media/characters/kirina-violet/front.svg",
  29750. extra: 2812 / 2725,
  29751. bottom: 0 / 2812
  29752. }
  29753. },
  29754. back: {
  29755. height: math.unit(63.4, "meters"),
  29756. weight: math.unit(3.28349e+6, "kilograms"),
  29757. name: "Back",
  29758. image: {
  29759. source: "./media/characters/kirina-violet/back.svg",
  29760. extra: 2812 / 2725,
  29761. bottom: 0 / 2812
  29762. }
  29763. },
  29764. mouth: {
  29765. height: math.unit(4.35, "meters"),
  29766. name: "Mouth",
  29767. image: {
  29768. source: "./media/characters/kirina-violet/mouth.svg"
  29769. }
  29770. },
  29771. paw: {
  29772. height: math.unit(5.6, "meters"),
  29773. name: "Paw",
  29774. image: {
  29775. source: "./media/characters/kirina-violet/paw.svg"
  29776. }
  29777. },
  29778. tail: {
  29779. height: math.unit(18, "meters"),
  29780. name: "Tail",
  29781. image: {
  29782. source: "./media/characters/kirina-violet/tail.svg"
  29783. }
  29784. },
  29785. },
  29786. [
  29787. {
  29788. name: "Macro",
  29789. height: math.unit(63.4, "meters"),
  29790. default: true
  29791. },
  29792. ]
  29793. ))
  29794. characterMakers.push(() => makeCharacter(
  29795. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29796. {
  29797. front: {
  29798. height: math.unit(75, "feet"),
  29799. name: "Front",
  29800. image: {
  29801. source: "./media/characters/cat-gigachu/front.svg",
  29802. extra: 1239/1027,
  29803. bottom: 32/1271
  29804. }
  29805. },
  29806. back: {
  29807. height: math.unit(75, "feet"),
  29808. name: "Back",
  29809. image: {
  29810. source: "./media/characters/cat-gigachu/back.svg",
  29811. extra: 1229/1030,
  29812. bottom: 9/1238
  29813. }
  29814. },
  29815. },
  29816. [
  29817. {
  29818. name: "Dynamax",
  29819. height: math.unit(75, "feet"),
  29820. default: true
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29826. {
  29827. front: {
  29828. height: math.unit(6, "feet"),
  29829. weight: math.unit(150, "lb"),
  29830. name: "Front",
  29831. image: {
  29832. source: "./media/characters/sfaiyan/front.svg",
  29833. extra: 999 / 978,
  29834. bottom: 5 / 1004
  29835. }
  29836. },
  29837. },
  29838. [
  29839. {
  29840. name: "Normal",
  29841. height: math.unit(1.82, "meters")
  29842. },
  29843. {
  29844. name: "Giant",
  29845. height: math.unit(2.27, "km"),
  29846. default: true
  29847. },
  29848. ]
  29849. ))
  29850. characterMakers.push(() => makeCharacter(
  29851. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29852. {
  29853. front: {
  29854. height: math.unit(179, "cm"),
  29855. weight: math.unit(100, "kg"),
  29856. name: "Front",
  29857. image: {
  29858. source: "./media/characters/raunehkeli/front.svg",
  29859. extra: 1934 / 1926,
  29860. bottom: 0 / 1934
  29861. }
  29862. },
  29863. },
  29864. [
  29865. {
  29866. name: "Normal",
  29867. height: math.unit(179, "cm")
  29868. },
  29869. {
  29870. name: "Maximum",
  29871. height: math.unit(575, "meters"),
  29872. default: true
  29873. },
  29874. ]
  29875. ))
  29876. characterMakers.push(() => makeCharacter(
  29877. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29878. {
  29879. front: {
  29880. height: math.unit(6, "feet"),
  29881. weight: math.unit(150, "lb"),
  29882. name: "Front",
  29883. image: {
  29884. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29885. extra: 2625 / 2518,
  29886. bottom: 60 / 2685
  29887. }
  29888. },
  29889. },
  29890. [
  29891. {
  29892. name: "Normal",
  29893. height: math.unit(6 + 2 / 12, "feet")
  29894. },
  29895. {
  29896. name: "Macro",
  29897. height: math.unit(1180, "feet"),
  29898. default: true
  29899. },
  29900. ]
  29901. ))
  29902. characterMakers.push(() => makeCharacter(
  29903. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29904. {
  29905. front: {
  29906. height: math.unit(5 + 6 / 12, "feet"),
  29907. weight: math.unit(108, "lb"),
  29908. name: "Front",
  29909. image: {
  29910. source: "./media/characters/lilith-zott/front.svg",
  29911. extra: 2510 / 2238,
  29912. bottom: 100 / 2610
  29913. }
  29914. },
  29915. frontDressed: {
  29916. height: math.unit(5 + 6 / 12, "feet"),
  29917. weight: math.unit(108, "lb"),
  29918. name: "Front (Dressed)",
  29919. image: {
  29920. source: "./media/characters/lilith-zott/front-dressed.svg",
  29921. extra: 2510 / 2238,
  29922. bottom: 100 / 2610
  29923. }
  29924. },
  29925. },
  29926. [
  29927. {
  29928. name: "Normal",
  29929. height: math.unit(5 + 6 / 12, "feet")
  29930. },
  29931. {
  29932. name: "Macro",
  29933. height: math.unit(1030, "feet"),
  29934. default: true
  29935. },
  29936. ]
  29937. ))
  29938. characterMakers.push(() => makeCharacter(
  29939. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29940. {
  29941. front: {
  29942. height: math.unit(6, "feet"),
  29943. weight: math.unit(150, "lb"),
  29944. name: "Front",
  29945. image: {
  29946. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29947. extra: 2567 / 2435,
  29948. bottom: 39 / 2606
  29949. }
  29950. },
  29951. frontSuper: {
  29952. height: math.unit(6, "feet"),
  29953. name: "Front (Super)",
  29954. image: {
  29955. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29956. extra: 2567 / 2435,
  29957. bottom: 39 / 2606
  29958. }
  29959. },
  29960. },
  29961. [
  29962. {
  29963. name: "Normal",
  29964. height: math.unit(5 + 10 / 12, "feet")
  29965. },
  29966. {
  29967. name: "Macro",
  29968. height: math.unit(1100, "feet"),
  29969. default: true
  29970. },
  29971. ]
  29972. ))
  29973. characterMakers.push(() => makeCharacter(
  29974. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29975. {
  29976. front: {
  29977. height: math.unit(100, "miles"),
  29978. name: "Front",
  29979. image: {
  29980. source: "./media/characters/sona/front.svg",
  29981. extra: 2433 / 2201,
  29982. bottom: 53 / 2486
  29983. }
  29984. },
  29985. foot: {
  29986. height: math.unit(16.1, "miles"),
  29987. name: "Foot",
  29988. image: {
  29989. source: "./media/characters/sona/foot.svg"
  29990. }
  29991. },
  29992. },
  29993. [
  29994. {
  29995. name: "Macro",
  29996. height: math.unit(100, "miles"),
  29997. default: true
  29998. },
  29999. ]
  30000. ))
  30001. characterMakers.push(() => makeCharacter(
  30002. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30003. {
  30004. front: {
  30005. height: math.unit(6, "feet"),
  30006. weight: math.unit(150, "lb"),
  30007. name: "Front",
  30008. image: {
  30009. source: "./media/characters/bailey/front.svg",
  30010. extra: 1778 / 1724,
  30011. bottom: 30 / 1808
  30012. }
  30013. },
  30014. },
  30015. [
  30016. {
  30017. name: "Micro",
  30018. height: math.unit(4, "inches")
  30019. },
  30020. {
  30021. name: "Normal",
  30022. height: math.unit(5 + 5 / 12, "feet"),
  30023. default: true
  30024. },
  30025. {
  30026. name: "Macro",
  30027. height: math.unit(250, "feet")
  30028. },
  30029. {
  30030. name: "Megamacro",
  30031. height: math.unit(100, "miles")
  30032. },
  30033. ]
  30034. ))
  30035. characterMakers.push(() => makeCharacter(
  30036. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30037. {
  30038. front: {
  30039. height: math.unit(5 + 2 / 12, "feet"),
  30040. weight: math.unit(120, "lb"),
  30041. name: "Front",
  30042. image: {
  30043. source: "./media/characters/snaps/front.svg",
  30044. extra: 2370 / 2177,
  30045. bottom: 48 / 2418
  30046. }
  30047. },
  30048. back: {
  30049. height: math.unit(5 + 2 / 12, "feet"),
  30050. weight: math.unit(120, "lb"),
  30051. name: "Back",
  30052. image: {
  30053. source: "./media/characters/snaps/back.svg",
  30054. extra: 2408 / 2258,
  30055. bottom: 15 / 2423
  30056. }
  30057. },
  30058. },
  30059. [
  30060. {
  30061. name: "Micro",
  30062. height: math.unit(9, "inches")
  30063. },
  30064. {
  30065. name: "Normal",
  30066. height: math.unit(5 + 2 / 12, "feet"),
  30067. default: true
  30068. },
  30069. {
  30070. name: "Mini Macro",
  30071. height: math.unit(10, "feet")
  30072. },
  30073. ]
  30074. ))
  30075. characterMakers.push(() => makeCharacter(
  30076. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30077. {
  30078. front: {
  30079. height: math.unit(1.8, "meters"),
  30080. weight: math.unit(85, "kg"),
  30081. name: "Front",
  30082. image: {
  30083. source: "./media/characters/azteck/front.svg",
  30084. extra: 2815 / 2625,
  30085. bottom: 89 / 2904
  30086. }
  30087. },
  30088. back: {
  30089. height: math.unit(1.8, "meters"),
  30090. weight: math.unit(85, "kg"),
  30091. name: "Back",
  30092. image: {
  30093. source: "./media/characters/azteck/back.svg",
  30094. extra: 2856 / 2648,
  30095. bottom: 85 / 2941
  30096. }
  30097. },
  30098. frontDressed: {
  30099. height: math.unit(1.8, "meters"),
  30100. weight: math.unit(85, "kg"),
  30101. name: "Front (Dressed)",
  30102. image: {
  30103. source: "./media/characters/azteck/front-dressed.svg",
  30104. extra: 2147 / 2003,
  30105. bottom: 68 / 2215
  30106. }
  30107. },
  30108. head: {
  30109. height: math.unit(0.47, "meters"),
  30110. weight: math.unit(85, "kg"),
  30111. name: "Head",
  30112. image: {
  30113. source: "./media/characters/azteck/head.svg"
  30114. }
  30115. },
  30116. },
  30117. [
  30118. {
  30119. name: "Bite sized",
  30120. height: math.unit(16, "cm")
  30121. },
  30122. {
  30123. name: "Normal",
  30124. height: math.unit(1.8, "meters"),
  30125. default: true
  30126. },
  30127. ]
  30128. ))
  30129. characterMakers.push(() => makeCharacter(
  30130. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30131. {
  30132. front: {
  30133. height: math.unit(6, "feet"),
  30134. weight: math.unit(150, "lb"),
  30135. name: "Front",
  30136. image: {
  30137. source: "./media/characters/pidge/front.svg",
  30138. extra: 620 / 588,
  30139. bottom: 9 / 629
  30140. }
  30141. },
  30142. back: {
  30143. height: math.unit(6, "feet"),
  30144. weight: math.unit(150, "lb"),
  30145. name: "Back",
  30146. image: {
  30147. source: "./media/characters/pidge/back.svg",
  30148. extra: 620 / 588,
  30149. bottom: 9 / 629
  30150. }
  30151. },
  30152. },
  30153. [
  30154. {
  30155. name: "Macro",
  30156. height: math.unit(1, "mile"),
  30157. default: true
  30158. },
  30159. ]
  30160. ))
  30161. characterMakers.push(() => makeCharacter(
  30162. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30163. {
  30164. front: {
  30165. height: math.unit(6, "feet"),
  30166. weight: math.unit(150, "lb"),
  30167. name: "Front",
  30168. image: {
  30169. source: "./media/characters/en/front.svg",
  30170. extra: 1697 / 1563,
  30171. bottom: 103 / 1800
  30172. }
  30173. },
  30174. back: {
  30175. height: math.unit(6, "feet"),
  30176. weight: math.unit(150, "lb"),
  30177. name: "Back",
  30178. image: {
  30179. source: "./media/characters/en/back.svg",
  30180. extra: 1700 / 1570,
  30181. bottom: 51 / 1751
  30182. }
  30183. },
  30184. frontDressed: {
  30185. height: math.unit(6, "feet"),
  30186. weight: math.unit(150, "lb"),
  30187. name: "Front (Dressed)",
  30188. image: {
  30189. source: "./media/characters/en/front-dressed.svg",
  30190. extra: 1697 / 1563,
  30191. bottom: 103 / 1800
  30192. }
  30193. },
  30194. backDressed: {
  30195. height: math.unit(6, "feet"),
  30196. weight: math.unit(150, "lb"),
  30197. name: "Back (Dressed)",
  30198. image: {
  30199. source: "./media/characters/en/back-dressed.svg",
  30200. extra: 1700 / 1570,
  30201. bottom: 51 / 1751
  30202. }
  30203. },
  30204. },
  30205. [
  30206. {
  30207. name: "Macro",
  30208. height: math.unit(210, "feet"),
  30209. default: true
  30210. },
  30211. ]
  30212. ))
  30213. characterMakers.push(() => makeCharacter(
  30214. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30215. {
  30216. front: {
  30217. height: math.unit(6, "feet"),
  30218. weight: math.unit(150, "lb"),
  30219. name: "Front",
  30220. image: {
  30221. source: "./media/characters/haze-orris/front.svg",
  30222. extra: 3975 / 3525,
  30223. bottom: 137 / 4112
  30224. }
  30225. },
  30226. },
  30227. [
  30228. {
  30229. name: "Micro",
  30230. height: math.unit(150, "mm"),
  30231. default: true
  30232. },
  30233. ]
  30234. ))
  30235. characterMakers.push(() => makeCharacter(
  30236. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30237. {
  30238. front: {
  30239. height: math.unit(6, "feet"),
  30240. weight: math.unit(150, "lb"),
  30241. name: "Front",
  30242. image: {
  30243. source: "./media/characters/casselene-yaro/front.svg",
  30244. extra: 4721 / 4541,
  30245. bottom: 82 / 4803
  30246. }
  30247. },
  30248. back: {
  30249. height: math.unit(6, "feet"),
  30250. weight: math.unit(150, "lb"),
  30251. name: "Back",
  30252. image: {
  30253. source: "./media/characters/casselene-yaro/back.svg",
  30254. extra: 4569 / 4377,
  30255. bottom: 69 / 4638
  30256. }
  30257. },
  30258. frontDressed: {
  30259. height: math.unit(6, "feet"),
  30260. weight: math.unit(150, "lb"),
  30261. name: "Front-dressed",
  30262. image: {
  30263. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30264. extra: 4721 / 4541,
  30265. bottom: 82 / 4803
  30266. }
  30267. },
  30268. },
  30269. [
  30270. {
  30271. name: "Macro",
  30272. height: math.unit(190, "feet"),
  30273. default: true
  30274. },
  30275. ]
  30276. ))
  30277. characterMakers.push(() => makeCharacter(
  30278. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30279. {
  30280. front: {
  30281. height: math.unit(6, "feet"),
  30282. weight: math.unit(150, "lb"),
  30283. name: "Front",
  30284. image: {
  30285. source: "./media/characters/myra-rue-delore/front.svg",
  30286. extra: 1340 / 1308,
  30287. bottom: 67 / 1407
  30288. }
  30289. },
  30290. back: {
  30291. height: math.unit(6, "feet"),
  30292. weight: math.unit(150, "lb"),
  30293. name: "Back",
  30294. image: {
  30295. source: "./media/characters/myra-rue-delore/back.svg",
  30296. extra: 1341 / 1310,
  30297. bottom: 40 / 1381
  30298. }
  30299. },
  30300. frontDressed: {
  30301. height: math.unit(6, "feet"),
  30302. weight: math.unit(150, "lb"),
  30303. name: "Front (Dressed)",
  30304. image: {
  30305. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30306. extra: 1340 / 1308,
  30307. bottom: 67 / 1407
  30308. }
  30309. },
  30310. },
  30311. [
  30312. {
  30313. name: "Macro",
  30314. height: math.unit(150, "feet"),
  30315. default: true
  30316. },
  30317. ]
  30318. ))
  30319. characterMakers.push(() => makeCharacter(
  30320. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30321. {
  30322. front: {
  30323. height: math.unit(10, "feet"),
  30324. weight: math.unit(15015, "lb"),
  30325. name: "Front",
  30326. image: {
  30327. source: "./media/characters/fem!plat/front.svg",
  30328. extra: 2799 / 2604,
  30329. bottom: 149 / 2948
  30330. }
  30331. },
  30332. },
  30333. [
  30334. {
  30335. name: "Normal",
  30336. height: math.unit(10, "feet"),
  30337. default: true
  30338. },
  30339. {
  30340. name: "Macro",
  30341. height: math.unit(100, "feet")
  30342. },
  30343. {
  30344. name: "Megamacro",
  30345. height: math.unit(1000, "feet")
  30346. },
  30347. ]
  30348. ))
  30349. characterMakers.push(() => makeCharacter(
  30350. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30351. {
  30352. front: {
  30353. height: math.unit(15 + 5 / 12, "feet"),
  30354. weight: math.unit(4600, "lb"),
  30355. name: "Front",
  30356. image: {
  30357. source: "./media/characters/neapolitan-ananassa/front.svg",
  30358. extra: 2903 / 2736,
  30359. bottom: 0 / 2903
  30360. }
  30361. },
  30362. side: {
  30363. height: math.unit(15 + 5 / 12, "feet"),
  30364. weight: math.unit(4600, "lb"),
  30365. name: "Side",
  30366. image: {
  30367. source: "./media/characters/neapolitan-ananassa/side.svg",
  30368. extra: 2925 / 2719,
  30369. bottom: 0 / 2925
  30370. }
  30371. },
  30372. back: {
  30373. height: math.unit(15 + 5 / 12, "feet"),
  30374. weight: math.unit(4600, "lb"),
  30375. name: "Back",
  30376. image: {
  30377. source: "./media/characters/neapolitan-ananassa/back.svg",
  30378. extra: 2903 / 2736,
  30379. bottom: 0 / 2903
  30380. }
  30381. },
  30382. },
  30383. [
  30384. {
  30385. name: "Normal",
  30386. height: math.unit(15 + 5 / 12, "feet"),
  30387. default: true
  30388. },
  30389. {
  30390. name: "Post-Millenium",
  30391. height: math.unit(35 + 5 / 12, "feet")
  30392. },
  30393. {
  30394. name: "Post-Era",
  30395. height: math.unit(450 + 5 / 12, "feet")
  30396. },
  30397. ]
  30398. ))
  30399. characterMakers.push(() => makeCharacter(
  30400. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30401. {
  30402. front: {
  30403. height: math.unit(300, "meters"),
  30404. weight: math.unit(125000, "tonnes"),
  30405. name: "Front",
  30406. image: {
  30407. source: "./media/characters/pazuzu/front.svg",
  30408. extra: 877 / 794,
  30409. bottom: 47 / 924
  30410. }
  30411. },
  30412. },
  30413. [
  30414. {
  30415. name: "Macro",
  30416. height: math.unit(300, "meters"),
  30417. default: true
  30418. },
  30419. ]
  30420. ))
  30421. characterMakers.push(() => makeCharacter(
  30422. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30423. {
  30424. side: {
  30425. height: math.unit(10 + 7 / 12, "feet"),
  30426. weight: math.unit(2.5, "tons"),
  30427. name: "Side",
  30428. image: {
  30429. source: "./media/characters/aasha/side.svg",
  30430. extra: 1345 / 1245,
  30431. bottom: 111 / 1456
  30432. }
  30433. },
  30434. back: {
  30435. height: math.unit(10 + 7 / 12, "feet"),
  30436. weight: math.unit(2.5, "tons"),
  30437. name: "Back",
  30438. image: {
  30439. source: "./media/characters/aasha/back.svg",
  30440. extra: 1133 / 1057,
  30441. bottom: 257 / 1390
  30442. }
  30443. },
  30444. },
  30445. [
  30446. {
  30447. name: "Normal",
  30448. height: math.unit(10 + 7 / 12, "feet"),
  30449. default: true
  30450. },
  30451. ]
  30452. ))
  30453. characterMakers.push(() => makeCharacter(
  30454. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30455. {
  30456. front: {
  30457. height: math.unit(6 + 3 / 12, "feet"),
  30458. name: "Front",
  30459. image: {
  30460. source: "./media/characters/nevan/front.svg",
  30461. extra: 704 / 704,
  30462. bottom: 28 / 732
  30463. }
  30464. },
  30465. back: {
  30466. height: math.unit(6 + 3 / 12, "feet"),
  30467. name: "Back",
  30468. image: {
  30469. source: "./media/characters/nevan/back.svg",
  30470. extra: 714 / 714,
  30471. bottom: 21 / 735
  30472. }
  30473. },
  30474. frontFlaccid: {
  30475. height: math.unit(6 + 3 / 12, "feet"),
  30476. name: "Front (Flaccid)",
  30477. image: {
  30478. source: "./media/characters/nevan/front-flaccid.svg",
  30479. extra: 704 / 704,
  30480. bottom: 28 / 732
  30481. }
  30482. },
  30483. frontErect: {
  30484. height: math.unit(6 + 3 / 12, "feet"),
  30485. name: "Front (Erect)",
  30486. image: {
  30487. source: "./media/characters/nevan/front-erect.svg",
  30488. extra: 704 / 704,
  30489. bottom: 28 / 732
  30490. }
  30491. },
  30492. backFlaccid: {
  30493. height: math.unit(6 + 3 / 12, "feet"),
  30494. name: "Back (Flaccid)",
  30495. image: {
  30496. source: "./media/characters/nevan/back-flaccid.svg",
  30497. extra: 714 / 714,
  30498. bottom: 21 / 735
  30499. }
  30500. },
  30501. },
  30502. [
  30503. {
  30504. name: "Normal",
  30505. height: math.unit(6 + 3 / 12, "feet"),
  30506. default: true
  30507. },
  30508. ]
  30509. ))
  30510. characterMakers.push(() => makeCharacter(
  30511. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30512. {
  30513. front: {
  30514. height: math.unit(4, "feet"),
  30515. name: "Front",
  30516. image: {
  30517. source: "./media/characters/arhan/front.svg",
  30518. extra: 3368 / 3133,
  30519. bottom: 0 / 3368
  30520. }
  30521. },
  30522. side: {
  30523. height: math.unit(4, "feet"),
  30524. name: "Side",
  30525. image: {
  30526. source: "./media/characters/arhan/side.svg",
  30527. extra: 3347 / 3105,
  30528. bottom: 0 / 3347
  30529. }
  30530. },
  30531. tongue: {
  30532. height: math.unit(1.42, "feet"),
  30533. name: "Tongue",
  30534. image: {
  30535. source: "./media/characters/arhan/tongue.svg"
  30536. }
  30537. },
  30538. head: {
  30539. height: math.unit(0.85, "feet"),
  30540. name: "Head",
  30541. image: {
  30542. source: "./media/characters/arhan/head.svg"
  30543. }
  30544. },
  30545. },
  30546. [
  30547. {
  30548. name: "Normal",
  30549. height: math.unit(4, "feet"),
  30550. default: true
  30551. },
  30552. ]
  30553. ))
  30554. characterMakers.push(() => makeCharacter(
  30555. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30556. {
  30557. front: {
  30558. height: math.unit(5 + 7.5 / 12, "feet"),
  30559. weight: math.unit(120, "lb"),
  30560. name: "Front",
  30561. image: {
  30562. source: "./media/characters/digi-duncan/front.svg",
  30563. extra: 330 / 326,
  30564. bottom: 16 / 346
  30565. }
  30566. },
  30567. side: {
  30568. height: math.unit(5 + 7.5 / 12, "feet"),
  30569. weight: math.unit(120, "lb"),
  30570. name: "Side",
  30571. image: {
  30572. source: "./media/characters/digi-duncan/side.svg",
  30573. extra: 341 / 337,
  30574. bottom: 1 / 342
  30575. }
  30576. },
  30577. back: {
  30578. height: math.unit(5 + 7.5 / 12, "feet"),
  30579. weight: math.unit(120, "lb"),
  30580. name: "Back",
  30581. image: {
  30582. source: "./media/characters/digi-duncan/back.svg",
  30583. extra: 330 / 326,
  30584. bottom: 12 / 342
  30585. }
  30586. },
  30587. },
  30588. [
  30589. {
  30590. name: "Speck",
  30591. height: math.unit(0.25, "mm")
  30592. },
  30593. {
  30594. name: "Micro",
  30595. height: math.unit(5, "mm")
  30596. },
  30597. {
  30598. name: "Tiny",
  30599. height: math.unit(0.5, "inches"),
  30600. default: true
  30601. },
  30602. {
  30603. name: "Human",
  30604. height: math.unit(5 + 7.5 / 12, "feet")
  30605. },
  30606. {
  30607. name: "Minigiant",
  30608. height: math.unit(8 + 5.25, "feet")
  30609. },
  30610. {
  30611. name: "Giant",
  30612. height: math.unit(2000, "feet")
  30613. },
  30614. {
  30615. name: "Mega",
  30616. height: math.unit(371.1, "miles")
  30617. },
  30618. ]
  30619. ))
  30620. characterMakers.push(() => makeCharacter(
  30621. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30622. {
  30623. front: {
  30624. height: math.unit(2, "meters"),
  30625. weight: math.unit(350, "kg"),
  30626. name: "Front",
  30627. image: {
  30628. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30629. extra: 898 / 838,
  30630. bottom: 9 / 907
  30631. }
  30632. },
  30633. },
  30634. [
  30635. {
  30636. name: "Micro",
  30637. height: math.unit(8, "meters")
  30638. },
  30639. {
  30640. name: "Normal",
  30641. height: math.unit(50, "meters"),
  30642. default: true
  30643. },
  30644. {
  30645. name: "Macro",
  30646. height: math.unit(500, "meters")
  30647. },
  30648. ]
  30649. ))
  30650. characterMakers.push(() => makeCharacter(
  30651. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30652. {
  30653. front: {
  30654. height: math.unit(6 + 6 / 12, "feet"),
  30655. name: "Front",
  30656. image: {
  30657. source: "./media/characters/khardesh/front.svg",
  30658. extra: 1788/1596,
  30659. bottom: 66/1854
  30660. }
  30661. },
  30662. back: {
  30663. height: math.unit(6 + 6 / 12, "feet"),
  30664. name: "Back",
  30665. image: {
  30666. source: "./media/characters/khardesh/back.svg",
  30667. extra: 1781/1584,
  30668. bottom: 68/1849
  30669. }
  30670. },
  30671. },
  30672. [
  30673. {
  30674. name: "Normal",
  30675. height: math.unit(6 + 6 / 12, "feet"),
  30676. default: true
  30677. },
  30678. {
  30679. name: "Normal+",
  30680. height: math.unit(4, "meters")
  30681. },
  30682. {
  30683. name: "Macro",
  30684. height: math.unit(50, "meters")
  30685. },
  30686. {
  30687. name: "Macro+",
  30688. height: math.unit(100, "meters")
  30689. },
  30690. {
  30691. name: "Megamacro",
  30692. height: math.unit(20, "km")
  30693. },
  30694. ]
  30695. ))
  30696. characterMakers.push(() => makeCharacter(
  30697. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30698. {
  30699. front: {
  30700. height: math.unit(6, "feet"),
  30701. weight: math.unit(150, "lb"),
  30702. name: "Front",
  30703. image: {
  30704. source: "./media/characters/kosho/front.svg",
  30705. extra: 1847 / 1847,
  30706. bottom: 86 / 1933
  30707. }
  30708. },
  30709. },
  30710. [
  30711. {
  30712. name: "Second-stage micro",
  30713. height: math.unit(0.5, "inches")
  30714. },
  30715. {
  30716. name: "First-stage micro",
  30717. height: math.unit(6, "inches")
  30718. },
  30719. {
  30720. name: "Normal",
  30721. height: math.unit(6, "feet"),
  30722. default: true
  30723. },
  30724. {
  30725. name: "First-stage macro",
  30726. height: math.unit(72, "feet")
  30727. },
  30728. {
  30729. name: "Second-stage macro",
  30730. height: math.unit(864, "feet")
  30731. },
  30732. ]
  30733. ))
  30734. characterMakers.push(() => makeCharacter(
  30735. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30736. {
  30737. normal: {
  30738. height: math.unit(4 + 6 / 12, "feet"),
  30739. name: "Normal",
  30740. image: {
  30741. source: "./media/characters/hydra/normal.svg",
  30742. extra: 2833 / 2634,
  30743. bottom: 68 / 2901
  30744. }
  30745. },
  30746. smol: {
  30747. height: math.unit(0.705, "inches"),
  30748. name: "Smol",
  30749. image: {
  30750. source: "./media/characters/hydra/smol.svg",
  30751. extra: 2715 / 2540,
  30752. bottom: 0 / 2715
  30753. }
  30754. },
  30755. },
  30756. [
  30757. {
  30758. name: "Normal",
  30759. height: math.unit(4 + 6 / 12, "feet"),
  30760. default: true
  30761. }
  30762. ]
  30763. ))
  30764. characterMakers.push(() => makeCharacter(
  30765. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30766. {
  30767. front: {
  30768. height: math.unit(0.6, "cm"),
  30769. name: "Front",
  30770. image: {
  30771. source: "./media/characters/daz/front.svg",
  30772. extra: 1682 / 1164,
  30773. bottom: 42 / 1724
  30774. }
  30775. },
  30776. },
  30777. [
  30778. {
  30779. name: "Normal",
  30780. height: math.unit(0.6, "cm"),
  30781. default: true
  30782. },
  30783. ]
  30784. ))
  30785. characterMakers.push(() => makeCharacter(
  30786. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30787. {
  30788. front: {
  30789. height: math.unit(6, "feet"),
  30790. weight: math.unit(235, "lb"),
  30791. name: "Front",
  30792. image: {
  30793. source: "./media/characters/theo-pangolin/front.svg",
  30794. extra: 1996 / 1969,
  30795. bottom: 115 / 2111
  30796. }
  30797. },
  30798. back: {
  30799. height: math.unit(6, "feet"),
  30800. weight: math.unit(235, "lb"),
  30801. name: "Back",
  30802. image: {
  30803. source: "./media/characters/theo-pangolin/back.svg",
  30804. extra: 1979 / 1979,
  30805. bottom: 40 / 2019
  30806. }
  30807. },
  30808. feral: {
  30809. height: math.unit(2, "feet"),
  30810. weight: math.unit(30, "lb"),
  30811. name: "Feral",
  30812. image: {
  30813. source: "./media/characters/theo-pangolin/feral.svg",
  30814. extra: 803 / 791,
  30815. bottom: 181 / 984
  30816. }
  30817. },
  30818. footFive: {
  30819. height: math.unit(1.43, "feet"),
  30820. name: "Foot (Five Toes)",
  30821. image: {
  30822. source: "./media/characters/theo-pangolin/foot-five.svg"
  30823. }
  30824. },
  30825. footFour: {
  30826. height: math.unit(1.43, "feet"),
  30827. name: "Foot (Four Toes)",
  30828. image: {
  30829. source: "./media/characters/theo-pangolin/foot-four.svg"
  30830. }
  30831. },
  30832. handFour: {
  30833. height: math.unit(0.81, "feet"),
  30834. name: "Hand (Four Fingers)",
  30835. image: {
  30836. source: "./media/characters/theo-pangolin/hand-four.svg"
  30837. }
  30838. },
  30839. handThree: {
  30840. height: math.unit(0.81, "feet"),
  30841. name: "Hand (Three Fingers)",
  30842. image: {
  30843. source: "./media/characters/theo-pangolin/hand-three.svg"
  30844. }
  30845. },
  30846. headFront: {
  30847. height: math.unit(1.37, "feet"),
  30848. name: "Head (Front)",
  30849. image: {
  30850. source: "./media/characters/theo-pangolin/head-front.svg"
  30851. }
  30852. },
  30853. headSide: {
  30854. height: math.unit(1.43, "feet"),
  30855. name: "Head (Side)",
  30856. image: {
  30857. source: "./media/characters/theo-pangolin/head-side.svg"
  30858. }
  30859. },
  30860. tongue: {
  30861. height: math.unit(2.29, "feet"),
  30862. name: "Tongue",
  30863. image: {
  30864. source: "./media/characters/theo-pangolin/tongue.svg"
  30865. }
  30866. },
  30867. },
  30868. [
  30869. {
  30870. name: "Normal",
  30871. height: math.unit(6, "feet")
  30872. },
  30873. {
  30874. name: "Macro",
  30875. height: math.unit(400, "feet"),
  30876. default: true
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30882. {
  30883. front: {
  30884. height: math.unit(6, "inches"),
  30885. weight: math.unit(0.036, "kg"),
  30886. name: "Front",
  30887. image: {
  30888. source: "./media/characters/renée/front.svg",
  30889. extra: 900 / 886,
  30890. bottom: 8 / 908
  30891. }
  30892. },
  30893. },
  30894. [
  30895. {
  30896. name: "Nano",
  30897. height: math.unit(1, "nm")
  30898. },
  30899. {
  30900. name: "Micro",
  30901. height: math.unit(1, "mm")
  30902. },
  30903. {
  30904. name: "Normal",
  30905. height: math.unit(6, "inches")
  30906. },
  30907. {
  30908. name: "Macro",
  30909. height: math.unit(2000, "feet"),
  30910. default: true
  30911. },
  30912. {
  30913. name: "Megamacro",
  30914. height: math.unit(2, "km")
  30915. },
  30916. {
  30917. name: "Gigamacro",
  30918. height: math.unit(2000, "km")
  30919. },
  30920. {
  30921. name: "Teramacro",
  30922. height: math.unit(250000, "km")
  30923. },
  30924. ]
  30925. ))
  30926. characterMakers.push(() => makeCharacter(
  30927. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30928. {
  30929. front: {
  30930. height: math.unit(4, "meters"),
  30931. weight: math.unit(150, "kg"),
  30932. name: "Front",
  30933. image: {
  30934. source: "./media/characters/caledvwlch/front.svg",
  30935. extra: 1760 / 1551,
  30936. bottom: 28 / 1788
  30937. }
  30938. },
  30939. side: {
  30940. height: math.unit(4, "meters"),
  30941. weight: math.unit(150, "kg"),
  30942. name: "Side",
  30943. image: {
  30944. source: "./media/characters/caledvwlch/side.svg",
  30945. extra: 1605 / 1536,
  30946. bottom: 31 / 1636
  30947. }
  30948. },
  30949. back: {
  30950. height: math.unit(4, "meters"),
  30951. weight: math.unit(150, "kg"),
  30952. name: "Back",
  30953. image: {
  30954. source: "./media/characters/caledvwlch/back.svg",
  30955. extra: 1635 / 1565,
  30956. bottom: 27 / 1662
  30957. }
  30958. },
  30959. },
  30960. [
  30961. {
  30962. name: "\"Incognito\"",
  30963. height: math.unit(4, "meters")
  30964. },
  30965. {
  30966. name: "Small rampage",
  30967. height: math.unit(600, "meters")
  30968. },
  30969. {
  30970. name: "Mega",
  30971. height: math.unit(30, "km")
  30972. },
  30973. {
  30974. name: "Home-size",
  30975. height: math.unit(50, "km"),
  30976. default: true
  30977. },
  30978. {
  30979. name: "Giga",
  30980. height: math.unit(300, "km")
  30981. },
  30982. {
  30983. name: "Lounging",
  30984. height: math.unit(11000, "km")
  30985. },
  30986. {
  30987. name: "Planet snacking",
  30988. height: math.unit(2000000, "km")
  30989. },
  30990. ]
  30991. ))
  30992. characterMakers.push(() => makeCharacter(
  30993. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30994. {
  30995. front: {
  30996. height: math.unit(6, "feet"),
  30997. weight: math.unit(215, "lb"),
  30998. name: "Front",
  30999. image: {
  31000. source: "./media/characters/sapphire-svell/front.svg",
  31001. extra: 495 / 455,
  31002. bottom: 20 / 515
  31003. }
  31004. },
  31005. back: {
  31006. height: math.unit(6, "feet"),
  31007. weight: math.unit(216, "lb"),
  31008. name: "Back",
  31009. image: {
  31010. source: "./media/characters/sapphire-svell/back.svg",
  31011. extra: 497 / 477,
  31012. bottom: 7 / 504
  31013. }
  31014. },
  31015. maw: {
  31016. height: math.unit(1.57, "feet"),
  31017. name: "Maw",
  31018. image: {
  31019. source: "./media/characters/sapphire-svell/maw.svg"
  31020. }
  31021. },
  31022. foot: {
  31023. height: math.unit(1.07, "feet"),
  31024. name: "Foot",
  31025. image: {
  31026. source: "./media/characters/sapphire-svell/foot.svg"
  31027. }
  31028. },
  31029. toering: {
  31030. height: math.unit(1.7, "inch"),
  31031. name: "Toering",
  31032. image: {
  31033. source: "./media/characters/sapphire-svell/toering.svg"
  31034. }
  31035. },
  31036. },
  31037. [
  31038. {
  31039. name: "Normal",
  31040. height: math.unit(300, "feet"),
  31041. default: true
  31042. },
  31043. {
  31044. name: "Augmented",
  31045. height: math.unit(1250, "feet")
  31046. },
  31047. {
  31048. name: "Unleashed",
  31049. height: math.unit(3000, "feet")
  31050. },
  31051. ]
  31052. ))
  31053. characterMakers.push(() => makeCharacter(
  31054. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31055. {
  31056. side: {
  31057. height: math.unit(2 + 3 / 12, "feet"),
  31058. weight: math.unit(110, "lb"),
  31059. name: "Side",
  31060. image: {
  31061. source: "./media/characters/glitch-flux/side.svg",
  31062. extra: 997 / 805,
  31063. bottom: 20 / 1017
  31064. }
  31065. },
  31066. },
  31067. [
  31068. {
  31069. name: "Normal",
  31070. height: math.unit(2 + 3 / 12, "feet"),
  31071. default: true
  31072. },
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31077. {
  31078. front: {
  31079. height: math.unit(4, "meters"),
  31080. name: "Front",
  31081. image: {
  31082. source: "./media/characters/mid/front.svg",
  31083. extra: 507 / 476,
  31084. bottom: 17 / 524
  31085. }
  31086. },
  31087. back: {
  31088. height: math.unit(4, "meters"),
  31089. name: "Back",
  31090. image: {
  31091. source: "./media/characters/mid/back.svg",
  31092. extra: 519 / 487,
  31093. bottom: 7 / 526
  31094. }
  31095. },
  31096. stuck: {
  31097. height: math.unit(2.2, "meters"),
  31098. name: "Stuck",
  31099. image: {
  31100. source: "./media/characters/mid/stuck.svg",
  31101. extra: 1951 / 1869,
  31102. bottom: 88 / 2039
  31103. }
  31104. }
  31105. },
  31106. [
  31107. {
  31108. name: "Normal",
  31109. height: math.unit(4, "meters"),
  31110. default: true
  31111. },
  31112. {
  31113. name: "Big",
  31114. height: math.unit(10, "meters")
  31115. },
  31116. {
  31117. name: "Macro",
  31118. height: math.unit(800, "meters")
  31119. },
  31120. {
  31121. name: "Megamacro",
  31122. height: math.unit(100, "km")
  31123. },
  31124. {
  31125. name: "Overgrown",
  31126. height: math.unit(1, "parsec")
  31127. },
  31128. ]
  31129. ))
  31130. characterMakers.push(() => makeCharacter(
  31131. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31132. {
  31133. front: {
  31134. height: math.unit(2.5, "meters"),
  31135. weight: math.unit(225, "kg"),
  31136. name: "Front",
  31137. image: {
  31138. source: "./media/characters/iris/front.svg",
  31139. extra: 3348 / 3251,
  31140. bottom: 205 / 3553
  31141. }
  31142. },
  31143. maw: {
  31144. height: math.unit(0.56, "meter"),
  31145. name: "Maw",
  31146. image: {
  31147. source: "./media/characters/iris/maw.svg"
  31148. }
  31149. },
  31150. },
  31151. [
  31152. {
  31153. name: "Mewter cat",
  31154. height: math.unit(1.2, "meters")
  31155. },
  31156. {
  31157. name: "Minimacro",
  31158. height: math.unit(2.5, "meters"),
  31159. default: true
  31160. },
  31161. {
  31162. name: "Macro",
  31163. height: math.unit(180, "meters")
  31164. },
  31165. {
  31166. name: "Megamacro",
  31167. height: math.unit(2746, "meters")
  31168. },
  31169. ]
  31170. ))
  31171. characterMakers.push(() => makeCharacter(
  31172. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31173. {
  31174. front: {
  31175. height: math.unit(6, "feet"),
  31176. weight: math.unit(135, "lb"),
  31177. name: "Front",
  31178. image: {
  31179. source: "./media/characters/axel/front.svg",
  31180. extra: 908 / 908,
  31181. bottom: 58 / 966
  31182. }
  31183. },
  31184. side: {
  31185. height: math.unit(6, "feet"),
  31186. weight: math.unit(135, "lb"),
  31187. name: "Side",
  31188. image: {
  31189. source: "./media/characters/axel/side.svg",
  31190. extra: 958 / 958,
  31191. bottom: 11 / 969
  31192. }
  31193. },
  31194. back: {
  31195. height: math.unit(6, "feet"),
  31196. weight: math.unit(135, "lb"),
  31197. name: "Back",
  31198. image: {
  31199. source: "./media/characters/axel/back.svg",
  31200. extra: 887 / 887,
  31201. bottom: 34 / 921
  31202. }
  31203. },
  31204. head: {
  31205. height: math.unit(1.07, "feet"),
  31206. name: "Head",
  31207. image: {
  31208. source: "./media/characters/axel/head.svg"
  31209. }
  31210. },
  31211. beak: {
  31212. height: math.unit(1.4, "feet"),
  31213. name: "Beak",
  31214. image: {
  31215. source: "./media/characters/axel/beak.svg"
  31216. }
  31217. },
  31218. beakSide: {
  31219. height: math.unit(1.4, "feet"),
  31220. name: "Beak Side",
  31221. image: {
  31222. source: "./media/characters/axel/beak-side.svg"
  31223. }
  31224. },
  31225. sheath: {
  31226. height: math.unit(0.5, "feet"),
  31227. name: "Sheath",
  31228. image: {
  31229. source: "./media/characters/axel/sheath.svg"
  31230. }
  31231. },
  31232. dick: {
  31233. height: math.unit(0.98, "feet"),
  31234. name: "Dick",
  31235. image: {
  31236. source: "./media/characters/axel/dick.svg"
  31237. }
  31238. },
  31239. },
  31240. [
  31241. {
  31242. name: "Macro",
  31243. height: math.unit(68, "meters"),
  31244. default: true
  31245. },
  31246. ]
  31247. ))
  31248. characterMakers.push(() => makeCharacter(
  31249. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31250. {
  31251. front: {
  31252. height: math.unit(3.5, "meters"),
  31253. weight: math.unit(1200, "kg"),
  31254. name: "Front",
  31255. image: {
  31256. source: "./media/characters/joanna/front.svg",
  31257. extra: 1596 / 1488,
  31258. bottom: 29 / 1625
  31259. }
  31260. },
  31261. back: {
  31262. height: math.unit(3.5, "meters"),
  31263. weight: math.unit(1200, "kg"),
  31264. name: "Back",
  31265. image: {
  31266. source: "./media/characters/joanna/back.svg",
  31267. extra: 1594 / 1495,
  31268. bottom: 26 / 1620
  31269. }
  31270. },
  31271. frontShorts: {
  31272. height: math.unit(3.5, "meters"),
  31273. weight: math.unit(1200, "kg"),
  31274. name: "Front (Shorts)",
  31275. image: {
  31276. source: "./media/characters/joanna/front-shorts.svg",
  31277. extra: 1596 / 1488,
  31278. bottom: 29 / 1625
  31279. }
  31280. },
  31281. frontBiker: {
  31282. height: math.unit(3.5, "meters"),
  31283. weight: math.unit(1200, "kg"),
  31284. name: "Front (Biker)",
  31285. image: {
  31286. source: "./media/characters/joanna/front-biker.svg",
  31287. extra: 1596 / 1488,
  31288. bottom: 29 / 1625
  31289. }
  31290. },
  31291. backBiker: {
  31292. height: math.unit(3.5, "meters"),
  31293. weight: math.unit(1200, "kg"),
  31294. name: "Back (Biker)",
  31295. image: {
  31296. source: "./media/characters/joanna/back-biker.svg",
  31297. extra: 1594 / 1495,
  31298. bottom: 88 / 1682
  31299. }
  31300. },
  31301. bikeLeft: {
  31302. height: math.unit(2.4, "meters"),
  31303. weight: math.unit(1600, "kg"),
  31304. name: "Bike (Left)",
  31305. image: {
  31306. source: "./media/characters/joanna/bike-left.svg",
  31307. extra: 720 / 720,
  31308. bottom: 8 / 728
  31309. }
  31310. },
  31311. bikeRight: {
  31312. height: math.unit(2.4, "meters"),
  31313. weight: math.unit(1600, "kg"),
  31314. name: "Bike (Right)",
  31315. image: {
  31316. source: "./media/characters/joanna/bike-right.svg",
  31317. extra: 720 / 720,
  31318. bottom: 8 / 728
  31319. }
  31320. },
  31321. },
  31322. [
  31323. {
  31324. name: "Incognito",
  31325. height: math.unit(3.5, "meters")
  31326. },
  31327. {
  31328. name: "Casual Big",
  31329. height: math.unit(200, "meters")
  31330. },
  31331. {
  31332. name: "Macro",
  31333. height: math.unit(600, "meters")
  31334. },
  31335. {
  31336. name: "Original",
  31337. height: math.unit(20, "km"),
  31338. default: true
  31339. },
  31340. {
  31341. name: "Giga",
  31342. height: math.unit(400, "km")
  31343. },
  31344. {
  31345. name: "Lounging",
  31346. height: math.unit(1500, "km")
  31347. },
  31348. {
  31349. name: "Planetary",
  31350. height: math.unit(200000, "km")
  31351. },
  31352. ]
  31353. ))
  31354. characterMakers.push(() => makeCharacter(
  31355. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31356. {
  31357. front: {
  31358. height: math.unit(6, "feet"),
  31359. weight: math.unit(150, "lb"),
  31360. name: "Front",
  31361. image: {
  31362. source: "./media/characters/hugo-sigil/front.svg",
  31363. extra: 522 / 500,
  31364. bottom: 2 / 524
  31365. }
  31366. },
  31367. back: {
  31368. height: math.unit(6, "feet"),
  31369. weight: math.unit(150, "lb"),
  31370. name: "Back",
  31371. image: {
  31372. source: "./media/characters/hugo-sigil/back.svg",
  31373. extra: 519 / 495,
  31374. bottom: 5 / 524
  31375. }
  31376. },
  31377. maw: {
  31378. height: math.unit(1.4, "feet"),
  31379. weight: math.unit(150, "lb"),
  31380. name: "Maw",
  31381. image: {
  31382. source: "./media/characters/hugo-sigil/maw.svg"
  31383. }
  31384. },
  31385. feet: {
  31386. height: math.unit(1.56, "feet"),
  31387. weight: math.unit(150, "lb"),
  31388. name: "Feet",
  31389. image: {
  31390. source: "./media/characters/hugo-sigil/feet.svg",
  31391. extra: 177 / 177,
  31392. bottom: 12 / 189
  31393. }
  31394. },
  31395. },
  31396. [
  31397. {
  31398. name: "Normal",
  31399. height: math.unit(6, "feet")
  31400. },
  31401. {
  31402. name: "Macro",
  31403. height: math.unit(200, "feet"),
  31404. default: true
  31405. },
  31406. ]
  31407. ))
  31408. characterMakers.push(() => makeCharacter(
  31409. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31410. {
  31411. front: {
  31412. height: math.unit(6, "feet"),
  31413. weight: math.unit(150, "lb"),
  31414. name: "Front",
  31415. image: {
  31416. source: "./media/characters/peri/front.svg",
  31417. extra: 2354 / 2233,
  31418. bottom: 49 / 2403
  31419. }
  31420. },
  31421. },
  31422. [
  31423. {
  31424. name: "Really Small",
  31425. height: math.unit(1, "nm")
  31426. },
  31427. {
  31428. name: "Micro",
  31429. height: math.unit(4, "inches")
  31430. },
  31431. {
  31432. name: "Normal",
  31433. height: math.unit(7, "inches"),
  31434. default: true
  31435. },
  31436. {
  31437. name: "Macro",
  31438. height: math.unit(400, "feet")
  31439. },
  31440. {
  31441. name: "Megamacro",
  31442. height: math.unit(100, "miles")
  31443. },
  31444. ]
  31445. ))
  31446. characterMakers.push(() => makeCharacter(
  31447. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31448. {
  31449. frontSlim: {
  31450. height: math.unit(7, "feet"),
  31451. name: "Front (Slim)",
  31452. image: {
  31453. source: "./media/characters/issilora/front-slim.svg",
  31454. extra: 529 / 449,
  31455. bottom: 53 / 582
  31456. }
  31457. },
  31458. sideSlim: {
  31459. height: math.unit(7, "feet"),
  31460. name: "Side (Slim)",
  31461. image: {
  31462. source: "./media/characters/issilora/side-slim.svg",
  31463. extra: 570 / 480,
  31464. bottom: 30 / 600
  31465. }
  31466. },
  31467. backSlim: {
  31468. height: math.unit(7, "feet"),
  31469. name: "Back (Slim)",
  31470. image: {
  31471. source: "./media/characters/issilora/back-slim.svg",
  31472. extra: 537 / 455,
  31473. bottom: 46 / 583
  31474. }
  31475. },
  31476. frontBuff: {
  31477. height: math.unit(7, "feet"),
  31478. name: "Front (Buff)",
  31479. image: {
  31480. source: "./media/characters/issilora/front-buff.svg",
  31481. extra: 2310 / 2035,
  31482. bottom: 335 / 2645
  31483. }
  31484. },
  31485. head: {
  31486. height: math.unit(1.94, "feet"),
  31487. name: "Head",
  31488. image: {
  31489. source: "./media/characters/issilora/head.svg"
  31490. }
  31491. },
  31492. },
  31493. [
  31494. {
  31495. name: "Minimum",
  31496. height: math.unit(7, "feet")
  31497. },
  31498. {
  31499. name: "Comfortable",
  31500. height: math.unit(17, "feet")
  31501. },
  31502. {
  31503. name: "Fun Size",
  31504. height: math.unit(47, "feet")
  31505. },
  31506. {
  31507. name: "Natural Macro",
  31508. height: math.unit(137, "feet"),
  31509. default: true
  31510. },
  31511. {
  31512. name: "Maximum Kaiju",
  31513. height: math.unit(397, "feet")
  31514. },
  31515. ]
  31516. ))
  31517. characterMakers.push(() => makeCharacter(
  31518. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31519. {
  31520. front: {
  31521. height: math.unit(50 + 9/12, "feet"),
  31522. weight: math.unit(32.8, "tons"),
  31523. name: "Front",
  31524. image: {
  31525. source: "./media/characters/irb'iiritaahn/front.svg",
  31526. extra: 1878/1826,
  31527. bottom: 326/2204
  31528. }
  31529. },
  31530. back: {
  31531. height: math.unit(50 + 9/12, "feet"),
  31532. weight: math.unit(32.8, "tons"),
  31533. name: "Back",
  31534. image: {
  31535. source: "./media/characters/irb'iiritaahn/back.svg",
  31536. extra: 2052/2018,
  31537. bottom: 152/2204
  31538. }
  31539. },
  31540. head: {
  31541. height: math.unit(12.86, "feet"),
  31542. name: "Head",
  31543. image: {
  31544. source: "./media/characters/irb'iiritaahn/head.svg"
  31545. }
  31546. },
  31547. maw: {
  31548. height: math.unit(9.66, "feet"),
  31549. name: "Maw",
  31550. image: {
  31551. source: "./media/characters/irb'iiritaahn/maw.svg"
  31552. }
  31553. },
  31554. frontDick: {
  31555. height: math.unit(8.78461, "feet"),
  31556. name: "Front Dick",
  31557. image: {
  31558. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31559. }
  31560. },
  31561. rearDick: {
  31562. height: math.unit(8.78461, "feet"),
  31563. name: "Rear Dick",
  31564. image: {
  31565. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31566. }
  31567. },
  31568. rearDickUnfolded: {
  31569. height: math.unit(8.78, "feet"),
  31570. name: "Rear Dick (Unfolded)",
  31571. image: {
  31572. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31573. }
  31574. },
  31575. wings: {
  31576. height: math.unit(43, "feet"),
  31577. name: "Wings",
  31578. image: {
  31579. source: "./media/characters/irb'iiritaahn/wings.svg"
  31580. }
  31581. },
  31582. },
  31583. [
  31584. {
  31585. name: "Macro",
  31586. height: math.unit(50 + 9/12, "feet"),
  31587. default: true
  31588. },
  31589. ]
  31590. ))
  31591. characterMakers.push(() => makeCharacter(
  31592. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31593. {
  31594. front: {
  31595. height: math.unit(205, "cm"),
  31596. weight: math.unit(102, "kg"),
  31597. name: "Front",
  31598. image: {
  31599. source: "./media/characters/irbisgreif/front.svg",
  31600. extra: 785/706,
  31601. bottom: 13/798
  31602. }
  31603. },
  31604. back: {
  31605. height: math.unit(205, "cm"),
  31606. weight: math.unit(102, "kg"),
  31607. name: "Back",
  31608. image: {
  31609. source: "./media/characters/irbisgreif/back.svg",
  31610. extra: 713/701,
  31611. bottom: 26/739
  31612. }
  31613. },
  31614. frontDressed: {
  31615. height: math.unit(216, "cm"),
  31616. weight: math.unit(102, "kg"),
  31617. name: "Front-dressed",
  31618. image: {
  31619. source: "./media/characters/irbisgreif/front-dressed.svg",
  31620. extra: 902/776,
  31621. bottom: 14/916
  31622. }
  31623. },
  31624. sideDressed: {
  31625. height: math.unit(195, "cm"),
  31626. weight: math.unit(102, "kg"),
  31627. name: "Side-dressed",
  31628. image: {
  31629. source: "./media/characters/irbisgreif/side-dressed.svg",
  31630. extra: 788/688,
  31631. bottom: 21/809
  31632. }
  31633. },
  31634. backDressed: {
  31635. height: math.unit(216, "cm"),
  31636. weight: math.unit(102, "kg"),
  31637. name: "Back-dressed",
  31638. image: {
  31639. source: "./media/characters/irbisgreif/back-dressed.svg",
  31640. extra: 901/783,
  31641. bottom: 10/911
  31642. }
  31643. },
  31644. dick: {
  31645. height: math.unit(0.49, "feet"),
  31646. name: "Dick",
  31647. image: {
  31648. source: "./media/characters/irbisgreif/dick.svg"
  31649. }
  31650. },
  31651. wingTop: {
  31652. height: math.unit(1.93 , "feet"),
  31653. name: "Wing-top",
  31654. image: {
  31655. source: "./media/characters/irbisgreif/wing-top.svg"
  31656. }
  31657. },
  31658. wingBottom: {
  31659. height: math.unit(1.93 , "feet"),
  31660. name: "Wing-bottom",
  31661. image: {
  31662. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31663. }
  31664. },
  31665. },
  31666. [
  31667. {
  31668. name: "Normal",
  31669. height: math.unit(216, "cm"),
  31670. default: true
  31671. },
  31672. ]
  31673. ))
  31674. characterMakers.push(() => makeCharacter(
  31675. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31676. {
  31677. front: {
  31678. height: math.unit(6, "feet"),
  31679. weight: math.unit(150, "lb"),
  31680. name: "Front",
  31681. image: {
  31682. source: "./media/characters/pride/front.svg",
  31683. extra: 1299/1230,
  31684. bottom: 18/1317
  31685. }
  31686. },
  31687. },
  31688. [
  31689. {
  31690. name: "Normal",
  31691. height: math.unit(7, "feet")
  31692. },
  31693. {
  31694. name: "Mini-macro",
  31695. height: math.unit(11, "feet")
  31696. },
  31697. {
  31698. name: "Macro",
  31699. height: math.unit(15, "meters"),
  31700. default: true
  31701. },
  31702. {
  31703. name: "Macro+",
  31704. height: math.unit(40, "meters")
  31705. },
  31706. ]
  31707. ))
  31708. characterMakers.push(() => makeCharacter(
  31709. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31710. {
  31711. front: {
  31712. height: math.unit(4 + 2 / 12, "feet"),
  31713. weight: math.unit(95, "lb"),
  31714. name: "Front",
  31715. image: {
  31716. source: "./media/characters/vaelophis-nyx/front.svg",
  31717. extra: 2532/2330,
  31718. bottom: 0/2532
  31719. }
  31720. },
  31721. back: {
  31722. height: math.unit(4 + 2 / 12, "feet"),
  31723. weight: math.unit(95, "lb"),
  31724. name: "Back",
  31725. image: {
  31726. source: "./media/characters/vaelophis-nyx/back.svg",
  31727. extra: 2484/2361,
  31728. bottom: 0/2484
  31729. }
  31730. },
  31731. feralSide: {
  31732. height: math.unit(2 + 1/12, "feet"),
  31733. weight: math.unit(20, "lb"),
  31734. name: "Feral (Side)",
  31735. image: {
  31736. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31737. extra: 1721/1581,
  31738. bottom: 70/1791
  31739. }
  31740. },
  31741. feralLazing: {
  31742. height: math.unit(1.08, "feet"),
  31743. weight: math.unit(20, "lb"),
  31744. name: "Feral (Lazing)",
  31745. image: {
  31746. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31747. extra: 822/822,
  31748. bottom: 248/1070
  31749. }
  31750. },
  31751. ear: {
  31752. height: math.unit(0.416, "feet"),
  31753. name: "Ear",
  31754. image: {
  31755. source: "./media/characters/vaelophis-nyx/ear.svg"
  31756. }
  31757. },
  31758. eye: {
  31759. height: math.unit(0.0748, "feet"),
  31760. name: "Eye",
  31761. image: {
  31762. source: "./media/characters/vaelophis-nyx/eye.svg"
  31763. }
  31764. },
  31765. mouth: {
  31766. height: math.unit(0.378, "feet"),
  31767. name: "Mouth",
  31768. image: {
  31769. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31770. }
  31771. },
  31772. spade: {
  31773. height: math.unit(0.55, "feet"),
  31774. name: "Spade",
  31775. image: {
  31776. source: "./media/characters/vaelophis-nyx/spade.svg"
  31777. }
  31778. },
  31779. },
  31780. [
  31781. {
  31782. name: "Normal",
  31783. height: math.unit(4 + 2/12, "feet"),
  31784. default: true
  31785. },
  31786. ]
  31787. ))
  31788. characterMakers.push(() => makeCharacter(
  31789. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31790. {
  31791. front: {
  31792. height: math.unit(7, "feet"),
  31793. weight: math.unit(231, "lb"),
  31794. name: "Front",
  31795. image: {
  31796. source: "./media/characters/flux/front.svg",
  31797. extra: 919/871,
  31798. bottom: 0/919
  31799. }
  31800. },
  31801. back: {
  31802. height: math.unit(7, "feet"),
  31803. weight: math.unit(231, "lb"),
  31804. name: "Back",
  31805. image: {
  31806. source: "./media/characters/flux/back.svg",
  31807. extra: 1040/992,
  31808. bottom: 0/1040
  31809. }
  31810. },
  31811. frontDressed: {
  31812. height: math.unit(7, "feet"),
  31813. weight: math.unit(231, "lb"),
  31814. name: "Front (Dressed)",
  31815. image: {
  31816. source: "./media/characters/flux/front-dressed.svg",
  31817. extra: 919/871,
  31818. bottom: 0/919
  31819. }
  31820. },
  31821. feralSide: {
  31822. height: math.unit(5, "feet"),
  31823. weight: math.unit(150, "lb"),
  31824. name: "Feral (Side)",
  31825. image: {
  31826. source: "./media/characters/flux/feral-side.svg",
  31827. extra: 598/528,
  31828. bottom: 28/626
  31829. }
  31830. },
  31831. head: {
  31832. height: math.unit(1.585, "feet"),
  31833. name: "Head",
  31834. image: {
  31835. source: "./media/characters/flux/head.svg"
  31836. }
  31837. },
  31838. headSide: {
  31839. height: math.unit(1.74, "feet"),
  31840. name: "Head (Side)",
  31841. image: {
  31842. source: "./media/characters/flux/head-side.svg"
  31843. }
  31844. },
  31845. headSideFire: {
  31846. height: math.unit(1.76, "feet"),
  31847. name: "Head (Side, Fire)",
  31848. image: {
  31849. source: "./media/characters/flux/head-side-fire.svg"
  31850. }
  31851. },
  31852. },
  31853. [
  31854. {
  31855. name: "Normal",
  31856. height: math.unit(7, "feet"),
  31857. default: true
  31858. },
  31859. ]
  31860. ))
  31861. characterMakers.push(() => makeCharacter(
  31862. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31863. {
  31864. front: {
  31865. height: math.unit(9, "feet"),
  31866. weight: math.unit(1012, "lb"),
  31867. name: "Front",
  31868. image: {
  31869. source: "./media/characters/ulfra-lupae/front.svg",
  31870. extra: 1083/1011,
  31871. bottom: 67/1150
  31872. }
  31873. },
  31874. },
  31875. [
  31876. {
  31877. name: "Micro",
  31878. height: math.unit(6, "inches")
  31879. },
  31880. {
  31881. name: "Socializing",
  31882. height: math.unit(6 + 5/12, "feet")
  31883. },
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(9, "feet"),
  31887. default: true
  31888. },
  31889. {
  31890. name: "Macro",
  31891. height: math.unit(150, "feet")
  31892. },
  31893. ]
  31894. ))
  31895. characterMakers.push(() => makeCharacter(
  31896. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31897. {
  31898. front: {
  31899. height: math.unit(5 + 2/12, "feet"),
  31900. weight: math.unit(120, "lb"),
  31901. name: "Front",
  31902. image: {
  31903. source: "./media/characters/timber/front.svg",
  31904. extra: 2814/2705,
  31905. bottom: 181/2995
  31906. }
  31907. },
  31908. },
  31909. [
  31910. {
  31911. name: "Normal",
  31912. height: math.unit(5 + 2/12, "feet"),
  31913. default: true
  31914. },
  31915. ]
  31916. ))
  31917. characterMakers.push(() => makeCharacter(
  31918. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31919. {
  31920. front: {
  31921. height: math.unit(9, "feet"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/nicki/front.svg",
  31925. extra: 1240/990,
  31926. bottom: 45/1285
  31927. },
  31928. form: "anthro",
  31929. default: true
  31930. },
  31931. side: {
  31932. height: math.unit(9, "feet"),
  31933. name: "Side",
  31934. image: {
  31935. source: "./media/characters/nicki/side.svg",
  31936. extra: 1047/973,
  31937. bottom: 61/1108
  31938. },
  31939. form: "anthro"
  31940. },
  31941. back: {
  31942. height: math.unit(9, "feet"),
  31943. name: "Back",
  31944. image: {
  31945. source: "./media/characters/nicki/back.svg",
  31946. extra: 1006/965,
  31947. bottom: 39/1045
  31948. },
  31949. form: "anthro"
  31950. },
  31951. taur: {
  31952. height: math.unit(15, "feet"),
  31953. name: "Taur",
  31954. image: {
  31955. source: "./media/characters/nicki/taur.svg",
  31956. extra: 1592/1347,
  31957. bottom: 0/1592
  31958. },
  31959. form: "taur",
  31960. default: true
  31961. },
  31962. },
  31963. [
  31964. {
  31965. name: "Normal",
  31966. height: math.unit(9, "feet"),
  31967. form: "anthro",
  31968. default: true
  31969. },
  31970. {
  31971. name: "Normal",
  31972. height: math.unit(15, "feet"),
  31973. form: "taur",
  31974. default: true
  31975. }
  31976. ],
  31977. {
  31978. "anthro": {
  31979. name: "Anthro",
  31980. default: true
  31981. },
  31982. "taur": {
  31983. name: "Taur"
  31984. }
  31985. }
  31986. ))
  31987. characterMakers.push(() => makeCharacter(
  31988. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31989. {
  31990. front: {
  31991. height: math.unit(7 + 10/12, "feet"),
  31992. weight: math.unit(3.5, "tons"),
  31993. name: "Front",
  31994. image: {
  31995. source: "./media/characters/lee/front.svg",
  31996. extra: 1773/1615,
  31997. bottom: 86/1859
  31998. }
  31999. },
  32000. hand: {
  32001. height: math.unit(1.78, "feet"),
  32002. name: "Hand",
  32003. image: {
  32004. source: "./media/characters/lee/hand.svg"
  32005. }
  32006. },
  32007. maw: {
  32008. height: math.unit(1.18, "feet"),
  32009. name: "Maw",
  32010. image: {
  32011. source: "./media/characters/lee/maw.svg"
  32012. }
  32013. },
  32014. },
  32015. [
  32016. {
  32017. name: "Normal",
  32018. height: math.unit(7 + 10/12, "feet"),
  32019. default: true
  32020. },
  32021. ]
  32022. ))
  32023. characterMakers.push(() => makeCharacter(
  32024. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32025. {
  32026. front: {
  32027. height: math.unit(9, "feet"),
  32028. name: "Front",
  32029. image: {
  32030. source: "./media/characters/guti/front.svg",
  32031. extra: 4551/4355,
  32032. bottom: 123/4674
  32033. }
  32034. },
  32035. tongue: {
  32036. height: math.unit(1, "feet"),
  32037. name: "Tongue",
  32038. image: {
  32039. source: "./media/characters/guti/tongue.svg"
  32040. }
  32041. },
  32042. paw: {
  32043. height: math.unit(1.18, "feet"),
  32044. name: "Paw",
  32045. image: {
  32046. source: "./media/characters/guti/paw.svg"
  32047. }
  32048. },
  32049. },
  32050. [
  32051. {
  32052. name: "Normal",
  32053. height: math.unit(9, "feet"),
  32054. default: true
  32055. },
  32056. ]
  32057. ))
  32058. characterMakers.push(() => makeCharacter(
  32059. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32060. {
  32061. side: {
  32062. height: math.unit(5, "meters"),
  32063. name: "Side",
  32064. image: {
  32065. source: "./media/characters/vesper/side.svg",
  32066. extra: 1605/1518,
  32067. bottom: 0/1605
  32068. }
  32069. },
  32070. },
  32071. [
  32072. {
  32073. name: "Small",
  32074. height: math.unit(5, "meters")
  32075. },
  32076. {
  32077. name: "Sage",
  32078. height: math.unit(100, "meters"),
  32079. default: true
  32080. },
  32081. {
  32082. name: "Fun Size",
  32083. height: math.unit(600, "meters")
  32084. },
  32085. {
  32086. name: "Goddess",
  32087. height: math.unit(20000, "km")
  32088. },
  32089. {
  32090. name: "Maximum",
  32091. height: math.unit(5, "galaxies")
  32092. },
  32093. ]
  32094. ))
  32095. characterMakers.push(() => makeCharacter(
  32096. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32097. {
  32098. front: {
  32099. height: math.unit(6 + 3/12, "feet"),
  32100. weight: math.unit(190, "lb"),
  32101. name: "Front",
  32102. image: {
  32103. source: "./media/characters/gawain/front.svg",
  32104. extra: 2222/2139,
  32105. bottom: 90/2312
  32106. }
  32107. },
  32108. back: {
  32109. height: math.unit(6 + 3/12, "feet"),
  32110. weight: math.unit(190, "lb"),
  32111. name: "Back",
  32112. image: {
  32113. source: "./media/characters/gawain/back.svg",
  32114. extra: 2199/2111,
  32115. bottom: 73/2272
  32116. }
  32117. },
  32118. },
  32119. [
  32120. {
  32121. name: "Normal",
  32122. height: math.unit(6 + 3/12, "feet"),
  32123. default: true
  32124. },
  32125. ]
  32126. ))
  32127. characterMakers.push(() => makeCharacter(
  32128. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32129. {
  32130. side: {
  32131. height: math.unit(3.5, "meters"),
  32132. weight: math.unit(16000, "lb"),
  32133. name: "Side",
  32134. image: {
  32135. source: "./media/characters/dascalti/side.svg",
  32136. extra: 392/273,
  32137. bottom: 47/439
  32138. }
  32139. },
  32140. breath: {
  32141. height: math.unit(7.4, "feet"),
  32142. name: "Breath",
  32143. image: {
  32144. source: "./media/characters/dascalti/breath.svg"
  32145. }
  32146. },
  32147. fed: {
  32148. height: math.unit(3.6, "meters"),
  32149. weight: math.unit(16000, "lb"),
  32150. name: "Fed",
  32151. image: {
  32152. source: "./media/characters/dascalti/fed.svg",
  32153. extra: 1419/820,
  32154. bottom: 95/1514
  32155. }
  32156. },
  32157. },
  32158. [
  32159. {
  32160. name: "Normal",
  32161. height: math.unit(3.5, "meters"),
  32162. default: true
  32163. },
  32164. ]
  32165. ))
  32166. characterMakers.push(() => makeCharacter(
  32167. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32168. {
  32169. front: {
  32170. height: math.unit(3 + 5/12, "feet"),
  32171. name: "Front",
  32172. image: {
  32173. source: "./media/characters/mauve/front.svg",
  32174. extra: 1126/1033,
  32175. bottom: 65/1191
  32176. }
  32177. },
  32178. side: {
  32179. height: math.unit(3 + 5/12, "feet"),
  32180. name: "Side",
  32181. image: {
  32182. source: "./media/characters/mauve/side.svg",
  32183. extra: 1089/1001,
  32184. bottom: 29/1118
  32185. }
  32186. },
  32187. back: {
  32188. height: math.unit(3 + 5/12, "feet"),
  32189. name: "Back",
  32190. image: {
  32191. source: "./media/characters/mauve/back.svg",
  32192. extra: 1173/1053,
  32193. bottom: 109/1282
  32194. }
  32195. },
  32196. },
  32197. [
  32198. {
  32199. name: "Normal",
  32200. height: math.unit(3 + 5/12, "feet"),
  32201. default: true
  32202. },
  32203. ]
  32204. ))
  32205. characterMakers.push(() => makeCharacter(
  32206. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32207. {
  32208. front: {
  32209. height: math.unit(6 + 3/12, "feet"),
  32210. weight: math.unit(430, "lb"),
  32211. name: "Front",
  32212. image: {
  32213. source: "./media/characters/carlos/front.svg",
  32214. extra: 1964/1913,
  32215. bottom: 70/2034
  32216. }
  32217. },
  32218. },
  32219. [
  32220. {
  32221. name: "Normal",
  32222. height: math.unit(6 + 3/12, "feet"),
  32223. default: true
  32224. },
  32225. ]
  32226. ))
  32227. characterMakers.push(() => makeCharacter(
  32228. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32229. {
  32230. back: {
  32231. height: math.unit(5 + 10/12, "feet"),
  32232. weight: math.unit(200, "lb"),
  32233. name: "Back",
  32234. image: {
  32235. source: "./media/characters/jax/back.svg",
  32236. extra: 764/739,
  32237. bottom: 25/789
  32238. }
  32239. },
  32240. },
  32241. [
  32242. {
  32243. name: "Normal",
  32244. height: math.unit(5 + 10/12, "feet"),
  32245. default: true
  32246. },
  32247. ]
  32248. ))
  32249. characterMakers.push(() => makeCharacter(
  32250. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32251. {
  32252. front: {
  32253. height: math.unit(8, "feet"),
  32254. weight: math.unit(250, "lb"),
  32255. name: "Front",
  32256. image: {
  32257. source: "./media/characters/eikthynir/front.svg",
  32258. extra: 1332/1166,
  32259. bottom: 82/1414
  32260. }
  32261. },
  32262. back: {
  32263. height: math.unit(8, "feet"),
  32264. weight: math.unit(250, "lb"),
  32265. name: "Back",
  32266. image: {
  32267. source: "./media/characters/eikthynir/back.svg",
  32268. extra: 1342/1190,
  32269. bottom: 19/1361
  32270. }
  32271. },
  32272. dick: {
  32273. height: math.unit(2.35, "feet"),
  32274. name: "Dick",
  32275. image: {
  32276. source: "./media/characters/eikthynir/dick.svg"
  32277. }
  32278. },
  32279. },
  32280. [
  32281. {
  32282. name: "Normal",
  32283. height: math.unit(8, "feet"),
  32284. default: true
  32285. },
  32286. ]
  32287. ))
  32288. characterMakers.push(() => makeCharacter(
  32289. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32290. {
  32291. front: {
  32292. height: math.unit(99, "meters"),
  32293. weight: math.unit(13000, "tons"),
  32294. name: "Front",
  32295. image: {
  32296. source: "./media/characters/zlmos/front.svg",
  32297. extra: 2202/1992,
  32298. bottom: 315/2517
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Macro",
  32305. height: math.unit(99, "meters"),
  32306. default: true
  32307. },
  32308. ]
  32309. ))
  32310. characterMakers.push(() => makeCharacter(
  32311. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32312. {
  32313. front: {
  32314. height: math.unit(6 + 5/12, "feet"),
  32315. name: "Front",
  32316. image: {
  32317. source: "./media/characters/purri/front.svg",
  32318. extra: 1698/1610,
  32319. bottom: 32/1730
  32320. }
  32321. },
  32322. frontAlt: {
  32323. height: math.unit(6 + 5/12, "feet"),
  32324. name: "Front (Alt)",
  32325. image: {
  32326. source: "./media/characters/purri/front-alt.svg",
  32327. extra: 450/420,
  32328. bottom: 26/476
  32329. }
  32330. },
  32331. boots: {
  32332. height: math.unit(5.5, "feet"),
  32333. name: "Boots",
  32334. image: {
  32335. source: "./media/characters/purri/boots.svg",
  32336. extra: 905/853,
  32337. bottom: 18/923
  32338. }
  32339. },
  32340. lying: {
  32341. height: math.unit(2, "feet"),
  32342. name: "Lying",
  32343. image: {
  32344. source: "./media/characters/purri/lying.svg",
  32345. extra: 940/843,
  32346. bottom: 146/1086
  32347. }
  32348. },
  32349. devious: {
  32350. height: math.unit(1.77, "feet"),
  32351. name: "Devious",
  32352. image: {
  32353. source: "./media/characters/purri/devious.svg",
  32354. extra: 1440/1155,
  32355. bottom: 147/1587
  32356. }
  32357. },
  32358. bean: {
  32359. height: math.unit(1.94, "feet"),
  32360. name: "Bean",
  32361. image: {
  32362. source: "./media/characters/purri/bean.svg"
  32363. }
  32364. },
  32365. },
  32366. [
  32367. {
  32368. name: "Micro",
  32369. height: math.unit(1, "mm")
  32370. },
  32371. {
  32372. name: "Normal",
  32373. height: math.unit(6 + 5/12, "feet"),
  32374. default: true
  32375. },
  32376. {
  32377. name: "Macro :3c",
  32378. height: math.unit(2, "miles")
  32379. },
  32380. ]
  32381. ))
  32382. characterMakers.push(() => makeCharacter(
  32383. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32384. {
  32385. front: {
  32386. height: math.unit(6 + 2/12, "feet"),
  32387. weight: math.unit(250, "lb"),
  32388. name: "Front",
  32389. image: {
  32390. source: "./media/characters/moonlight/front.svg",
  32391. extra: 1044/908,
  32392. bottom: 56/1100
  32393. }
  32394. },
  32395. feral: {
  32396. height: math.unit(3 + 1/12, "feet"),
  32397. weight: math.unit(50, "kg"),
  32398. name: "Feral",
  32399. image: {
  32400. source: "./media/characters/moonlight/feral.svg",
  32401. extra: 3705/2791,
  32402. bottom: 145/3850
  32403. }
  32404. },
  32405. paw: {
  32406. height: math.unit(1, "feet"),
  32407. name: "Paw",
  32408. image: {
  32409. source: "./media/characters/moonlight/paw.svg"
  32410. }
  32411. },
  32412. paws: {
  32413. height: math.unit(0.98, "feet"),
  32414. name: "Paws",
  32415. image: {
  32416. source: "./media/characters/moonlight/paws.svg",
  32417. extra: 939/939,
  32418. bottom: 50/989
  32419. }
  32420. },
  32421. mouth: {
  32422. height: math.unit(0.48, "feet"),
  32423. name: "Mouth",
  32424. image: {
  32425. source: "./media/characters/moonlight/mouth.svg"
  32426. }
  32427. },
  32428. dick: {
  32429. height: math.unit(1.46, "feet"),
  32430. name: "Dick",
  32431. image: {
  32432. source: "./media/characters/moonlight/dick.svg"
  32433. }
  32434. },
  32435. },
  32436. [
  32437. {
  32438. name: "Normal",
  32439. height: math.unit(6 + 2/12, "feet"),
  32440. default: true
  32441. },
  32442. {
  32443. name: "Macro",
  32444. height: math.unit(300, "feet")
  32445. },
  32446. {
  32447. name: "Macro+",
  32448. height: math.unit(1, "mile")
  32449. },
  32450. {
  32451. name: "Mt. Moon",
  32452. height: math.unit(5, "miles")
  32453. },
  32454. {
  32455. name: "Megamacro",
  32456. height: math.unit(15, "miles")
  32457. },
  32458. ]
  32459. ))
  32460. characterMakers.push(() => makeCharacter(
  32461. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32462. {
  32463. back: {
  32464. height: math.unit(6, "feet"),
  32465. weight: math.unit(150, "lb"),
  32466. name: "Back",
  32467. image: {
  32468. source: "./media/characters/sylen/back.svg",
  32469. extra: 1335/1273,
  32470. bottom: 107/1442
  32471. }
  32472. },
  32473. },
  32474. [
  32475. {
  32476. name: "Normal",
  32477. height: math.unit(5 + 5/12, "feet")
  32478. },
  32479. {
  32480. name: "Megamacro",
  32481. height: math.unit(3, "miles"),
  32482. default: true
  32483. },
  32484. ]
  32485. ))
  32486. characterMakers.push(() => makeCharacter(
  32487. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32488. {
  32489. front: {
  32490. height: math.unit(6, "feet"),
  32491. weight: math.unit(190, "lb"),
  32492. name: "Front",
  32493. image: {
  32494. source: "./media/characters/huttser/front.svg",
  32495. extra: 1152/1058,
  32496. bottom: 23/1175
  32497. }
  32498. },
  32499. side: {
  32500. height: math.unit(6, "feet"),
  32501. weight: math.unit(190, "lb"),
  32502. name: "Side",
  32503. image: {
  32504. source: "./media/characters/huttser/side.svg",
  32505. extra: 1174/1065,
  32506. bottom: 18/1192
  32507. }
  32508. },
  32509. back: {
  32510. height: math.unit(6, "feet"),
  32511. weight: math.unit(190, "lb"),
  32512. name: "Back",
  32513. image: {
  32514. source: "./media/characters/huttser/back.svg",
  32515. extra: 1158/1056,
  32516. bottom: 12/1170
  32517. }
  32518. },
  32519. },
  32520. [
  32521. ]
  32522. ))
  32523. characterMakers.push(() => makeCharacter(
  32524. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32525. {
  32526. side: {
  32527. height: math.unit(12 + 9/12, "feet"),
  32528. weight: math.unit(15000, "lb"),
  32529. name: "Side",
  32530. image: {
  32531. source: "./media/characters/faan/side.svg",
  32532. extra: 2747/2697,
  32533. bottom: 0/2747
  32534. }
  32535. },
  32536. front: {
  32537. height: math.unit(12 + 9/12, "feet"),
  32538. weight: math.unit(15000, "lb"),
  32539. name: "Front",
  32540. image: {
  32541. source: "./media/characters/faan/front.svg",
  32542. extra: 607/571,
  32543. bottom: 24/631
  32544. }
  32545. },
  32546. head: {
  32547. height: math.unit(2.85, "feet"),
  32548. name: "Head",
  32549. image: {
  32550. source: "./media/characters/faan/head.svg"
  32551. }
  32552. },
  32553. headAlt: {
  32554. height: math.unit(3.13, "feet"),
  32555. name: "Head-alt",
  32556. image: {
  32557. source: "./media/characters/faan/head-alt.svg"
  32558. }
  32559. },
  32560. },
  32561. [
  32562. {
  32563. name: "Normal",
  32564. height: math.unit(12 + 9/12, "feet"),
  32565. default: true
  32566. },
  32567. ]
  32568. ))
  32569. characterMakers.push(() => makeCharacter(
  32570. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32571. {
  32572. front: {
  32573. height: math.unit(6, "feet"),
  32574. weight: math.unit(300, "lb"),
  32575. name: "Front",
  32576. image: {
  32577. source: "./media/characters/tanio/front.svg",
  32578. extra: 711/673,
  32579. bottom: 25/736
  32580. }
  32581. },
  32582. },
  32583. [
  32584. {
  32585. name: "Normal",
  32586. height: math.unit(6, "feet"),
  32587. default: true
  32588. },
  32589. ]
  32590. ))
  32591. characterMakers.push(() => makeCharacter(
  32592. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32593. {
  32594. front: {
  32595. height: math.unit(3, "inches"),
  32596. name: "Front",
  32597. image: {
  32598. source: "./media/characters/noboru/front.svg",
  32599. extra: 1039/932,
  32600. bottom: 18/1057
  32601. }
  32602. },
  32603. },
  32604. [
  32605. {
  32606. name: "Micro",
  32607. height: math.unit(3, "inches"),
  32608. default: true
  32609. },
  32610. ]
  32611. ))
  32612. characterMakers.push(() => makeCharacter(
  32613. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32614. {
  32615. front: {
  32616. height: math.unit(1.85, "meters"),
  32617. weight: math.unit(80, "kg"),
  32618. name: "Front",
  32619. image: {
  32620. source: "./media/characters/daniel-barrett/front.svg",
  32621. extra: 355/337,
  32622. bottom: 9/364
  32623. }
  32624. },
  32625. },
  32626. [
  32627. {
  32628. name: "Pico",
  32629. height: math.unit(0.0433, "mm")
  32630. },
  32631. {
  32632. name: "Nano",
  32633. height: math.unit(1.5, "mm")
  32634. },
  32635. {
  32636. name: "Micro",
  32637. height: math.unit(5.3, "cm"),
  32638. default: true
  32639. },
  32640. {
  32641. name: "Normal",
  32642. height: math.unit(1.85, "meters")
  32643. },
  32644. {
  32645. name: "Macro",
  32646. height: math.unit(64.7, "meters")
  32647. },
  32648. {
  32649. name: "Megamacro",
  32650. height: math.unit(2.26, "km")
  32651. },
  32652. {
  32653. name: "Gigamacro",
  32654. height: math.unit(79, "km")
  32655. },
  32656. {
  32657. name: "Teramacro",
  32658. height: math.unit(2765, "km")
  32659. },
  32660. {
  32661. name: "Petamacro",
  32662. height: math.unit(96678, "km")
  32663. },
  32664. ]
  32665. ))
  32666. characterMakers.push(() => makeCharacter(
  32667. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32668. {
  32669. front: {
  32670. height: math.unit(30, "meters"),
  32671. weight: math.unit(400, "tons"),
  32672. name: "Front",
  32673. image: {
  32674. source: "./media/characters/zeel/front.svg",
  32675. extra: 2599/2599,
  32676. bottom: 226/2825
  32677. }
  32678. },
  32679. },
  32680. [
  32681. {
  32682. name: "Macro",
  32683. height: math.unit(30, "meters"),
  32684. default: true
  32685. },
  32686. ]
  32687. ))
  32688. characterMakers.push(() => makeCharacter(
  32689. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32690. {
  32691. front: {
  32692. height: math.unit(6 + 7/12, "feet"),
  32693. weight: math.unit(210, "lb"),
  32694. name: "Front",
  32695. image: {
  32696. source: "./media/characters/tarn/front.svg",
  32697. extra: 3517/3220,
  32698. bottom: 91/3608
  32699. }
  32700. },
  32701. back: {
  32702. height: math.unit(6 + 7/12, "feet"),
  32703. weight: math.unit(210, "lb"),
  32704. name: "Back",
  32705. image: {
  32706. source: "./media/characters/tarn/back.svg",
  32707. extra: 3566/3241,
  32708. bottom: 34/3600
  32709. }
  32710. },
  32711. dick: {
  32712. height: math.unit(1.65, "feet"),
  32713. name: "Dick",
  32714. image: {
  32715. source: "./media/characters/tarn/dick.svg"
  32716. }
  32717. },
  32718. paw: {
  32719. height: math.unit(1.80, "feet"),
  32720. name: "Paw",
  32721. image: {
  32722. source: "./media/characters/tarn/paw.svg"
  32723. }
  32724. },
  32725. tongue: {
  32726. height: math.unit(0.97, "feet"),
  32727. name: "Tongue",
  32728. image: {
  32729. source: "./media/characters/tarn/tongue.svg"
  32730. }
  32731. },
  32732. },
  32733. [
  32734. {
  32735. name: "Micro",
  32736. height: math.unit(4, "inches")
  32737. },
  32738. {
  32739. name: "Normal",
  32740. height: math.unit(6 + 7/12, "feet"),
  32741. default: true
  32742. },
  32743. {
  32744. name: "Macro",
  32745. height: math.unit(300, "feet")
  32746. },
  32747. ]
  32748. ))
  32749. characterMakers.push(() => makeCharacter(
  32750. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32751. {
  32752. front: {
  32753. height: math.unit(5 + 7/12, "feet"),
  32754. weight: math.unit(80, "kg"),
  32755. name: "Front",
  32756. image: {
  32757. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32758. extra: 3023/2865,
  32759. bottom: 33/3056
  32760. }
  32761. },
  32762. back: {
  32763. height: math.unit(5 + 7/12, "feet"),
  32764. weight: math.unit(80, "kg"),
  32765. name: "Back",
  32766. image: {
  32767. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32768. extra: 3020/2886,
  32769. bottom: 30/3050
  32770. }
  32771. },
  32772. dick: {
  32773. height: math.unit(0.98, "feet"),
  32774. name: "Dick",
  32775. image: {
  32776. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32777. }
  32778. },
  32779. anatomy: {
  32780. height: math.unit(2.86, "feet"),
  32781. name: "Anatomy",
  32782. image: {
  32783. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32784. }
  32785. },
  32786. },
  32787. [
  32788. {
  32789. name: "Really Small",
  32790. height: math.unit(2, "inches")
  32791. },
  32792. {
  32793. name: "Micro",
  32794. height: math.unit(5.583, "inches")
  32795. },
  32796. {
  32797. name: "Normal",
  32798. height: math.unit(5 + 7/12, "feet"),
  32799. default: true
  32800. },
  32801. {
  32802. name: "Macro",
  32803. height: math.unit(67, "feet")
  32804. },
  32805. {
  32806. name: "Megamacro",
  32807. height: math.unit(134, "feet")
  32808. },
  32809. ]
  32810. ))
  32811. characterMakers.push(() => makeCharacter(
  32812. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32813. {
  32814. front: {
  32815. height: math.unit(9, "feet"),
  32816. weight: math.unit(120, "lb"),
  32817. name: "Front",
  32818. image: {
  32819. source: "./media/characters/sally/front.svg",
  32820. extra: 1506/1349,
  32821. bottom: 66/1572
  32822. }
  32823. },
  32824. },
  32825. [
  32826. {
  32827. name: "Normal",
  32828. height: math.unit(9, "feet"),
  32829. default: true
  32830. },
  32831. ]
  32832. ))
  32833. characterMakers.push(() => makeCharacter(
  32834. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32835. {
  32836. front: {
  32837. height: math.unit(8, "feet"),
  32838. weight: math.unit(900, "lb"),
  32839. name: "Front",
  32840. image: {
  32841. source: "./media/characters/owen/front.svg",
  32842. extra: 1761/1657,
  32843. bottom: 74/1835
  32844. }
  32845. },
  32846. side: {
  32847. height: math.unit(8, "feet"),
  32848. weight: math.unit(900, "lb"),
  32849. name: "Side",
  32850. image: {
  32851. source: "./media/characters/owen/side.svg",
  32852. extra: 1797/1734,
  32853. bottom: 30/1827
  32854. }
  32855. },
  32856. back: {
  32857. height: math.unit(8, "feet"),
  32858. weight: math.unit(900, "lb"),
  32859. name: "Back",
  32860. image: {
  32861. source: "./media/characters/owen/back.svg",
  32862. extra: 1796/1706,
  32863. bottom: 59/1855
  32864. }
  32865. },
  32866. maw: {
  32867. height: math.unit(1.76, "feet"),
  32868. name: "Maw",
  32869. image: {
  32870. source: "./media/characters/owen/maw.svg"
  32871. }
  32872. },
  32873. },
  32874. [
  32875. {
  32876. name: "Normal",
  32877. height: math.unit(8, "feet"),
  32878. default: true
  32879. },
  32880. ]
  32881. ))
  32882. characterMakers.push(() => makeCharacter(
  32883. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32884. {
  32885. front: {
  32886. height: math.unit(4, "feet"),
  32887. weight: math.unit(400, "lb"),
  32888. name: "Front",
  32889. image: {
  32890. source: "./media/characters/ryth/front.svg",
  32891. extra: 1920/1748,
  32892. bottom: 42/1962
  32893. }
  32894. },
  32895. back: {
  32896. height: math.unit(4, "feet"),
  32897. weight: math.unit(400, "lb"),
  32898. name: "Back",
  32899. image: {
  32900. source: "./media/characters/ryth/back.svg",
  32901. extra: 1897/1690,
  32902. bottom: 89/1986
  32903. }
  32904. },
  32905. mouth: {
  32906. height: math.unit(1.39, "feet"),
  32907. name: "Mouth",
  32908. image: {
  32909. source: "./media/characters/ryth/mouth.svg"
  32910. }
  32911. },
  32912. tailmaw: {
  32913. height: math.unit(1.23, "feet"),
  32914. name: "Tailmaw",
  32915. image: {
  32916. source: "./media/characters/ryth/tailmaw.svg"
  32917. }
  32918. },
  32919. goia: {
  32920. height: math.unit(4, "meters"),
  32921. weight: math.unit(10800, "lb"),
  32922. name: "Goia",
  32923. image: {
  32924. source: "./media/characters/ryth/goia.svg",
  32925. extra: 745/640,
  32926. bottom: 107/852
  32927. }
  32928. },
  32929. goiaFront: {
  32930. height: math.unit(4, "meters"),
  32931. weight: math.unit(10800, "lb"),
  32932. name: "Goia (Front)",
  32933. image: {
  32934. source: "./media/characters/ryth/goia-front.svg",
  32935. extra: 750/586,
  32936. bottom: 114/864
  32937. }
  32938. },
  32939. goiaMaw: {
  32940. height: math.unit(5.55, "feet"),
  32941. name: "Goia Maw",
  32942. image: {
  32943. source: "./media/characters/ryth/goia-maw.svg"
  32944. }
  32945. },
  32946. goiaForepaw: {
  32947. height: math.unit(3.5, "feet"),
  32948. name: "Goia Forepaw",
  32949. image: {
  32950. source: "./media/characters/ryth/goia-forepaw.svg"
  32951. }
  32952. },
  32953. goiaHindpaw: {
  32954. height: math.unit(5.55, "feet"),
  32955. name: "Goia Hindpaw",
  32956. image: {
  32957. source: "./media/characters/ryth/goia-hindpaw.svg"
  32958. }
  32959. },
  32960. },
  32961. [
  32962. {
  32963. name: "Normal",
  32964. height: math.unit(4, "feet"),
  32965. default: true
  32966. },
  32967. ]
  32968. ))
  32969. characterMakers.push(() => makeCharacter(
  32970. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32971. {
  32972. front: {
  32973. height: math.unit(7, "feet"),
  32974. weight: math.unit(180, "lb"),
  32975. name: "Front",
  32976. image: {
  32977. source: "./media/characters/necrolance/front.svg",
  32978. extra: 1062/947,
  32979. bottom: 41/1103
  32980. }
  32981. },
  32982. back: {
  32983. height: math.unit(7, "feet"),
  32984. weight: math.unit(180, "lb"),
  32985. name: "Back",
  32986. image: {
  32987. source: "./media/characters/necrolance/back.svg",
  32988. extra: 1045/984,
  32989. bottom: 14/1059
  32990. }
  32991. },
  32992. wing: {
  32993. height: math.unit(2.67, "feet"),
  32994. name: "Wing",
  32995. image: {
  32996. source: "./media/characters/necrolance/wing.svg"
  32997. }
  32998. },
  32999. },
  33000. [
  33001. {
  33002. name: "Normal",
  33003. height: math.unit(7, "feet"),
  33004. default: true
  33005. },
  33006. ]
  33007. ))
  33008. characterMakers.push(() => makeCharacter(
  33009. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33010. {
  33011. front: {
  33012. height: math.unit(76, "meters"),
  33013. weight: math.unit(30000, "tons"),
  33014. name: "Front",
  33015. image: {
  33016. source: "./media/characters/tyler/front.svg",
  33017. extra: 1640/1640,
  33018. bottom: 114/1754
  33019. }
  33020. },
  33021. },
  33022. [
  33023. {
  33024. name: "Macro",
  33025. height: math.unit(76, "meters"),
  33026. default: true
  33027. },
  33028. ]
  33029. ))
  33030. characterMakers.push(() => makeCharacter(
  33031. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33032. {
  33033. front: {
  33034. height: math.unit(4 + 11/12, "feet"),
  33035. weight: math.unit(132, "lb"),
  33036. name: "Front",
  33037. image: {
  33038. source: "./media/characters/icey/front.svg",
  33039. extra: 2750/2550,
  33040. bottom: 33/2783
  33041. }
  33042. },
  33043. back: {
  33044. height: math.unit(4 + 11/12, "feet"),
  33045. weight: math.unit(132, "lb"),
  33046. name: "Back",
  33047. image: {
  33048. source: "./media/characters/icey/back.svg",
  33049. extra: 2624/2481,
  33050. bottom: 35/2659
  33051. }
  33052. },
  33053. },
  33054. [
  33055. {
  33056. name: "Normal",
  33057. height: math.unit(4 + 11/12, "feet"),
  33058. default: true
  33059. },
  33060. ]
  33061. ))
  33062. characterMakers.push(() => makeCharacter(
  33063. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33064. {
  33065. front: {
  33066. height: math.unit(100, "feet"),
  33067. weight: math.unit(0, "lb"),
  33068. name: "Front",
  33069. image: {
  33070. source: "./media/characters/smile/front.svg",
  33071. extra: 2983/2912,
  33072. bottom: 162/3145
  33073. }
  33074. },
  33075. back: {
  33076. height: math.unit(100, "feet"),
  33077. weight: math.unit(0, "lb"),
  33078. name: "Back",
  33079. image: {
  33080. source: "./media/characters/smile/back.svg",
  33081. extra: 3143/3031,
  33082. bottom: 91/3234
  33083. }
  33084. },
  33085. head: {
  33086. height: math.unit(26.3, "feet"),
  33087. weight: math.unit(0, "lb"),
  33088. name: "Head",
  33089. image: {
  33090. source: "./media/characters/smile/head.svg"
  33091. }
  33092. },
  33093. collar: {
  33094. height: math.unit(5.3, "feet"),
  33095. weight: math.unit(0, "lb"),
  33096. name: "Collar",
  33097. image: {
  33098. source: "./media/characters/smile/collar.svg"
  33099. }
  33100. },
  33101. },
  33102. [
  33103. {
  33104. name: "Macro",
  33105. height: math.unit(100, "feet"),
  33106. default: true
  33107. },
  33108. ]
  33109. ))
  33110. characterMakers.push(() => makeCharacter(
  33111. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33112. {
  33113. dragon: {
  33114. height: math.unit(26, "feet"),
  33115. weight: math.unit(36, "tons"),
  33116. name: "Dragon",
  33117. image: {
  33118. source: "./media/characters/arimphae/dragon.svg",
  33119. extra: 1574/983,
  33120. bottom: 357/1931
  33121. }
  33122. },
  33123. drake: {
  33124. height: math.unit(9, "feet"),
  33125. weight: math.unit(1.5, "tons"),
  33126. name: "Drake",
  33127. image: {
  33128. source: "./media/characters/arimphae/drake.svg",
  33129. extra: 1120/925,
  33130. bottom: 435/1555
  33131. }
  33132. },
  33133. },
  33134. [
  33135. {
  33136. name: "Small",
  33137. height: math.unit(26*5/9, "feet")
  33138. },
  33139. {
  33140. name: "Normal",
  33141. height: math.unit(26, "feet"),
  33142. default: true
  33143. },
  33144. ]
  33145. ))
  33146. characterMakers.push(() => makeCharacter(
  33147. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33148. {
  33149. front: {
  33150. height: math.unit(8 + 9/12, "feet"),
  33151. name: "Front",
  33152. image: {
  33153. source: "./media/characters/xander/front.svg",
  33154. extra: 1237/974,
  33155. bottom: 94/1331
  33156. }
  33157. },
  33158. },
  33159. [
  33160. {
  33161. name: "Normal",
  33162. height: math.unit(8 + 9/12, "feet"),
  33163. default: true
  33164. },
  33165. {
  33166. name: "Gaze Grabber",
  33167. height: math.unit(13 + 8/12, "feet")
  33168. },
  33169. {
  33170. name: "Jaw Dropper",
  33171. height: math.unit(27, "feet")
  33172. },
  33173. {
  33174. name: "Show Stopper",
  33175. height: math.unit(136, "feet")
  33176. },
  33177. {
  33178. name: "Superstar",
  33179. height: math.unit(1.9e6, "miles")
  33180. },
  33181. ]
  33182. ))
  33183. characterMakers.push(() => makeCharacter(
  33184. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33185. {
  33186. side: {
  33187. height: math.unit(2100, "feet"),
  33188. name: "Side",
  33189. image: {
  33190. source: "./media/characters/osiris/side.svg",
  33191. extra: 1105/939,
  33192. bottom: 167/1272
  33193. }
  33194. },
  33195. },
  33196. [
  33197. {
  33198. name: "Macro",
  33199. height: math.unit(2100, "feet"),
  33200. default: true
  33201. },
  33202. ]
  33203. ))
  33204. characterMakers.push(() => makeCharacter(
  33205. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33206. {
  33207. front: {
  33208. height: math.unit(6 + 8/12, "feet"),
  33209. weight: math.unit(225, "lb"),
  33210. name: "Front",
  33211. image: {
  33212. source: "./media/characters/rhys-londe/front.svg",
  33213. extra: 2258/2141,
  33214. bottom: 188/2446
  33215. }
  33216. },
  33217. back: {
  33218. height: math.unit(6 + 8/12, "feet"),
  33219. weight: math.unit(225, "lb"),
  33220. name: "Back",
  33221. image: {
  33222. source: "./media/characters/rhys-londe/back.svg",
  33223. extra: 2237/2137,
  33224. bottom: 63/2300
  33225. }
  33226. },
  33227. frontNsfw: {
  33228. height: math.unit(6 + 8/12, "feet"),
  33229. weight: math.unit(225, "lb"),
  33230. name: "Front (NSFW)",
  33231. image: {
  33232. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33233. extra: 2258/2141,
  33234. bottom: 188/2446
  33235. }
  33236. },
  33237. backNsfw: {
  33238. height: math.unit(6 + 8/12, "feet"),
  33239. weight: math.unit(225, "lb"),
  33240. name: "Back (NSFW)",
  33241. image: {
  33242. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33243. extra: 2237/2137,
  33244. bottom: 63/2300
  33245. }
  33246. },
  33247. dick: {
  33248. height: math.unit(30, "inches"),
  33249. name: "Dick",
  33250. image: {
  33251. source: "./media/characters/rhys-londe/dick.svg"
  33252. }
  33253. },
  33254. maw: {
  33255. height: math.unit(1.6, "feet"),
  33256. name: "Maw",
  33257. image: {
  33258. source: "./media/characters/rhys-londe/maw.svg"
  33259. }
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Normal",
  33265. height: math.unit(6 + 8/12, "feet"),
  33266. default: true
  33267. },
  33268. ]
  33269. ))
  33270. characterMakers.push(() => makeCharacter(
  33271. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33272. {
  33273. front: {
  33274. height: math.unit(3 + 10/12, "feet"),
  33275. weight: math.unit(90, "lb"),
  33276. name: "Front",
  33277. image: {
  33278. source: "./media/characters/taivas-ensim/front.svg",
  33279. extra: 1327/1216,
  33280. bottom: 96/1423
  33281. }
  33282. },
  33283. back: {
  33284. height: math.unit(3 + 10/12, "feet"),
  33285. weight: math.unit(90, "lb"),
  33286. name: "Back",
  33287. image: {
  33288. source: "./media/characters/taivas-ensim/back.svg",
  33289. extra: 1355/1247,
  33290. bottom: 11/1366
  33291. }
  33292. },
  33293. frontNsfw: {
  33294. height: math.unit(3 + 10/12, "feet"),
  33295. weight: math.unit(90, "lb"),
  33296. name: "Front (NSFW)",
  33297. image: {
  33298. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33299. extra: 1327/1216,
  33300. bottom: 96/1423
  33301. }
  33302. },
  33303. backNsfw: {
  33304. height: math.unit(3 + 10/12, "feet"),
  33305. weight: math.unit(90, "lb"),
  33306. name: "Back (NSFW)",
  33307. image: {
  33308. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33309. extra: 1355/1247,
  33310. bottom: 11/1366
  33311. }
  33312. },
  33313. },
  33314. [
  33315. {
  33316. name: "Normal",
  33317. height: math.unit(3 + 10/12, "feet"),
  33318. default: true
  33319. },
  33320. ]
  33321. ))
  33322. characterMakers.push(() => makeCharacter(
  33323. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33324. {
  33325. front: {
  33326. height: math.unit(9 + 6/12, "feet"),
  33327. weight: math.unit(940, "lb"),
  33328. name: "Front",
  33329. image: {
  33330. source: "./media/characters/byliss/front.svg",
  33331. extra: 1327/1290,
  33332. bottom: 82/1409
  33333. }
  33334. },
  33335. back: {
  33336. height: math.unit(9 + 6/12, "feet"),
  33337. weight: math.unit(940, "lb"),
  33338. name: "Back",
  33339. image: {
  33340. source: "./media/characters/byliss/back.svg",
  33341. extra: 1376/1349,
  33342. bottom: 9/1385
  33343. }
  33344. },
  33345. frontNsfw: {
  33346. height: math.unit(9 + 6/12, "feet"),
  33347. weight: math.unit(940, "lb"),
  33348. name: "Front (NSFW)",
  33349. image: {
  33350. source: "./media/characters/byliss/front-nsfw.svg",
  33351. extra: 1327/1290,
  33352. bottom: 82/1409
  33353. }
  33354. },
  33355. backNsfw: {
  33356. height: math.unit(9 + 6/12, "feet"),
  33357. weight: math.unit(940, "lb"),
  33358. name: "Back (NSFW)",
  33359. image: {
  33360. source: "./media/characters/byliss/back-nsfw.svg",
  33361. extra: 1376/1349,
  33362. bottom: 9/1385
  33363. }
  33364. },
  33365. },
  33366. [
  33367. {
  33368. name: "Normal",
  33369. height: math.unit(9 + 6/12, "feet"),
  33370. default: true
  33371. },
  33372. ]
  33373. ))
  33374. characterMakers.push(() => makeCharacter(
  33375. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33376. {
  33377. front: {
  33378. height: math.unit(5 + 2/12, "feet"),
  33379. weight: math.unit(200, "lb"),
  33380. name: "Front",
  33381. image: {
  33382. source: "./media/characters/noraly/front.svg",
  33383. extra: 4985/4773,
  33384. bottom: 150/5135
  33385. }
  33386. },
  33387. full: {
  33388. height: math.unit(5 + 2/12, "feet"),
  33389. weight: math.unit(164, "lb"),
  33390. name: "Full",
  33391. image: {
  33392. source: "./media/characters/noraly/full.svg",
  33393. extra: 1114/1059,
  33394. bottom: 35/1149
  33395. }
  33396. },
  33397. fuller: {
  33398. height: math.unit(5 + 2/12, "feet"),
  33399. weight: math.unit(230, "lb"),
  33400. name: "Fuller",
  33401. image: {
  33402. source: "./media/characters/noraly/fuller.svg",
  33403. extra: 1114/1059,
  33404. bottom: 35/1149
  33405. }
  33406. },
  33407. fullest: {
  33408. height: math.unit(5 + 2/12, "feet"),
  33409. weight: math.unit(300, "lb"),
  33410. name: "Fullest",
  33411. image: {
  33412. source: "./media/characters/noraly/fullest.svg",
  33413. extra: 1114/1059,
  33414. bottom: 35/1149
  33415. }
  33416. },
  33417. },
  33418. [
  33419. {
  33420. name: "Normal",
  33421. height: math.unit(5 + 2/12, "feet"),
  33422. default: true
  33423. },
  33424. ]
  33425. ))
  33426. characterMakers.push(() => makeCharacter(
  33427. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33428. {
  33429. front: {
  33430. height: math.unit(5 + 2/12, "feet"),
  33431. weight: math.unit(210, "lb"),
  33432. name: "Front",
  33433. image: {
  33434. source: "./media/characters/pera/front.svg",
  33435. extra: 1560/1531,
  33436. bottom: 165/1725
  33437. }
  33438. },
  33439. back: {
  33440. height: math.unit(5 + 2/12, "feet"),
  33441. weight: math.unit(210, "lb"),
  33442. name: "Back",
  33443. image: {
  33444. source: "./media/characters/pera/back.svg",
  33445. extra: 1523/1493,
  33446. bottom: 152/1675
  33447. }
  33448. },
  33449. dick: {
  33450. height: math.unit(2.4, "feet"),
  33451. name: "Dick",
  33452. image: {
  33453. source: "./media/characters/pera/dick.svg"
  33454. }
  33455. },
  33456. },
  33457. [
  33458. {
  33459. name: "Normal",
  33460. height: math.unit(5 + 2/12, "feet"),
  33461. default: true
  33462. },
  33463. ]
  33464. ))
  33465. characterMakers.push(() => makeCharacter(
  33466. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33467. {
  33468. front: {
  33469. height: math.unit(12, "feet"),
  33470. weight: math.unit(3200, "lb"),
  33471. name: "Front",
  33472. image: {
  33473. source: "./media/characters/julian/front.svg",
  33474. extra: 2962/2701,
  33475. bottom: 184/3146
  33476. }
  33477. },
  33478. maw: {
  33479. height: math.unit(5.35, "feet"),
  33480. name: "Maw",
  33481. image: {
  33482. source: "./media/characters/julian/maw.svg"
  33483. }
  33484. },
  33485. paw: {
  33486. height: math.unit(3.07, "feet"),
  33487. name: "Paw",
  33488. image: {
  33489. source: "./media/characters/julian/paw.svg"
  33490. }
  33491. },
  33492. },
  33493. [
  33494. {
  33495. name: "Default",
  33496. height: math.unit(12, "feet"),
  33497. default: true
  33498. },
  33499. {
  33500. name: "Big",
  33501. height: math.unit(50, "feet")
  33502. },
  33503. {
  33504. name: "Really Big",
  33505. height: math.unit(1, "mile")
  33506. },
  33507. {
  33508. name: "Extremely Big",
  33509. height: math.unit(100, "miles")
  33510. },
  33511. {
  33512. name: "Planet Hugger",
  33513. height: math.unit(200, "megameters")
  33514. },
  33515. {
  33516. name: "Unreasonably Big",
  33517. height: math.unit(1e300, "meters")
  33518. },
  33519. ]
  33520. ))
  33521. characterMakers.push(() => makeCharacter(
  33522. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33523. {
  33524. solgooleo: {
  33525. height: math.unit(4, "meters"),
  33526. weight: math.unit(6000*1.5, "kg"),
  33527. volume: math.unit(6000, "liters"),
  33528. name: "Solgooleo",
  33529. image: {
  33530. source: "./media/characters/pi/solgooleo.svg",
  33531. extra: 388/331,
  33532. bottom: 29/417
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Normal",
  33539. height: math.unit(4, "meters"),
  33540. default: true
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33546. {
  33547. front: {
  33548. height: math.unit(8, "feet"),
  33549. weight: math.unit(4, "tons"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/shaun/front.svg",
  33553. extra: 503/495,
  33554. bottom: 20/523
  33555. }
  33556. },
  33557. back: {
  33558. height: math.unit(8, "feet"),
  33559. weight: math.unit(4, "tons"),
  33560. name: "Back",
  33561. image: {
  33562. source: "./media/characters/shaun/back.svg",
  33563. extra: 487/480,
  33564. bottom: 20/507
  33565. }
  33566. },
  33567. },
  33568. [
  33569. {
  33570. name: "Lorg",
  33571. height: math.unit(8, "feet"),
  33572. default: true
  33573. },
  33574. ]
  33575. ))
  33576. characterMakers.push(() => makeCharacter(
  33577. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33578. {
  33579. frontAnthro: {
  33580. height: math.unit(7, "feet"),
  33581. name: "Front",
  33582. image: {
  33583. source: "./media/characters/sini/front-anthro.svg",
  33584. extra: 726/678,
  33585. bottom: 35/761
  33586. },
  33587. form: "anthro",
  33588. default: true
  33589. },
  33590. backAnthro: {
  33591. height: math.unit(7, "feet"),
  33592. name: "Back",
  33593. image: {
  33594. source: "./media/characters/sini/back-anthro.svg",
  33595. extra: 743/701,
  33596. bottom: 12/755
  33597. },
  33598. form: "anthro",
  33599. },
  33600. frontAnthroNsfw: {
  33601. height: math.unit(7, "feet"),
  33602. name: "Front (NSFW)",
  33603. image: {
  33604. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33605. extra: 726/678,
  33606. bottom: 35/761
  33607. },
  33608. form: "anthro"
  33609. },
  33610. backAnthroNsfw: {
  33611. height: math.unit(7, "feet"),
  33612. name: "Back (NSFW)",
  33613. image: {
  33614. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33615. extra: 743/701,
  33616. bottom: 12/755
  33617. },
  33618. form: "anthro",
  33619. },
  33620. mawAnthro: {
  33621. height: math.unit(2.14, "feet"),
  33622. name: "Maw",
  33623. image: {
  33624. source: "./media/characters/sini/maw-anthro.svg"
  33625. },
  33626. form: "anthro"
  33627. },
  33628. dick: {
  33629. height: math.unit(1.45, "feet"),
  33630. name: "Dick",
  33631. image: {
  33632. source: "./media/characters/sini/dick-anthro.svg"
  33633. },
  33634. form: "anthro"
  33635. },
  33636. feral: {
  33637. height: math.unit(16, "feet"),
  33638. name: "Feral",
  33639. image: {
  33640. source: "./media/characters/sini/feral.svg",
  33641. extra: 814/605,
  33642. bottom: 11/825
  33643. },
  33644. form: "feral",
  33645. default: true
  33646. },
  33647. feralNsfw: {
  33648. height: math.unit(16, "feet"),
  33649. name: "Feral (NSFW)",
  33650. image: {
  33651. source: "./media/characters/sini/feral-nsfw.svg",
  33652. extra: 814/605,
  33653. bottom: 11/825
  33654. },
  33655. form: "feral"
  33656. },
  33657. mawFeral: {
  33658. height: math.unit(5.66, "feet"),
  33659. name: "Maw",
  33660. image: {
  33661. source: "./media/characters/sini/maw-feral.svg"
  33662. },
  33663. form: "feral",
  33664. },
  33665. pawFeral: {
  33666. height: math.unit(5.17, "feet"),
  33667. name: "Paw",
  33668. image: {
  33669. source: "./media/characters/sini/paw-feral.svg"
  33670. },
  33671. form: "feral",
  33672. },
  33673. rumpFeral: {
  33674. height: math.unit(13.11, "feet"),
  33675. name: "Rump",
  33676. image: {
  33677. source: "./media/characters/sini/rump-feral.svg"
  33678. },
  33679. form: "feral",
  33680. },
  33681. dickFeral: {
  33682. height: math.unit(1, "feet"),
  33683. name: "Dick",
  33684. image: {
  33685. source: "./media/characters/sini/dick-feral.svg"
  33686. },
  33687. form: "feral",
  33688. },
  33689. eyeFeral: {
  33690. height: math.unit(1.23, "feet"),
  33691. name: "Eye",
  33692. image: {
  33693. source: "./media/characters/sini/eye-feral.svg"
  33694. },
  33695. form: "feral",
  33696. },
  33697. },
  33698. [
  33699. {
  33700. name: "Normal",
  33701. height: math.unit(7, "feet"),
  33702. default: true,
  33703. form: "anthro"
  33704. },
  33705. {
  33706. name: "Normal",
  33707. height: math.unit(16, "feet"),
  33708. default: true,
  33709. form: "feral"
  33710. },
  33711. ],
  33712. {
  33713. "anthro": {
  33714. name: "Anthro",
  33715. default: true
  33716. },
  33717. "feral": {
  33718. name: "Feral",
  33719. }
  33720. }
  33721. ))
  33722. characterMakers.push(() => makeCharacter(
  33723. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33724. {
  33725. side: {
  33726. height: math.unit(13, "meters"),
  33727. weight: math.unit(9072, "kg"),
  33728. name: "Side",
  33729. image: {
  33730. source: "./media/characters/raylldo/side.svg",
  33731. extra: 403/344,
  33732. bottom: 42/445
  33733. }
  33734. },
  33735. leaping: {
  33736. height: math.unit(12.3, "meters"),
  33737. weight: math.unit(9072, "kg"),
  33738. name: "Leaping",
  33739. image: {
  33740. source: "./media/characters/raylldo/leaping.svg",
  33741. extra: 470/249,
  33742. bottom: 13/483
  33743. }
  33744. },
  33745. flying: {
  33746. height: math.unit(18, "meters"),
  33747. weight: math.unit(9072, "kg"),
  33748. name: "Flying",
  33749. image: {
  33750. source: "./media/characters/raylldo/flying.svg"
  33751. }
  33752. },
  33753. head: {
  33754. height: math.unit(5.85, "meters"),
  33755. name: "Head",
  33756. image: {
  33757. source: "./media/characters/raylldo/head.svg"
  33758. }
  33759. },
  33760. maw: {
  33761. height: math.unit(5.32, "meters"),
  33762. name: "Maw",
  33763. image: {
  33764. source: "./media/characters/raylldo/maw.svg"
  33765. }
  33766. },
  33767. eye: {
  33768. height: math.unit(0.54, "meters"),
  33769. name: "Eye",
  33770. image: {
  33771. source: "./media/characters/raylldo/eye.svg"
  33772. }
  33773. },
  33774. },
  33775. [
  33776. {
  33777. name: "Normal",
  33778. height: math.unit(13, "meters"),
  33779. default: true
  33780. },
  33781. ]
  33782. ))
  33783. characterMakers.push(() => makeCharacter(
  33784. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33785. {
  33786. anthroFront: {
  33787. height: math.unit(9, "feet"),
  33788. weight: math.unit(600, "lb"),
  33789. name: "Anthro (Front)",
  33790. image: {
  33791. source: "./media/characters/glint/anthro-front.svg",
  33792. extra: 1097/1018,
  33793. bottom: 28/1125
  33794. }
  33795. },
  33796. anthroBack: {
  33797. height: math.unit(9, "feet"),
  33798. weight: math.unit(600, "lb"),
  33799. name: "Anthro (Back)",
  33800. image: {
  33801. source: "./media/characters/glint/anthro-back.svg",
  33802. extra: 1154/997,
  33803. bottom: 36/1190
  33804. }
  33805. },
  33806. feral: {
  33807. height: math.unit(11, "feet"),
  33808. weight: math.unit(50000, "lb"),
  33809. name: "Feral",
  33810. image: {
  33811. source: "./media/characters/glint/feral.svg",
  33812. extra: 3035/1585,
  33813. bottom: 1169/4204
  33814. }
  33815. },
  33816. dickAnthro: {
  33817. height: math.unit(0.7, "meters"),
  33818. name: "Dick (Anthro)",
  33819. image: {
  33820. source: "./media/characters/glint/dick-anthro.svg"
  33821. }
  33822. },
  33823. dickFeral: {
  33824. height: math.unit(2.65, "meters"),
  33825. name: "Dick (Feral)",
  33826. image: {
  33827. source: "./media/characters/glint/dick-feral.svg"
  33828. }
  33829. },
  33830. slitHidden: {
  33831. height: math.unit(5.85, "meters"),
  33832. name: "Slit (Hidden)",
  33833. image: {
  33834. source: "./media/characters/glint/slit-hidden.svg"
  33835. }
  33836. },
  33837. slitErect: {
  33838. height: math.unit(5.85, "meters"),
  33839. name: "Slit (Erect)",
  33840. image: {
  33841. source: "./media/characters/glint/slit-erect.svg"
  33842. }
  33843. },
  33844. mawAnthro: {
  33845. height: math.unit(0.63, "meters"),
  33846. name: "Maw (Anthro)",
  33847. image: {
  33848. source: "./media/characters/glint/maw.svg"
  33849. }
  33850. },
  33851. mawFeral: {
  33852. height: math.unit(2.89, "meters"),
  33853. name: "Maw (Feral)",
  33854. image: {
  33855. source: "./media/characters/glint/maw.svg"
  33856. }
  33857. },
  33858. },
  33859. [
  33860. {
  33861. name: "Normal",
  33862. height: math.unit(9, "feet"),
  33863. default: true
  33864. },
  33865. ]
  33866. ))
  33867. characterMakers.push(() => makeCharacter(
  33868. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33869. {
  33870. side: {
  33871. height: math.unit(15, "feet"),
  33872. weight: math.unit(5000, "kg"),
  33873. name: "Side",
  33874. image: {
  33875. source: "./media/characters/kairne/side.svg",
  33876. extra: 979/811,
  33877. bottom: 13/992
  33878. }
  33879. },
  33880. front: {
  33881. height: math.unit(15, "feet"),
  33882. weight: math.unit(5000, "kg"),
  33883. name: "Front",
  33884. image: {
  33885. source: "./media/characters/kairne/front.svg",
  33886. extra: 908/814,
  33887. bottom: 26/934
  33888. }
  33889. },
  33890. sideNsfw: {
  33891. height: math.unit(15, "feet"),
  33892. weight: math.unit(5000, "kg"),
  33893. name: "Side (NSFW)",
  33894. image: {
  33895. source: "./media/characters/kairne/side-nsfw.svg",
  33896. extra: 979/811,
  33897. bottom: 13/992
  33898. }
  33899. },
  33900. frontNsfw: {
  33901. height: math.unit(15, "feet"),
  33902. weight: math.unit(5000, "kg"),
  33903. name: "Front (NSFW)",
  33904. image: {
  33905. source: "./media/characters/kairne/front-nsfw.svg",
  33906. extra: 908/814,
  33907. bottom: 26/934
  33908. }
  33909. },
  33910. dickCaged: {
  33911. height: math.unit(0.65, "meters"),
  33912. name: "Dick-caged",
  33913. image: {
  33914. source: "./media/characters/kairne/dick-caged.svg"
  33915. }
  33916. },
  33917. dick: {
  33918. height: math.unit(0.79, "meters"),
  33919. name: "Dick",
  33920. image: {
  33921. source: "./media/characters/kairne/dick.svg"
  33922. }
  33923. },
  33924. genitals: {
  33925. height: math.unit(1.29, "meters"),
  33926. name: "Genitals",
  33927. image: {
  33928. source: "./media/characters/kairne/genitals.svg"
  33929. }
  33930. },
  33931. maw: {
  33932. height: math.unit(1.73, "meters"),
  33933. name: "Maw",
  33934. image: {
  33935. source: "./media/characters/kairne/maw.svg"
  33936. }
  33937. },
  33938. },
  33939. [
  33940. {
  33941. name: "Normal",
  33942. height: math.unit(15, "feet"),
  33943. default: true
  33944. },
  33945. ]
  33946. ))
  33947. characterMakers.push(() => makeCharacter(
  33948. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33949. {
  33950. front: {
  33951. height: math.unit(5 + 8/12, "feet"),
  33952. weight: math.unit(139, "lb"),
  33953. name: "Front",
  33954. image: {
  33955. source: "./media/characters/biscuit-jackal/front.svg",
  33956. extra: 2106/1961,
  33957. bottom: 58/2164
  33958. }
  33959. },
  33960. back: {
  33961. height: math.unit(5 + 8/12, "feet"),
  33962. weight: math.unit(139, "lb"),
  33963. name: "Back",
  33964. image: {
  33965. source: "./media/characters/biscuit-jackal/back.svg",
  33966. extra: 2132/1976,
  33967. bottom: 57/2189
  33968. }
  33969. },
  33970. werejackal: {
  33971. height: math.unit(6 + 3/12, "feet"),
  33972. weight: math.unit(188, "lb"),
  33973. name: "Werejackal",
  33974. image: {
  33975. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33976. extra: 2373/2178,
  33977. bottom: 53/2426
  33978. }
  33979. },
  33980. },
  33981. [
  33982. {
  33983. name: "Normal",
  33984. height: math.unit(5 + 8/12, "feet"),
  33985. default: true
  33986. },
  33987. ]
  33988. ))
  33989. characterMakers.push(() => makeCharacter(
  33990. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33991. {
  33992. front: {
  33993. height: math.unit(140, "cm"),
  33994. weight: math.unit(45, "kg"),
  33995. name: "Front",
  33996. image: {
  33997. source: "./media/characters/tayra-white/front.svg",
  33998. extra: 2229/2192,
  33999. bottom: 75/2304
  34000. }
  34001. },
  34002. },
  34003. [
  34004. {
  34005. name: "Normal",
  34006. height: math.unit(140, "cm"),
  34007. default: true
  34008. },
  34009. ]
  34010. ))
  34011. characterMakers.push(() => makeCharacter(
  34012. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34013. {
  34014. front: {
  34015. height: math.unit(4 + 5/12, "feet"),
  34016. name: "Front",
  34017. image: {
  34018. source: "./media/characters/scoop/front.svg",
  34019. extra: 1257/1136,
  34020. bottom: 69/1326
  34021. }
  34022. },
  34023. back: {
  34024. height: math.unit(4 + 5/12, "feet"),
  34025. name: "Back",
  34026. image: {
  34027. source: "./media/characters/scoop/back.svg",
  34028. extra: 1321/1152,
  34029. bottom: 32/1353
  34030. }
  34031. },
  34032. maw: {
  34033. height: math.unit(0.68, "feet"),
  34034. name: "Maw",
  34035. image: {
  34036. source: "./media/characters/scoop/maw.svg"
  34037. }
  34038. },
  34039. },
  34040. [
  34041. {
  34042. name: "Really Small",
  34043. height: math.unit(1, "mm")
  34044. },
  34045. {
  34046. name: "Micro",
  34047. height: math.unit(1, "inch")
  34048. },
  34049. {
  34050. name: "Normal",
  34051. height: math.unit(4 + 5/12, "feet"),
  34052. default: true
  34053. },
  34054. {
  34055. name: "Macro",
  34056. height: math.unit(200, "feet")
  34057. },
  34058. {
  34059. name: "Megamacro",
  34060. height: math.unit(3240, "feet")
  34061. },
  34062. {
  34063. name: "Teramacro",
  34064. height: math.unit(2500, "miles")
  34065. },
  34066. ]
  34067. ))
  34068. characterMakers.push(() => makeCharacter(
  34069. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34070. {
  34071. front: {
  34072. height: math.unit(15 + 7/12, "feet"),
  34073. weight: math.unit(1150, "tons"),
  34074. name: "Front",
  34075. image: {
  34076. source: "./media/characters/saphinara/front.svg",
  34077. extra: 1837/1643,
  34078. bottom: 84/1921
  34079. },
  34080. form: "normal",
  34081. default: true
  34082. },
  34083. side: {
  34084. height: math.unit(15 + 7/12, "feet"),
  34085. weight: math.unit(1150, "tons"),
  34086. name: "Side",
  34087. image: {
  34088. source: "./media/characters/saphinara/side.svg",
  34089. extra: 605/547,
  34090. bottom: 6/611
  34091. },
  34092. form: "normal"
  34093. },
  34094. back: {
  34095. height: math.unit(15 + 7/12, "feet"),
  34096. weight: math.unit(1150, "tons"),
  34097. name: "Back",
  34098. image: {
  34099. source: "./media/characters/saphinara/back.svg",
  34100. extra: 591/531,
  34101. bottom: 13/604
  34102. },
  34103. form: "normal"
  34104. },
  34105. frontTail: {
  34106. height: math.unit(15 + 7/12, "feet"),
  34107. weight: math.unit(1150, "tons"),
  34108. name: "Front (Full Tail)",
  34109. image: {
  34110. source: "./media/characters/saphinara/front-tail.svg",
  34111. extra: 2256/1630,
  34112. bottom: 261/2517
  34113. },
  34114. form: "normal"
  34115. },
  34116. insides: {
  34117. height: math.unit(11.92, "feet"),
  34118. name: "Insides",
  34119. image: {
  34120. source: "./media/characters/saphinara/insides.svg"
  34121. },
  34122. form: "normal"
  34123. },
  34124. head: {
  34125. height: math.unit(4.17, "feet"),
  34126. name: "Head",
  34127. image: {
  34128. source: "./media/characters/saphinara/head.svg"
  34129. },
  34130. form: "normal"
  34131. },
  34132. tongue: {
  34133. height: math.unit(4.60, "feet"),
  34134. name: "Tongue",
  34135. image: {
  34136. source: "./media/characters/saphinara/tongue.svg"
  34137. },
  34138. form: "normal"
  34139. },
  34140. headEnraged: {
  34141. height: math.unit(5.55, "feet"),
  34142. name: "Head (Enraged)",
  34143. image: {
  34144. source: "./media/characters/saphinara/head-enraged.svg"
  34145. },
  34146. form: "normal"
  34147. },
  34148. wings: {
  34149. height: math.unit(11.95, "feet"),
  34150. name: "Wings",
  34151. image: {
  34152. source: "./media/characters/saphinara/wings.svg"
  34153. },
  34154. form: "normal"
  34155. },
  34156. feathers: {
  34157. height: math.unit(8.92, "feet"),
  34158. name: "Feathers",
  34159. image: {
  34160. source: "./media/characters/saphinara/feathers.svg"
  34161. },
  34162. form: "normal"
  34163. },
  34164. shackles: {
  34165. height: math.unit(2, "feet"),
  34166. name: "Shackles",
  34167. image: {
  34168. source: "./media/characters/saphinara/shackles.svg"
  34169. },
  34170. form: "normal"
  34171. },
  34172. eyes: {
  34173. height: math.unit(1.331, "feet"),
  34174. name: "Eyes",
  34175. image: {
  34176. source: "./media/characters/saphinara/eyes.svg"
  34177. },
  34178. form: "normal"
  34179. },
  34180. eyesEnraged: {
  34181. height: math.unit(1.331, "feet"),
  34182. name: "Eyes (Enraged)",
  34183. image: {
  34184. source: "./media/characters/saphinara/eyes-enraged.svg"
  34185. },
  34186. form: "normal"
  34187. },
  34188. trueFormSide: {
  34189. height: math.unit(200, "feet"),
  34190. weight: math.unit(1e7, "tons"),
  34191. name: "Side",
  34192. image: {
  34193. source: "./media/characters/saphinara/true-form-side.svg",
  34194. extra: 1399/770,
  34195. bottom: 97/1496
  34196. },
  34197. form: "true-form",
  34198. default: true
  34199. },
  34200. trueFormMaw: {
  34201. height: math.unit(71.5, "feet"),
  34202. name: "Maw",
  34203. image: {
  34204. source: "./media/characters/saphinara/true-form-maw.svg",
  34205. extra: 2302/1453,
  34206. bottom: 0/2302
  34207. },
  34208. form: "true-form"
  34209. },
  34210. },
  34211. [
  34212. {
  34213. name: "Normal",
  34214. height: math.unit(15 + 7/12, "feet"),
  34215. default: true,
  34216. form: "normal"
  34217. },
  34218. {
  34219. name: "Angry",
  34220. height: math.unit(30 + 6/12, "feet"),
  34221. form: "normal"
  34222. },
  34223. {
  34224. name: "Enraged",
  34225. height: math.unit(102 + 1/12, "feet"),
  34226. form: "normal"
  34227. },
  34228. {
  34229. name: "True",
  34230. height: math.unit(200, "feet"),
  34231. default: true,
  34232. form: "true-form"
  34233. }
  34234. ],
  34235. {
  34236. "normal": {
  34237. name: "Normal",
  34238. default: true
  34239. },
  34240. "true-form": {
  34241. name: "True Form"
  34242. }
  34243. }
  34244. ))
  34245. characterMakers.push(() => makeCharacter(
  34246. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34247. {
  34248. front: {
  34249. height: math.unit(6 + 8/12, "feet"),
  34250. weight: math.unit(300, "lb"),
  34251. name: "Front",
  34252. image: {
  34253. source: "./media/characters/jrain/front.svg",
  34254. extra: 3039/2865,
  34255. bottom: 399/3438
  34256. }
  34257. },
  34258. back: {
  34259. height: math.unit(6 + 8/12, "feet"),
  34260. weight: math.unit(300, "lb"),
  34261. name: "Back",
  34262. image: {
  34263. source: "./media/characters/jrain/back.svg",
  34264. extra: 3089/2938,
  34265. bottom: 172/3261
  34266. }
  34267. },
  34268. head: {
  34269. height: math.unit(2.14, "feet"),
  34270. name: "Head",
  34271. image: {
  34272. source: "./media/characters/jrain/head.svg"
  34273. }
  34274. },
  34275. maw: {
  34276. height: math.unit(1.77, "feet"),
  34277. name: "Maw",
  34278. image: {
  34279. source: "./media/characters/jrain/maw.svg"
  34280. }
  34281. },
  34282. leftHand: {
  34283. height: math.unit(1.1, "feet"),
  34284. name: "Left Hand",
  34285. image: {
  34286. source: "./media/characters/jrain/left-hand.svg"
  34287. }
  34288. },
  34289. rightHand: {
  34290. height: math.unit(1.1, "feet"),
  34291. name: "Right Hand",
  34292. image: {
  34293. source: "./media/characters/jrain/right-hand.svg"
  34294. }
  34295. },
  34296. eye: {
  34297. height: math.unit(0.35, "feet"),
  34298. name: "Eye",
  34299. image: {
  34300. source: "./media/characters/jrain/eye.svg"
  34301. }
  34302. },
  34303. },
  34304. [
  34305. {
  34306. name: "Normal",
  34307. height: math.unit(6 + 8/12, "feet"),
  34308. default: true
  34309. },
  34310. {
  34311. name: "Casually Large",
  34312. height: math.unit(25, "feet")
  34313. },
  34314. {
  34315. name: "Giant",
  34316. height: math.unit(100, "feet")
  34317. },
  34318. {
  34319. name: "Kaiju",
  34320. height: math.unit(300, "feet")
  34321. },
  34322. ]
  34323. ))
  34324. characterMakers.push(() => makeCharacter(
  34325. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34326. {
  34327. dragon: {
  34328. height: math.unit(5, "meters"),
  34329. name: "Dragon",
  34330. image: {
  34331. source: "./media/characters/sabrina/dragon.svg",
  34332. extra: 3670 / 2365,
  34333. bottom: 333 / 4003
  34334. }
  34335. },
  34336. gryphon: {
  34337. height: math.unit(3, "meters"),
  34338. name: "Gryphon",
  34339. image: {
  34340. source: "./media/characters/sabrina/gryphon.svg",
  34341. extra: 1576 / 945,
  34342. bottom: 71 / 1647
  34343. }
  34344. },
  34345. snake: {
  34346. height: math.unit(12, "meters"),
  34347. name: "Snake",
  34348. image: {
  34349. source: "./media/characters/sabrina/snake.svg",
  34350. extra: 1758 / 1320,
  34351. bottom: 186 / 1944
  34352. }
  34353. },
  34354. collar: {
  34355. height: math.unit(1.86, "meters"),
  34356. name: "Collar",
  34357. image: {
  34358. source: "./media/characters/sabrina/collar.svg"
  34359. }
  34360. },
  34361. eye: {
  34362. height: math.unit(0.53, "meters"),
  34363. name: "Eye",
  34364. image: {
  34365. source: "./media/characters/sabrina/eye.svg"
  34366. }
  34367. },
  34368. foot: {
  34369. height: math.unit(1.86, "meters"),
  34370. name: "Foot",
  34371. image: {
  34372. source: "./media/characters/sabrina/foot.svg"
  34373. }
  34374. },
  34375. hand: {
  34376. height: math.unit(1.32, "meters"),
  34377. name: "Hand",
  34378. image: {
  34379. source: "./media/characters/sabrina/hand.svg"
  34380. }
  34381. },
  34382. head: {
  34383. height: math.unit(2.44, "meters"),
  34384. name: "Head",
  34385. image: {
  34386. source: "./media/characters/sabrina/head.svg"
  34387. }
  34388. },
  34389. headAngry: {
  34390. height: math.unit(2.44, "meters"),
  34391. name: "Head (Angry))",
  34392. image: {
  34393. source: "./media/characters/sabrina/head-angry.svg"
  34394. }
  34395. },
  34396. maw: {
  34397. height: math.unit(1.65, "meters"),
  34398. name: "Maw",
  34399. image: {
  34400. source: "./media/characters/sabrina/maw.svg"
  34401. }
  34402. },
  34403. spikes: {
  34404. height: math.unit(1.69, "meters"),
  34405. name: "Spikes",
  34406. image: {
  34407. source: "./media/characters/sabrina/spikes.svg"
  34408. }
  34409. },
  34410. stomach: {
  34411. height: math.unit(1.15, "meters"),
  34412. name: "Stomach",
  34413. image: {
  34414. source: "./media/characters/sabrina/stomach.svg"
  34415. }
  34416. },
  34417. tongue: {
  34418. height: math.unit(1.27, "meters"),
  34419. name: "Tongue",
  34420. image: {
  34421. source: "./media/characters/sabrina/tongue.svg"
  34422. }
  34423. },
  34424. wingDorsal: {
  34425. height: math.unit(4.85, "meters"),
  34426. name: "Wing (Dorsal)",
  34427. image: {
  34428. source: "./media/characters/sabrina/wing-dorsal.svg"
  34429. }
  34430. },
  34431. wingVentral: {
  34432. height: math.unit(4.85, "meters"),
  34433. name: "Wing (Ventral)",
  34434. image: {
  34435. source: "./media/characters/sabrina/wing-ventral.svg"
  34436. }
  34437. },
  34438. },
  34439. [
  34440. {
  34441. name: "Normal",
  34442. height: math.unit(5, "meters"),
  34443. default: true
  34444. },
  34445. ]
  34446. ))
  34447. characterMakers.push(() => makeCharacter(
  34448. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34449. {
  34450. frontMaid: {
  34451. height: math.unit(5 + 5/12, "feet"),
  34452. weight: math.unit(130, "lb"),
  34453. name: "Front (Maid)",
  34454. image: {
  34455. source: "./media/characters/midnight-tales/front-maid.svg",
  34456. extra: 489/454,
  34457. bottom: 61/550
  34458. }
  34459. },
  34460. frontFormal: {
  34461. height: math.unit(5 + 5/12, "feet"),
  34462. weight: math.unit(130, "lb"),
  34463. name: "Front (Formal)",
  34464. image: {
  34465. source: "./media/characters/midnight-tales/front-formal.svg",
  34466. extra: 489/454,
  34467. bottom: 61/550
  34468. }
  34469. },
  34470. back: {
  34471. height: math.unit(5 + 5/12, "feet"),
  34472. weight: math.unit(130, "lb"),
  34473. name: "Back",
  34474. image: {
  34475. source: "./media/characters/midnight-tales/back.svg",
  34476. extra: 498/456,
  34477. bottom: 33/531
  34478. }
  34479. },
  34480. frontBeast: {
  34481. height: math.unit(40, "feet"),
  34482. weight: math.unit(64000, "lb"),
  34483. name: "Front (Beast)",
  34484. image: {
  34485. source: "./media/characters/midnight-tales/front-beast.svg",
  34486. extra: 927/860,
  34487. bottom: 53/980
  34488. }
  34489. },
  34490. backBeast: {
  34491. height: math.unit(40, "feet"),
  34492. weight: math.unit(64000, "lb"),
  34493. name: "Back (Beast)",
  34494. image: {
  34495. source: "./media/characters/midnight-tales/back-beast.svg",
  34496. extra: 929/855,
  34497. bottom: 16/945
  34498. }
  34499. },
  34500. footBeast: {
  34501. height: math.unit(6.7, "feet"),
  34502. name: "Foot (Beast)",
  34503. image: {
  34504. source: "./media/characters/midnight-tales/foot-beast.svg"
  34505. }
  34506. },
  34507. headBeast: {
  34508. height: math.unit(8, "feet"),
  34509. name: "Head (Beast)",
  34510. image: {
  34511. source: "./media/characters/midnight-tales/head-beast.svg"
  34512. }
  34513. },
  34514. },
  34515. [
  34516. {
  34517. name: "Normal",
  34518. height: math.unit(5 + 5 / 12, "feet"),
  34519. default: true
  34520. },
  34521. {
  34522. name: "Macro",
  34523. height: math.unit(25, "feet")
  34524. },
  34525. ]
  34526. ))
  34527. characterMakers.push(() => makeCharacter(
  34528. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34529. {
  34530. front: {
  34531. height: math.unit(5 + 10/12, "feet"),
  34532. name: "Front",
  34533. image: {
  34534. source: "./media/characters/argon/front.svg",
  34535. extra: 2009/1935,
  34536. bottom: 118/2127
  34537. }
  34538. },
  34539. back: {
  34540. height: math.unit(5 + 10/12, "feet"),
  34541. name: "Back",
  34542. image: {
  34543. source: "./media/characters/argon/back.svg",
  34544. extra: 2047/1992,
  34545. bottom: 20/2067
  34546. }
  34547. },
  34548. frontDressed: {
  34549. height: math.unit(5 + 10/12, "feet"),
  34550. name: "Front (Dressed)",
  34551. image: {
  34552. source: "./media/characters/argon/front-dressed.svg",
  34553. extra: 2009/1935,
  34554. bottom: 118/2127
  34555. }
  34556. },
  34557. },
  34558. [
  34559. {
  34560. name: "Normal",
  34561. height: math.unit(5 + 10/12, "feet"),
  34562. default: true
  34563. },
  34564. ]
  34565. ))
  34566. characterMakers.push(() => makeCharacter(
  34567. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34568. {
  34569. front: {
  34570. height: math.unit(8 + 6/12, "feet"),
  34571. weight: math.unit(1150, "lb"),
  34572. name: "Front",
  34573. image: {
  34574. source: "./media/characters/kichi/front.svg",
  34575. extra: 1267/1164,
  34576. bottom: 61/1328
  34577. }
  34578. },
  34579. back: {
  34580. height: math.unit(8 + 6/12, "feet"),
  34581. weight: math.unit(1150, "lb"),
  34582. name: "Back",
  34583. image: {
  34584. source: "./media/characters/kichi/back.svg",
  34585. extra: 1273/1166,
  34586. bottom: 33/1306
  34587. }
  34588. },
  34589. },
  34590. [
  34591. {
  34592. name: "Normal",
  34593. height: math.unit(8 + 6/12, "feet"),
  34594. default: true
  34595. },
  34596. ]
  34597. ))
  34598. characterMakers.push(() => makeCharacter(
  34599. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34600. {
  34601. front: {
  34602. height: math.unit(6, "feet"),
  34603. weight: math.unit(210, "lb"),
  34604. name: "Front",
  34605. image: {
  34606. source: "./media/characters/manetel-greyscale/front.svg",
  34607. extra: 350/312,
  34608. bottom: 8/358
  34609. }
  34610. },
  34611. },
  34612. [
  34613. {
  34614. name: "Micro",
  34615. height: math.unit(2, "inches")
  34616. },
  34617. {
  34618. name: "Normal",
  34619. height: math.unit(6, "feet"),
  34620. default: true
  34621. },
  34622. {
  34623. name: "Minimacro",
  34624. height: math.unit(17, "feet")
  34625. },
  34626. {
  34627. name: "Macro",
  34628. height: math.unit(117, "feet")
  34629. },
  34630. ]
  34631. ))
  34632. characterMakers.push(() => makeCharacter(
  34633. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34634. {
  34635. side: {
  34636. height: math.unit(5 + 1/12, "feet"),
  34637. weight: math.unit(418, "lb"),
  34638. name: "Side",
  34639. image: {
  34640. source: "./media/characters/softpurr/side.svg",
  34641. extra: 1993/1945,
  34642. bottom: 134/2127
  34643. }
  34644. },
  34645. front: {
  34646. height: math.unit(5 + 1/12, "feet"),
  34647. weight: math.unit(418, "lb"),
  34648. name: "Front",
  34649. image: {
  34650. source: "./media/characters/softpurr/front.svg",
  34651. extra: 1950/1856,
  34652. bottom: 174/2124
  34653. }
  34654. },
  34655. paw: {
  34656. height: math.unit(1, "feet"),
  34657. name: "Paw",
  34658. image: {
  34659. source: "./media/characters/softpurr/paw.svg"
  34660. }
  34661. },
  34662. },
  34663. [
  34664. {
  34665. name: "Normal",
  34666. height: math.unit(5 + 1/12, "feet"),
  34667. default: true
  34668. },
  34669. ]
  34670. ))
  34671. characterMakers.push(() => makeCharacter(
  34672. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34673. {
  34674. front: {
  34675. height: math.unit(260, "meters"),
  34676. name: "Front",
  34677. image: {
  34678. source: "./media/characters/anahita/front.svg",
  34679. extra: 665/635,
  34680. bottom: 89/754
  34681. }
  34682. },
  34683. },
  34684. [
  34685. {
  34686. name: "Macro",
  34687. height: math.unit(260, "meters"),
  34688. default: true
  34689. },
  34690. ]
  34691. ))
  34692. characterMakers.push(() => makeCharacter(
  34693. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34694. {
  34695. front: {
  34696. height: math.unit(4 + 10/12, "feet"),
  34697. weight: math.unit(160, "lb"),
  34698. name: "Front",
  34699. image: {
  34700. source: "./media/characters/chip-mouse/front.svg",
  34701. extra: 3528/3408,
  34702. bottom: 0/3528
  34703. }
  34704. },
  34705. frontNsfw: {
  34706. height: math.unit(4 + 10/12, "feet"),
  34707. weight: math.unit(160, "lb"),
  34708. name: "Front (NSFW)",
  34709. image: {
  34710. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34711. extra: 3528/3408,
  34712. bottom: 0/3528
  34713. }
  34714. },
  34715. },
  34716. [
  34717. {
  34718. name: "Normal",
  34719. height: math.unit(4 + 10/12, "feet"),
  34720. default: true
  34721. },
  34722. ]
  34723. ))
  34724. characterMakers.push(() => makeCharacter(
  34725. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34726. {
  34727. side: {
  34728. height: math.unit(10, "feet"),
  34729. weight: math.unit(14000, "lb"),
  34730. name: "Side",
  34731. image: {
  34732. source: "./media/characters/kremm/side.svg",
  34733. extra: 1390/1053,
  34734. bottom: 90/1480
  34735. }
  34736. },
  34737. gut: {
  34738. height: math.unit(5.8, "feet"),
  34739. name: "Gut",
  34740. image: {
  34741. source: "./media/characters/kremm/gut.svg"
  34742. }
  34743. },
  34744. ass: {
  34745. height: math.unit(6.1, "feet"),
  34746. name: "Ass",
  34747. image: {
  34748. source: "./media/characters/kremm/ass.svg"
  34749. }
  34750. },
  34751. jaws: {
  34752. height: math.unit(2.2, "feet"),
  34753. name: "Jaws",
  34754. image: {
  34755. source: "./media/characters/kremm/jaws.svg"
  34756. }
  34757. },
  34758. dick: {
  34759. height: math.unit(4.26, "feet"),
  34760. name: "Dick",
  34761. image: {
  34762. source: "./media/characters/kremm/dick.svg"
  34763. }
  34764. },
  34765. },
  34766. [
  34767. {
  34768. name: "Normal",
  34769. height: math.unit(10, "feet"),
  34770. default: true
  34771. },
  34772. ]
  34773. ))
  34774. characterMakers.push(() => makeCharacter(
  34775. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34776. {
  34777. front: {
  34778. height: math.unit(30, "stories"),
  34779. name: "Front",
  34780. image: {
  34781. source: "./media/characters/kai/front.svg",
  34782. extra: 1892/1718,
  34783. bottom: 162/2054
  34784. }
  34785. },
  34786. },
  34787. [
  34788. {
  34789. name: "Macro",
  34790. height: math.unit(30, "stories"),
  34791. default: true
  34792. },
  34793. ]
  34794. ))
  34795. characterMakers.push(() => makeCharacter(
  34796. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34797. {
  34798. front: {
  34799. height: math.unit(6 + 4/12, "feet"),
  34800. weight: math.unit(145, "lb"),
  34801. name: "Front",
  34802. image: {
  34803. source: "./media/characters/sykes/front.svg",
  34804. extra: 1321 / 1187,
  34805. bottom: 66 / 1387
  34806. }
  34807. },
  34808. back: {
  34809. height: math.unit(6 + 4/12, "feet"),
  34810. weight: math.unit(145, "lb"),
  34811. name: "Back",
  34812. image: {
  34813. source: "./media/characters/sykes/back.svg",
  34814. extra: 1326/1181,
  34815. bottom: 31/1357
  34816. }
  34817. },
  34818. traditionalOutfit: {
  34819. height: math.unit(6 + 4/12, "feet"),
  34820. weight: math.unit(145, "lb"),
  34821. name: "Traditional Outfit",
  34822. image: {
  34823. source: "./media/characters/sykes/traditional-outfit.svg",
  34824. extra: 1321 / 1187,
  34825. bottom: 66 / 1387
  34826. }
  34827. },
  34828. adventureOutfit: {
  34829. height: math.unit(6 + 4/12, "feet"),
  34830. weight: math.unit(145, "lb"),
  34831. name: "Adventure Outfit",
  34832. image: {
  34833. source: "./media/characters/sykes/adventure-outfit.svg",
  34834. extra: 1321 / 1187,
  34835. bottom: 66 / 1387
  34836. }
  34837. },
  34838. handLeft: {
  34839. height: math.unit(0.9, "feet"),
  34840. name: "Hand (Left)",
  34841. image: {
  34842. source: "./media/characters/sykes/hand-left.svg"
  34843. }
  34844. },
  34845. handRight: {
  34846. height: math.unit(0.839, "feet"),
  34847. name: "Hand (Right)",
  34848. image: {
  34849. source: "./media/characters/sykes/hand-right.svg"
  34850. }
  34851. },
  34852. leftFoot: {
  34853. height: math.unit(1.2, "feet"),
  34854. name: "Foot (Left)",
  34855. image: {
  34856. source: "./media/characters/sykes/foot-left.svg"
  34857. }
  34858. },
  34859. rightFoot: {
  34860. height: math.unit(1.2, "feet"),
  34861. name: "Foot (Right)",
  34862. image: {
  34863. source: "./media/characters/sykes/foot-right.svg"
  34864. }
  34865. },
  34866. maw: {
  34867. height: math.unit(1.93, "feet"),
  34868. name: "Maw",
  34869. image: {
  34870. source: "./media/characters/sykes/maw.svg"
  34871. }
  34872. },
  34873. teeth: {
  34874. height: math.unit(0.51, "feet"),
  34875. name: "Teeth",
  34876. image: {
  34877. source: "./media/characters/sykes/teeth.svg"
  34878. }
  34879. },
  34880. tongue: {
  34881. height: math.unit(2.13, "feet"),
  34882. name: "Tongue",
  34883. image: {
  34884. source: "./media/characters/sykes/tongue.svg"
  34885. }
  34886. },
  34887. uvula: {
  34888. height: math.unit(0.16, "feet"),
  34889. name: "Uvula",
  34890. image: {
  34891. source: "./media/characters/sykes/uvula.svg"
  34892. }
  34893. },
  34894. collar: {
  34895. height: math.unit(0.287, "feet"),
  34896. name: "Collar",
  34897. image: {
  34898. source: "./media/characters/sykes/collar.svg"
  34899. }
  34900. },
  34901. tail: {
  34902. height: math.unit(3.8, "feet"),
  34903. name: "Tail",
  34904. image: {
  34905. source: "./media/characters/sykes/tail.svg"
  34906. }
  34907. },
  34908. },
  34909. [
  34910. {
  34911. name: "Shrunken",
  34912. height: math.unit(5, "inches")
  34913. },
  34914. {
  34915. name: "Normal",
  34916. height: math.unit(6 + 4 / 12, "feet"),
  34917. default: true
  34918. },
  34919. {
  34920. name: "Big",
  34921. height: math.unit(15, "feet")
  34922. },
  34923. ]
  34924. ))
  34925. characterMakers.push(() => makeCharacter(
  34926. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34927. {
  34928. front: {
  34929. height: math.unit(5 + 8/12, "feet"),
  34930. weight: math.unit(190, "lb"),
  34931. name: "Front",
  34932. image: {
  34933. source: "./media/characters/oven-otter/front.svg",
  34934. extra: 1809/1740,
  34935. bottom: 181/1990
  34936. }
  34937. },
  34938. back: {
  34939. height: math.unit(5 + 8/12, "feet"),
  34940. weight: math.unit(190, "lb"),
  34941. name: "Back",
  34942. image: {
  34943. source: "./media/characters/oven-otter/back.svg",
  34944. extra: 1709/1635,
  34945. bottom: 118/1827
  34946. }
  34947. },
  34948. hand: {
  34949. height: math.unit(1.07, "feet"),
  34950. name: "Hand",
  34951. image: {
  34952. source: "./media/characters/oven-otter/hand.svg"
  34953. }
  34954. },
  34955. beans: {
  34956. height: math.unit(1.74, "feet"),
  34957. name: "Beans",
  34958. image: {
  34959. source: "./media/characters/oven-otter/beans.svg"
  34960. }
  34961. },
  34962. },
  34963. [
  34964. {
  34965. name: "Micro",
  34966. height: math.unit(0.5, "inches")
  34967. },
  34968. {
  34969. name: "Normal",
  34970. height: math.unit(5 + 8/12, "feet"),
  34971. default: true
  34972. },
  34973. {
  34974. name: "Macro",
  34975. height: math.unit(250, "feet")
  34976. },
  34977. {
  34978. name: "Really High",
  34979. height: math.unit(420, "feet")
  34980. },
  34981. ]
  34982. ))
  34983. characterMakers.push(() => makeCharacter(
  34984. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34985. {
  34986. front: {
  34987. height: math.unit(5, "meters"),
  34988. weight: math.unit(292000000000000, "kg"),
  34989. name: "Front",
  34990. image: {
  34991. source: "./media/characters/devourer/front.svg",
  34992. extra: 1800/1733,
  34993. bottom: 211/2011
  34994. }
  34995. },
  34996. maw: {
  34997. height: math.unit(1.1, "meter"),
  34998. name: "Maw",
  34999. image: {
  35000. source: "./media/characters/devourer/maw.svg"
  35001. }
  35002. },
  35003. },
  35004. [
  35005. {
  35006. name: "Small",
  35007. height: math.unit(3, "meters")
  35008. },
  35009. {
  35010. name: "Large",
  35011. height: math.unit(5, "meters"),
  35012. default: true
  35013. },
  35014. ]
  35015. ))
  35016. characterMakers.push(() => makeCharacter(
  35017. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35018. {
  35019. front: {
  35020. height: math.unit(6, "feet"),
  35021. weight: math.unit(400, "lb"),
  35022. name: "Front",
  35023. image: {
  35024. source: "./media/characters/ellarby/front.svg",
  35025. extra: 1909/1763,
  35026. bottom: 80/1989
  35027. }
  35028. },
  35029. back: {
  35030. height: math.unit(6, "feet"),
  35031. weight: math.unit(400, "lb"),
  35032. name: "Back",
  35033. image: {
  35034. source: "./media/characters/ellarby/back.svg",
  35035. extra: 1914/1784,
  35036. bottom: 172/2086
  35037. }
  35038. },
  35039. },
  35040. [
  35041. {
  35042. name: "Mischief",
  35043. height: math.unit(18, "inches")
  35044. },
  35045. {
  35046. name: "Trouble",
  35047. height: math.unit(12, "feet")
  35048. },
  35049. {
  35050. name: "Havoc",
  35051. height: math.unit(200, "feet"),
  35052. default: true
  35053. },
  35054. {
  35055. name: "Pandemonium",
  35056. height: math.unit(1, "mile")
  35057. },
  35058. {
  35059. name: "Catastrophe",
  35060. height: math.unit(100, "miles")
  35061. },
  35062. ]
  35063. ))
  35064. characterMakers.push(() => makeCharacter(
  35065. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35066. {
  35067. front: {
  35068. height: math.unit(4.7, "meters"),
  35069. weight: math.unit(6500, "kg"),
  35070. name: "Front",
  35071. image: {
  35072. source: "./media/characters/vex/front.svg",
  35073. extra: 1288/1140,
  35074. bottom: 100/1388
  35075. }
  35076. },
  35077. },
  35078. [
  35079. {
  35080. name: "Normal",
  35081. height: math.unit(4.7, "meters"),
  35082. default: true
  35083. },
  35084. ]
  35085. ))
  35086. characterMakers.push(() => makeCharacter(
  35087. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35088. {
  35089. normal: {
  35090. height: math.unit(6, "feet"),
  35091. weight: math.unit(350, "lb"),
  35092. name: "Normal",
  35093. image: {
  35094. source: "./media/characters/teshy/normal.svg",
  35095. extra: 1795/1735,
  35096. bottom: 16/1811
  35097. }
  35098. },
  35099. monsterFront: {
  35100. height: math.unit(12, "feet"),
  35101. weight: math.unit(4700, "lb"),
  35102. name: "Monster (Front)",
  35103. image: {
  35104. source: "./media/characters/teshy/monster-front.svg",
  35105. extra: 2042/2034,
  35106. bottom: 128/2170
  35107. }
  35108. },
  35109. monsterSide: {
  35110. height: math.unit(12, "feet"),
  35111. weight: math.unit(4700, "lb"),
  35112. name: "Monster (Side)",
  35113. image: {
  35114. source: "./media/characters/teshy/monster-side.svg",
  35115. extra: 2067/2056,
  35116. bottom: 70/2137
  35117. }
  35118. },
  35119. monsterBack: {
  35120. height: math.unit(12, "feet"),
  35121. weight: math.unit(4700, "lb"),
  35122. name: "Monster (Back)",
  35123. image: {
  35124. source: "./media/characters/teshy/monster-back.svg",
  35125. extra: 1921/1914,
  35126. bottom: 171/2092
  35127. }
  35128. },
  35129. },
  35130. [
  35131. {
  35132. name: "Normal",
  35133. height: math.unit(6, "feet"),
  35134. default: true
  35135. },
  35136. ]
  35137. ))
  35138. characterMakers.push(() => makeCharacter(
  35139. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35140. {
  35141. front: {
  35142. height: math.unit(6, "feet"),
  35143. name: "Front",
  35144. image: {
  35145. source: "./media/characters/ramey/front.svg",
  35146. extra: 790/787,
  35147. bottom: 27/817
  35148. }
  35149. },
  35150. },
  35151. [
  35152. {
  35153. name: "Normal",
  35154. height: math.unit(6, "feet"),
  35155. default: true
  35156. },
  35157. ]
  35158. ))
  35159. characterMakers.push(() => makeCharacter(
  35160. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35161. {
  35162. front: {
  35163. height: math.unit(5 + 5/12, "feet"),
  35164. weight: math.unit(120, "lb"),
  35165. name: "Front",
  35166. image: {
  35167. source: "./media/characters/phirae/front.svg",
  35168. extra: 2491/2436,
  35169. bottom: 38/2529
  35170. }
  35171. },
  35172. },
  35173. [
  35174. {
  35175. name: "Normal",
  35176. height: math.unit(5 + 5/12, "feet"),
  35177. default: true
  35178. },
  35179. ]
  35180. ))
  35181. characterMakers.push(() => makeCharacter(
  35182. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35183. {
  35184. front: {
  35185. height: math.unit(5 + 3/12, "feet"),
  35186. name: "Front",
  35187. image: {
  35188. source: "./media/characters/stagglas/front.svg",
  35189. extra: 962/882,
  35190. bottom: 53/1015
  35191. }
  35192. },
  35193. feral: {
  35194. height: math.unit(335, "cm"),
  35195. name: "Feral",
  35196. image: {
  35197. source: "./media/characters/stagglas/feral.svg",
  35198. extra: 1732/1090,
  35199. bottom: 48/1780
  35200. }
  35201. },
  35202. },
  35203. [
  35204. {
  35205. name: "Normal",
  35206. height: math.unit(5 + 3/12, "feet"),
  35207. default: true
  35208. },
  35209. ]
  35210. ))
  35211. characterMakers.push(() => makeCharacter(
  35212. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35213. {
  35214. front: {
  35215. height: math.unit(5 + 4/12, "feet"),
  35216. weight: math.unit(145, "lb"),
  35217. name: "Front",
  35218. image: {
  35219. source: "./media/characters/starra/front.svg",
  35220. extra: 1790/1691,
  35221. bottom: 91/1881
  35222. }
  35223. },
  35224. },
  35225. [
  35226. {
  35227. name: "Normal",
  35228. height: math.unit(5 + 4/12, "feet"),
  35229. default: true
  35230. },
  35231. ]
  35232. ))
  35233. characterMakers.push(() => makeCharacter(
  35234. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35235. {
  35236. front: {
  35237. height: math.unit(2.2, "meters"),
  35238. name: "Front",
  35239. image: {
  35240. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35241. extra: 1194/1005,
  35242. bottom: 25/1219
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Normal",
  35249. height: math.unit(2.2, "meters"),
  35250. default: true
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35256. {
  35257. side: {
  35258. height: math.unit(8 + 2/12, "feet"),
  35259. weight: math.unit(1240, "lb"),
  35260. name: "Side",
  35261. image: {
  35262. source: "./media/characters/mika-valentine/side.svg",
  35263. extra: 2670/2501,
  35264. bottom: 250/2920
  35265. }
  35266. },
  35267. },
  35268. [
  35269. {
  35270. name: "Normal",
  35271. height: math.unit(8 + 2/12, "feet"),
  35272. default: true
  35273. },
  35274. ]
  35275. ))
  35276. characterMakers.push(() => makeCharacter(
  35277. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35278. {
  35279. front: {
  35280. height: math.unit(7 + 2/12, "feet"),
  35281. name: "Front",
  35282. image: {
  35283. source: "./media/characters/xoltol/front.svg",
  35284. extra: 2212/2124,
  35285. bottom: 84/2296
  35286. }
  35287. },
  35288. side: {
  35289. height: math.unit(7 + 2/12, "feet"),
  35290. name: "Side",
  35291. image: {
  35292. source: "./media/characters/xoltol/side.svg",
  35293. extra: 2273/2197,
  35294. bottom: 26/2299
  35295. }
  35296. },
  35297. hand: {
  35298. height: math.unit(2.5, "feet"),
  35299. name: "Hand",
  35300. image: {
  35301. source: "./media/characters/xoltol/hand.svg"
  35302. }
  35303. },
  35304. },
  35305. [
  35306. {
  35307. name: "Small-ish",
  35308. height: math.unit(5 + 11/12, "feet")
  35309. },
  35310. {
  35311. name: "Normal",
  35312. height: math.unit(7 + 2/12, "feet")
  35313. },
  35314. {
  35315. name: "\"Macro\"",
  35316. height: math.unit(14 + 9/12, "feet"),
  35317. default: true
  35318. },
  35319. {
  35320. name: "Alternate Height",
  35321. height: math.unit(20, "feet")
  35322. },
  35323. {
  35324. name: "Actually Macro",
  35325. height: math.unit(100, "feet")
  35326. },
  35327. ]
  35328. ))
  35329. characterMakers.push(() => makeCharacter(
  35330. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35331. {
  35332. front: {
  35333. height: math.unit(5 + 2/12, "feet"),
  35334. name: "Front",
  35335. image: {
  35336. source: "./media/characters/kotetsu-redwood/front.svg",
  35337. extra: 1053/942,
  35338. bottom: 60/1113
  35339. }
  35340. },
  35341. },
  35342. [
  35343. {
  35344. name: "Normal",
  35345. height: math.unit(5 + 2/12, "feet"),
  35346. default: true
  35347. },
  35348. ]
  35349. ))
  35350. characterMakers.push(() => makeCharacter(
  35351. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35352. {
  35353. front: {
  35354. height: math.unit(2.4, "meters"),
  35355. weight: math.unit(125, "kg"),
  35356. name: "Front",
  35357. image: {
  35358. source: "./media/characters/lilith/front.svg",
  35359. extra: 1590/1513,
  35360. bottom: 203/1793
  35361. }
  35362. },
  35363. },
  35364. [
  35365. {
  35366. name: "Humanoid",
  35367. height: math.unit(2.4, "meters")
  35368. },
  35369. {
  35370. name: "Normal",
  35371. height: math.unit(6, "meters"),
  35372. default: true
  35373. },
  35374. {
  35375. name: "Largest",
  35376. height: math.unit(55, "meters")
  35377. },
  35378. ]
  35379. ))
  35380. characterMakers.push(() => makeCharacter(
  35381. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35382. {
  35383. front: {
  35384. height: math.unit(8 + 4/12, "feet"),
  35385. weight: math.unit(535, "lb"),
  35386. name: "Front",
  35387. image: {
  35388. source: "./media/characters/beh'kah-bolger/front.svg",
  35389. extra: 1660/1603,
  35390. bottom: 37/1697
  35391. }
  35392. },
  35393. },
  35394. [
  35395. {
  35396. name: "Normal",
  35397. height: math.unit(8 + 4/12, "feet"),
  35398. default: true
  35399. },
  35400. {
  35401. name: "Kaiju",
  35402. height: math.unit(250, "feet")
  35403. },
  35404. {
  35405. name: "Still Growing",
  35406. height: math.unit(10, "miles")
  35407. },
  35408. {
  35409. name: "Continental",
  35410. height: math.unit(5000, "miles")
  35411. },
  35412. {
  35413. name: "Final Form",
  35414. height: math.unit(2500000, "miles")
  35415. },
  35416. ]
  35417. ))
  35418. characterMakers.push(() => makeCharacter(
  35419. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35420. {
  35421. front: {
  35422. height: math.unit(7 + 2/12, "feet"),
  35423. weight: math.unit(230, "kg"),
  35424. name: "Front",
  35425. image: {
  35426. source: "./media/characters/tatyana-milewska/front.svg",
  35427. extra: 1199/1150,
  35428. bottom: 86/1285
  35429. }
  35430. },
  35431. },
  35432. [
  35433. {
  35434. name: "Normal",
  35435. height: math.unit(7 + 2/12, "feet"),
  35436. default: true
  35437. },
  35438. {
  35439. name: "Big",
  35440. height: math.unit(12, "feet")
  35441. },
  35442. {
  35443. name: "Minimacro",
  35444. height: math.unit(20, "feet")
  35445. },
  35446. {
  35447. name: "Macro",
  35448. height: math.unit(120, "feet")
  35449. },
  35450. ]
  35451. ))
  35452. characterMakers.push(() => makeCharacter(
  35453. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35454. {
  35455. front: {
  35456. height: math.unit(7 + 8/12, "feet"),
  35457. weight: math.unit(152, "kg"),
  35458. name: "Front",
  35459. image: {
  35460. source: "./media/characters/helen-arri/front.svg",
  35461. extra: 440/423,
  35462. bottom: 14/454
  35463. }
  35464. },
  35465. back: {
  35466. height: math.unit(7 + 8/12, "feet"),
  35467. weight: math.unit(152, "kg"),
  35468. name: "Back",
  35469. image: {
  35470. source: "./media/characters/helen-arri/back.svg",
  35471. extra: 443/426,
  35472. bottom: 8/451
  35473. }
  35474. },
  35475. },
  35476. [
  35477. {
  35478. name: "Normal",
  35479. height: math.unit(7 + 8/12, "feet"),
  35480. default: true
  35481. },
  35482. {
  35483. name: "Big",
  35484. height: math.unit(14, "feet")
  35485. },
  35486. {
  35487. name: "Minimacro",
  35488. height: math.unit(24, "feet")
  35489. },
  35490. {
  35491. name: "Macro",
  35492. height: math.unit(140, "feet")
  35493. },
  35494. ]
  35495. ))
  35496. characterMakers.push(() => makeCharacter(
  35497. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35498. {
  35499. front: {
  35500. height: math.unit(6, "meters"),
  35501. name: "Front",
  35502. image: {
  35503. source: "./media/characters/ehanu-rehu/front.svg",
  35504. extra: 1800/1800,
  35505. bottom: 59/1859
  35506. }
  35507. },
  35508. },
  35509. [
  35510. {
  35511. name: "Normal",
  35512. height: math.unit(6, "meters"),
  35513. default: true
  35514. },
  35515. ]
  35516. ))
  35517. characterMakers.push(() => makeCharacter(
  35518. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35519. {
  35520. front: {
  35521. height: math.unit(7 + 3/12, "feet"),
  35522. name: "Front",
  35523. image: {
  35524. source: "./media/characters/renholder/front.svg",
  35525. extra: 3096/2960,
  35526. bottom: 250/3346
  35527. }
  35528. },
  35529. },
  35530. [
  35531. {
  35532. name: "Normal Bat",
  35533. height: math.unit(7 + 3/12, "feet"),
  35534. default: true
  35535. },
  35536. {
  35537. name: "Slightly Tall Bat",
  35538. height: math.unit(100, "feet")
  35539. },
  35540. {
  35541. name: "Big Bat",
  35542. height: math.unit(1000, "feet")
  35543. },
  35544. {
  35545. name: "City-Sized Bat",
  35546. height: math.unit(200000, "feet")
  35547. },
  35548. {
  35549. name: "Bigger Bat",
  35550. height: math.unit(10000, "miles")
  35551. },
  35552. {
  35553. name: "Solar Sized Bat",
  35554. height: math.unit(100, "AU")
  35555. },
  35556. {
  35557. name: "Galactic Bat",
  35558. height: math.unit(200000, "lightyears")
  35559. },
  35560. {
  35561. name: "Universally Known Bat",
  35562. height: math.unit(1, "universe")
  35563. },
  35564. ]
  35565. ))
  35566. characterMakers.push(() => makeCharacter(
  35567. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35568. {
  35569. front: {
  35570. height: math.unit(6 + 11/12, "feet"),
  35571. weight: math.unit(250, "lb"),
  35572. name: "Front",
  35573. image: {
  35574. source: "./media/characters/cookiecat/front.svg",
  35575. extra: 893/827,
  35576. bottom: 14/907
  35577. }
  35578. },
  35579. },
  35580. [
  35581. {
  35582. name: "Micro",
  35583. height: math.unit(3, "inches")
  35584. },
  35585. {
  35586. name: "Normal",
  35587. height: math.unit(6 + 11/12, "feet"),
  35588. default: true
  35589. },
  35590. {
  35591. name: "Macro",
  35592. height: math.unit(100, "feet")
  35593. },
  35594. {
  35595. name: "Macro+",
  35596. height: math.unit(404, "feet")
  35597. },
  35598. {
  35599. name: "Megamacro",
  35600. height: math.unit(165, "miles")
  35601. },
  35602. {
  35603. name: "Planetary",
  35604. height: math.unit(4600, "miles")
  35605. },
  35606. ]
  35607. ))
  35608. characterMakers.push(() => makeCharacter(
  35609. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35610. {
  35611. front: {
  35612. height: math.unit(10 + 3/12, "feet"),
  35613. weight: math.unit(1500, "lb"),
  35614. name: "Front",
  35615. image: {
  35616. source: "./media/characters/tux-kusanagi/front.svg",
  35617. extra: 944/840,
  35618. bottom: 39/983
  35619. }
  35620. },
  35621. back: {
  35622. height: math.unit(10 + 3/12, "feet"),
  35623. weight: math.unit(1500, "lb"),
  35624. name: "Back",
  35625. image: {
  35626. source: "./media/characters/tux-kusanagi/back.svg",
  35627. extra: 941/842,
  35628. bottom: 28/969
  35629. }
  35630. },
  35631. rump: {
  35632. height: math.unit(5.25, "feet"),
  35633. name: "Rump",
  35634. image: {
  35635. source: "./media/characters/tux-kusanagi/rump.svg"
  35636. }
  35637. },
  35638. beak: {
  35639. height: math.unit(1.54, "feet"),
  35640. name: "Beak",
  35641. image: {
  35642. source: "./media/characters/tux-kusanagi/beak.svg"
  35643. }
  35644. },
  35645. },
  35646. [
  35647. {
  35648. name: "Normal",
  35649. height: math.unit(10 + 3/12, "feet"),
  35650. default: true
  35651. },
  35652. ]
  35653. ))
  35654. characterMakers.push(() => makeCharacter(
  35655. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35656. {
  35657. front: {
  35658. height: math.unit(58, "feet"),
  35659. weight: math.unit(200, "tons"),
  35660. name: "Front",
  35661. image: {
  35662. source: "./media/characters/uzarmazari/front.svg",
  35663. extra: 1575/1455,
  35664. bottom: 152/1727
  35665. }
  35666. },
  35667. back: {
  35668. height: math.unit(58, "feet"),
  35669. weight: math.unit(200, "tons"),
  35670. name: "Back",
  35671. image: {
  35672. source: "./media/characters/uzarmazari/back.svg",
  35673. extra: 1585/1510,
  35674. bottom: 157/1742
  35675. }
  35676. },
  35677. head: {
  35678. height: math.unit(26, "feet"),
  35679. name: "Head",
  35680. image: {
  35681. source: "./media/characters/uzarmazari/head.svg"
  35682. }
  35683. },
  35684. },
  35685. [
  35686. {
  35687. name: "Normal",
  35688. height: math.unit(58, "feet"),
  35689. default: true
  35690. },
  35691. ]
  35692. ))
  35693. characterMakers.push(() => makeCharacter(
  35694. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35695. {
  35696. side: {
  35697. height: math.unit(15, "feet"),
  35698. name: "Side",
  35699. image: {
  35700. source: "./media/characters/akitu/side.svg",
  35701. extra: 1421/1321,
  35702. bottom: 157/1578
  35703. }
  35704. },
  35705. front: {
  35706. height: math.unit(15, "feet"),
  35707. name: "Front",
  35708. image: {
  35709. source: "./media/characters/akitu/front.svg",
  35710. extra: 1435/1326,
  35711. bottom: 232/1667
  35712. }
  35713. },
  35714. },
  35715. [
  35716. {
  35717. name: "Normal",
  35718. height: math.unit(15, "feet"),
  35719. default: true
  35720. },
  35721. ]
  35722. ))
  35723. characterMakers.push(() => makeCharacter(
  35724. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35725. {
  35726. front: {
  35727. height: math.unit(10 + 8/12, "feet"),
  35728. name: "Front",
  35729. image: {
  35730. source: "./media/characters/azalie-croixland/front.svg",
  35731. extra: 1972/1856,
  35732. bottom: 31/2003
  35733. }
  35734. },
  35735. },
  35736. [
  35737. {
  35738. name: "Original Height",
  35739. height: math.unit(5 + 4/12, "feet")
  35740. },
  35741. {
  35742. name: "Normal Height",
  35743. height: math.unit(10 + 8/12, "feet"),
  35744. default: true
  35745. },
  35746. ]
  35747. ))
  35748. characterMakers.push(() => makeCharacter(
  35749. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35750. {
  35751. side: {
  35752. height: math.unit(7 + 1/12, "feet"),
  35753. weight: math.unit(245, "lb"),
  35754. name: "Side",
  35755. image: {
  35756. source: "./media/characters/kavus-kazian/side.svg",
  35757. extra: 349/342,
  35758. bottom: 15/364
  35759. }
  35760. },
  35761. },
  35762. [
  35763. {
  35764. name: "Normal",
  35765. height: math.unit(7 + 1/12, "feet"),
  35766. default: true
  35767. },
  35768. ]
  35769. ))
  35770. characterMakers.push(() => makeCharacter(
  35771. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35772. {
  35773. normalFront: {
  35774. height: math.unit(5 + 11/12, "feet"),
  35775. name: "Front",
  35776. image: {
  35777. source: "./media/characters/moonlight-rose/normal-front.svg",
  35778. extra: 1980/1825,
  35779. bottom: 18/1998
  35780. },
  35781. form: "normal",
  35782. default: true
  35783. },
  35784. normalBack: {
  35785. height: math.unit(5 + 11/12, "feet"),
  35786. name: "Back",
  35787. image: {
  35788. source: "./media/characters/moonlight-rose/normal-back.svg",
  35789. extra: 2010/1839,
  35790. bottom: 10/2020
  35791. },
  35792. form: "normal"
  35793. },
  35794. demonFront: {
  35795. height: math.unit(1.5, "earths"),
  35796. name: "Front",
  35797. image: {
  35798. source: "./media/characters/moonlight-rose/demon.svg",
  35799. extra: 1400/1294,
  35800. bottom: 45/1445
  35801. },
  35802. form: "demon",
  35803. default: true
  35804. },
  35805. terraFront: {
  35806. height: math.unit(1.5, "earths"),
  35807. name: "Front",
  35808. image: {
  35809. source: "./media/characters/moonlight-rose/terra.svg"
  35810. },
  35811. form: "terra",
  35812. default: true
  35813. },
  35814. jupiterFront: {
  35815. height: math.unit(69911*2, "km"),
  35816. name: "Front",
  35817. image: {
  35818. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35819. extra: 1367/1286,
  35820. bottom: 55/1422
  35821. },
  35822. form: "jupiter",
  35823. default: true
  35824. },
  35825. neptuneFront: {
  35826. height: math.unit(24622*2, "feet"),
  35827. name: "Front",
  35828. image: {
  35829. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35830. extra: 1851/1712,
  35831. bottom: 0/1851
  35832. },
  35833. form: "neptune",
  35834. default: true
  35835. },
  35836. },
  35837. [
  35838. {
  35839. name: "\"Natural\" Height",
  35840. height: math.unit(5 + 11/12, "feet"),
  35841. form: "normal"
  35842. },
  35843. {
  35844. name: "Smallest comfortable size",
  35845. height: math.unit(40, "meters"),
  35846. form: "normal"
  35847. },
  35848. {
  35849. name: "Common size",
  35850. height: math.unit(50, "km"),
  35851. form: "normal",
  35852. default: true
  35853. },
  35854. {
  35855. name: "Normal",
  35856. height: math.unit(1.5, "earths"),
  35857. form: "demon",
  35858. default: true
  35859. },
  35860. {
  35861. name: "Universal",
  35862. height: math.unit(15, "universes"),
  35863. form: "demon"
  35864. },
  35865. {
  35866. name: "Earth",
  35867. height: math.unit(1.5, "earths"),
  35868. form: "terra",
  35869. default: true
  35870. },
  35871. {
  35872. name: "Super Earth",
  35873. height: math.unit(67.5, "earths"),
  35874. form: "terra"
  35875. },
  35876. {
  35877. name: "Doesn't fit in a solar system...",
  35878. height: math.unit(1, "galaxy"),
  35879. form: "terra"
  35880. },
  35881. {
  35882. name: "Saturn",
  35883. height: math.unit(58232*2, "km"),
  35884. form: "jupiter"
  35885. },
  35886. {
  35887. name: "Jupiter",
  35888. height: math.unit(69911*2, "km"),
  35889. form: "jupiter",
  35890. default: true
  35891. },
  35892. {
  35893. name: "HD 100546 b",
  35894. height: math.unit(482938, "km"),
  35895. form: "jupiter"
  35896. },
  35897. {
  35898. name: "Enceladus",
  35899. height: math.unit(513*2, "km"),
  35900. form: "neptune"
  35901. },
  35902. {
  35903. name: "Europe",
  35904. height: math.unit(1560*2, "km"),
  35905. form: "neptune"
  35906. },
  35907. {
  35908. name: "Neptune",
  35909. height: math.unit(24622*2, "km"),
  35910. form: "neptune",
  35911. default: true
  35912. },
  35913. {
  35914. name: "CoRoT-9b",
  35915. height: math.unit(75067*2, "km"),
  35916. form: "neptune"
  35917. },
  35918. ],
  35919. {
  35920. "normal": {
  35921. name: "Normal",
  35922. default: true
  35923. },
  35924. "demon": {
  35925. name: "Demon"
  35926. },
  35927. "terra": {
  35928. name: "Terra"
  35929. },
  35930. "jupiter": {
  35931. name: "Jupiter"
  35932. },
  35933. "neptune": {
  35934. name: "Neptune"
  35935. }
  35936. }
  35937. ))
  35938. characterMakers.push(() => makeCharacter(
  35939. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35940. {
  35941. front: {
  35942. height: math.unit(16, "feet"),
  35943. weight: math.unit(610, "kg"),
  35944. name: "Front",
  35945. image: {
  35946. source: "./media/characters/huckle/front.svg",
  35947. extra: 1731/1625,
  35948. bottom: 33/1764
  35949. }
  35950. },
  35951. back: {
  35952. height: math.unit(16, "feet"),
  35953. weight: math.unit(610, "kg"),
  35954. name: "Back",
  35955. image: {
  35956. source: "./media/characters/huckle/back.svg",
  35957. extra: 1738/1651,
  35958. bottom: 37/1775
  35959. }
  35960. },
  35961. laughing: {
  35962. height: math.unit(3.75, "feet"),
  35963. name: "Laughing",
  35964. image: {
  35965. source: "./media/characters/huckle/laughing.svg"
  35966. }
  35967. },
  35968. angry: {
  35969. height: math.unit(4.15, "feet"),
  35970. name: "Angry",
  35971. image: {
  35972. source: "./media/characters/huckle/angry.svg"
  35973. }
  35974. },
  35975. },
  35976. [
  35977. {
  35978. name: "Normal",
  35979. height: math.unit(16, "feet"),
  35980. default: true
  35981. },
  35982. {
  35983. name: "Mini Macro",
  35984. height: math.unit(463, "feet")
  35985. },
  35986. {
  35987. name: "Macro",
  35988. height: math.unit(1680, "meters")
  35989. },
  35990. {
  35991. name: "Mega Macro",
  35992. height: math.unit(175, "km")
  35993. },
  35994. {
  35995. name: "Terra Macro",
  35996. height: math.unit(32, "gigameters")
  35997. },
  35998. {
  35999. name: "Multiverse+",
  36000. height: math.unit(2.56e23, "yottameters")
  36001. },
  36002. ]
  36003. ))
  36004. characterMakers.push(() => makeCharacter(
  36005. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36006. {
  36007. front: {
  36008. height: math.unit(6 + 9/12, "feet"),
  36009. weight: math.unit(280, "lb"),
  36010. name: "Front",
  36011. image: {
  36012. source: "./media/characters/candy/front.svg",
  36013. extra: 234/217,
  36014. bottom: 11/245
  36015. }
  36016. },
  36017. },
  36018. [
  36019. {
  36020. name: "Really Small",
  36021. height: math.unit(0.1, "nm")
  36022. },
  36023. {
  36024. name: "Micro",
  36025. height: math.unit(2, "inches")
  36026. },
  36027. {
  36028. name: "Normal",
  36029. height: math.unit(6 + 9/12, "feet"),
  36030. default: true
  36031. },
  36032. {
  36033. name: "Small Macro",
  36034. height: math.unit(69, "feet")
  36035. },
  36036. {
  36037. name: "Macro",
  36038. height: math.unit(160, "feet")
  36039. },
  36040. {
  36041. name: "Megamacro",
  36042. height: math.unit(22000, "miles")
  36043. },
  36044. {
  36045. name: "Gigamacro",
  36046. height: math.unit(50000, "miles")
  36047. },
  36048. ]
  36049. ))
  36050. characterMakers.push(() => makeCharacter(
  36051. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36052. {
  36053. front: {
  36054. height: math.unit(4, "feet"),
  36055. weight: math.unit(90, "lb"),
  36056. name: "Front",
  36057. image: {
  36058. source: "./media/characters/joey-mcdonald/front.svg",
  36059. extra: 1059/852,
  36060. bottom: 33/1092
  36061. }
  36062. },
  36063. back: {
  36064. height: math.unit(4, "feet"),
  36065. weight: math.unit(90, "lb"),
  36066. name: "Back",
  36067. image: {
  36068. source: "./media/characters/joey-mcdonald/back.svg",
  36069. extra: 1077/879,
  36070. bottom: 5/1082
  36071. }
  36072. },
  36073. frontKobold: {
  36074. height: math.unit(4, "feet"),
  36075. weight: math.unit(100, "lb"),
  36076. name: "Front-kobold",
  36077. image: {
  36078. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36079. extra: 1480/1367,
  36080. bottom: 0/1480
  36081. }
  36082. },
  36083. backKobold: {
  36084. height: math.unit(4, "feet"),
  36085. weight: math.unit(100, "lb"),
  36086. name: "Back-kobold",
  36087. image: {
  36088. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36089. extra: 1449/1361,
  36090. bottom: 0/1449
  36091. }
  36092. },
  36093. },
  36094. [
  36095. {
  36096. name: "Normal",
  36097. height: math.unit(4, "feet"),
  36098. default: true
  36099. },
  36100. ]
  36101. ))
  36102. characterMakers.push(() => makeCharacter(
  36103. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36104. {
  36105. front: {
  36106. height: math.unit(12 + 6/12, "feet"),
  36107. name: "Front",
  36108. image: {
  36109. source: "./media/characters/kass-lockheed/front.svg",
  36110. extra: 354/343,
  36111. bottom: 9/363
  36112. }
  36113. },
  36114. back: {
  36115. height: math.unit(12 + 6/12, "feet"),
  36116. name: "Back",
  36117. image: {
  36118. source: "./media/characters/kass-lockheed/back.svg",
  36119. extra: 364/352,
  36120. bottom: 3/367
  36121. }
  36122. },
  36123. dick: {
  36124. height: math.unit(3.12, "feet"),
  36125. name: "Dick",
  36126. image: {
  36127. source: "./media/characters/kass-lockheed/dick.svg"
  36128. }
  36129. },
  36130. head: {
  36131. height: math.unit(2.6, "feet"),
  36132. name: "Head",
  36133. image: {
  36134. source: "./media/characters/kass-lockheed/head.svg"
  36135. }
  36136. },
  36137. bleh: {
  36138. height: math.unit(2.85, "feet"),
  36139. name: "Bleh",
  36140. image: {
  36141. source: "./media/characters/kass-lockheed/bleh.svg"
  36142. }
  36143. },
  36144. smug: {
  36145. height: math.unit(2.85, "feet"),
  36146. name: "Smug",
  36147. image: {
  36148. source: "./media/characters/kass-lockheed/smug.svg"
  36149. }
  36150. },
  36151. },
  36152. [
  36153. {
  36154. name: "Normal",
  36155. height: math.unit(12 + 6/12, "feet"),
  36156. default: true
  36157. },
  36158. ]
  36159. ))
  36160. characterMakers.push(() => makeCharacter(
  36161. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36162. {
  36163. front: {
  36164. height: math.unit(6 + 2/12, "feet"),
  36165. name: "Front",
  36166. image: {
  36167. source: "./media/characters/taylor/front.svg",
  36168. extra: 639/495,
  36169. bottom: 12/651
  36170. }
  36171. },
  36172. },
  36173. [
  36174. {
  36175. name: "Normal",
  36176. height: math.unit(6 + 2/12, "feet"),
  36177. default: true
  36178. },
  36179. {
  36180. name: "Big",
  36181. height: math.unit(15, "feet")
  36182. },
  36183. {
  36184. name: "Lorg",
  36185. height: math.unit(80, "feet")
  36186. },
  36187. {
  36188. name: "Too Lorg",
  36189. height: math.unit(120, "feet")
  36190. },
  36191. ]
  36192. ))
  36193. characterMakers.push(() => makeCharacter(
  36194. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36195. {
  36196. front: {
  36197. height: math.unit(15, "feet"),
  36198. name: "Front",
  36199. image: {
  36200. source: "./media/characters/kaizer/front.svg",
  36201. extra: 1612/1436,
  36202. bottom: 43/1655
  36203. }
  36204. },
  36205. },
  36206. [
  36207. {
  36208. name: "Normal",
  36209. height: math.unit(15, "feet"),
  36210. default: true
  36211. },
  36212. ]
  36213. ))
  36214. characterMakers.push(() => makeCharacter(
  36215. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36216. {
  36217. front: {
  36218. height: math.unit(2, "feet"),
  36219. weight: math.unit(30, "lb"),
  36220. name: "Front",
  36221. image: {
  36222. source: "./media/characters/sandy/front.svg",
  36223. extra: 1439/1307,
  36224. bottom: 194/1633
  36225. }
  36226. },
  36227. },
  36228. [
  36229. {
  36230. name: "Normal",
  36231. height: math.unit(2, "feet"),
  36232. default: true
  36233. },
  36234. ]
  36235. ))
  36236. characterMakers.push(() => makeCharacter(
  36237. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36238. {
  36239. front: {
  36240. height: math.unit(3, "feet"),
  36241. name: "Front",
  36242. image: {
  36243. source: "./media/characters/mellvi/front.svg",
  36244. extra: 1831/1630,
  36245. bottom: 58/1889
  36246. }
  36247. },
  36248. },
  36249. [
  36250. {
  36251. name: "Normal",
  36252. height: math.unit(3, "feet"),
  36253. default: true
  36254. },
  36255. ]
  36256. ))
  36257. characterMakers.push(() => makeCharacter(
  36258. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36259. {
  36260. front: {
  36261. height: math.unit(5 + 11/12, "feet"),
  36262. weight: math.unit(200, "lb"),
  36263. name: "Front",
  36264. image: {
  36265. source: "./media/characters/shirou/front.svg",
  36266. extra: 2491/2383,
  36267. bottom: 189/2680
  36268. }
  36269. },
  36270. back: {
  36271. height: math.unit(5 + 11/12, "feet"),
  36272. weight: math.unit(200, "lb"),
  36273. name: "Back",
  36274. image: {
  36275. source: "./media/characters/shirou/back.svg",
  36276. extra: 2554/2450,
  36277. bottom: 76/2630
  36278. }
  36279. },
  36280. },
  36281. [
  36282. {
  36283. name: "Normal",
  36284. height: math.unit(5 + 11/12, "feet"),
  36285. default: true
  36286. },
  36287. ]
  36288. ))
  36289. characterMakers.push(() => makeCharacter(
  36290. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36291. {
  36292. front: {
  36293. height: math.unit(6 + 3/12, "feet"),
  36294. weight: math.unit(177, "lb"),
  36295. name: "Front",
  36296. image: {
  36297. source: "./media/characters/noryu/front.svg",
  36298. extra: 973/885,
  36299. bottom: 10/983
  36300. }
  36301. },
  36302. },
  36303. [
  36304. {
  36305. name: "Normal",
  36306. height: math.unit(6 + 3/12, "feet"),
  36307. default: true
  36308. },
  36309. ]
  36310. ))
  36311. characterMakers.push(() => makeCharacter(
  36312. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36313. {
  36314. front: {
  36315. height: math.unit(5 + 6/12, "feet"),
  36316. weight: math.unit(170, "lb"),
  36317. name: "Front",
  36318. image: {
  36319. source: "./media/characters/mevolas-rubenido/front.svg",
  36320. extra: 2109/1901,
  36321. bottom: 96/2205
  36322. }
  36323. },
  36324. },
  36325. [
  36326. {
  36327. name: "Normal",
  36328. height: math.unit(5 + 6/12, "feet"),
  36329. default: true
  36330. },
  36331. ]
  36332. ))
  36333. characterMakers.push(() => makeCharacter(
  36334. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36335. {
  36336. front: {
  36337. height: math.unit(100, "feet"),
  36338. name: "Front",
  36339. image: {
  36340. source: "./media/characters/dee/front.svg",
  36341. extra: 2153/2036,
  36342. bottom: 59/2212
  36343. }
  36344. },
  36345. back: {
  36346. height: math.unit(100, "feet"),
  36347. name: "Back",
  36348. image: {
  36349. source: "./media/characters/dee/back.svg",
  36350. extra: 2183/2058,
  36351. bottom: 75/2258
  36352. }
  36353. },
  36354. foot: {
  36355. height: math.unit(19.43, "feet"),
  36356. name: "Foot",
  36357. image: {
  36358. source: "./media/characters/dee/foot.svg"
  36359. }
  36360. },
  36361. hoof: {
  36362. height: math.unit(20.6, "feet"),
  36363. name: "Hoof",
  36364. image: {
  36365. source: "./media/characters/dee/hoof.svg"
  36366. }
  36367. },
  36368. },
  36369. [
  36370. {
  36371. name: "Macro",
  36372. height: math.unit(100, "feet"),
  36373. default: true
  36374. },
  36375. ]
  36376. ))
  36377. characterMakers.push(() => makeCharacter(
  36378. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36379. {
  36380. front: {
  36381. height: math.unit(5 + 6/12, "feet"),
  36382. name: "Front",
  36383. image: {
  36384. source: "./media/characters/teh/front.svg",
  36385. extra: 1002/847,
  36386. bottom: 62/1064
  36387. }
  36388. },
  36389. },
  36390. [
  36391. {
  36392. name: "Normal",
  36393. height: math.unit(5 + 6/12, "feet"),
  36394. default: true
  36395. },
  36396. ]
  36397. ))
  36398. characterMakers.push(() => makeCharacter(
  36399. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36400. {
  36401. side: {
  36402. height: math.unit(6 + 1/12, "feet"),
  36403. weight: math.unit(204, "lb"),
  36404. name: "Side",
  36405. image: {
  36406. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36407. extra: 974/775,
  36408. bottom: 169/1143
  36409. }
  36410. },
  36411. sitting: {
  36412. height: math.unit(6 + 2/12, "feet"),
  36413. weight: math.unit(204, "lb"),
  36414. name: "Sitting",
  36415. image: {
  36416. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36417. extra: 1175/964,
  36418. bottom: 378/1553
  36419. }
  36420. },
  36421. },
  36422. [
  36423. {
  36424. name: "Normal",
  36425. height: math.unit(6 + 1/12, "feet"),
  36426. default: true
  36427. },
  36428. ]
  36429. ))
  36430. characterMakers.push(() => makeCharacter(
  36431. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36432. {
  36433. front: {
  36434. height: math.unit(6, "inches"),
  36435. name: "Front",
  36436. image: {
  36437. source: "./media/characters/tululi/front.svg",
  36438. extra: 1997/1876,
  36439. bottom: 20/2017
  36440. }
  36441. },
  36442. },
  36443. [
  36444. {
  36445. name: "Normal",
  36446. height: math.unit(6, "inches"),
  36447. default: true
  36448. },
  36449. ]
  36450. ))
  36451. characterMakers.push(() => makeCharacter(
  36452. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36453. {
  36454. front: {
  36455. height: math.unit(4 + 1/12, "feet"),
  36456. name: "Front",
  36457. image: {
  36458. source: "./media/characters/star/front.svg",
  36459. extra: 1493/1189,
  36460. bottom: 48/1541
  36461. }
  36462. },
  36463. },
  36464. [
  36465. {
  36466. name: "Normal",
  36467. height: math.unit(4 + 1/12, "feet"),
  36468. default: true
  36469. },
  36470. ]
  36471. ))
  36472. characterMakers.push(() => makeCharacter(
  36473. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36474. {
  36475. front: {
  36476. height: math.unit(6 + 3/12, "feet"),
  36477. name: "Front",
  36478. image: {
  36479. source: "./media/characters/comet/front.svg",
  36480. extra: 1681/1462,
  36481. bottom: 26/1707
  36482. }
  36483. },
  36484. },
  36485. [
  36486. {
  36487. name: "Normal",
  36488. height: math.unit(6 + 3/12, "feet"),
  36489. default: true
  36490. },
  36491. ]
  36492. ))
  36493. characterMakers.push(() => makeCharacter(
  36494. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36495. {
  36496. front: {
  36497. height: math.unit(950, "feet"),
  36498. name: "Front",
  36499. image: {
  36500. source: "./media/characters/vortex/front.svg",
  36501. extra: 1497/1434,
  36502. bottom: 56/1553
  36503. }
  36504. },
  36505. maw: {
  36506. height: math.unit(285, "feet"),
  36507. name: "Maw",
  36508. image: {
  36509. source: "./media/characters/vortex/maw.svg"
  36510. }
  36511. },
  36512. },
  36513. [
  36514. {
  36515. name: "Macro",
  36516. height: math.unit(950, "feet"),
  36517. default: true
  36518. },
  36519. ]
  36520. ))
  36521. characterMakers.push(() => makeCharacter(
  36522. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36523. {
  36524. front: {
  36525. height: math.unit(600, "feet"),
  36526. weight: math.unit(0.02, "grams"),
  36527. name: "Front",
  36528. image: {
  36529. source: "./media/characters/doodle/front.svg",
  36530. extra: 1578/1413,
  36531. bottom: 37/1615
  36532. }
  36533. },
  36534. },
  36535. [
  36536. {
  36537. name: "Macro",
  36538. height: math.unit(600, "feet"),
  36539. default: true
  36540. },
  36541. ]
  36542. ))
  36543. characterMakers.push(() => makeCharacter(
  36544. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36545. {
  36546. front: {
  36547. height: math.unit(6 + 6/12, "feet"),
  36548. name: "Front",
  36549. image: {
  36550. source: "./media/characters/jai/front.svg",
  36551. extra: 1645/1534,
  36552. bottom: 115/1760
  36553. }
  36554. },
  36555. },
  36556. [
  36557. {
  36558. name: "Normal",
  36559. height: math.unit(6 + 6/12, "feet"),
  36560. default: true
  36561. },
  36562. ]
  36563. ))
  36564. characterMakers.push(() => makeCharacter(
  36565. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36566. {
  36567. front: {
  36568. height: math.unit(6 + 8/12, "feet"),
  36569. name: "Front",
  36570. image: {
  36571. source: "./media/characters/pixel/front.svg",
  36572. extra: 1900/1735,
  36573. bottom: 63/1963
  36574. }
  36575. },
  36576. },
  36577. [
  36578. {
  36579. name: "Normal",
  36580. height: math.unit(6 + 8/12, "feet"),
  36581. default: true
  36582. },
  36583. ]
  36584. ))
  36585. characterMakers.push(() => makeCharacter(
  36586. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36587. {
  36588. back: {
  36589. height: math.unit(4 + 1/12, "feet"),
  36590. weight: math.unit(75, "lb"),
  36591. name: "Back",
  36592. image: {
  36593. source: "./media/characters/rhett/back.svg",
  36594. extra: 930/878,
  36595. bottom: 25/955
  36596. }
  36597. },
  36598. front: {
  36599. height: math.unit(4 + 1/12, "feet"),
  36600. weight: math.unit(75, "lb"),
  36601. name: "Front",
  36602. image: {
  36603. source: "./media/characters/rhett/front.svg",
  36604. extra: 1682/1586,
  36605. bottom: 92/1774
  36606. }
  36607. },
  36608. },
  36609. [
  36610. {
  36611. name: "Micro",
  36612. height: math.unit(8, "inches")
  36613. },
  36614. {
  36615. name: "Tiny",
  36616. height: math.unit(2, "feet")
  36617. },
  36618. {
  36619. name: "Normal",
  36620. height: math.unit(4 + 1/12, "feet"),
  36621. default: true
  36622. },
  36623. ]
  36624. ))
  36625. characterMakers.push(() => makeCharacter(
  36626. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36627. {
  36628. front: {
  36629. height: math.unit(3 + 3/12, "feet"),
  36630. name: "Front",
  36631. image: {
  36632. source: "./media/characters/penny/front.svg",
  36633. extra: 1406/1311,
  36634. bottom: 26/1432
  36635. }
  36636. },
  36637. },
  36638. [
  36639. {
  36640. name: "Normal",
  36641. height: math.unit(3 + 3/12, "feet"),
  36642. default: true
  36643. },
  36644. ]
  36645. ))
  36646. characterMakers.push(() => makeCharacter(
  36647. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36648. {
  36649. front: {
  36650. height: math.unit(4 + 11/12, "feet"),
  36651. name: "Front",
  36652. image: {
  36653. source: "./media/characters/monty/front.svg",
  36654. extra: 1479/1209,
  36655. bottom: 0/1479
  36656. }
  36657. },
  36658. },
  36659. [
  36660. {
  36661. name: "Normal",
  36662. height: math.unit(4 + 11/12, "feet"),
  36663. default: true
  36664. },
  36665. ]
  36666. ))
  36667. characterMakers.push(() => makeCharacter(
  36668. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36669. {
  36670. front: {
  36671. height: math.unit(8 + 4/12, "feet"),
  36672. name: "Front",
  36673. image: {
  36674. source: "./media/characters/sterling/front.svg",
  36675. extra: 1420/1236,
  36676. bottom: 27/1447
  36677. }
  36678. },
  36679. },
  36680. [
  36681. {
  36682. name: "Normal",
  36683. height: math.unit(8 + 4/12, "feet"),
  36684. default: true
  36685. },
  36686. ]
  36687. ))
  36688. characterMakers.push(() => makeCharacter(
  36689. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36690. {
  36691. front: {
  36692. height: math.unit(15, "feet"),
  36693. name: "Front",
  36694. image: {
  36695. source: "./media/characters/marble/front.svg",
  36696. extra: 973/937,
  36697. bottom: 32/1005
  36698. }
  36699. },
  36700. },
  36701. [
  36702. {
  36703. name: "Normal",
  36704. height: math.unit(15, "feet"),
  36705. default: true
  36706. },
  36707. ]
  36708. ))
  36709. characterMakers.push(() => makeCharacter(
  36710. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36711. {
  36712. front: {
  36713. height: math.unit(3, "inches"),
  36714. name: "Front",
  36715. image: {
  36716. source: "./media/characters/powder/front.svg",
  36717. extra: 1504/1334,
  36718. bottom: 518/2022
  36719. }
  36720. },
  36721. },
  36722. [
  36723. {
  36724. name: "Normal",
  36725. height: math.unit(3, "inches"),
  36726. default: true
  36727. },
  36728. ]
  36729. ))
  36730. characterMakers.push(() => makeCharacter(
  36731. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36732. {
  36733. front: {
  36734. height: math.unit(4 + 5/12, "feet"),
  36735. name: "Front",
  36736. image: {
  36737. source: "./media/characters/joey-raccoon/front.svg",
  36738. extra: 1273/1197,
  36739. bottom: 0/1273
  36740. }
  36741. },
  36742. },
  36743. [
  36744. {
  36745. name: "Normal",
  36746. height: math.unit(4 + 5/12, "feet"),
  36747. default: true
  36748. },
  36749. ]
  36750. ))
  36751. characterMakers.push(() => makeCharacter(
  36752. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36753. {
  36754. front: {
  36755. height: math.unit(8 + 4/12, "feet"),
  36756. name: "Front",
  36757. image: {
  36758. source: "./media/characters/vick/front.svg",
  36759. extra: 2187/2118,
  36760. bottom: 47/2234
  36761. }
  36762. },
  36763. },
  36764. [
  36765. {
  36766. name: "Normal",
  36767. height: math.unit(8 + 4/12, "feet"),
  36768. default: true
  36769. },
  36770. ]
  36771. ))
  36772. characterMakers.push(() => makeCharacter(
  36773. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36774. {
  36775. front: {
  36776. height: math.unit(5 + 5/12, "feet"),
  36777. name: "Front",
  36778. image: {
  36779. source: "./media/characters/mitsy/front.svg",
  36780. extra: 1842/1695,
  36781. bottom: 0/1842
  36782. }
  36783. },
  36784. },
  36785. [
  36786. {
  36787. name: "Normal",
  36788. height: math.unit(5 + 5/12, "feet"),
  36789. default: true
  36790. },
  36791. ]
  36792. ))
  36793. characterMakers.push(() => makeCharacter(
  36794. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36795. {
  36796. front: {
  36797. height: math.unit(6 + 3/12, "feet"),
  36798. name: "Front",
  36799. image: {
  36800. source: "./media/characters/silvy/front.svg",
  36801. extra: 1995/1836,
  36802. bottom: 225/2220
  36803. }
  36804. },
  36805. },
  36806. [
  36807. {
  36808. name: "Normal",
  36809. height: math.unit(6 + 3/12, "feet"),
  36810. default: true
  36811. },
  36812. ]
  36813. ))
  36814. characterMakers.push(() => makeCharacter(
  36815. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36816. {
  36817. front: {
  36818. height: math.unit(3 + 8/12, "feet"),
  36819. name: "Front",
  36820. image: {
  36821. source: "./media/characters/rodney/front.svg",
  36822. extra: 1956/1747,
  36823. bottom: 31/1987
  36824. }
  36825. },
  36826. frontDressed: {
  36827. height: math.unit(2.9, "feet"),
  36828. name: "Front (Dressed)",
  36829. image: {
  36830. source: "./media/characters/rodney/front-dressed.svg",
  36831. extra: 1382/1241,
  36832. bottom: 385/1767
  36833. }
  36834. },
  36835. },
  36836. [
  36837. {
  36838. name: "Normal",
  36839. height: math.unit(3 + 8/12, "feet"),
  36840. default: true
  36841. },
  36842. ]
  36843. ))
  36844. characterMakers.push(() => makeCharacter(
  36845. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36846. {
  36847. front: {
  36848. height: math.unit(5 + 9/12, "feet"),
  36849. weight: math.unit(194, "lbs"),
  36850. name: "Front",
  36851. image: {
  36852. source: "./media/characters/zakail-sudekai/front.svg",
  36853. extra: 2696/2533,
  36854. bottom: 248/2944
  36855. }
  36856. },
  36857. maw: {
  36858. height: math.unit(1.35, "feet"),
  36859. name: "Maw",
  36860. image: {
  36861. source: "./media/characters/zakail-sudekai/maw.svg"
  36862. }
  36863. },
  36864. },
  36865. [
  36866. {
  36867. name: "Normal",
  36868. height: math.unit(5 + 9/12, "feet"),
  36869. default: true
  36870. },
  36871. ]
  36872. ))
  36873. characterMakers.push(() => makeCharacter(
  36874. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36875. {
  36876. front: {
  36877. height: math.unit(8 + 4/12, "feet"),
  36878. weight: math.unit(1200, "lb"),
  36879. name: "Front",
  36880. image: {
  36881. source: "./media/characters/eleanor/front.svg",
  36882. extra: 1226/1192,
  36883. bottom: 52/1278
  36884. }
  36885. },
  36886. back: {
  36887. height: math.unit(8 + 4/12, "feet"),
  36888. weight: math.unit(1200, "lb"),
  36889. name: "Back",
  36890. image: {
  36891. source: "./media/characters/eleanor/back.svg",
  36892. extra: 1242/1184,
  36893. bottom: 60/1302
  36894. }
  36895. },
  36896. head: {
  36897. height: math.unit(2.62, "feet"),
  36898. name: "Head",
  36899. image: {
  36900. source: "./media/characters/eleanor/head.svg"
  36901. }
  36902. },
  36903. },
  36904. [
  36905. {
  36906. name: "Normal",
  36907. height: math.unit(8 + 4/12, "feet"),
  36908. default: true
  36909. },
  36910. ]
  36911. ))
  36912. characterMakers.push(() => makeCharacter(
  36913. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36914. {
  36915. front: {
  36916. height: math.unit(8 + 4/12, "feet"),
  36917. weight: math.unit(750, "lb"),
  36918. name: "Front",
  36919. image: {
  36920. source: "./media/characters/tanya/front.svg",
  36921. extra: 1749/1615,
  36922. bottom: 33/1782
  36923. }
  36924. },
  36925. },
  36926. [
  36927. {
  36928. name: "Normal",
  36929. height: math.unit(8 + 4/12, "feet"),
  36930. default: true
  36931. },
  36932. ]
  36933. ))
  36934. characterMakers.push(() => makeCharacter(
  36935. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36936. {
  36937. front: {
  36938. height: math.unit(5, "feet"),
  36939. weight: math.unit(225, "lb"),
  36940. name: "Front",
  36941. image: {
  36942. source: "./media/characters/cindy/front.svg",
  36943. extra: 1320/1250,
  36944. bottom: 42/1362
  36945. }
  36946. },
  36947. frontDressed: {
  36948. height: math.unit(5, "feet"),
  36949. weight: math.unit(225, "lb"),
  36950. name: "Front (Dressed)",
  36951. image: {
  36952. source: "./media/characters/cindy/front-dressed.svg",
  36953. extra: 1320/1250,
  36954. bottom: 42/1362
  36955. }
  36956. },
  36957. back: {
  36958. height: math.unit(5, "feet"),
  36959. weight: math.unit(225, "lb"),
  36960. name: "Back",
  36961. image: {
  36962. source: "./media/characters/cindy/back.svg",
  36963. extra: 1384/1346,
  36964. bottom: 14/1398
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Normal",
  36971. height: math.unit(5, "feet"),
  36972. default: true
  36973. },
  36974. ]
  36975. ))
  36976. characterMakers.push(() => makeCharacter(
  36977. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36978. {
  36979. front: {
  36980. height: math.unit(6 + 9/12, "feet"),
  36981. weight: math.unit(440, "lb"),
  36982. name: "Front",
  36983. image: {
  36984. source: "./media/characters/wilbur-owen/front.svg",
  36985. extra: 1575/1448,
  36986. bottom: 72/1647
  36987. }
  36988. },
  36989. back: {
  36990. height: math.unit(6 + 9/12, "feet"),
  36991. weight: math.unit(440, "lb"),
  36992. name: "Back",
  36993. image: {
  36994. source: "./media/characters/wilbur-owen/back.svg",
  36995. extra: 1578/1445,
  36996. bottom: 36/1614
  36997. }
  36998. },
  36999. },
  37000. [
  37001. {
  37002. name: "Normal",
  37003. height: math.unit(6 + 9/12, "feet"),
  37004. default: true
  37005. },
  37006. ]
  37007. ))
  37008. characterMakers.push(() => makeCharacter(
  37009. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37010. {
  37011. front: {
  37012. height: math.unit(6 + 5/12, "feet"),
  37013. weight: math.unit(650, "lb"),
  37014. name: "Front",
  37015. image: {
  37016. source: "./media/characters/keegan/front.svg",
  37017. extra: 2387/2198,
  37018. bottom: 33/2420
  37019. }
  37020. },
  37021. side: {
  37022. height: math.unit(6 + 5/12, "feet"),
  37023. weight: math.unit(650, "lb"),
  37024. name: "Side",
  37025. image: {
  37026. source: "./media/characters/keegan/side.svg",
  37027. extra: 2390/2202,
  37028. bottom: 47/2437
  37029. }
  37030. },
  37031. back: {
  37032. height: math.unit(6 + 5/12, "feet"),
  37033. weight: math.unit(650, "lb"),
  37034. name: "Back",
  37035. image: {
  37036. source: "./media/characters/keegan/back.svg",
  37037. extra: 2418/2268,
  37038. bottom: 15/2433
  37039. }
  37040. },
  37041. frontSfw: {
  37042. height: math.unit(6 + 5/12, "feet"),
  37043. weight: math.unit(650, "lb"),
  37044. name: "Front (SFW)",
  37045. image: {
  37046. source: "./media/characters/keegan/front-sfw.svg",
  37047. extra: 2387/2198,
  37048. bottom: 33/2420
  37049. }
  37050. },
  37051. beans: {
  37052. height: math.unit(1.85, "feet"),
  37053. name: "Beans",
  37054. image: {
  37055. source: "./media/characters/keegan/beans.svg"
  37056. }
  37057. },
  37058. },
  37059. [
  37060. {
  37061. name: "Normal",
  37062. height: math.unit(6 + 5/12, "feet"),
  37063. default: true
  37064. },
  37065. ]
  37066. ))
  37067. characterMakers.push(() => makeCharacter(
  37068. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37069. {
  37070. front: {
  37071. height: math.unit(9, "feet"),
  37072. name: "Front",
  37073. image: {
  37074. source: "./media/characters/colton/front.svg",
  37075. extra: 1589/1326,
  37076. bottom: 139/1728
  37077. }
  37078. },
  37079. },
  37080. [
  37081. {
  37082. name: "Normal",
  37083. height: math.unit(9, "feet"),
  37084. default: true
  37085. },
  37086. ]
  37087. ))
  37088. characterMakers.push(() => makeCharacter(
  37089. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37090. {
  37091. front: {
  37092. height: math.unit(2 + 9/12, "feet"),
  37093. name: "Front",
  37094. image: {
  37095. source: "./media/characters/bora/front.svg",
  37096. extra: 1265/1250,
  37097. bottom: 24/1289
  37098. }
  37099. },
  37100. },
  37101. [
  37102. {
  37103. name: "Normal",
  37104. height: math.unit(2 + 9/12, "feet"),
  37105. default: true
  37106. },
  37107. ]
  37108. ))
  37109. characterMakers.push(() => makeCharacter(
  37110. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37111. {
  37112. front: {
  37113. height: math.unit(8, "feet"),
  37114. name: "Front",
  37115. image: {
  37116. source: "./media/characters/myu-myu/front.svg",
  37117. extra: 1949/1857,
  37118. bottom: 90/2039
  37119. }
  37120. },
  37121. },
  37122. [
  37123. {
  37124. name: "Normal",
  37125. height: math.unit(8, "feet"),
  37126. default: true
  37127. },
  37128. {
  37129. name: "Big",
  37130. height: math.unit(15, "feet")
  37131. },
  37132. {
  37133. name: "BIG",
  37134. height: math.unit(25, "feet")
  37135. },
  37136. ]
  37137. ))
  37138. characterMakers.push(() => makeCharacter(
  37139. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37140. {
  37141. side: {
  37142. height: math.unit(7 + 5/12, "feet"),
  37143. weight: math.unit(2800, "lb"),
  37144. name: "Side",
  37145. image: {
  37146. source: "./media/characters/haloren/side.svg",
  37147. extra: 1793/409,
  37148. bottom: 59/1852
  37149. }
  37150. },
  37151. frontPaw: {
  37152. height: math.unit(2.36, "feet"),
  37153. name: "Front paw",
  37154. image: {
  37155. source: "./media/characters/haloren/front-paw.svg"
  37156. }
  37157. },
  37158. hindPaw: {
  37159. height: math.unit(3.18, "feet"),
  37160. name: "Hind paw",
  37161. image: {
  37162. source: "./media/characters/haloren/hind-paw.svg"
  37163. }
  37164. },
  37165. maw: {
  37166. height: math.unit(5.05, "feet"),
  37167. name: "Maw",
  37168. image: {
  37169. source: "./media/characters/haloren/maw.svg"
  37170. }
  37171. },
  37172. dick: {
  37173. height: math.unit(2.90, "feet"),
  37174. name: "Dick",
  37175. image: {
  37176. source: "./media/characters/haloren/dick.svg"
  37177. }
  37178. },
  37179. },
  37180. [
  37181. {
  37182. name: "Normal",
  37183. height: math.unit(7 + 5/12, "feet"),
  37184. default: true
  37185. },
  37186. {
  37187. name: "Enhanced",
  37188. height: math.unit(14 + 3/12, "feet")
  37189. },
  37190. ]
  37191. ))
  37192. characterMakers.push(() => makeCharacter(
  37193. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37194. {
  37195. front: {
  37196. height: math.unit(171, "cm"),
  37197. name: "Front",
  37198. image: {
  37199. source: "./media/characters/kimmy/front.svg",
  37200. extra: 1491/1435,
  37201. bottom: 53/1544
  37202. }
  37203. },
  37204. },
  37205. [
  37206. {
  37207. name: "Small",
  37208. height: math.unit(9, "cm")
  37209. },
  37210. {
  37211. name: "Normal",
  37212. height: math.unit(171, "cm"),
  37213. default: true
  37214. },
  37215. ]
  37216. ))
  37217. characterMakers.push(() => makeCharacter(
  37218. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37219. {
  37220. front: {
  37221. height: math.unit(8, "feet"),
  37222. weight: math.unit(300, "lb"),
  37223. name: "Front",
  37224. image: {
  37225. source: "./media/characters/galeboomer/front.svg",
  37226. extra: 4651/4415,
  37227. bottom: 162/4813
  37228. }
  37229. },
  37230. back: {
  37231. height: math.unit(8, "feet"),
  37232. weight: math.unit(300, "lb"),
  37233. name: "Back",
  37234. image: {
  37235. source: "./media/characters/galeboomer/back.svg",
  37236. extra: 4544/4314,
  37237. bottom: 16/4560
  37238. }
  37239. },
  37240. frontAlt: {
  37241. height: math.unit(8, "feet"),
  37242. weight: math.unit(300, "lb"),
  37243. name: "Front (Alt)",
  37244. image: {
  37245. source: "./media/characters/galeboomer/front-alt.svg",
  37246. extra: 4458/4228,
  37247. bottom: 68/4526
  37248. }
  37249. },
  37250. maw: {
  37251. height: math.unit(1.2, "feet"),
  37252. name: "Maw",
  37253. image: {
  37254. source: "./media/characters/galeboomer/maw.svg"
  37255. }
  37256. },
  37257. },
  37258. [
  37259. {
  37260. name: "Normal",
  37261. height: math.unit(8, "feet"),
  37262. default: true
  37263. },
  37264. ]
  37265. ))
  37266. characterMakers.push(() => makeCharacter(
  37267. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37268. {
  37269. front: {
  37270. height: math.unit(5 + 9/12, "feet"),
  37271. weight: math.unit(120, "lb"),
  37272. name: "Front",
  37273. image: {
  37274. source: "./media/characters/chyr/front.svg",
  37275. extra: 1323/1254,
  37276. bottom: 63/1386
  37277. }
  37278. },
  37279. back: {
  37280. height: math.unit(5 + 9/12, "feet"),
  37281. weight: math.unit(120, "lb"),
  37282. name: "Back",
  37283. image: {
  37284. source: "./media/characters/chyr/back.svg",
  37285. extra: 1323/1252,
  37286. bottom: 48/1371
  37287. }
  37288. },
  37289. },
  37290. [
  37291. {
  37292. name: "Normal",
  37293. height: math.unit(5 + 9/12, "feet"),
  37294. default: true
  37295. },
  37296. ]
  37297. ))
  37298. characterMakers.push(() => makeCharacter(
  37299. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37300. {
  37301. front: {
  37302. height: math.unit(7, "feet"),
  37303. weight: math.unit(310, "lb"),
  37304. name: "Front",
  37305. image: {
  37306. source: "./media/characters/solarus/front.svg",
  37307. extra: 2415/2021,
  37308. bottom: 103/2518
  37309. }
  37310. },
  37311. back: {
  37312. height: math.unit(7, "feet"),
  37313. weight: math.unit(310, "lb"),
  37314. name: "Back",
  37315. image: {
  37316. source: "./media/characters/solarus/back.svg",
  37317. extra: 2463/2089,
  37318. bottom: 79/2542
  37319. }
  37320. },
  37321. },
  37322. [
  37323. {
  37324. name: "Normal",
  37325. height: math.unit(7, "feet"),
  37326. default: true
  37327. },
  37328. ]
  37329. ))
  37330. characterMakers.push(() => makeCharacter(
  37331. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37332. {
  37333. front: {
  37334. height: math.unit(16, "feet"),
  37335. name: "Front",
  37336. image: {
  37337. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37338. extra: 1844/1780,
  37339. bottom: 58/1902
  37340. }
  37341. },
  37342. winterCoat: {
  37343. height: math.unit(16, "feet"),
  37344. name: "Winter Coat",
  37345. image: {
  37346. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37347. extra: 1807/1775,
  37348. bottom: 69/1876
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(16, "feet"),
  37356. default: true
  37357. },
  37358. {
  37359. name: "Chicago Size",
  37360. height: math.unit(560, "feet")
  37361. },
  37362. ]
  37363. ))
  37364. characterMakers.push(() => makeCharacter(
  37365. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37366. {
  37367. front: {
  37368. height: math.unit(11 + 6/12, "feet"),
  37369. weight: math.unit(1366, "lb"),
  37370. name: "Front",
  37371. image: {
  37372. source: "./media/characters/lexor/front.svg",
  37373. extra: 1560/1481,
  37374. bottom: 211/1771
  37375. }
  37376. },
  37377. back: {
  37378. height: math.unit(11 + 6/12, "feet"),
  37379. weight: math.unit(1366, "lb"),
  37380. name: "Back",
  37381. image: {
  37382. source: "./media/characters/lexor/back.svg",
  37383. extra: 1614/1533,
  37384. bottom: 76/1690
  37385. }
  37386. },
  37387. maw: {
  37388. height: math.unit(3, "feet"),
  37389. name: "Maw",
  37390. image: {
  37391. source: "./media/characters/lexor/maw.svg"
  37392. }
  37393. },
  37394. dick: {
  37395. height: math.unit(2.59, "feet"),
  37396. name: "Dick",
  37397. image: {
  37398. source: "./media/characters/lexor/dick.svg"
  37399. }
  37400. },
  37401. },
  37402. [
  37403. {
  37404. name: "Normal",
  37405. height: math.unit(11 + 6/12, "feet"),
  37406. default: true
  37407. },
  37408. ]
  37409. ))
  37410. characterMakers.push(() => makeCharacter(
  37411. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37412. {
  37413. front: {
  37414. height: math.unit(5 + 8/12, "feet"),
  37415. name: "Front",
  37416. image: {
  37417. source: "./media/characters/magnum/front.svg",
  37418. extra: 942/855,
  37419. bottom: 26/968
  37420. }
  37421. },
  37422. },
  37423. [
  37424. {
  37425. name: "Normal",
  37426. height: math.unit(5 + 8/12, "feet"),
  37427. default: true
  37428. },
  37429. ]
  37430. ))
  37431. characterMakers.push(() => makeCharacter(
  37432. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37433. {
  37434. front: {
  37435. height: math.unit(18 + 4/12, "feet"),
  37436. weight: math.unit(1500, "kg"),
  37437. name: "Front",
  37438. image: {
  37439. source: "./media/characters/solas-sharpsman/front.svg",
  37440. extra: 1698/1589,
  37441. bottom: 0/1698
  37442. }
  37443. },
  37444. },
  37445. [
  37446. {
  37447. name: "Normal",
  37448. height: math.unit(18 + 4/12, "feet"),
  37449. default: true
  37450. },
  37451. ]
  37452. ))
  37453. characterMakers.push(() => makeCharacter(
  37454. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37455. {
  37456. front: {
  37457. height: math.unit(5 + 5/12, "feet"),
  37458. weight: math.unit(180, "lb"),
  37459. name: "Front",
  37460. image: {
  37461. source: "./media/characters/october/front.svg",
  37462. extra: 1800/1650,
  37463. bottom: 0/1800
  37464. }
  37465. },
  37466. frontNsfw: {
  37467. height: math.unit(5 + 5/12, "feet"),
  37468. weight: math.unit(180, "lb"),
  37469. name: "Front (NSFW)",
  37470. image: {
  37471. source: "./media/characters/october/front-nsfw.svg",
  37472. extra: 1392/1307,
  37473. bottom: 42/1434
  37474. }
  37475. },
  37476. },
  37477. [
  37478. {
  37479. name: "Normal",
  37480. height: math.unit(5 + 5/12, "feet"),
  37481. default: true
  37482. },
  37483. ]
  37484. ))
  37485. characterMakers.push(() => makeCharacter(
  37486. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37487. {
  37488. front: {
  37489. height: math.unit(8 + 6/12, "feet"),
  37490. name: "Front",
  37491. image: {
  37492. source: "./media/characters/essynkardi/front.svg",
  37493. extra: 1914/1846,
  37494. bottom: 22/1936
  37495. }
  37496. },
  37497. },
  37498. [
  37499. {
  37500. name: "Normal",
  37501. height: math.unit(8 + 6/12, "feet"),
  37502. default: true
  37503. },
  37504. ]
  37505. ))
  37506. characterMakers.push(() => makeCharacter(
  37507. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37508. {
  37509. front: {
  37510. height: math.unit(6 + 6/12, "feet"),
  37511. weight: math.unit(7, "lb"),
  37512. name: "Front",
  37513. image: {
  37514. source: "./media/characters/icky/front.svg",
  37515. extra: 813/782,
  37516. bottom: 66/879
  37517. }
  37518. },
  37519. back: {
  37520. height: math.unit(6 + 6/12, "feet"),
  37521. weight: math.unit(7, "lb"),
  37522. name: "Back",
  37523. image: {
  37524. source: "./media/characters/icky/back.svg",
  37525. extra: 754/735,
  37526. bottom: 56/810
  37527. }
  37528. },
  37529. },
  37530. [
  37531. {
  37532. name: "Normal",
  37533. height: math.unit(6 + 6/12, "feet"),
  37534. default: true
  37535. },
  37536. ]
  37537. ))
  37538. characterMakers.push(() => makeCharacter(
  37539. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37540. {
  37541. front: {
  37542. height: math.unit(15, "feet"),
  37543. name: "Front",
  37544. image: {
  37545. source: "./media/characters/rojas/front.svg",
  37546. extra: 1462/1408,
  37547. bottom: 95/1557
  37548. }
  37549. },
  37550. back: {
  37551. height: math.unit(15, "feet"),
  37552. name: "Back",
  37553. image: {
  37554. source: "./media/characters/rojas/back.svg",
  37555. extra: 1023/954,
  37556. bottom: 28/1051
  37557. }
  37558. },
  37559. },
  37560. [
  37561. {
  37562. name: "Normal",
  37563. height: math.unit(15, "feet"),
  37564. default: true
  37565. },
  37566. ]
  37567. ))
  37568. characterMakers.push(() => makeCharacter(
  37569. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37570. {
  37571. frontHuman: {
  37572. height: math.unit(5 + 7/12, "feet"),
  37573. name: "Front (Human)",
  37574. image: {
  37575. source: "./media/characters/alek-dryagan/front-human.svg",
  37576. extra: 1687/1667,
  37577. bottom: 69/1756
  37578. }
  37579. },
  37580. backHuman: {
  37581. height: math.unit(5 + 7/12, "feet"),
  37582. name: "Back (Human)",
  37583. image: {
  37584. source: "./media/characters/alek-dryagan/back-human.svg",
  37585. extra: 1670/1649,
  37586. bottom: 65/1735
  37587. }
  37588. },
  37589. frontDemi: {
  37590. height: math.unit(65, "feet"),
  37591. name: "Front (Demi)",
  37592. image: {
  37593. source: "./media/characters/alek-dryagan/front-demi.svg",
  37594. extra: 1669/1642,
  37595. bottom: 49/1718
  37596. }
  37597. },
  37598. backDemi: {
  37599. height: math.unit(65, "feet"),
  37600. name: "Back (Demi)",
  37601. image: {
  37602. source: "./media/characters/alek-dryagan/back-demi.svg",
  37603. extra: 1658/1637,
  37604. bottom: 40/1698
  37605. }
  37606. },
  37607. mawHuman: {
  37608. height: math.unit(0.3, "feet"),
  37609. name: "Maw (Human)",
  37610. image: {
  37611. source: "./media/characters/alek-dryagan/maw-human.svg"
  37612. }
  37613. },
  37614. mawDemi: {
  37615. height: math.unit(3.8, "feet"),
  37616. name: "Maw (Demi)",
  37617. image: {
  37618. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37619. }
  37620. },
  37621. },
  37622. [
  37623. {
  37624. name: "Normal",
  37625. height: math.unit(5 + 7/12, "feet"),
  37626. default: true
  37627. },
  37628. ]
  37629. ))
  37630. characterMakers.push(() => makeCharacter(
  37631. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37632. {
  37633. frontHuman: {
  37634. height: math.unit(5 + 2/12, "feet"),
  37635. name: "Front (Human)",
  37636. image: {
  37637. source: "./media/characters/gen/front-human.svg",
  37638. extra: 1627/1538,
  37639. bottom: 71/1698
  37640. }
  37641. },
  37642. backHuman: {
  37643. height: math.unit(5 + 2/12, "feet"),
  37644. name: "Back (Human)",
  37645. image: {
  37646. source: "./media/characters/gen/back-human.svg",
  37647. extra: 1638/1548,
  37648. bottom: 69/1707
  37649. }
  37650. },
  37651. frontDemi: {
  37652. height: math.unit(5 + 2/12, "feet"),
  37653. name: "Front (Demi)",
  37654. image: {
  37655. source: "./media/characters/gen/front-demi.svg",
  37656. extra: 1627/1538,
  37657. bottom: 71/1698
  37658. }
  37659. },
  37660. backDemi: {
  37661. height: math.unit(5 + 2/12, "feet"),
  37662. name: "Back (Demi)",
  37663. image: {
  37664. source: "./media/characters/gen/back-demi.svg",
  37665. extra: 1638/1548,
  37666. bottom: 69/1707
  37667. }
  37668. },
  37669. },
  37670. [
  37671. {
  37672. name: "Normal",
  37673. height: math.unit(5 + 2/12, "feet"),
  37674. default: true
  37675. },
  37676. ]
  37677. ))
  37678. characterMakers.push(() => makeCharacter(
  37679. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37680. {
  37681. frontImp: {
  37682. height: math.unit(1 + 11/12, "feet"),
  37683. name: "Front (Imp)",
  37684. image: {
  37685. source: "./media/characters/max-kobold/front-imp.svg",
  37686. extra: 1238/1134,
  37687. bottom: 81/1319
  37688. }
  37689. },
  37690. backImp: {
  37691. height: math.unit(1 + 11/12, "feet"),
  37692. name: "Back (Imp)",
  37693. image: {
  37694. source: "./media/characters/max-kobold/back-imp.svg",
  37695. extra: 1334/1175,
  37696. bottom: 34/1368
  37697. }
  37698. },
  37699. frontDemi: {
  37700. height: math.unit(5 + 9/12, "feet"),
  37701. name: "Front (Demi)",
  37702. image: {
  37703. source: "./media/characters/max-kobold/front-demi.svg",
  37704. extra: 1715/1685,
  37705. bottom: 54/1769
  37706. }
  37707. },
  37708. backDemi: {
  37709. height: math.unit(5 + 9/12, "feet"),
  37710. name: "Back (Demi)",
  37711. image: {
  37712. source: "./media/characters/max-kobold/back-demi.svg",
  37713. extra: 1752/1729,
  37714. bottom: 41/1793
  37715. }
  37716. },
  37717. handImp: {
  37718. height: math.unit(0.45, "feet"),
  37719. name: "Hand (Imp)",
  37720. image: {
  37721. source: "./media/characters/max-kobold/hand.svg"
  37722. }
  37723. },
  37724. pawImp: {
  37725. height: math.unit(0.46, "feet"),
  37726. name: "Paw (Imp)",
  37727. image: {
  37728. source: "./media/characters/max-kobold/paw.svg"
  37729. }
  37730. },
  37731. handDemi: {
  37732. height: math.unit(0.80, "feet"),
  37733. name: "Hand (Demi)",
  37734. image: {
  37735. source: "./media/characters/max-kobold/hand.svg"
  37736. }
  37737. },
  37738. pawDemi: {
  37739. height: math.unit(1.1, "feet"),
  37740. name: "Paw (Demi)",
  37741. image: {
  37742. source: "./media/characters/max-kobold/paw.svg"
  37743. }
  37744. },
  37745. headImp: {
  37746. height: math.unit(1.33, "feet"),
  37747. name: "Head (Imp)",
  37748. image: {
  37749. source: "./media/characters/max-kobold/head-imp.svg"
  37750. }
  37751. },
  37752. mawImp: {
  37753. height: math.unit(0.75, "feet"),
  37754. name: "Maw (Imp)",
  37755. image: {
  37756. source: "./media/characters/max-kobold/maw-imp.svg"
  37757. }
  37758. },
  37759. mawDemi: {
  37760. height: math.unit(0.42, "feet"),
  37761. name: "Maw (Demi)",
  37762. image: {
  37763. source: "./media/characters/max-kobold/maw-demi.svg"
  37764. }
  37765. },
  37766. },
  37767. [
  37768. {
  37769. name: "Normal",
  37770. height: math.unit(1 + 11/12, "feet"),
  37771. default: true
  37772. },
  37773. ]
  37774. ))
  37775. characterMakers.push(() => makeCharacter(
  37776. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37777. {
  37778. front: {
  37779. height: math.unit(7 + 5/12, "feet"),
  37780. name: "Front",
  37781. image: {
  37782. source: "./media/characters/carbon/front.svg",
  37783. extra: 1754/1689,
  37784. bottom: 65/1819
  37785. }
  37786. },
  37787. back: {
  37788. height: math.unit(7 + 5/12, "feet"),
  37789. name: "Back",
  37790. image: {
  37791. source: "./media/characters/carbon/back.svg",
  37792. extra: 1762/1695,
  37793. bottom: 24/1786
  37794. }
  37795. },
  37796. frontGigantamax: {
  37797. height: math.unit(150, "feet"),
  37798. name: "Front (Gigantamax)",
  37799. image: {
  37800. source: "./media/characters/carbon/front-gigantamax.svg",
  37801. extra: 1826/1669,
  37802. bottom: 59/1885
  37803. }
  37804. },
  37805. backGigantamax: {
  37806. height: math.unit(150, "feet"),
  37807. name: "Back (Gigantamax)",
  37808. image: {
  37809. source: "./media/characters/carbon/back-gigantamax.svg",
  37810. extra: 1796/1653,
  37811. bottom: 53/1849
  37812. }
  37813. },
  37814. maw: {
  37815. height: math.unit(0.48, "feet"),
  37816. name: "Maw",
  37817. image: {
  37818. source: "./media/characters/carbon/maw.svg"
  37819. }
  37820. },
  37821. mawGigantamax: {
  37822. height: math.unit(7.5, "feet"),
  37823. name: "Maw (Gigantamax)",
  37824. image: {
  37825. source: "./media/characters/carbon/maw-gigantamax.svg"
  37826. }
  37827. },
  37828. },
  37829. [
  37830. {
  37831. name: "Normal",
  37832. height: math.unit(7 + 5/12, "feet"),
  37833. default: true
  37834. },
  37835. ]
  37836. ))
  37837. characterMakers.push(() => makeCharacter(
  37838. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37839. {
  37840. front: {
  37841. height: math.unit(6, "feet"),
  37842. name: "Front",
  37843. image: {
  37844. source: "./media/characters/maverick/front.svg",
  37845. extra: 1672/1661,
  37846. bottom: 85/1757
  37847. }
  37848. },
  37849. back: {
  37850. height: math.unit(6, "feet"),
  37851. name: "Back",
  37852. image: {
  37853. source: "./media/characters/maverick/back.svg",
  37854. extra: 1642/1631,
  37855. bottom: 38/1680
  37856. }
  37857. },
  37858. },
  37859. [
  37860. {
  37861. name: "Normal",
  37862. height: math.unit(6, "feet"),
  37863. default: true
  37864. },
  37865. ]
  37866. ))
  37867. characterMakers.push(() => makeCharacter(
  37868. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37869. {
  37870. front: {
  37871. height: math.unit(15, "feet"),
  37872. weight: math.unit(615, "lb"),
  37873. name: "Front",
  37874. image: {
  37875. source: "./media/characters/grockle/front.svg",
  37876. extra: 1535/1427,
  37877. bottom: 56/1591
  37878. }
  37879. },
  37880. },
  37881. [
  37882. {
  37883. name: "Normal",
  37884. height: math.unit(15, "feet"),
  37885. default: true
  37886. },
  37887. {
  37888. name: "Large",
  37889. height: math.unit(150, "feet")
  37890. },
  37891. {
  37892. name: "Macro",
  37893. height: math.unit(1876, "feet")
  37894. },
  37895. {
  37896. name: "Mega Macro",
  37897. height: math.unit(121940, "feet")
  37898. },
  37899. {
  37900. name: "Giga Macro",
  37901. height: math.unit(750, "km")
  37902. },
  37903. {
  37904. name: "Tera Macro",
  37905. height: math.unit(750000, "km")
  37906. },
  37907. {
  37908. name: "Galactic",
  37909. height: math.unit(1.4e5, "km")
  37910. },
  37911. {
  37912. name: "Godlike",
  37913. height: math.unit(9.8e280, "galaxies")
  37914. },
  37915. ]
  37916. ))
  37917. characterMakers.push(() => makeCharacter(
  37918. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37919. {
  37920. front: {
  37921. height: math.unit(11, "meters"),
  37922. weight: math.unit(20, "tonnes"),
  37923. name: "Front",
  37924. image: {
  37925. source: "./media/characters/alistair/front.svg",
  37926. extra: 1265/1009,
  37927. bottom: 93/1358
  37928. }
  37929. },
  37930. },
  37931. [
  37932. {
  37933. name: "Normal",
  37934. height: math.unit(11, "meters"),
  37935. default: true
  37936. },
  37937. ]
  37938. ))
  37939. characterMakers.push(() => makeCharacter(
  37940. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37941. {
  37942. front: {
  37943. height: math.unit(5 + 8/12, "feet"),
  37944. name: "Front",
  37945. image: {
  37946. source: "./media/characters/haruka/front.svg",
  37947. extra: 2012/1952,
  37948. bottom: 0/2012
  37949. }
  37950. },
  37951. },
  37952. [
  37953. {
  37954. name: "Normal",
  37955. height: math.unit(5 + 8/12, "feet"),
  37956. default: true
  37957. },
  37958. ]
  37959. ))
  37960. characterMakers.push(() => makeCharacter(
  37961. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37962. {
  37963. back: {
  37964. height: math.unit(9, "feet"),
  37965. name: "Back",
  37966. image: {
  37967. source: "./media/characters/vivian-sylveon/back.svg",
  37968. extra: 1853/1714,
  37969. bottom: 0/1853
  37970. }
  37971. },
  37972. },
  37973. [
  37974. {
  37975. name: "Normal",
  37976. height: math.unit(9, "feet"),
  37977. default: true
  37978. },
  37979. {
  37980. name: "Macro",
  37981. height: math.unit(500, "feet")
  37982. },
  37983. {
  37984. name: "Megamacro",
  37985. height: math.unit(600, "miles")
  37986. },
  37987. {
  37988. name: "Gigamacro",
  37989. height: math.unit(30000, "miles")
  37990. },
  37991. ]
  37992. ))
  37993. characterMakers.push(() => makeCharacter(
  37994. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37995. {
  37996. anthro: {
  37997. height: math.unit(5 + 10/12, "feet"),
  37998. weight: math.unit(100, "lb"),
  37999. name: "Anthro",
  38000. image: {
  38001. source: "./media/characters/daiki/anthro.svg",
  38002. extra: 1115/1027,
  38003. bottom: 69/1184
  38004. }
  38005. },
  38006. feral: {
  38007. height: math.unit(200, "feet"),
  38008. name: "Feral",
  38009. image: {
  38010. source: "./media/characters/daiki/feral.svg",
  38011. extra: 1256/313,
  38012. bottom: 39/1295
  38013. }
  38014. },
  38015. feralHead: {
  38016. height: math.unit(171, "feet"),
  38017. name: "Feral Head",
  38018. image: {
  38019. source: "./media/characters/daiki/feral-head.svg"
  38020. }
  38021. },
  38022. manaDragon: {
  38023. height: math.unit(170, "meters"),
  38024. name: "Mana-dragon",
  38025. image: {
  38026. source: "./media/characters/daiki/mana-dragon.svg",
  38027. extra: 763/420,
  38028. bottom: 97/860
  38029. }
  38030. },
  38031. },
  38032. [
  38033. {
  38034. name: "Normal",
  38035. height: math.unit(5 + 10/12, "feet"),
  38036. default: true
  38037. },
  38038. ]
  38039. ))
  38040. characterMakers.push(() => makeCharacter(
  38041. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38042. {
  38043. fullyEquippedFront: {
  38044. height: math.unit(3 + 1/12, "feet"),
  38045. weight: math.unit(24, "lb"),
  38046. name: "Fully Equipped (Front)",
  38047. image: {
  38048. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38049. extra: 687/605,
  38050. bottom: 18/705
  38051. }
  38052. },
  38053. fullyEquippedBack: {
  38054. height: math.unit(3 + 1/12, "feet"),
  38055. weight: math.unit(24, "lb"),
  38056. name: "Fully Equipped (Back)",
  38057. image: {
  38058. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38059. extra: 689/590,
  38060. bottom: 18/707
  38061. }
  38062. },
  38063. dailyWear: {
  38064. height: math.unit(3 + 1/12, "feet"),
  38065. weight: math.unit(24, "lb"),
  38066. name: "Daily Wear",
  38067. image: {
  38068. source: "./media/characters/tea-spot/daily-wear.svg",
  38069. extra: 701/620,
  38070. bottom: 21/722
  38071. }
  38072. },
  38073. maidWork: {
  38074. height: math.unit(3 + 1/12, "feet"),
  38075. weight: math.unit(24, "lb"),
  38076. name: "Maid Work",
  38077. image: {
  38078. source: "./media/characters/tea-spot/maid-work.svg",
  38079. extra: 693/609,
  38080. bottom: 15/708
  38081. }
  38082. },
  38083. },
  38084. [
  38085. {
  38086. name: "Normal",
  38087. height: math.unit(3 + 1/12, "feet"),
  38088. default: true
  38089. },
  38090. ]
  38091. ))
  38092. characterMakers.push(() => makeCharacter(
  38093. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38094. {
  38095. front: {
  38096. height: math.unit(175, "cm"),
  38097. weight: math.unit(75, "kg"),
  38098. name: "Front",
  38099. image: {
  38100. source: "./media/characters/chee/front.svg",
  38101. extra: 1796/1740,
  38102. bottom: 40/1836
  38103. }
  38104. },
  38105. },
  38106. [
  38107. {
  38108. name: "Micro-Micro",
  38109. height: math.unit(1, "nm")
  38110. },
  38111. {
  38112. name: "Micro-erst",
  38113. height: math.unit(1, "micrometer")
  38114. },
  38115. {
  38116. name: "Micro-er",
  38117. height: math.unit(1, "cm")
  38118. },
  38119. {
  38120. name: "Normal",
  38121. height: math.unit(175, "cm"),
  38122. default: true
  38123. },
  38124. {
  38125. name: "Macro",
  38126. height: math.unit(100, "m")
  38127. },
  38128. {
  38129. name: "Macro-er",
  38130. height: math.unit(1, "km")
  38131. },
  38132. {
  38133. name: "Macro-erst",
  38134. height: math.unit(10, "km")
  38135. },
  38136. {
  38137. name: "Macro-Macro",
  38138. height: math.unit(100, "km")
  38139. },
  38140. ]
  38141. ))
  38142. characterMakers.push(() => makeCharacter(
  38143. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38144. {
  38145. front: {
  38146. height: math.unit(11 + 9/12, "feet"),
  38147. weight: math.unit(935, "lb"),
  38148. name: "Front",
  38149. image: {
  38150. source: "./media/characters/kingsley/front.svg",
  38151. extra: 1803/1674,
  38152. bottom: 127/1930
  38153. }
  38154. },
  38155. frontNude: {
  38156. height: math.unit(11 + 9/12, "feet"),
  38157. weight: math.unit(935, "lb"),
  38158. name: "Front (Nude)",
  38159. image: {
  38160. source: "./media/characters/kingsley/front-nude.svg",
  38161. extra: 1803/1674,
  38162. bottom: 127/1930
  38163. }
  38164. },
  38165. },
  38166. [
  38167. {
  38168. name: "Normal",
  38169. height: math.unit(11 + 9/12, "feet"),
  38170. default: true
  38171. },
  38172. ]
  38173. ))
  38174. characterMakers.push(() => makeCharacter(
  38175. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38176. {
  38177. side: {
  38178. height: math.unit(9, "feet"),
  38179. name: "Side",
  38180. image: {
  38181. source: "./media/characters/rymel/side.svg",
  38182. extra: 792/469,
  38183. bottom: 121/913
  38184. }
  38185. },
  38186. maw: {
  38187. height: math.unit(2.4, "meters"),
  38188. name: "Maw",
  38189. image: {
  38190. source: "./media/characters/rymel/maw.svg"
  38191. }
  38192. },
  38193. },
  38194. [
  38195. {
  38196. name: "House Drake",
  38197. height: math.unit(2, "feet")
  38198. },
  38199. {
  38200. name: "Reduced",
  38201. height: math.unit(4.5, "feet")
  38202. },
  38203. {
  38204. name: "Normal",
  38205. height: math.unit(9, "feet"),
  38206. default: true
  38207. },
  38208. ]
  38209. ))
  38210. characterMakers.push(() => makeCharacter(
  38211. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38212. {
  38213. front: {
  38214. height: math.unit(1.74, "meters"),
  38215. weight: math.unit(55, "kg"),
  38216. name: "Front",
  38217. image: {
  38218. source: "./media/characters/rubus/front.svg",
  38219. extra: 1894/1742,
  38220. bottom: 44/1938
  38221. }
  38222. },
  38223. },
  38224. [
  38225. {
  38226. name: "Normal",
  38227. height: math.unit(1.74, "meters"),
  38228. default: true
  38229. },
  38230. ]
  38231. ))
  38232. characterMakers.push(() => makeCharacter(
  38233. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38234. {
  38235. front: {
  38236. height: math.unit(5 + 2/12, "feet"),
  38237. weight: math.unit(112, "lb"),
  38238. name: "Front",
  38239. image: {
  38240. source: "./media/characters/cassie-kingston/front.svg",
  38241. extra: 1438/1390,
  38242. bottom: 47/1485
  38243. }
  38244. },
  38245. },
  38246. [
  38247. {
  38248. name: "Normal",
  38249. height: math.unit(5 + 2/12, "feet"),
  38250. default: true
  38251. },
  38252. {
  38253. name: "Macro",
  38254. height: math.unit(128, "feet")
  38255. },
  38256. {
  38257. name: "Megamacro",
  38258. height: math.unit(2.56, "miles")
  38259. },
  38260. ]
  38261. ))
  38262. characterMakers.push(() => makeCharacter(
  38263. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38264. {
  38265. front: {
  38266. height: math.unit(7, "feet"),
  38267. name: "Front",
  38268. image: {
  38269. source: "./media/characters/fox/front.svg",
  38270. extra: 1798/1703,
  38271. bottom: 55/1853
  38272. }
  38273. },
  38274. back: {
  38275. height: math.unit(7, "feet"),
  38276. name: "Back",
  38277. image: {
  38278. source: "./media/characters/fox/back.svg",
  38279. extra: 1748/1649,
  38280. bottom: 32/1780
  38281. }
  38282. },
  38283. head: {
  38284. height: math.unit(1.95, "feet"),
  38285. name: "Head",
  38286. image: {
  38287. source: "./media/characters/fox/head.svg"
  38288. }
  38289. },
  38290. dick: {
  38291. height: math.unit(1.33, "feet"),
  38292. name: "Dick",
  38293. image: {
  38294. source: "./media/characters/fox/dick.svg"
  38295. }
  38296. },
  38297. foot: {
  38298. height: math.unit(1, "feet"),
  38299. name: "Foot",
  38300. image: {
  38301. source: "./media/characters/fox/foot.svg"
  38302. }
  38303. },
  38304. paw: {
  38305. height: math.unit(0.92, "feet"),
  38306. name: "Paw",
  38307. image: {
  38308. source: "./media/characters/fox/paw.svg"
  38309. }
  38310. },
  38311. },
  38312. [
  38313. {
  38314. name: "Small",
  38315. height: math.unit(3, "inches")
  38316. },
  38317. {
  38318. name: "\"Realistic\"",
  38319. height: math.unit(7, "feet")
  38320. },
  38321. {
  38322. name: "Normal",
  38323. height: math.unit(150, "feet"),
  38324. default: true
  38325. },
  38326. {
  38327. name: "BIG",
  38328. height: math.unit(1200, "feet")
  38329. },
  38330. {
  38331. name: "👀",
  38332. height: math.unit(5, "miles")
  38333. },
  38334. {
  38335. name: "👀👀👀",
  38336. height: math.unit(64, "miles")
  38337. },
  38338. ]
  38339. ))
  38340. characterMakers.push(() => makeCharacter(
  38341. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38342. {
  38343. front: {
  38344. height: math.unit(625, "feet"),
  38345. name: "Front",
  38346. image: {
  38347. source: "./media/characters/asonja-rossa/front.svg",
  38348. extra: 1833/1686,
  38349. bottom: 24/1857
  38350. }
  38351. },
  38352. back: {
  38353. height: math.unit(625, "feet"),
  38354. name: "Back",
  38355. image: {
  38356. source: "./media/characters/asonja-rossa/back.svg",
  38357. extra: 1852/1753,
  38358. bottom: 26/1878
  38359. }
  38360. },
  38361. },
  38362. [
  38363. {
  38364. name: "Macro",
  38365. height: math.unit(625, "feet"),
  38366. default: true
  38367. },
  38368. ]
  38369. ))
  38370. characterMakers.push(() => makeCharacter(
  38371. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38372. {
  38373. side: {
  38374. height: math.unit(8, "feet"),
  38375. name: "Side",
  38376. image: {
  38377. source: "./media/characters/rezukii/side.svg",
  38378. extra: 979/542,
  38379. bottom: 87/1066
  38380. }
  38381. },
  38382. sitting: {
  38383. height: math.unit(14.6, "feet"),
  38384. name: "Sitting",
  38385. image: {
  38386. source: "./media/characters/rezukii/sitting.svg",
  38387. extra: 1023/813,
  38388. bottom: 45/1068
  38389. }
  38390. },
  38391. },
  38392. [
  38393. {
  38394. name: "Tiny",
  38395. height: math.unit(2, "feet")
  38396. },
  38397. {
  38398. name: "Smol",
  38399. height: math.unit(4, "feet")
  38400. },
  38401. {
  38402. name: "Normal",
  38403. height: math.unit(8, "feet"),
  38404. default: true
  38405. },
  38406. {
  38407. name: "Big",
  38408. height: math.unit(12, "feet")
  38409. },
  38410. {
  38411. name: "Macro",
  38412. height: math.unit(30, "feet")
  38413. },
  38414. ]
  38415. ))
  38416. characterMakers.push(() => makeCharacter(
  38417. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38418. {
  38419. front: {
  38420. height: math.unit(14, "feet"),
  38421. weight: math.unit(9.5, "tonnes"),
  38422. name: "Front",
  38423. image: {
  38424. source: "./media/characters/dawnheart/front.svg",
  38425. extra: 2792/2675,
  38426. bottom: 64/2856
  38427. }
  38428. },
  38429. },
  38430. [
  38431. {
  38432. name: "Normal",
  38433. height: math.unit(14, "feet"),
  38434. default: true
  38435. },
  38436. ]
  38437. ))
  38438. characterMakers.push(() => makeCharacter(
  38439. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38440. {
  38441. front: {
  38442. height: math.unit(1.7, "m"),
  38443. name: "Front",
  38444. image: {
  38445. source: "./media/characters/gladi/front.svg",
  38446. extra: 1460/1362,
  38447. bottom: 19/1479
  38448. }
  38449. },
  38450. back: {
  38451. height: math.unit(1.7, "m"),
  38452. name: "Back",
  38453. image: {
  38454. source: "./media/characters/gladi/back.svg",
  38455. extra: 1459/1357,
  38456. bottom: 12/1471
  38457. }
  38458. },
  38459. feral: {
  38460. height: math.unit(2.05, "m"),
  38461. name: "Feral",
  38462. image: {
  38463. source: "./media/characters/gladi/feral.svg",
  38464. extra: 821/557,
  38465. bottom: 91/912
  38466. }
  38467. },
  38468. },
  38469. [
  38470. {
  38471. name: "Shortest",
  38472. height: math.unit(70, "cm")
  38473. },
  38474. {
  38475. name: "Normal",
  38476. height: math.unit(1.7, "m")
  38477. },
  38478. {
  38479. name: "Macro",
  38480. height: math.unit(10, "m"),
  38481. default: true
  38482. },
  38483. {
  38484. name: "Tallest",
  38485. height: math.unit(200, "m")
  38486. },
  38487. ]
  38488. ))
  38489. characterMakers.push(() => makeCharacter(
  38490. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38491. {
  38492. front: {
  38493. height: math.unit(5 + 7/12, "feet"),
  38494. weight: math.unit(2, "tons"),
  38495. name: "Front",
  38496. image: {
  38497. source: "./media/characters/erdno/front.svg",
  38498. extra: 1234/1129,
  38499. bottom: 35/1269
  38500. }
  38501. },
  38502. angled: {
  38503. height: math.unit(5 + 7/12, "feet"),
  38504. weight: math.unit(2, "tons"),
  38505. name: "Angled",
  38506. image: {
  38507. source: "./media/characters/erdno/angled.svg",
  38508. extra: 1185/1139,
  38509. bottom: 36/1221
  38510. }
  38511. },
  38512. side: {
  38513. height: math.unit(5 + 7/12, "feet"),
  38514. weight: math.unit(2, "tons"),
  38515. name: "Side",
  38516. image: {
  38517. source: "./media/characters/erdno/side.svg",
  38518. extra: 1191/1144,
  38519. bottom: 40/1231
  38520. }
  38521. },
  38522. back: {
  38523. height: math.unit(5 + 7/12, "feet"),
  38524. weight: math.unit(2, "tons"),
  38525. name: "Back",
  38526. image: {
  38527. source: "./media/characters/erdno/back.svg",
  38528. extra: 1202/1146,
  38529. bottom: 17/1219
  38530. }
  38531. },
  38532. frontNsfw: {
  38533. height: math.unit(5 + 7/12, "feet"),
  38534. weight: math.unit(2, "tons"),
  38535. name: "Front (NSFW)",
  38536. image: {
  38537. source: "./media/characters/erdno/front-nsfw.svg",
  38538. extra: 1234/1129,
  38539. bottom: 35/1269
  38540. }
  38541. },
  38542. angledNsfw: {
  38543. height: math.unit(5 + 7/12, "feet"),
  38544. weight: math.unit(2, "tons"),
  38545. name: "Angled (NSFW)",
  38546. image: {
  38547. source: "./media/characters/erdno/angled-nsfw.svg",
  38548. extra: 1185/1139,
  38549. bottom: 36/1221
  38550. }
  38551. },
  38552. sideNsfw: {
  38553. height: math.unit(5 + 7/12, "feet"),
  38554. weight: math.unit(2, "tons"),
  38555. name: "Side (NSFW)",
  38556. image: {
  38557. source: "./media/characters/erdno/side-nsfw.svg",
  38558. extra: 1191/1144,
  38559. bottom: 40/1231
  38560. }
  38561. },
  38562. backNsfw: {
  38563. height: math.unit(5 + 7/12, "feet"),
  38564. weight: math.unit(2, "tons"),
  38565. name: "Back (NSFW)",
  38566. image: {
  38567. source: "./media/characters/erdno/back-nsfw.svg",
  38568. extra: 1202/1146,
  38569. bottom: 17/1219
  38570. }
  38571. },
  38572. frontHyper: {
  38573. height: math.unit(5 + 7/12, "feet"),
  38574. weight: math.unit(2, "tons"),
  38575. name: "Front (Hyper)",
  38576. image: {
  38577. source: "./media/characters/erdno/front-hyper.svg",
  38578. extra: 1298/1136,
  38579. bottom: 35/1333
  38580. }
  38581. },
  38582. },
  38583. [
  38584. {
  38585. name: "Normal",
  38586. height: math.unit(5 + 7/12, "feet"),
  38587. default: true
  38588. },
  38589. {
  38590. name: "Big",
  38591. height: math.unit(5.7, "meters")
  38592. },
  38593. {
  38594. name: "Macro",
  38595. height: math.unit(5.7, "kilometers")
  38596. },
  38597. {
  38598. name: "Megamacro",
  38599. height: math.unit(5.7, "earths")
  38600. },
  38601. ]
  38602. ))
  38603. characterMakers.push(() => makeCharacter(
  38604. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38605. {
  38606. front: {
  38607. height: math.unit(5 + 10/12, "feet"),
  38608. weight: math.unit(150, "lb"),
  38609. name: "Front",
  38610. image: {
  38611. source: "./media/characters/jamie/front.svg",
  38612. extra: 1908/1768,
  38613. bottom: 19/1927
  38614. }
  38615. },
  38616. },
  38617. [
  38618. {
  38619. name: "Minimum",
  38620. height: math.unit(2, "cm")
  38621. },
  38622. {
  38623. name: "Micro",
  38624. height: math.unit(3, "inches")
  38625. },
  38626. {
  38627. name: "Normal",
  38628. height: math.unit(5 + 10/12, "feet"),
  38629. default: true
  38630. },
  38631. {
  38632. name: "Macro",
  38633. height: math.unit(150, "feet")
  38634. },
  38635. {
  38636. name: "Megamacro",
  38637. height: math.unit(10000, "m")
  38638. },
  38639. ]
  38640. ))
  38641. characterMakers.push(() => makeCharacter(
  38642. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38643. {
  38644. front: {
  38645. height: math.unit(2, "meters"),
  38646. weight: math.unit(100, "kg"),
  38647. name: "Front",
  38648. image: {
  38649. source: "./media/characters/shiron/front.svg",
  38650. extra: 2103/1985,
  38651. bottom: 98/2201
  38652. }
  38653. },
  38654. back: {
  38655. height: math.unit(2, "meters"),
  38656. weight: math.unit(100, "kg"),
  38657. name: "Back",
  38658. image: {
  38659. source: "./media/characters/shiron/back.svg",
  38660. extra: 2110/2015,
  38661. bottom: 89/2199
  38662. }
  38663. },
  38664. hand: {
  38665. height: math.unit(0.96, "feet"),
  38666. name: "Hand",
  38667. image: {
  38668. source: "./media/characters/shiron/hand.svg"
  38669. }
  38670. },
  38671. foot: {
  38672. height: math.unit(1.464, "feet"),
  38673. name: "Foot",
  38674. image: {
  38675. source: "./media/characters/shiron/foot.svg"
  38676. }
  38677. },
  38678. },
  38679. [
  38680. {
  38681. name: "Normal",
  38682. height: math.unit(2, "meters")
  38683. },
  38684. {
  38685. name: "Macro",
  38686. height: math.unit(500, "meters"),
  38687. default: true
  38688. },
  38689. {
  38690. name: "Megamacro",
  38691. height: math.unit(20, "km")
  38692. },
  38693. ]
  38694. ))
  38695. characterMakers.push(() => makeCharacter(
  38696. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38697. {
  38698. front: {
  38699. height: math.unit(6, "feet"),
  38700. name: "Front",
  38701. image: {
  38702. source: "./media/characters/sam/front.svg",
  38703. extra: 849/826,
  38704. bottom: 19/868
  38705. }
  38706. },
  38707. },
  38708. [
  38709. {
  38710. name: "Normal",
  38711. height: math.unit(6, "feet"),
  38712. default: true
  38713. },
  38714. ]
  38715. ))
  38716. characterMakers.push(() => makeCharacter(
  38717. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38718. {
  38719. front: {
  38720. height: math.unit(8 + 4/12, "feet"),
  38721. weight: math.unit(122, "kg"),
  38722. name: "Front",
  38723. image: {
  38724. source: "./media/characters/namori-kurogawa/front.svg",
  38725. extra: 1894/1576,
  38726. bottom: 34/1928
  38727. }
  38728. },
  38729. },
  38730. [
  38731. {
  38732. name: "Normal",
  38733. height: math.unit(8 + 4/12, "feet"),
  38734. default: true
  38735. },
  38736. ]
  38737. ))
  38738. characterMakers.push(() => makeCharacter(
  38739. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38740. {
  38741. front: {
  38742. height: math.unit(9, "feet"),
  38743. weight: math.unit(621, "lb"),
  38744. name: "Front",
  38745. image: {
  38746. source: "./media/characters/unmru/front.svg",
  38747. extra: 1853/1747,
  38748. bottom: 73/1926
  38749. }
  38750. },
  38751. side: {
  38752. height: math.unit(9, "feet"),
  38753. weight: math.unit(621, "lb"),
  38754. name: "Side",
  38755. image: {
  38756. source: "./media/characters/unmru/side.svg",
  38757. extra: 1781/1671,
  38758. bottom: 127/1908
  38759. }
  38760. },
  38761. back: {
  38762. height: math.unit(9, "feet"),
  38763. weight: math.unit(621, "lb"),
  38764. name: "Back",
  38765. image: {
  38766. source: "./media/characters/unmru/back.svg",
  38767. extra: 1894/1765,
  38768. bottom: 75/1969
  38769. }
  38770. },
  38771. dick: {
  38772. height: math.unit(3, "feet"),
  38773. weight: math.unit(35, "lb"),
  38774. name: "Dick",
  38775. image: {
  38776. source: "./media/characters/unmru/dick.svg"
  38777. }
  38778. },
  38779. },
  38780. [
  38781. {
  38782. name: "Normal",
  38783. height: math.unit(9, "feet")
  38784. },
  38785. {
  38786. name: "Natural",
  38787. height: math.unit(27, "feet"),
  38788. default: true
  38789. },
  38790. {
  38791. name: "Giant",
  38792. height: math.unit(90, "feet")
  38793. },
  38794. {
  38795. name: "Kaiju",
  38796. height: math.unit(270, "feet")
  38797. },
  38798. {
  38799. name: "Macro",
  38800. height: math.unit(900, "feet")
  38801. },
  38802. {
  38803. name: "Macro+",
  38804. height: math.unit(2700, "feet")
  38805. },
  38806. {
  38807. name: "Megamacro",
  38808. height: math.unit(9000, "feet")
  38809. },
  38810. {
  38811. name: "City-Crushing",
  38812. height: math.unit(27000, "feet")
  38813. },
  38814. {
  38815. name: "Mountain-Mashing",
  38816. height: math.unit(90000, "feet")
  38817. },
  38818. {
  38819. name: "Earth-Eclipsing",
  38820. height: math.unit(2.7e8, "feet")
  38821. },
  38822. {
  38823. name: "Sol-Swallowing",
  38824. height: math.unit(9e10, "feet")
  38825. },
  38826. {
  38827. name: "Majoris-Munching",
  38828. height: math.unit(2.7e13, "feet")
  38829. },
  38830. ]
  38831. ))
  38832. characterMakers.push(() => makeCharacter(
  38833. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38834. {
  38835. front: {
  38836. height: math.unit(1, "inch"),
  38837. name: "Front",
  38838. image: {
  38839. source: "./media/characters/squeaks-mouse/front.svg",
  38840. extra: 352/308,
  38841. bottom: 25/377
  38842. }
  38843. },
  38844. },
  38845. [
  38846. {
  38847. name: "Micro",
  38848. height: math.unit(1, "inch"),
  38849. default: true
  38850. },
  38851. ]
  38852. ))
  38853. characterMakers.push(() => makeCharacter(
  38854. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38855. {
  38856. side: {
  38857. height: math.unit(35, "feet"),
  38858. name: "Side",
  38859. image: {
  38860. source: "./media/characters/sayko/side.svg",
  38861. extra: 1697/1021,
  38862. bottom: 82/1779
  38863. }
  38864. },
  38865. head: {
  38866. height: math.unit(16, "feet"),
  38867. name: "Head",
  38868. image: {
  38869. source: "./media/characters/sayko/head.svg"
  38870. }
  38871. },
  38872. forepaw: {
  38873. height: math.unit(7.85, "feet"),
  38874. name: "Forepaw",
  38875. image: {
  38876. source: "./media/characters/sayko/forepaw.svg"
  38877. }
  38878. },
  38879. hindpaw: {
  38880. height: math.unit(8.8, "feet"),
  38881. name: "Hindpaw",
  38882. image: {
  38883. source: "./media/characters/sayko/hindpaw.svg"
  38884. }
  38885. },
  38886. },
  38887. [
  38888. {
  38889. name: "Normal",
  38890. height: math.unit(35, "feet"),
  38891. default: true
  38892. },
  38893. {
  38894. name: "Colossus",
  38895. height: math.unit(100, "meters")
  38896. },
  38897. {
  38898. name: "\"Small\" Deity",
  38899. height: math.unit(1, "km")
  38900. },
  38901. {
  38902. name: "\"Large\" Deity",
  38903. height: math.unit(15, "km")
  38904. },
  38905. ]
  38906. ))
  38907. characterMakers.push(() => makeCharacter(
  38908. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38909. {
  38910. front: {
  38911. height: math.unit(6, "feet"),
  38912. weight: math.unit(250, "lb"),
  38913. name: "Front",
  38914. image: {
  38915. source: "./media/characters/mukiro/front.svg",
  38916. extra: 1368/1310,
  38917. bottom: 34/1402
  38918. }
  38919. },
  38920. },
  38921. [
  38922. {
  38923. name: "Normal",
  38924. height: math.unit(6, "feet"),
  38925. default: true
  38926. },
  38927. ]
  38928. ))
  38929. characterMakers.push(() => makeCharacter(
  38930. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38931. {
  38932. front: {
  38933. height: math.unit(12 + 4/12, "feet"),
  38934. name: "Front",
  38935. image: {
  38936. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38937. extra: 1346/1311,
  38938. bottom: 65/1411
  38939. }
  38940. },
  38941. },
  38942. [
  38943. {
  38944. name: "Base",
  38945. height: math.unit(12 + 4/12, "feet"),
  38946. default: true
  38947. },
  38948. {
  38949. name: "Macro",
  38950. height: math.unit(150, "feet")
  38951. },
  38952. {
  38953. name: "Mega",
  38954. height: math.unit(2, "miles")
  38955. },
  38956. {
  38957. name: "Demi God",
  38958. height: math.unit(4, "AU")
  38959. },
  38960. {
  38961. name: "God Size",
  38962. height: math.unit(1, "universe")
  38963. },
  38964. ]
  38965. ))
  38966. characterMakers.push(() => makeCharacter(
  38967. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38968. {
  38969. front: {
  38970. height: math.unit(3 + 3/12, "feet"),
  38971. weight: math.unit(88, "lb"),
  38972. name: "Front",
  38973. image: {
  38974. source: "./media/characters/trey/front.svg",
  38975. extra: 1815/1509,
  38976. bottom: 60/1875
  38977. }
  38978. },
  38979. },
  38980. [
  38981. {
  38982. name: "Normal",
  38983. height: math.unit(3 + 3/12, "feet"),
  38984. default: true
  38985. },
  38986. ]
  38987. ))
  38988. characterMakers.push(() => makeCharacter(
  38989. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38990. {
  38991. front: {
  38992. height: math.unit(4, "meters"),
  38993. name: "Front",
  38994. image: {
  38995. source: "./media/characters/adelonda/front.svg",
  38996. extra: 1077/982,
  38997. bottom: 39/1116
  38998. }
  38999. },
  39000. back: {
  39001. height: math.unit(4, "meters"),
  39002. name: "Back",
  39003. image: {
  39004. source: "./media/characters/adelonda/back.svg",
  39005. extra: 1105/1003,
  39006. bottom: 25/1130
  39007. }
  39008. },
  39009. feral: {
  39010. height: math.unit(40/1.5, "meters"),
  39011. name: "Feral",
  39012. image: {
  39013. source: "./media/characters/adelonda/feral.svg",
  39014. extra: 597/271,
  39015. bottom: 387/984
  39016. }
  39017. },
  39018. },
  39019. [
  39020. {
  39021. name: "Normal",
  39022. height: math.unit(4, "meters"),
  39023. default: true
  39024. },
  39025. ]
  39026. ))
  39027. characterMakers.push(() => makeCharacter(
  39028. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39029. {
  39030. front: {
  39031. height: math.unit(8 + 4/12, "feet"),
  39032. weight: math.unit(670, "lb"),
  39033. name: "Front",
  39034. image: {
  39035. source: "./media/characters/acadiel/front.svg",
  39036. extra: 1901/1595,
  39037. bottom: 142/2043
  39038. }
  39039. },
  39040. },
  39041. [
  39042. {
  39043. name: "Normal",
  39044. height: math.unit(8 + 4/12, "feet"),
  39045. default: true
  39046. },
  39047. {
  39048. name: "Macro",
  39049. height: math.unit(200, "feet")
  39050. },
  39051. ]
  39052. ))
  39053. characterMakers.push(() => makeCharacter(
  39054. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39055. {
  39056. front: {
  39057. height: math.unit(6 + 2/12, "feet"),
  39058. weight: math.unit(185, "lb"),
  39059. name: "Front",
  39060. image: {
  39061. source: "./media/characters/kayne-ein/front.svg",
  39062. extra: 1780/1560,
  39063. bottom: 81/1861
  39064. }
  39065. },
  39066. },
  39067. [
  39068. {
  39069. name: "Normal",
  39070. height: math.unit(6 + 2/12, "feet"),
  39071. default: true
  39072. },
  39073. {
  39074. name: "Transformation Stage",
  39075. height: math.unit(15, "feet")
  39076. },
  39077. {
  39078. name: "Macro",
  39079. height: math.unit(150, "feet")
  39080. },
  39081. {
  39082. name: "Earth's Shadow",
  39083. height: math.unit(6200, "miles")
  39084. },
  39085. {
  39086. name: "Universal Demon",
  39087. height: math.unit(28e9, "parsecs")
  39088. },
  39089. {
  39090. name: "Multiverse God",
  39091. height: math.unit(3, "multiverses")
  39092. },
  39093. ]
  39094. ))
  39095. characterMakers.push(() => makeCharacter(
  39096. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39097. {
  39098. front: {
  39099. height: math.unit(5 + 5/12, "feet"),
  39100. name: "Front",
  39101. image: {
  39102. source: "./media/characters/fawn/front.svg",
  39103. extra: 1873/1731,
  39104. bottom: 95/1968
  39105. }
  39106. },
  39107. back: {
  39108. height: math.unit(5 + 5/12, "feet"),
  39109. name: "Back",
  39110. image: {
  39111. source: "./media/characters/fawn/back.svg",
  39112. extra: 1813/1700,
  39113. bottom: 14/1827
  39114. }
  39115. },
  39116. hoof: {
  39117. height: math.unit(1.45, "feet"),
  39118. name: "Hoof",
  39119. image: {
  39120. source: "./media/characters/fawn/hoof.svg"
  39121. }
  39122. },
  39123. },
  39124. [
  39125. {
  39126. name: "Normal",
  39127. height: math.unit(5 + 5/12, "feet"),
  39128. default: true
  39129. },
  39130. ]
  39131. ))
  39132. characterMakers.push(() => makeCharacter(
  39133. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39134. {
  39135. front: {
  39136. height: math.unit(2 + 5/12, "feet"),
  39137. name: "Front",
  39138. image: {
  39139. source: "./media/characters/orion/front.svg",
  39140. extra: 1366/1304,
  39141. bottom: 43/1409
  39142. }
  39143. },
  39144. paw: {
  39145. height: math.unit(0.52, "feet"),
  39146. name: "Paw",
  39147. image: {
  39148. source: "./media/characters/orion/paw.svg"
  39149. }
  39150. },
  39151. },
  39152. [
  39153. {
  39154. name: "Normal",
  39155. height: math.unit(2 + 5/12, "feet"),
  39156. default: true
  39157. },
  39158. ]
  39159. ))
  39160. characterMakers.push(() => makeCharacter(
  39161. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39162. {
  39163. front: {
  39164. height: math.unit(5 + 10/12, "feet"),
  39165. name: "Front",
  39166. image: {
  39167. source: "./media/characters/vera/front.svg",
  39168. extra: 1680/1575,
  39169. bottom: 49/1729
  39170. }
  39171. },
  39172. back: {
  39173. height: math.unit(5 + 10/12, "feet"),
  39174. name: "Back",
  39175. image: {
  39176. source: "./media/characters/vera/back.svg",
  39177. extra: 1700/1588,
  39178. bottom: 18/1718
  39179. }
  39180. },
  39181. arcanine: {
  39182. height: math.unit(6 + 8/12, "feet"),
  39183. name: "Arcanine",
  39184. image: {
  39185. source: "./media/characters/vera/arcanine.svg",
  39186. extra: 1590/1511,
  39187. bottom: 71/1661
  39188. }
  39189. },
  39190. maw: {
  39191. height: math.unit(0.82, "feet"),
  39192. name: "Maw",
  39193. image: {
  39194. source: "./media/characters/vera/maw.svg"
  39195. }
  39196. },
  39197. mawArcanine: {
  39198. height: math.unit(0.97, "feet"),
  39199. name: "Maw (Arcanine)",
  39200. image: {
  39201. source: "./media/characters/vera/maw-arcanine.svg"
  39202. }
  39203. },
  39204. paw: {
  39205. height: math.unit(0.75, "feet"),
  39206. name: "Paw",
  39207. image: {
  39208. source: "./media/characters/vera/paw.svg"
  39209. }
  39210. },
  39211. pawprint: {
  39212. height: math.unit(0.52, "feet"),
  39213. name: "Pawprint",
  39214. image: {
  39215. source: "./media/characters/vera/pawprint.svg"
  39216. }
  39217. },
  39218. },
  39219. [
  39220. {
  39221. name: "Normal",
  39222. height: math.unit(5 + 10/12, "feet"),
  39223. default: true
  39224. },
  39225. {
  39226. name: "Macro",
  39227. height: math.unit(75, "feet")
  39228. },
  39229. ]
  39230. ))
  39231. characterMakers.push(() => makeCharacter(
  39232. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39233. {
  39234. front: {
  39235. height: math.unit(4, "feet"),
  39236. weight: math.unit(40, "lb"),
  39237. name: "Front",
  39238. image: {
  39239. source: "./media/characters/orvan-rabbit/front.svg",
  39240. extra: 1896/1642,
  39241. bottom: 29/1925
  39242. }
  39243. },
  39244. },
  39245. [
  39246. {
  39247. name: "Normal",
  39248. height: math.unit(4, "feet"),
  39249. default: true
  39250. },
  39251. ]
  39252. ))
  39253. characterMakers.push(() => makeCharacter(
  39254. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39255. {
  39256. front: {
  39257. height: math.unit(6, "feet"),
  39258. weight: math.unit(168, "lb"),
  39259. name: "Front",
  39260. image: {
  39261. source: "./media/characters/lisa/front.svg",
  39262. extra: 2065/1867,
  39263. bottom: 46/2111
  39264. }
  39265. },
  39266. back: {
  39267. height: math.unit(6, "feet"),
  39268. weight: math.unit(168, "lb"),
  39269. name: "Back",
  39270. image: {
  39271. source: "./media/characters/lisa/back.svg",
  39272. extra: 1982/1838,
  39273. bottom: 29/2011
  39274. }
  39275. },
  39276. maw: {
  39277. height: math.unit(0.81, "feet"),
  39278. name: "Maw",
  39279. image: {
  39280. source: "./media/characters/lisa/maw.svg"
  39281. }
  39282. },
  39283. paw: {
  39284. height: math.unit(0.9, "feet"),
  39285. name: "Paw",
  39286. image: {
  39287. source: "./media/characters/lisa/paw.svg"
  39288. }
  39289. },
  39290. caribousune: {
  39291. height: math.unit(7 + 2/12, "feet"),
  39292. weight: math.unit(268, "lb"),
  39293. name: "Caribousune",
  39294. image: {
  39295. source: "./media/characters/lisa/caribousune.svg",
  39296. extra: 1843/1633,
  39297. bottom: 29/1872
  39298. }
  39299. },
  39300. frontCaribousune: {
  39301. height: math.unit(7 + 2/12, "feet"),
  39302. weight: math.unit(268, "lb"),
  39303. name: "Front (Caribousune)",
  39304. image: {
  39305. source: "./media/characters/lisa/front-caribousune.svg",
  39306. extra: 1818/1638,
  39307. bottom: 52/1870
  39308. }
  39309. },
  39310. sideCaribousune: {
  39311. height: math.unit(7 + 2/12, "feet"),
  39312. weight: math.unit(268, "lb"),
  39313. name: "Side (Caribousune)",
  39314. image: {
  39315. source: "./media/characters/lisa/side-caribousune.svg",
  39316. extra: 1851/1635,
  39317. bottom: 16/1867
  39318. }
  39319. },
  39320. backCaribousune: {
  39321. height: math.unit(7 + 2/12, "feet"),
  39322. weight: math.unit(268, "lb"),
  39323. name: "Back (Caribousune)",
  39324. image: {
  39325. source: "./media/characters/lisa/back-caribousune.svg",
  39326. extra: 1801/1604,
  39327. bottom: 44/1845
  39328. }
  39329. },
  39330. caribou: {
  39331. height: math.unit(7 + 2/12, "feet"),
  39332. weight: math.unit(268, "lb"),
  39333. name: "Caribou",
  39334. image: {
  39335. source: "./media/characters/lisa/caribou.svg",
  39336. extra: 1843/1633,
  39337. bottom: 29/1872
  39338. }
  39339. },
  39340. frontCaribou: {
  39341. height: math.unit(7 + 2/12, "feet"),
  39342. weight: math.unit(268, "lb"),
  39343. name: "Front (Caribou)",
  39344. image: {
  39345. source: "./media/characters/lisa/front-caribou.svg",
  39346. extra: 1818/1638,
  39347. bottom: 52/1870
  39348. }
  39349. },
  39350. sideCaribou: {
  39351. height: math.unit(7 + 2/12, "feet"),
  39352. weight: math.unit(268, "lb"),
  39353. name: "Side (Caribou)",
  39354. image: {
  39355. source: "./media/characters/lisa/side-caribou.svg",
  39356. extra: 1851/1635,
  39357. bottom: 16/1867
  39358. }
  39359. },
  39360. backCaribou: {
  39361. height: math.unit(7 + 2/12, "feet"),
  39362. weight: math.unit(268, "lb"),
  39363. name: "Back (Caribou)",
  39364. image: {
  39365. source: "./media/characters/lisa/back-caribou.svg",
  39366. extra: 1801/1604,
  39367. bottom: 44/1845
  39368. }
  39369. },
  39370. mawCaribou: {
  39371. height: math.unit(1.45, "feet"),
  39372. name: "Maw (Caribou)",
  39373. image: {
  39374. source: "./media/characters/lisa/maw-caribou.svg"
  39375. }
  39376. },
  39377. mawCaribousune: {
  39378. height: math.unit(1.45, "feet"),
  39379. name: "Maw (Caribousune)",
  39380. image: {
  39381. source: "./media/characters/lisa/maw-caribousune.svg"
  39382. }
  39383. },
  39384. pawCaribousune: {
  39385. height: math.unit(1.61, "feet"),
  39386. name: "Paw (Caribou)",
  39387. image: {
  39388. source: "./media/characters/lisa/paw-caribousune.svg"
  39389. }
  39390. },
  39391. },
  39392. [
  39393. {
  39394. name: "Normal",
  39395. height: math.unit(6, "feet")
  39396. },
  39397. {
  39398. name: "God Size",
  39399. height: math.unit(72, "feet"),
  39400. default: true
  39401. },
  39402. {
  39403. name: "Towering",
  39404. height: math.unit(288, "feet")
  39405. },
  39406. {
  39407. name: "City Size",
  39408. height: math.unit(48384, "feet")
  39409. },
  39410. {
  39411. name: "Continental",
  39412. height: math.unit(4200, "miles")
  39413. },
  39414. {
  39415. name: "Planet Eater",
  39416. height: math.unit(42, "earths")
  39417. },
  39418. {
  39419. name: "Star Swallower",
  39420. height: math.unit(42, "solarradii")
  39421. },
  39422. {
  39423. name: "System Swallower",
  39424. height: math.unit(84000, "AU")
  39425. },
  39426. {
  39427. name: "Galaxy Gobbler",
  39428. height: math.unit(42, "galaxies")
  39429. },
  39430. {
  39431. name: "Universe Devourer",
  39432. height: math.unit(42, "universes")
  39433. },
  39434. {
  39435. name: "Multiverse Muncher",
  39436. height: math.unit(42, "multiverses")
  39437. },
  39438. ]
  39439. ))
  39440. characterMakers.push(() => makeCharacter(
  39441. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39442. {
  39443. front: {
  39444. height: math.unit(36, "feet"),
  39445. name: "Front",
  39446. image: {
  39447. source: "./media/characters/shadow-rat/front.svg",
  39448. extra: 1845/1758,
  39449. bottom: 83/1928
  39450. }
  39451. },
  39452. },
  39453. [
  39454. {
  39455. name: "Macro",
  39456. height: math.unit(36, "feet"),
  39457. default: true
  39458. },
  39459. ]
  39460. ))
  39461. characterMakers.push(() => makeCharacter(
  39462. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39463. {
  39464. side: {
  39465. height: math.unit(8, "feet"),
  39466. weight: math.unit(2630, "lb"),
  39467. name: "Side",
  39468. image: {
  39469. source: "./media/characters/torallia/side.svg",
  39470. extra: 2164/2021,
  39471. bottom: 371/2535
  39472. }
  39473. },
  39474. },
  39475. [
  39476. {
  39477. name: "Mortal Interaction",
  39478. height: math.unit(8, "feet")
  39479. },
  39480. {
  39481. name: "Natural",
  39482. height: math.unit(24, "feet"),
  39483. default: true
  39484. },
  39485. {
  39486. name: "Giant",
  39487. height: math.unit(80, "feet")
  39488. },
  39489. {
  39490. name: "Kaiju",
  39491. height: math.unit(240, "feet")
  39492. },
  39493. {
  39494. name: "Macro",
  39495. height: math.unit(800, "feet")
  39496. },
  39497. {
  39498. name: "Macro+",
  39499. height: math.unit(2400, "feet")
  39500. },
  39501. {
  39502. name: "Macro++",
  39503. height: math.unit(8000, "feet")
  39504. },
  39505. {
  39506. name: "City-Crushing",
  39507. height: math.unit(24000, "feet")
  39508. },
  39509. {
  39510. name: "Mountain-Mashing",
  39511. height: math.unit(80000, "feet")
  39512. },
  39513. {
  39514. name: "District Demolisher",
  39515. height: math.unit(240000, "feet")
  39516. },
  39517. {
  39518. name: "Tri-County Terror",
  39519. height: math.unit(800000, "feet")
  39520. },
  39521. {
  39522. name: "State Smasher",
  39523. height: math.unit(2.4e6, "feet")
  39524. },
  39525. {
  39526. name: "Nation Nemesis",
  39527. height: math.unit(8e6, "feet")
  39528. },
  39529. {
  39530. name: "Continent Cracker",
  39531. height: math.unit(2.4e7, "feet")
  39532. },
  39533. {
  39534. name: "Planet-Pillaging",
  39535. height: math.unit(8e7, "feet")
  39536. },
  39537. {
  39538. name: "Earth-Eclipsing",
  39539. height: math.unit(2.4e8, "feet")
  39540. },
  39541. {
  39542. name: "Jovian-Jostling",
  39543. height: math.unit(8e8, "feet")
  39544. },
  39545. {
  39546. name: "Gas Giant Gulper",
  39547. height: math.unit(2.4e9, "feet")
  39548. },
  39549. {
  39550. name: "Astral Annihilator",
  39551. height: math.unit(8e9, "feet")
  39552. },
  39553. {
  39554. name: "Celestial Conqueror",
  39555. height: math.unit(2.4e10, "feet")
  39556. },
  39557. {
  39558. name: "Sol-Swallowing",
  39559. height: math.unit(8e10, "feet")
  39560. },
  39561. {
  39562. name: "Hunter of the Heavens",
  39563. height: math.unit(2.4e13, "feet")
  39564. },
  39565. ]
  39566. ))
  39567. characterMakers.push(() => makeCharacter(
  39568. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39569. {
  39570. front: {
  39571. height: math.unit(6 + 8/12, "feet"),
  39572. name: "Front",
  39573. image: {
  39574. source: "./media/characters/rebecca-pawlson/front.svg",
  39575. extra: 1737/1596,
  39576. bottom: 107/1844
  39577. }
  39578. },
  39579. back: {
  39580. height: math.unit(6 + 8/12, "feet"),
  39581. name: "Back",
  39582. image: {
  39583. source: "./media/characters/rebecca-pawlson/back.svg",
  39584. extra: 1702/1523,
  39585. bottom: 86/1788
  39586. }
  39587. },
  39588. },
  39589. [
  39590. {
  39591. name: "Normal",
  39592. height: math.unit(6 + 8/12, "feet")
  39593. },
  39594. {
  39595. name: "Mini Macro",
  39596. height: math.unit(10, "feet"),
  39597. default: true
  39598. },
  39599. {
  39600. name: "Macro",
  39601. height: math.unit(100, "feet")
  39602. },
  39603. {
  39604. name: "Mega Macro",
  39605. height: math.unit(2500, "feet")
  39606. },
  39607. {
  39608. name: "Giga Macro",
  39609. height: math.unit(50, "miles")
  39610. },
  39611. ]
  39612. ))
  39613. characterMakers.push(() => makeCharacter(
  39614. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39615. {
  39616. front: {
  39617. height: math.unit(7 + 6/12, "feet"),
  39618. weight: math.unit(600, "lb"),
  39619. name: "Front",
  39620. image: {
  39621. source: "./media/characters/moxie-nova/front.svg",
  39622. extra: 1734/1652,
  39623. bottom: 41/1775
  39624. }
  39625. },
  39626. },
  39627. [
  39628. {
  39629. name: "Normal",
  39630. height: math.unit(7 + 6/12, "feet"),
  39631. default: true
  39632. },
  39633. ]
  39634. ))
  39635. characterMakers.push(() => makeCharacter(
  39636. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39637. {
  39638. goat: {
  39639. height: math.unit(4, "feet"),
  39640. weight: math.unit(180, "lb"),
  39641. name: "Goat",
  39642. image: {
  39643. source: "./media/characters/tiffany/goat.svg",
  39644. extra: 1845/1595,
  39645. bottom: 106/1951
  39646. }
  39647. },
  39648. front: {
  39649. height: math.unit(5, "feet"),
  39650. weight: math.unit(150, "lb"),
  39651. name: "Foxcoon",
  39652. image: {
  39653. source: "./media/characters/tiffany/foxcoon.svg",
  39654. extra: 1941/1845,
  39655. bottom: 58/1999
  39656. }
  39657. },
  39658. },
  39659. [
  39660. {
  39661. name: "Normal",
  39662. height: math.unit(5, "feet"),
  39663. default: true
  39664. },
  39665. ]
  39666. ))
  39667. characterMakers.push(() => makeCharacter(
  39668. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39669. {
  39670. front: {
  39671. height: math.unit(8, "feet"),
  39672. weight: math.unit(300, "lb"),
  39673. name: "Front",
  39674. image: {
  39675. source: "./media/characters/raxinath/front.svg",
  39676. extra: 1407/1309,
  39677. bottom: 39/1446
  39678. }
  39679. },
  39680. back: {
  39681. height: math.unit(8, "feet"),
  39682. weight: math.unit(300, "lb"),
  39683. name: "Back",
  39684. image: {
  39685. source: "./media/characters/raxinath/back.svg",
  39686. extra: 1405/1315,
  39687. bottom: 9/1414
  39688. }
  39689. },
  39690. },
  39691. [
  39692. {
  39693. name: "Speck",
  39694. height: math.unit(0.5, "nm")
  39695. },
  39696. {
  39697. name: "Micro",
  39698. height: math.unit(3, "inches")
  39699. },
  39700. {
  39701. name: "Kobold",
  39702. height: math.unit(3, "feet")
  39703. },
  39704. {
  39705. name: "Normal",
  39706. height: math.unit(8, "feet"),
  39707. default: true
  39708. },
  39709. {
  39710. name: "Giant",
  39711. height: math.unit(50, "feet")
  39712. },
  39713. {
  39714. name: "Macro",
  39715. height: math.unit(1000, "feet")
  39716. },
  39717. {
  39718. name: "Megamacro",
  39719. height: math.unit(1, "mile")
  39720. },
  39721. ]
  39722. ))
  39723. characterMakers.push(() => makeCharacter(
  39724. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39725. {
  39726. front: {
  39727. height: math.unit(10, "feet"),
  39728. weight: math.unit(1442, "lb"),
  39729. name: "Front",
  39730. image: {
  39731. source: "./media/characters/mal-dragon/front.svg",
  39732. extra: 1515/1444,
  39733. bottom: 113/1628
  39734. }
  39735. },
  39736. back: {
  39737. height: math.unit(10, "feet"),
  39738. weight: math.unit(1442, "lb"),
  39739. name: "Back",
  39740. image: {
  39741. source: "./media/characters/mal-dragon/back.svg",
  39742. extra: 1527/1434,
  39743. bottom: 25/1552
  39744. }
  39745. },
  39746. },
  39747. [
  39748. {
  39749. name: "Mortal Interaction",
  39750. height: math.unit(10, "feet"),
  39751. default: true
  39752. },
  39753. {
  39754. name: "Large",
  39755. height: math.unit(30, "feet")
  39756. },
  39757. {
  39758. name: "Kaiju",
  39759. height: math.unit(300, "feet")
  39760. },
  39761. {
  39762. name: "Megamacro",
  39763. height: math.unit(10000, "feet")
  39764. },
  39765. {
  39766. name: "Continent Cracker",
  39767. height: math.unit(30000000, "feet")
  39768. },
  39769. {
  39770. name: "Sol-Swallowing",
  39771. height: math.unit(1e11, "feet")
  39772. },
  39773. {
  39774. name: "Light Universal",
  39775. height: math.unit(5, "universes")
  39776. },
  39777. {
  39778. name: "Universe Atoms",
  39779. height: math.unit(1.829e9, "universes")
  39780. },
  39781. {
  39782. name: "Light Multiversal",
  39783. height: math.unit(5, "multiverses")
  39784. },
  39785. {
  39786. name: "Multiverse Atoms",
  39787. height: math.unit(1.829e9, "multiverses")
  39788. },
  39789. {
  39790. name: "Fabric of Time",
  39791. height: math.unit(1e262, "multiverses")
  39792. },
  39793. ]
  39794. ))
  39795. characterMakers.push(() => makeCharacter(
  39796. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39797. {
  39798. front: {
  39799. height: math.unit(9, "feet"),
  39800. weight: math.unit(1050, "lb"),
  39801. name: "Front",
  39802. image: {
  39803. source: "./media/characters/tabitha/front.svg",
  39804. extra: 2083/1994,
  39805. bottom: 68/2151
  39806. }
  39807. },
  39808. },
  39809. [
  39810. {
  39811. name: "Baseline",
  39812. height: math.unit(9, "feet"),
  39813. default: true
  39814. },
  39815. {
  39816. name: "Giant",
  39817. height: math.unit(90, "feet")
  39818. },
  39819. {
  39820. name: "Macro",
  39821. height: math.unit(900, "feet")
  39822. },
  39823. {
  39824. name: "Megamacro",
  39825. height: math.unit(9000, "feet")
  39826. },
  39827. {
  39828. name: "City-Crushing",
  39829. height: math.unit(27000, "feet")
  39830. },
  39831. {
  39832. name: "Mountain-Mashing",
  39833. height: math.unit(90000, "feet")
  39834. },
  39835. {
  39836. name: "Nation Nemesis",
  39837. height: math.unit(9e6, "feet")
  39838. },
  39839. {
  39840. name: "Continent Cracker",
  39841. height: math.unit(27e6, "feet")
  39842. },
  39843. {
  39844. name: "Earth-Eclipsing",
  39845. height: math.unit(2.7e8, "feet")
  39846. },
  39847. {
  39848. name: "Gas Giant Gulper",
  39849. height: math.unit(2.7e9, "feet")
  39850. },
  39851. {
  39852. name: "Sol-Swallowing",
  39853. height: math.unit(9e10, "feet")
  39854. },
  39855. {
  39856. name: "Galaxy Gulper",
  39857. height: math.unit(9, "galaxies")
  39858. },
  39859. {
  39860. name: "Cosmos Churner",
  39861. height: math.unit(9, "universes")
  39862. },
  39863. ]
  39864. ))
  39865. characterMakers.push(() => makeCharacter(
  39866. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39867. {
  39868. front: {
  39869. height: math.unit(160, "cm"),
  39870. weight: math.unit(55, "kg"),
  39871. name: "Front",
  39872. image: {
  39873. source: "./media/characters/tow/front.svg",
  39874. extra: 1751/1722,
  39875. bottom: 74/1825
  39876. }
  39877. },
  39878. },
  39879. [
  39880. {
  39881. name: "Norm",
  39882. height: math.unit(160, "cm")
  39883. },
  39884. {
  39885. name: "Casual",
  39886. height: math.unit(3200, "m"),
  39887. default: true
  39888. },
  39889. {
  39890. name: "Show-Off",
  39891. height: math.unit(160, "km")
  39892. },
  39893. ]
  39894. ))
  39895. characterMakers.push(() => makeCharacter(
  39896. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39897. {
  39898. front: {
  39899. height: math.unit(7 + 11/12, "feet"),
  39900. weight: math.unit(342.8, "lb"),
  39901. name: "Front",
  39902. image: {
  39903. source: "./media/characters/vivian-orca-dragon/front.svg",
  39904. extra: 1890/1865,
  39905. bottom: 28/1918
  39906. }
  39907. },
  39908. },
  39909. [
  39910. {
  39911. name: "Micro",
  39912. height: math.unit(5, "inches")
  39913. },
  39914. {
  39915. name: "Normal",
  39916. height: math.unit(7 + 11/12, "feet"),
  39917. default: true
  39918. },
  39919. {
  39920. name: "Macro",
  39921. height: math.unit(395 + 7/12, "feet")
  39922. },
  39923. ]
  39924. ))
  39925. characterMakers.push(() => makeCharacter(
  39926. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39927. {
  39928. side: {
  39929. height: math.unit(10, "feet"),
  39930. weight: math.unit(1442, "lb"),
  39931. name: "Side",
  39932. image: {
  39933. source: "./media/characters/lotherakon/side.svg",
  39934. extra: 1604/1497,
  39935. bottom: 89/1693
  39936. }
  39937. },
  39938. },
  39939. [
  39940. {
  39941. name: "Mortal Interaction",
  39942. height: math.unit(10, "feet")
  39943. },
  39944. {
  39945. name: "Large",
  39946. height: math.unit(30, "feet"),
  39947. default: true
  39948. },
  39949. {
  39950. name: "Giant",
  39951. height: math.unit(100, "feet")
  39952. },
  39953. {
  39954. name: "Kaiju",
  39955. height: math.unit(300, "feet")
  39956. },
  39957. {
  39958. name: "Macro",
  39959. height: math.unit(1000, "feet")
  39960. },
  39961. {
  39962. name: "Macro+",
  39963. height: math.unit(3000, "feet")
  39964. },
  39965. {
  39966. name: "Megamacro",
  39967. height: math.unit(10000, "feet")
  39968. },
  39969. {
  39970. name: "City-Crushing",
  39971. height: math.unit(30000, "feet")
  39972. },
  39973. {
  39974. name: "Continent Cracker",
  39975. height: math.unit(30e6, "feet")
  39976. },
  39977. {
  39978. name: "Earth Eclipsing",
  39979. height: math.unit(3e8, "feet")
  39980. },
  39981. {
  39982. name: "Gas Giant Gulper",
  39983. height: math.unit(3e9, "feet")
  39984. },
  39985. {
  39986. name: "Sol-Swallowing",
  39987. height: math.unit(1e11, "feet")
  39988. },
  39989. {
  39990. name: "System Swallower",
  39991. height: math.unit(3e14, "feet")
  39992. },
  39993. {
  39994. name: "Galaxy Gulper",
  39995. height: math.unit(10, "galaxies")
  39996. },
  39997. {
  39998. name: "Light Universal",
  39999. height: math.unit(5, "universes")
  40000. },
  40001. {
  40002. name: "Universe Palm",
  40003. height: math.unit(20, "universes")
  40004. },
  40005. {
  40006. name: "Light Multiversal",
  40007. height: math.unit(5, "multiverses")
  40008. },
  40009. {
  40010. name: "Multiverse Palm",
  40011. height: math.unit(20, "multiverses")
  40012. },
  40013. {
  40014. name: "Inferno Incarnate",
  40015. height: math.unit(1e7, "multiverses")
  40016. },
  40017. ]
  40018. ))
  40019. characterMakers.push(() => makeCharacter(
  40020. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40021. {
  40022. front: {
  40023. height: math.unit(8, "feet"),
  40024. weight: math.unit(1200, "lb"),
  40025. name: "Front",
  40026. image: {
  40027. source: "./media/characters/malithee/front.svg",
  40028. extra: 1675/1640,
  40029. bottom: 162/1837
  40030. }
  40031. },
  40032. },
  40033. [
  40034. {
  40035. name: "Mortal Interaction",
  40036. height: math.unit(8, "feet"),
  40037. default: true
  40038. },
  40039. {
  40040. name: "Large",
  40041. height: math.unit(24, "feet")
  40042. },
  40043. {
  40044. name: "Kaiju",
  40045. height: math.unit(240, "feet")
  40046. },
  40047. {
  40048. name: "Megamacro",
  40049. height: math.unit(8000, "feet")
  40050. },
  40051. {
  40052. name: "Continent Cracker",
  40053. height: math.unit(24e6, "feet")
  40054. },
  40055. {
  40056. name: "Earth-Eclipsing",
  40057. height: math.unit(2.4e8, "feet")
  40058. },
  40059. {
  40060. name: "Sol-Swallowing",
  40061. height: math.unit(8e10, "feet")
  40062. },
  40063. {
  40064. name: "Galaxy Gulper",
  40065. height: math.unit(8, "galaxies")
  40066. },
  40067. {
  40068. name: "Light Universal",
  40069. height: math.unit(4, "universes")
  40070. },
  40071. {
  40072. name: "Universe Atoms",
  40073. height: math.unit(1.829e9, "universes")
  40074. },
  40075. {
  40076. name: "Light Multiversal",
  40077. height: math.unit(4, "multiverses")
  40078. },
  40079. {
  40080. name: "Multiverse Atoms",
  40081. height: math.unit(1.829e9, "multiverses")
  40082. },
  40083. {
  40084. name: "Nigh-Omnipresence",
  40085. height: math.unit(8e261, "multiverses")
  40086. },
  40087. ]
  40088. ))
  40089. characterMakers.push(() => makeCharacter(
  40090. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40091. {
  40092. front: {
  40093. height: math.unit(10, "feet"),
  40094. weight: math.unit(1500, "lb"),
  40095. name: "Front",
  40096. image: {
  40097. source: "./media/characters/miles-thestia/front.svg",
  40098. extra: 1812/1727,
  40099. bottom: 86/1898
  40100. }
  40101. },
  40102. back: {
  40103. height: math.unit(10, "feet"),
  40104. weight: math.unit(1500, "lb"),
  40105. name: "Back",
  40106. image: {
  40107. source: "./media/characters/miles-thestia/back.svg",
  40108. extra: 1799/1690,
  40109. bottom: 47/1846
  40110. }
  40111. },
  40112. frontNsfw: {
  40113. height: math.unit(10, "feet"),
  40114. weight: math.unit(1500, "lb"),
  40115. name: "Front (NSFW)",
  40116. image: {
  40117. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40118. extra: 1812/1727,
  40119. bottom: 86/1898
  40120. }
  40121. },
  40122. },
  40123. [
  40124. {
  40125. name: "Mini-Macro",
  40126. height: math.unit(10, "feet"),
  40127. default: true
  40128. },
  40129. ]
  40130. ))
  40131. characterMakers.push(() => makeCharacter(
  40132. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40133. {
  40134. front: {
  40135. height: math.unit(25, "feet"),
  40136. name: "Front",
  40137. image: {
  40138. source: "./media/characters/titan-s-wulf/front.svg",
  40139. extra: 1560/1484,
  40140. bottom: 76/1636
  40141. }
  40142. },
  40143. },
  40144. [
  40145. {
  40146. name: "Smallest",
  40147. height: math.unit(25, "feet"),
  40148. default: true
  40149. },
  40150. {
  40151. name: "Normal",
  40152. height: math.unit(200, "feet")
  40153. },
  40154. {
  40155. name: "Macro",
  40156. height: math.unit(200000, "feet")
  40157. },
  40158. {
  40159. name: "Multiversal Original",
  40160. height: math.unit(10000, "multiverses")
  40161. },
  40162. ]
  40163. ))
  40164. characterMakers.push(() => makeCharacter(
  40165. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40166. {
  40167. front: {
  40168. height: math.unit(8, "feet"),
  40169. weight: math.unit(553, "lb"),
  40170. name: "Front",
  40171. image: {
  40172. source: "./media/characters/tawendeh/front.svg",
  40173. extra: 2365/2268,
  40174. bottom: 83/2448
  40175. }
  40176. },
  40177. frontClothed: {
  40178. height: math.unit(8, "feet"),
  40179. weight: math.unit(553, "lb"),
  40180. name: "Front (Clothed)",
  40181. image: {
  40182. source: "./media/characters/tawendeh/front-clothed.svg",
  40183. extra: 2365/2268,
  40184. bottom: 83/2448
  40185. }
  40186. },
  40187. back: {
  40188. height: math.unit(8, "feet"),
  40189. weight: math.unit(553, "lb"),
  40190. name: "Back",
  40191. image: {
  40192. source: "./media/characters/tawendeh/back.svg",
  40193. extra: 2397/2294,
  40194. bottom: 42/2439
  40195. }
  40196. },
  40197. },
  40198. [
  40199. {
  40200. name: "Mortal Interaction",
  40201. height: math.unit(8, "feet"),
  40202. default: true
  40203. },
  40204. {
  40205. name: "Giant",
  40206. height: math.unit(80, "feet")
  40207. },
  40208. {
  40209. name: "Macro",
  40210. height: math.unit(800, "feet")
  40211. },
  40212. {
  40213. name: "Megamacro",
  40214. height: math.unit(8000, "feet")
  40215. },
  40216. {
  40217. name: "City-Crushing",
  40218. height: math.unit(24000, "feet")
  40219. },
  40220. {
  40221. name: "Mountain-Mashing",
  40222. height: math.unit(80000, "feet")
  40223. },
  40224. {
  40225. name: "Nation Nemesis",
  40226. height: math.unit(8e6, "feet")
  40227. },
  40228. {
  40229. name: "Continent Cracker",
  40230. height: math.unit(24e6, "feet")
  40231. },
  40232. {
  40233. name: "Earth-Eclipsing",
  40234. height: math.unit(2.4e8, "feet")
  40235. },
  40236. {
  40237. name: "Gas Giant Gulper",
  40238. height: math.unit(2.4e9, "feet")
  40239. },
  40240. {
  40241. name: "Sol-Swallowing",
  40242. height: math.unit(8e10, "feet")
  40243. },
  40244. {
  40245. name: "Galaxy Gulper",
  40246. height: math.unit(8, "galaxies")
  40247. },
  40248. {
  40249. name: "Cosmos Churner",
  40250. height: math.unit(8, "universes")
  40251. },
  40252. {
  40253. name: "Omnipotent Otter",
  40254. height: math.unit(80, "universes")
  40255. },
  40256. ]
  40257. ))
  40258. characterMakers.push(() => makeCharacter(
  40259. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40260. {
  40261. front: {
  40262. height: math.unit(2.6, "meters"),
  40263. weight: math.unit(900, "kg"),
  40264. name: "Front",
  40265. image: {
  40266. source: "./media/characters/neesha/front.svg",
  40267. extra: 1803/1653,
  40268. bottom: 128/1931
  40269. }
  40270. },
  40271. },
  40272. [
  40273. {
  40274. name: "Normal",
  40275. height: math.unit(2.6, "meters"),
  40276. default: true
  40277. },
  40278. {
  40279. name: "Macro",
  40280. height: math.unit(50, "meters")
  40281. },
  40282. ]
  40283. ))
  40284. characterMakers.push(() => makeCharacter(
  40285. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40286. {
  40287. front: {
  40288. height: math.unit(5, "feet"),
  40289. weight: math.unit(185, "lb"),
  40290. name: "Front",
  40291. image: {
  40292. source: "./media/characters/kyera/front.svg",
  40293. extra: 1875/1790,
  40294. bottom: 96/1971
  40295. }
  40296. },
  40297. },
  40298. [
  40299. {
  40300. name: "Normal",
  40301. height: math.unit(5, "feet"),
  40302. default: true
  40303. },
  40304. ]
  40305. ))
  40306. characterMakers.push(() => makeCharacter(
  40307. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40308. {
  40309. front: {
  40310. height: math.unit(7 + 6/12, "feet"),
  40311. weight: math.unit(540, "lb"),
  40312. name: "Front",
  40313. image: {
  40314. source: "./media/characters/yuko/front.svg",
  40315. extra: 1282/1222,
  40316. bottom: 101/1383
  40317. }
  40318. },
  40319. frontClothed: {
  40320. height: math.unit(7 + 6/12, "feet"),
  40321. weight: math.unit(540, "lb"),
  40322. name: "Front (Clothed)",
  40323. image: {
  40324. source: "./media/characters/yuko/front-clothed.svg",
  40325. extra: 1282/1222,
  40326. bottom: 101/1383
  40327. }
  40328. },
  40329. },
  40330. [
  40331. {
  40332. name: "Normal",
  40333. height: math.unit(7 + 6/12, "feet"),
  40334. default: true
  40335. },
  40336. {
  40337. name: "Macro",
  40338. height: math.unit(26 + 9/12, "feet")
  40339. },
  40340. {
  40341. name: "Megamacro",
  40342. height: math.unit(300, "feet")
  40343. },
  40344. {
  40345. name: "Gigamacro",
  40346. height: math.unit(5000, "feet")
  40347. },
  40348. {
  40349. name: "Planetary",
  40350. height: math.unit(10000, "miles")
  40351. },
  40352. ]
  40353. ))
  40354. characterMakers.push(() => makeCharacter(
  40355. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40356. {
  40357. front: {
  40358. height: math.unit(8 + 2/12, "feet"),
  40359. weight: math.unit(600, "lb"),
  40360. name: "Front",
  40361. image: {
  40362. source: "./media/characters/deam-nitrel/front.svg",
  40363. extra: 1308/1234,
  40364. bottom: 125/1433
  40365. }
  40366. },
  40367. },
  40368. [
  40369. {
  40370. name: "Normal",
  40371. height: math.unit(8 + 2/12, "feet"),
  40372. default: true
  40373. },
  40374. ]
  40375. ))
  40376. characterMakers.push(() => makeCharacter(
  40377. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40378. {
  40379. front: {
  40380. height: math.unit(6.1, "feet"),
  40381. weight: math.unit(180, "lb"),
  40382. name: "Front",
  40383. image: {
  40384. source: "./media/characters/skyress/front.svg",
  40385. extra: 1045/915,
  40386. bottom: 28/1073
  40387. }
  40388. },
  40389. maw: {
  40390. height: math.unit(1, "feet"),
  40391. name: "Maw",
  40392. image: {
  40393. source: "./media/characters/skyress/maw.svg"
  40394. }
  40395. },
  40396. },
  40397. [
  40398. {
  40399. name: "Normal",
  40400. height: math.unit(6.1, "feet"),
  40401. default: true
  40402. },
  40403. {
  40404. name: "Macro",
  40405. height: math.unit(200, "feet")
  40406. },
  40407. ]
  40408. ))
  40409. characterMakers.push(() => makeCharacter(
  40410. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40411. {
  40412. front: {
  40413. height: math.unit(4 + 2/12, "feet"),
  40414. weight: math.unit(40, "kg"),
  40415. name: "Front",
  40416. image: {
  40417. source: "./media/characters/amethyst-jones/front.svg",
  40418. extra: 1220/1150,
  40419. bottom: 101/1321
  40420. }
  40421. },
  40422. },
  40423. [
  40424. {
  40425. name: "Normal",
  40426. height: math.unit(4 + 2/12, "feet"),
  40427. default: true
  40428. },
  40429. ]
  40430. ))
  40431. characterMakers.push(() => makeCharacter(
  40432. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40433. {
  40434. front: {
  40435. height: math.unit(1.7, "m"),
  40436. weight: math.unit(135, "lb"),
  40437. name: "Front",
  40438. image: {
  40439. source: "./media/characters/jade/front.svg",
  40440. extra: 1818/1767,
  40441. bottom: 32/1850
  40442. }
  40443. },
  40444. back: {
  40445. height: math.unit(1.7, "m"),
  40446. weight: math.unit(135, "lb"),
  40447. name: "Back",
  40448. image: {
  40449. source: "./media/characters/jade/back.svg",
  40450. extra: 1869/1809,
  40451. bottom: 35/1904
  40452. }
  40453. },
  40454. hand: {
  40455. height: math.unit(0.24, "m"),
  40456. name: "Hand",
  40457. image: {
  40458. source: "./media/characters/jade/hand.svg"
  40459. }
  40460. },
  40461. foot: {
  40462. height: math.unit(0.263, "m"),
  40463. name: "Foot",
  40464. image: {
  40465. source: "./media/characters/jade/foot.svg"
  40466. }
  40467. },
  40468. dick: {
  40469. height: math.unit(0.47, "m"),
  40470. name: "Dick",
  40471. image: {
  40472. source: "./media/characters/jade/dick.svg"
  40473. }
  40474. },
  40475. },
  40476. [
  40477. {
  40478. name: "Micro",
  40479. height: math.unit(22, "cm")
  40480. },
  40481. {
  40482. name: "Normal",
  40483. height: math.unit(1.7, "m"),
  40484. default: true
  40485. },
  40486. {
  40487. name: "Macro",
  40488. height: math.unit(152, "m")
  40489. },
  40490. ]
  40491. ))
  40492. characterMakers.push(() => makeCharacter(
  40493. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40494. {
  40495. front: {
  40496. height: math.unit(100, "miles"),
  40497. weight: math.unit(20000, "tons"),
  40498. name: "Front",
  40499. image: {
  40500. source: "./media/characters/cookie/front.svg",
  40501. extra: 1125/1070,
  40502. bottom: 30/1155
  40503. }
  40504. },
  40505. },
  40506. [
  40507. {
  40508. name: "Big",
  40509. height: math.unit(50, "feet")
  40510. },
  40511. {
  40512. name: "Macro",
  40513. height: math.unit(100, "miles"),
  40514. default: true
  40515. },
  40516. {
  40517. name: "Megamacro",
  40518. height: math.unit(90000, "miles")
  40519. },
  40520. ]
  40521. ))
  40522. characterMakers.push(() => makeCharacter(
  40523. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40524. {
  40525. front: {
  40526. height: math.unit(6, "feet"),
  40527. weight: math.unit(145, "lb"),
  40528. name: "Front",
  40529. image: {
  40530. source: "./media/characters/farzian/front.svg",
  40531. extra: 1902/1693,
  40532. bottom: 108/2010
  40533. }
  40534. },
  40535. },
  40536. [
  40537. {
  40538. name: "Macro",
  40539. height: math.unit(500, "feet"),
  40540. default: true
  40541. },
  40542. ]
  40543. ))
  40544. characterMakers.push(() => makeCharacter(
  40545. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40546. {
  40547. front: {
  40548. height: math.unit(3 + 6/12, "feet"),
  40549. weight: math.unit(50, "lb"),
  40550. name: "Front",
  40551. image: {
  40552. source: "./media/characters/kimberly-tilson/front.svg",
  40553. extra: 1400/1322,
  40554. bottom: 36/1436
  40555. }
  40556. },
  40557. back: {
  40558. height: math.unit(3 + 6/12, "feet"),
  40559. weight: math.unit(50, "lb"),
  40560. name: "Back",
  40561. image: {
  40562. source: "./media/characters/kimberly-tilson/back.svg",
  40563. extra: 1370/1307,
  40564. bottom: 20/1390
  40565. }
  40566. },
  40567. },
  40568. [
  40569. {
  40570. name: "Normal",
  40571. height: math.unit(3 + 6/12, "feet"),
  40572. default: true
  40573. },
  40574. ]
  40575. ))
  40576. characterMakers.push(() => makeCharacter(
  40577. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40578. {
  40579. front: {
  40580. height: math.unit(1148, "feet"),
  40581. weight: math.unit(34057, "lb"),
  40582. name: "Front",
  40583. image: {
  40584. source: "./media/characters/harthos/front.svg",
  40585. extra: 1391/1339,
  40586. bottom: 13/1404
  40587. }
  40588. },
  40589. },
  40590. [
  40591. {
  40592. name: "Macro",
  40593. height: math.unit(1148, "feet"),
  40594. default: true
  40595. },
  40596. ]
  40597. ))
  40598. characterMakers.push(() => makeCharacter(
  40599. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40600. {
  40601. front: {
  40602. height: math.unit(15, "feet"),
  40603. name: "Front",
  40604. image: {
  40605. source: "./media/characters/hypatia/front.svg",
  40606. extra: 1653/1591,
  40607. bottom: 79/1732
  40608. }
  40609. },
  40610. },
  40611. [
  40612. {
  40613. name: "Normal",
  40614. height: math.unit(15, "feet")
  40615. },
  40616. {
  40617. name: "Small",
  40618. height: math.unit(300, "feet")
  40619. },
  40620. {
  40621. name: "Macro",
  40622. height: math.unit(2500, "feet"),
  40623. default: true
  40624. },
  40625. {
  40626. name: "Mega Macro",
  40627. height: math.unit(1500, "miles")
  40628. },
  40629. {
  40630. name: "Giga Macro",
  40631. height: math.unit(1.5e6, "miles")
  40632. },
  40633. ]
  40634. ))
  40635. characterMakers.push(() => makeCharacter(
  40636. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40637. {
  40638. front: {
  40639. height: math.unit(6, "feet"),
  40640. weight: math.unit(200, "lb"),
  40641. name: "Front",
  40642. image: {
  40643. source: "./media/characters/wulver/front.svg",
  40644. extra: 1724/1632,
  40645. bottom: 130/1854
  40646. }
  40647. },
  40648. frontNsfw: {
  40649. height: math.unit(6, "feet"),
  40650. weight: math.unit(200, "lb"),
  40651. name: "Front (NSFW)",
  40652. image: {
  40653. source: "./media/characters/wulver/front-nsfw.svg",
  40654. extra: 1724/1632,
  40655. bottom: 130/1854
  40656. }
  40657. },
  40658. },
  40659. [
  40660. {
  40661. name: "Human-Sized",
  40662. height: math.unit(6, "feet")
  40663. },
  40664. {
  40665. name: "Normal",
  40666. height: math.unit(4, "meters"),
  40667. default: true
  40668. },
  40669. {
  40670. name: "Large",
  40671. height: math.unit(6, "m")
  40672. },
  40673. ]
  40674. ))
  40675. characterMakers.push(() => makeCharacter(
  40676. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40677. {
  40678. front: {
  40679. height: math.unit(7, "feet"),
  40680. name: "Front",
  40681. image: {
  40682. source: "./media/characters/maru/front.svg",
  40683. extra: 1595/1570,
  40684. bottom: 0/1595
  40685. }
  40686. },
  40687. },
  40688. [
  40689. {
  40690. name: "Normal",
  40691. height: math.unit(7, "feet"),
  40692. default: true
  40693. },
  40694. {
  40695. name: "Macro",
  40696. height: math.unit(700, "feet")
  40697. },
  40698. {
  40699. name: "Mega Macro",
  40700. height: math.unit(25, "miles")
  40701. },
  40702. ]
  40703. ))
  40704. characterMakers.push(() => makeCharacter(
  40705. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40706. {
  40707. front: {
  40708. height: math.unit(6, "feet"),
  40709. weight: math.unit(170, "lb"),
  40710. name: "Front",
  40711. image: {
  40712. source: "./media/characters/xenon/front.svg",
  40713. extra: 1376/1305,
  40714. bottom: 56/1432
  40715. }
  40716. },
  40717. back: {
  40718. height: math.unit(6, "feet"),
  40719. weight: math.unit(170, "lb"),
  40720. name: "Back",
  40721. image: {
  40722. source: "./media/characters/xenon/back.svg",
  40723. extra: 1328/1259,
  40724. bottom: 95/1423
  40725. }
  40726. },
  40727. maw: {
  40728. height: math.unit(0.52, "feet"),
  40729. name: "Maw",
  40730. image: {
  40731. source: "./media/characters/xenon/maw.svg"
  40732. }
  40733. },
  40734. hand: {
  40735. height: math.unit(0.82, "feet"),
  40736. name: "Hand",
  40737. image: {
  40738. source: "./media/characters/xenon/hand.svg"
  40739. }
  40740. },
  40741. foot: {
  40742. height: math.unit(1.13, "feet"),
  40743. name: "Foot",
  40744. image: {
  40745. source: "./media/characters/xenon/foot.svg"
  40746. }
  40747. },
  40748. },
  40749. [
  40750. {
  40751. name: "Micro",
  40752. height: math.unit(0.8, "inches")
  40753. },
  40754. {
  40755. name: "Normal",
  40756. height: math.unit(6, "feet")
  40757. },
  40758. {
  40759. name: "Macro",
  40760. height: math.unit(50, "feet"),
  40761. default: true
  40762. },
  40763. {
  40764. name: "Macro+",
  40765. height: math.unit(250, "feet")
  40766. },
  40767. {
  40768. name: "Megamacro",
  40769. height: math.unit(1500, "feet")
  40770. },
  40771. ]
  40772. ))
  40773. characterMakers.push(() => makeCharacter(
  40774. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40775. {
  40776. front: {
  40777. height: math.unit(7 + 5/12, "feet"),
  40778. name: "Front",
  40779. image: {
  40780. source: "./media/characters/zane/front.svg",
  40781. extra: 1260/1203,
  40782. bottom: 94/1354
  40783. }
  40784. },
  40785. back: {
  40786. height: math.unit(5.05, "feet"),
  40787. name: "Back",
  40788. image: {
  40789. source: "./media/characters/zane/back.svg",
  40790. extra: 893/829,
  40791. bottom: 30/923
  40792. }
  40793. },
  40794. werewolf: {
  40795. height: math.unit(11, "feet"),
  40796. name: "Werewolf",
  40797. image: {
  40798. source: "./media/characters/zane/werewolf.svg",
  40799. extra: 1383/1323,
  40800. bottom: 89/1472
  40801. }
  40802. },
  40803. foot: {
  40804. height: math.unit(1.46, "feet"),
  40805. name: "Foot",
  40806. image: {
  40807. source: "./media/characters/zane/foot.svg"
  40808. }
  40809. },
  40810. footFront: {
  40811. height: math.unit(0.784, "feet"),
  40812. name: "Foot (Front)",
  40813. image: {
  40814. source: "./media/characters/zane/foot-front.svg"
  40815. }
  40816. },
  40817. dick: {
  40818. height: math.unit(1.95, "feet"),
  40819. name: "Dick",
  40820. image: {
  40821. source: "./media/characters/zane/dick.svg"
  40822. }
  40823. },
  40824. dickWerewolf: {
  40825. height: math.unit(3.77, "feet"),
  40826. name: "Dick (Werewolf)",
  40827. image: {
  40828. source: "./media/characters/zane/dick.svg"
  40829. }
  40830. },
  40831. },
  40832. [
  40833. {
  40834. name: "Normal",
  40835. height: math.unit(7 + 5/12, "feet"),
  40836. default: true
  40837. },
  40838. ]
  40839. ))
  40840. characterMakers.push(() => makeCharacter(
  40841. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40842. {
  40843. front: {
  40844. height: math.unit(6 + 2/12, "feet"),
  40845. weight: math.unit(284, "lb"),
  40846. name: "Front",
  40847. image: {
  40848. source: "./media/characters/benni-desparque/front.svg",
  40849. extra: 1353/1126,
  40850. bottom: 69/1422
  40851. }
  40852. },
  40853. },
  40854. [
  40855. {
  40856. name: "Civilian",
  40857. height: math.unit(6 + 2/12, "feet")
  40858. },
  40859. {
  40860. name: "Normal",
  40861. height: math.unit(98, "feet"),
  40862. default: true
  40863. },
  40864. {
  40865. name: "Kaiju Fighter",
  40866. height: math.unit(268, "feet")
  40867. },
  40868. ]
  40869. ))
  40870. characterMakers.push(() => makeCharacter(
  40871. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40872. {
  40873. front: {
  40874. height: math.unit(5, "feet"),
  40875. weight: math.unit(105, "lb"),
  40876. name: "Front",
  40877. image: {
  40878. source: "./media/characters/maxine/front.svg",
  40879. extra: 1386/1250,
  40880. bottom: 71/1457
  40881. }
  40882. },
  40883. },
  40884. [
  40885. {
  40886. name: "Normal",
  40887. height: math.unit(5, "feet"),
  40888. default: true
  40889. },
  40890. ]
  40891. ))
  40892. characterMakers.push(() => makeCharacter(
  40893. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40894. {
  40895. front: {
  40896. height: math.unit(11 + 7/12, "feet"),
  40897. weight: math.unit(9576, "lb"),
  40898. name: "Front",
  40899. image: {
  40900. source: "./media/characters/scaly/front.svg",
  40901. extra: 888/867,
  40902. bottom: 36/924
  40903. }
  40904. },
  40905. },
  40906. [
  40907. {
  40908. name: "Normal",
  40909. height: math.unit(11 + 7/12, "feet"),
  40910. default: true
  40911. },
  40912. ]
  40913. ))
  40914. characterMakers.push(() => makeCharacter(
  40915. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40916. {
  40917. front: {
  40918. height: math.unit(6 + 3/12, "feet"),
  40919. name: "Front",
  40920. image: {
  40921. source: "./media/characters/saelria/front.svg",
  40922. extra: 1243/1138,
  40923. bottom: 46/1289
  40924. }
  40925. },
  40926. },
  40927. [
  40928. {
  40929. name: "Micro",
  40930. height: math.unit(6, "inches"),
  40931. },
  40932. {
  40933. name: "Normal",
  40934. height: math.unit(6 + 3/12, "feet"),
  40935. default: true
  40936. },
  40937. {
  40938. name: "Macro",
  40939. height: math.unit(25, "feet")
  40940. },
  40941. ]
  40942. ))
  40943. characterMakers.push(() => makeCharacter(
  40944. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40945. {
  40946. front: {
  40947. height: math.unit(80, "meters"),
  40948. weight: math.unit(7000, "tonnes"),
  40949. name: "Front",
  40950. image: {
  40951. source: "./media/characters/tef/front.svg",
  40952. extra: 2036/1991,
  40953. bottom: 54/2090
  40954. }
  40955. },
  40956. back: {
  40957. height: math.unit(80, "meters"),
  40958. weight: math.unit(7000, "tonnes"),
  40959. name: "Back",
  40960. image: {
  40961. source: "./media/characters/tef/back.svg",
  40962. extra: 2036/1991,
  40963. bottom: 54/2090
  40964. }
  40965. },
  40966. },
  40967. [
  40968. {
  40969. name: "Macro",
  40970. height: math.unit(80, "meters"),
  40971. default: true
  40972. },
  40973. ]
  40974. ))
  40975. characterMakers.push(() => makeCharacter(
  40976. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40977. {
  40978. front: {
  40979. height: math.unit(13, "feet"),
  40980. weight: math.unit(6, "tons"),
  40981. name: "Front",
  40982. image: {
  40983. source: "./media/characters/rover/front.svg",
  40984. extra: 1233/1156,
  40985. bottom: 50/1283
  40986. }
  40987. },
  40988. back: {
  40989. height: math.unit(13, "feet"),
  40990. weight: math.unit(6, "tons"),
  40991. name: "Back",
  40992. image: {
  40993. source: "./media/characters/rover/back.svg",
  40994. extra: 1327/1258,
  40995. bottom: 39/1366
  40996. }
  40997. },
  40998. },
  40999. [
  41000. {
  41001. name: "Normal",
  41002. height: math.unit(13, "feet"),
  41003. default: true
  41004. },
  41005. {
  41006. name: "Macro",
  41007. height: math.unit(1300, "feet")
  41008. },
  41009. {
  41010. name: "Megamacro",
  41011. height: math.unit(1300, "miles")
  41012. },
  41013. {
  41014. name: "Gigamacro",
  41015. height: math.unit(1300000, "miles")
  41016. },
  41017. ]
  41018. ))
  41019. characterMakers.push(() => makeCharacter(
  41020. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41021. {
  41022. front: {
  41023. height: math.unit(6, "feet"),
  41024. weight: math.unit(150, "lb"),
  41025. name: "Front",
  41026. image: {
  41027. source: "./media/characters/ariz/front.svg",
  41028. extra: 1401/1346,
  41029. bottom: 5/1406
  41030. }
  41031. },
  41032. },
  41033. [
  41034. {
  41035. name: "Normal",
  41036. height: math.unit(10, "feet"),
  41037. default: true
  41038. },
  41039. ]
  41040. ))
  41041. characterMakers.push(() => makeCharacter(
  41042. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41043. {
  41044. front: {
  41045. height: math.unit(6, "feet"),
  41046. weight: math.unit(140, "lb"),
  41047. name: "Front",
  41048. image: {
  41049. source: "./media/characters/sigrun/front.svg",
  41050. extra: 1418/1359,
  41051. bottom: 27/1445
  41052. }
  41053. },
  41054. },
  41055. [
  41056. {
  41057. name: "Macro",
  41058. height: math.unit(35, "feet"),
  41059. default: true
  41060. },
  41061. ]
  41062. ))
  41063. characterMakers.push(() => makeCharacter(
  41064. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41065. {
  41066. front: {
  41067. height: math.unit(6, "feet"),
  41068. weight: math.unit(150, "lb"),
  41069. name: "Front",
  41070. image: {
  41071. source: "./media/characters/numin/front.svg",
  41072. extra: 1433/1388,
  41073. bottom: 12/1445
  41074. }
  41075. },
  41076. },
  41077. [
  41078. {
  41079. name: "Macro",
  41080. height: math.unit(21.5, "km"),
  41081. default: true
  41082. },
  41083. ]
  41084. ))
  41085. characterMakers.push(() => makeCharacter(
  41086. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41087. {
  41088. front: {
  41089. height: math.unit(6, "feet"),
  41090. weight: math.unit(463, "lb"),
  41091. name: "Front",
  41092. image: {
  41093. source: "./media/characters/melwa/front.svg",
  41094. extra: 1307/1248,
  41095. bottom: 93/1400
  41096. }
  41097. },
  41098. },
  41099. [
  41100. {
  41101. name: "Macro",
  41102. height: math.unit(50, "meters"),
  41103. default: true
  41104. },
  41105. ]
  41106. ))
  41107. characterMakers.push(() => makeCharacter(
  41108. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41109. {
  41110. front: {
  41111. height: math.unit(325, "feet"),
  41112. name: "Front",
  41113. image: {
  41114. source: "./media/characters/zorkaiju/front.svg",
  41115. extra: 1955/1814,
  41116. bottom: 40/1995
  41117. }
  41118. },
  41119. frontExtended: {
  41120. height: math.unit(325, "feet"),
  41121. name: "Front (Extended)",
  41122. image: {
  41123. source: "./media/characters/zorkaiju/front-extended.svg",
  41124. extra: 1955/1814,
  41125. bottom: 40/1995
  41126. }
  41127. },
  41128. side: {
  41129. height: math.unit(325, "feet"),
  41130. name: "Side",
  41131. image: {
  41132. source: "./media/characters/zorkaiju/side.svg",
  41133. extra: 1495/1396,
  41134. bottom: 17/1512
  41135. }
  41136. },
  41137. sideExtended: {
  41138. height: math.unit(325, "feet"),
  41139. name: "Side (Extended)",
  41140. image: {
  41141. source: "./media/characters/zorkaiju/side-extended.svg",
  41142. extra: 1495/1396,
  41143. bottom: 17/1512
  41144. }
  41145. },
  41146. back: {
  41147. height: math.unit(325, "feet"),
  41148. name: "Back",
  41149. image: {
  41150. source: "./media/characters/zorkaiju/back.svg",
  41151. extra: 1959/1821,
  41152. bottom: 31/1990
  41153. }
  41154. },
  41155. backExtended: {
  41156. height: math.unit(325, "feet"),
  41157. name: "Back (Extended)",
  41158. image: {
  41159. source: "./media/characters/zorkaiju/back-extended.svg",
  41160. extra: 1959/1821,
  41161. bottom: 31/1990
  41162. }
  41163. },
  41164. hand: {
  41165. height: math.unit(58.4, "feet"),
  41166. name: "Hand",
  41167. image: {
  41168. source: "./media/characters/zorkaiju/hand.svg"
  41169. }
  41170. },
  41171. handExtended: {
  41172. height: math.unit(61.4, "feet"),
  41173. name: "Hand (Extended)",
  41174. image: {
  41175. source: "./media/characters/zorkaiju/hand-extended.svg"
  41176. }
  41177. },
  41178. foot: {
  41179. height: math.unit(95, "feet"),
  41180. name: "Foot",
  41181. image: {
  41182. source: "./media/characters/zorkaiju/foot.svg"
  41183. }
  41184. },
  41185. leftArm: {
  41186. height: math.unit(59, "feet"),
  41187. name: "Left Arm",
  41188. image: {
  41189. source: "./media/characters/zorkaiju/left-arm.svg"
  41190. }
  41191. },
  41192. rightArm: {
  41193. height: math.unit(59, "feet"),
  41194. name: "Right Arm",
  41195. image: {
  41196. source: "./media/characters/zorkaiju/right-arm.svg"
  41197. }
  41198. },
  41199. tail: {
  41200. height: math.unit(104, "feet"),
  41201. name: "Tail",
  41202. image: {
  41203. source: "./media/characters/zorkaiju/tail.svg"
  41204. }
  41205. },
  41206. tailExtended: {
  41207. height: math.unit(104, "feet"),
  41208. name: "Tail (Extended)",
  41209. image: {
  41210. source: "./media/characters/zorkaiju/tail-extended.svg"
  41211. }
  41212. },
  41213. tailBottom: {
  41214. height: math.unit(104, "feet"),
  41215. name: "Tail Bottom",
  41216. image: {
  41217. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41218. }
  41219. },
  41220. crystal: {
  41221. height: math.unit(27.54, "feet"),
  41222. name: "Crystal",
  41223. image: {
  41224. source: "./media/characters/zorkaiju/crystal.svg"
  41225. }
  41226. },
  41227. },
  41228. [
  41229. {
  41230. name: "Kaiju",
  41231. height: math.unit(325, "feet"),
  41232. default: true
  41233. },
  41234. ]
  41235. ))
  41236. characterMakers.push(() => makeCharacter(
  41237. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41238. {
  41239. front: {
  41240. height: math.unit(6 + 1/12, "feet"),
  41241. weight: math.unit(115, "lb"),
  41242. name: "Front",
  41243. image: {
  41244. source: "./media/characters/bailey-belfry/front.svg",
  41245. extra: 1240/1121,
  41246. bottom: 101/1341
  41247. }
  41248. },
  41249. },
  41250. [
  41251. {
  41252. name: "Normal",
  41253. height: math.unit(6 + 1/12, "feet"),
  41254. default: true
  41255. },
  41256. ]
  41257. ))
  41258. characterMakers.push(() => makeCharacter(
  41259. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41260. {
  41261. side: {
  41262. height: math.unit(4, "meters"),
  41263. weight: math.unit(250, "kg"),
  41264. name: "Side",
  41265. image: {
  41266. source: "./media/characters/blacky/side.svg",
  41267. extra: 1027/919,
  41268. bottom: 43/1070
  41269. }
  41270. },
  41271. maw: {
  41272. height: math.unit(1, "meters"),
  41273. name: "Maw",
  41274. image: {
  41275. source: "./media/characters/blacky/maw.svg"
  41276. }
  41277. },
  41278. paw: {
  41279. height: math.unit(1, "meters"),
  41280. name: "Paw",
  41281. image: {
  41282. source: "./media/characters/blacky/paw.svg"
  41283. }
  41284. },
  41285. },
  41286. [
  41287. {
  41288. name: "Normal",
  41289. height: math.unit(4, "meters"),
  41290. default: true
  41291. },
  41292. ]
  41293. ))
  41294. characterMakers.push(() => makeCharacter(
  41295. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41296. {
  41297. front: {
  41298. height: math.unit(170, "cm"),
  41299. weight: math.unit(66, "kg"),
  41300. name: "Front",
  41301. image: {
  41302. source: "./media/characters/thux-ei/front.svg",
  41303. extra: 1109/1011,
  41304. bottom: 8/1117
  41305. }
  41306. },
  41307. },
  41308. [
  41309. {
  41310. name: "Normal",
  41311. height: math.unit(170, "cm"),
  41312. default: true
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41318. {
  41319. front: {
  41320. height: math.unit(5, "feet"),
  41321. weight: math.unit(120, "lb"),
  41322. name: "Front",
  41323. image: {
  41324. source: "./media/characters/roxanne-voltaire/front.svg",
  41325. extra: 1901/1779,
  41326. bottom: 53/1954
  41327. }
  41328. },
  41329. },
  41330. [
  41331. {
  41332. name: "Normal",
  41333. height: math.unit(5, "feet"),
  41334. default: true
  41335. },
  41336. {
  41337. name: "Giant",
  41338. height: math.unit(50, "feet")
  41339. },
  41340. {
  41341. name: "Titan",
  41342. height: math.unit(500, "feet")
  41343. },
  41344. {
  41345. name: "Macro",
  41346. height: math.unit(5000, "feet")
  41347. },
  41348. {
  41349. name: "Megamacro",
  41350. height: math.unit(50000, "feet")
  41351. },
  41352. {
  41353. name: "Gigamacro",
  41354. height: math.unit(500000, "feet")
  41355. },
  41356. {
  41357. name: "Teramacro",
  41358. height: math.unit(5e6, "feet")
  41359. },
  41360. ]
  41361. ))
  41362. characterMakers.push(() => makeCharacter(
  41363. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41364. {
  41365. front: {
  41366. height: math.unit(6 + 2/12, "feet"),
  41367. name: "Front",
  41368. image: {
  41369. source: "./media/characters/squeaks/front.svg",
  41370. extra: 1823/1768,
  41371. bottom: 138/1961
  41372. }
  41373. },
  41374. },
  41375. [
  41376. {
  41377. name: "Micro",
  41378. height: math.unit(0.5, "inches")
  41379. },
  41380. {
  41381. name: "Normal",
  41382. height: math.unit(6 + 2/12, "feet"),
  41383. default: true
  41384. },
  41385. {
  41386. name: "Macro",
  41387. height: math.unit(600, "feet")
  41388. },
  41389. ]
  41390. ))
  41391. characterMakers.push(() => makeCharacter(
  41392. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41393. {
  41394. front: {
  41395. height: math.unit(1.72, "meters"),
  41396. name: "Front",
  41397. image: {
  41398. source: "./media/characters/archinger/front.svg",
  41399. extra: 1861/1675,
  41400. bottom: 125/1986
  41401. }
  41402. },
  41403. back: {
  41404. height: math.unit(1.72, "meters"),
  41405. name: "Back",
  41406. image: {
  41407. source: "./media/characters/archinger/back.svg",
  41408. extra: 1844/1701,
  41409. bottom: 104/1948
  41410. }
  41411. },
  41412. cock: {
  41413. height: math.unit(0.59, "feet"),
  41414. name: "Cock",
  41415. image: {
  41416. source: "./media/characters/archinger/cock.svg"
  41417. }
  41418. },
  41419. },
  41420. [
  41421. {
  41422. name: "Normal",
  41423. height: math.unit(1.72, "meters"),
  41424. default: true
  41425. },
  41426. {
  41427. name: "Macro",
  41428. height: math.unit(84, "meters")
  41429. },
  41430. {
  41431. name: "Macro+",
  41432. height: math.unit(112, "meters")
  41433. },
  41434. {
  41435. name: "Macro++",
  41436. height: math.unit(960, "meters")
  41437. },
  41438. {
  41439. name: "Macro+++",
  41440. height: math.unit(4, "km")
  41441. },
  41442. {
  41443. name: "Macro++++",
  41444. height: math.unit(48, "km")
  41445. },
  41446. {
  41447. name: "Macro+++++",
  41448. height: math.unit(4500, "km")
  41449. },
  41450. ]
  41451. ))
  41452. characterMakers.push(() => makeCharacter(
  41453. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41454. {
  41455. front: {
  41456. height: math.unit(5 + 5/12, "feet"),
  41457. name: "Front",
  41458. image: {
  41459. source: "./media/characters/alsnapz/front.svg",
  41460. extra: 1157/1065,
  41461. bottom: 42/1199
  41462. }
  41463. },
  41464. },
  41465. [
  41466. {
  41467. name: "Normal",
  41468. height: math.unit(5 + 5/12, "feet"),
  41469. default: true
  41470. },
  41471. ]
  41472. ))
  41473. characterMakers.push(() => makeCharacter(
  41474. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41475. {
  41476. side: {
  41477. height: math.unit(3.2, "earths"),
  41478. name: "Side",
  41479. image: {
  41480. source: "./media/characters/mag/side.svg",
  41481. extra: 1331/1008,
  41482. bottom: 52/1383
  41483. }
  41484. },
  41485. wing: {
  41486. height: math.unit(1.94, "earths"),
  41487. name: "Wing",
  41488. image: {
  41489. source: "./media/characters/mag/wing.svg"
  41490. }
  41491. },
  41492. dick: {
  41493. height: math.unit(1.8, "earths"),
  41494. name: "Dick",
  41495. image: {
  41496. source: "./media/characters/mag/dick.svg"
  41497. }
  41498. },
  41499. ass: {
  41500. height: math.unit(1.33, "earths"),
  41501. name: "Ass",
  41502. image: {
  41503. source: "./media/characters/mag/ass.svg"
  41504. }
  41505. },
  41506. head: {
  41507. height: math.unit(1.1, "earths"),
  41508. name: "Head",
  41509. image: {
  41510. source: "./media/characters/mag/head.svg"
  41511. }
  41512. },
  41513. maw: {
  41514. height: math.unit(1.62, "earths"),
  41515. name: "Maw",
  41516. image: {
  41517. source: "./media/characters/mag/maw.svg"
  41518. }
  41519. },
  41520. },
  41521. [
  41522. {
  41523. name: "Small",
  41524. height: math.unit(162, "feet")
  41525. },
  41526. {
  41527. name: "Normal",
  41528. height: math.unit(3.2, "earths"),
  41529. default: true
  41530. },
  41531. ]
  41532. ))
  41533. characterMakers.push(() => makeCharacter(
  41534. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41535. {
  41536. front: {
  41537. height: math.unit(512, "feet"),
  41538. weight: math.unit(63509, "tonnes"),
  41539. name: "Front",
  41540. image: {
  41541. source: "./media/characters/vorrel-harroc/front.svg",
  41542. extra: 1075/1063,
  41543. bottom: 62/1137
  41544. }
  41545. },
  41546. },
  41547. [
  41548. {
  41549. name: "Normal",
  41550. height: math.unit(10, "feet")
  41551. },
  41552. {
  41553. name: "Macro",
  41554. height: math.unit(512, "feet"),
  41555. default: true
  41556. },
  41557. {
  41558. name: "Megamacro",
  41559. height: math.unit(256, "miles")
  41560. },
  41561. {
  41562. name: "Gigamacro",
  41563. height: math.unit(4096, "miles")
  41564. },
  41565. ]
  41566. ))
  41567. characterMakers.push(() => makeCharacter(
  41568. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41569. {
  41570. side: {
  41571. height: math.unit(50, "feet"),
  41572. name: "Side",
  41573. image: {
  41574. source: "./media/characters/froimar/side.svg",
  41575. extra: 855/638,
  41576. bottom: 99/954
  41577. }
  41578. },
  41579. },
  41580. [
  41581. {
  41582. name: "Macro",
  41583. height: math.unit(50, "feet"),
  41584. default: true
  41585. },
  41586. ]
  41587. ))
  41588. characterMakers.push(() => makeCharacter(
  41589. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41590. {
  41591. front: {
  41592. height: math.unit(210, "miles"),
  41593. name: "Front",
  41594. image: {
  41595. source: "./media/characters/timothy/front.svg",
  41596. extra: 1007/943,
  41597. bottom: 62/1069
  41598. }
  41599. },
  41600. frontSkirt: {
  41601. height: math.unit(210, "miles"),
  41602. name: "Front (Skirt)",
  41603. image: {
  41604. source: "./media/characters/timothy/front-skirt.svg",
  41605. extra: 1007/943,
  41606. bottom: 62/1069
  41607. }
  41608. },
  41609. frontCoat: {
  41610. height: math.unit(210, "miles"),
  41611. name: "Front (Coat)",
  41612. image: {
  41613. source: "./media/characters/timothy/front-coat.svg",
  41614. extra: 1007/943,
  41615. bottom: 62/1069
  41616. }
  41617. },
  41618. },
  41619. [
  41620. {
  41621. name: "Macro",
  41622. height: math.unit(210, "miles"),
  41623. default: true
  41624. },
  41625. {
  41626. name: "Megamacro",
  41627. height: math.unit(210000, "miles")
  41628. },
  41629. ]
  41630. ))
  41631. characterMakers.push(() => makeCharacter(
  41632. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41633. {
  41634. front: {
  41635. height: math.unit(188, "feet"),
  41636. name: "Front",
  41637. image: {
  41638. source: "./media/characters/pyotr/front.svg",
  41639. extra: 1912/1826,
  41640. bottom: 18/1930
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "Macro",
  41647. height: math.unit(188, "feet"),
  41648. default: true
  41649. },
  41650. {
  41651. name: "Megamacro",
  41652. height: math.unit(8, "miles")
  41653. },
  41654. ]
  41655. ))
  41656. characterMakers.push(() => makeCharacter(
  41657. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41658. {
  41659. side: {
  41660. height: math.unit(10, "feet"),
  41661. weight: math.unit(4500, "lb"),
  41662. name: "Side",
  41663. image: {
  41664. source: "./media/characters/ackart/side.svg",
  41665. extra: 1776/1668,
  41666. bottom: 116/1892
  41667. }
  41668. },
  41669. },
  41670. [
  41671. {
  41672. name: "Normal",
  41673. height: math.unit(10, "feet"),
  41674. default: true
  41675. },
  41676. ]
  41677. ))
  41678. characterMakers.push(() => makeCharacter(
  41679. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41680. {
  41681. side: {
  41682. height: math.unit(21, "feet"),
  41683. name: "Side",
  41684. image: {
  41685. source: "./media/characters/nolow/side.svg",
  41686. extra: 1484/1434,
  41687. bottom: 85/1569
  41688. }
  41689. },
  41690. sideErect: {
  41691. height: math.unit(21, "feet"),
  41692. name: "Side-erect",
  41693. image: {
  41694. source: "./media/characters/nolow/side-erect.svg",
  41695. extra: 1484/1434,
  41696. bottom: 85/1569
  41697. }
  41698. },
  41699. },
  41700. [
  41701. {
  41702. name: "Regular",
  41703. height: math.unit(12, "feet")
  41704. },
  41705. {
  41706. name: "Big Chee",
  41707. height: math.unit(21, "feet"),
  41708. default: true
  41709. },
  41710. ]
  41711. ))
  41712. characterMakers.push(() => makeCharacter(
  41713. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41714. {
  41715. front: {
  41716. height: math.unit(7, "feet"),
  41717. weight: math.unit(250, "lb"),
  41718. name: "Front",
  41719. image: {
  41720. source: "./media/characters/nines/front.svg",
  41721. extra: 1741/1607,
  41722. bottom: 41/1782
  41723. }
  41724. },
  41725. side: {
  41726. height: math.unit(7, "feet"),
  41727. weight: math.unit(250, "lb"),
  41728. name: "Side",
  41729. image: {
  41730. source: "./media/characters/nines/side.svg",
  41731. extra: 1854/1735,
  41732. bottom: 93/1947
  41733. }
  41734. },
  41735. back: {
  41736. height: math.unit(7, "feet"),
  41737. weight: math.unit(250, "lb"),
  41738. name: "Back",
  41739. image: {
  41740. source: "./media/characters/nines/back.svg",
  41741. extra: 1748/1615,
  41742. bottom: 20/1768
  41743. }
  41744. },
  41745. },
  41746. [
  41747. {
  41748. name: "Megamacro",
  41749. height: math.unit(99, "km"),
  41750. default: true
  41751. },
  41752. ]
  41753. ))
  41754. characterMakers.push(() => makeCharacter(
  41755. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41756. {
  41757. front: {
  41758. height: math.unit(5 + 10/12, "feet"),
  41759. weight: math.unit(210, "lb"),
  41760. name: "Front",
  41761. image: {
  41762. source: "./media/characters/zenith/front.svg",
  41763. extra: 1531/1452,
  41764. bottom: 198/1729
  41765. }
  41766. },
  41767. back: {
  41768. height: math.unit(5 + 10/12, "feet"),
  41769. weight: math.unit(210, "lb"),
  41770. name: "Back",
  41771. image: {
  41772. source: "./media/characters/zenith/back.svg",
  41773. extra: 1571/1487,
  41774. bottom: 75/1646
  41775. }
  41776. },
  41777. },
  41778. [
  41779. {
  41780. name: "Normal",
  41781. height: math.unit(5 + 10/12, "feet"),
  41782. default: true
  41783. }
  41784. ]
  41785. ))
  41786. characterMakers.push(() => makeCharacter(
  41787. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41788. {
  41789. front: {
  41790. height: math.unit(4, "feet"),
  41791. weight: math.unit(60, "lb"),
  41792. name: "Front",
  41793. image: {
  41794. source: "./media/characters/jasper/front.svg",
  41795. extra: 1450/1379,
  41796. bottom: 19/1469
  41797. }
  41798. },
  41799. },
  41800. [
  41801. {
  41802. name: "Normal",
  41803. height: math.unit(4, "feet"),
  41804. default: true
  41805. },
  41806. ]
  41807. ))
  41808. characterMakers.push(() => makeCharacter(
  41809. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41810. {
  41811. front: {
  41812. height: math.unit(6 + 5/12, "feet"),
  41813. weight: math.unit(290, "lb"),
  41814. name: "Front",
  41815. image: {
  41816. source: "./media/characters/tiberius-thyben/front.svg",
  41817. extra: 757/739,
  41818. bottom: 39/796
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Micro",
  41825. height: math.unit(1.5, "inches")
  41826. },
  41827. {
  41828. name: "Normal",
  41829. height: math.unit(6 + 5/12, "feet"),
  41830. default: true
  41831. },
  41832. {
  41833. name: "Macro",
  41834. height: math.unit(300, "feet")
  41835. },
  41836. ]
  41837. ))
  41838. characterMakers.push(() => makeCharacter(
  41839. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41840. {
  41841. front: {
  41842. height: math.unit(5 + 6/12, "feet"),
  41843. weight: math.unit(60, "kg"),
  41844. name: "Front",
  41845. image: {
  41846. source: "./media/characters/sabre/front.svg",
  41847. extra: 738/671,
  41848. bottom: 27/765
  41849. }
  41850. },
  41851. },
  41852. [
  41853. {
  41854. name: "Teeny",
  41855. height: math.unit(2, "inches")
  41856. },
  41857. {
  41858. name: "Smol",
  41859. height: math.unit(8, "inches")
  41860. },
  41861. {
  41862. name: "Normal",
  41863. height: math.unit(5 + 6/12, "feet"),
  41864. default: true
  41865. },
  41866. {
  41867. name: "Mini-Macro",
  41868. height: math.unit(15, "feet")
  41869. },
  41870. {
  41871. name: "Macro",
  41872. height: math.unit(50, "feet")
  41873. },
  41874. ]
  41875. ))
  41876. characterMakers.push(() => makeCharacter(
  41877. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41878. {
  41879. front: {
  41880. height: math.unit(6 + 4/12, "feet"),
  41881. weight: math.unit(170, "lb"),
  41882. name: "Front",
  41883. image: {
  41884. source: "./media/characters/charlie/front.svg",
  41885. extra: 1348/1228,
  41886. bottom: 15/1363
  41887. }
  41888. },
  41889. },
  41890. [
  41891. {
  41892. name: "Macro",
  41893. height: math.unit(1700, "meters"),
  41894. default: true
  41895. },
  41896. {
  41897. name: "MegaMacro",
  41898. height: math.unit(20400, "meters")
  41899. },
  41900. ]
  41901. ))
  41902. characterMakers.push(() => makeCharacter(
  41903. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41904. {
  41905. front: {
  41906. height: math.unit(6 + 3/12, "feet"),
  41907. weight: math.unit(185, "lb"),
  41908. name: "Front",
  41909. image: {
  41910. source: "./media/characters/susan-grant/front.svg",
  41911. extra: 1351/1327,
  41912. bottom: 26/1377
  41913. }
  41914. },
  41915. },
  41916. [
  41917. {
  41918. name: "Normal",
  41919. height: math.unit(6 + 3/12, "feet"),
  41920. default: true
  41921. },
  41922. {
  41923. name: "Macro",
  41924. height: math.unit(225, "feet")
  41925. },
  41926. {
  41927. name: "Macro+",
  41928. height: math.unit(900, "feet")
  41929. },
  41930. {
  41931. name: "MegaMacro",
  41932. height: math.unit(14400, "feet")
  41933. },
  41934. ]
  41935. ))
  41936. characterMakers.push(() => makeCharacter(
  41937. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41938. {
  41939. front: {
  41940. height: math.unit(5 + 4/12, "feet"),
  41941. weight: math.unit(110, "lb"),
  41942. name: "Front",
  41943. image: {
  41944. source: "./media/characters/axel-isanov/front.svg",
  41945. extra: 1096/1065,
  41946. bottom: 13/1109
  41947. }
  41948. },
  41949. },
  41950. [
  41951. {
  41952. name: "Normal",
  41953. height: math.unit(5 + 4/12, "feet"),
  41954. default: true
  41955. },
  41956. ]
  41957. ))
  41958. characterMakers.push(() => makeCharacter(
  41959. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41960. {
  41961. front: {
  41962. height: math.unit(9, "feet"),
  41963. weight: math.unit(467, "lb"),
  41964. name: "Front",
  41965. image: {
  41966. source: "./media/characters/necahual/front.svg",
  41967. extra: 920/873,
  41968. bottom: 26/946
  41969. }
  41970. },
  41971. back: {
  41972. height: math.unit(9, "feet"),
  41973. weight: math.unit(467, "lb"),
  41974. name: "Back",
  41975. image: {
  41976. source: "./media/characters/necahual/back.svg",
  41977. extra: 930/884,
  41978. bottom: 16/946
  41979. }
  41980. },
  41981. frontUnderwear: {
  41982. height: math.unit(9, "feet"),
  41983. weight: math.unit(467, "lb"),
  41984. name: "Front (Underwear)",
  41985. image: {
  41986. source: "./media/characters/necahual/front-underwear.svg",
  41987. extra: 920/873,
  41988. bottom: 26/946
  41989. }
  41990. },
  41991. frontDressed: {
  41992. height: math.unit(9, "feet"),
  41993. weight: math.unit(467, "lb"),
  41994. name: "Front (Dressed)",
  41995. image: {
  41996. source: "./media/characters/necahual/front-dressed.svg",
  41997. extra: 920/873,
  41998. bottom: 26/946
  41999. }
  42000. },
  42001. },
  42002. [
  42003. {
  42004. name: "Comprsesed",
  42005. height: math.unit(9, "feet")
  42006. },
  42007. {
  42008. name: "Natural",
  42009. height: math.unit(15, "feet"),
  42010. default: true
  42011. },
  42012. {
  42013. name: "Boosted",
  42014. height: math.unit(50, "feet")
  42015. },
  42016. {
  42017. name: "Boosted+",
  42018. height: math.unit(150, "feet")
  42019. },
  42020. {
  42021. name: "Max",
  42022. height: math.unit(500, "feet")
  42023. },
  42024. ]
  42025. ))
  42026. characterMakers.push(() => makeCharacter(
  42027. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42028. {
  42029. front: {
  42030. height: math.unit(22 + 1/12, "feet"),
  42031. weight: math.unit(3200, "lb"),
  42032. name: "Front",
  42033. image: {
  42034. source: "./media/characters/theo-acacia/front.svg",
  42035. extra: 1796/1741,
  42036. bottom: 83/1879
  42037. }
  42038. },
  42039. frontUnderwear: {
  42040. height: math.unit(22 + 1/12, "feet"),
  42041. weight: math.unit(3200, "lb"),
  42042. name: "Front (Underwear)",
  42043. image: {
  42044. source: "./media/characters/theo-acacia/front-underwear.svg",
  42045. extra: 1796/1741,
  42046. bottom: 83/1879
  42047. }
  42048. },
  42049. frontNude: {
  42050. height: math.unit(22 + 1/12, "feet"),
  42051. weight: math.unit(3200, "lb"),
  42052. name: "Front (Nude)",
  42053. image: {
  42054. source: "./media/characters/theo-acacia/front-nude.svg",
  42055. extra: 1796/1741,
  42056. bottom: 83/1879
  42057. }
  42058. },
  42059. },
  42060. [
  42061. {
  42062. name: "Normal",
  42063. height: math.unit(22 + 1/12, "feet"),
  42064. default: true
  42065. },
  42066. ]
  42067. ))
  42068. characterMakers.push(() => makeCharacter(
  42069. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42070. {
  42071. front: {
  42072. height: math.unit(20, "feet"),
  42073. name: "Front",
  42074. image: {
  42075. source: "./media/characters/astra/front.svg",
  42076. extra: 1850/1714,
  42077. bottom: 106/1956
  42078. }
  42079. },
  42080. frontUndressed: {
  42081. height: math.unit(20, "feet"),
  42082. name: "Front (Undressed)",
  42083. image: {
  42084. source: "./media/characters/astra/front-undressed.svg",
  42085. extra: 1926/1749,
  42086. bottom: 0/1926
  42087. }
  42088. },
  42089. hand: {
  42090. height: math.unit(1.53, "feet"),
  42091. name: "Hand",
  42092. image: {
  42093. source: "./media/characters/astra/hand.svg"
  42094. }
  42095. },
  42096. paw: {
  42097. height: math.unit(1.53, "feet"),
  42098. name: "Paw",
  42099. image: {
  42100. source: "./media/characters/astra/paw.svg"
  42101. }
  42102. },
  42103. },
  42104. [
  42105. {
  42106. name: "Smallest",
  42107. height: math.unit(20, "feet")
  42108. },
  42109. {
  42110. name: "Normal",
  42111. height: math.unit(1e9, "miles"),
  42112. default: true
  42113. },
  42114. {
  42115. name: "Larger",
  42116. height: math.unit(5, "multiverses")
  42117. },
  42118. {
  42119. name: "Largest",
  42120. height: math.unit(1e9, "multiverses")
  42121. },
  42122. ]
  42123. ))
  42124. characterMakers.push(() => makeCharacter(
  42125. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42126. {
  42127. front: {
  42128. height: math.unit(8, "feet"),
  42129. name: "Front",
  42130. image: {
  42131. source: "./media/characters/breanna/front.svg",
  42132. extra: 1912/1632,
  42133. bottom: 33/1945
  42134. }
  42135. },
  42136. },
  42137. [
  42138. {
  42139. name: "Smallest",
  42140. height: math.unit(8, "feet")
  42141. },
  42142. {
  42143. name: "Normal",
  42144. height: math.unit(1, "mile"),
  42145. default: true
  42146. },
  42147. {
  42148. name: "Maximum",
  42149. height: math.unit(1500000000000, "lightyears")
  42150. },
  42151. ]
  42152. ))
  42153. characterMakers.push(() => makeCharacter(
  42154. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42155. {
  42156. front: {
  42157. height: math.unit(5 + 11/12, "feet"),
  42158. weight: math.unit(155, "lb"),
  42159. name: "Front",
  42160. image: {
  42161. source: "./media/characters/cai/front.svg",
  42162. extra: 1823/1702,
  42163. bottom: 32/1855
  42164. }
  42165. },
  42166. back: {
  42167. height: math.unit(5 + 11/12, "feet"),
  42168. weight: math.unit(155, "lb"),
  42169. name: "Back",
  42170. image: {
  42171. source: "./media/characters/cai/back.svg",
  42172. extra: 1809/1708,
  42173. bottom: 31/1840
  42174. }
  42175. },
  42176. },
  42177. [
  42178. {
  42179. name: "Normal",
  42180. height: math.unit(5 + 11/12, "feet"),
  42181. default: true
  42182. },
  42183. {
  42184. name: "Big",
  42185. height: math.unit(15, "feet")
  42186. },
  42187. {
  42188. name: "Macro",
  42189. height: math.unit(200, "feet")
  42190. },
  42191. ]
  42192. ))
  42193. characterMakers.push(() => makeCharacter(
  42194. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42195. {
  42196. front: {
  42197. height: math.unit(5 + 6/12, "feet"),
  42198. weight: math.unit(160, "lb"),
  42199. name: "Front",
  42200. image: {
  42201. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42202. extra: 1227/1174,
  42203. bottom: 37/1264
  42204. }
  42205. },
  42206. },
  42207. [
  42208. {
  42209. name: "Macro",
  42210. height: math.unit(444, "meters"),
  42211. default: true
  42212. },
  42213. ]
  42214. ))
  42215. characterMakers.push(() => makeCharacter(
  42216. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42217. {
  42218. front: {
  42219. height: math.unit(18 + 7/12, "feet"),
  42220. name: "Front",
  42221. image: {
  42222. source: "./media/characters/rex/front.svg",
  42223. extra: 1941/1807,
  42224. bottom: 66/2007
  42225. }
  42226. },
  42227. back: {
  42228. height: math.unit(18 + 7/12, "feet"),
  42229. name: "Back",
  42230. image: {
  42231. source: "./media/characters/rex/back.svg",
  42232. extra: 1937/1822,
  42233. bottom: 42/1979
  42234. }
  42235. },
  42236. boot: {
  42237. height: math.unit(3.45, "feet"),
  42238. name: "Boot",
  42239. image: {
  42240. source: "./media/characters/rex/boot.svg"
  42241. }
  42242. },
  42243. paw: {
  42244. height: math.unit(4.17, "feet"),
  42245. name: "Paw",
  42246. image: {
  42247. source: "./media/characters/rex/paw.svg"
  42248. }
  42249. },
  42250. head: {
  42251. height: math.unit(6.728, "feet"),
  42252. name: "Head",
  42253. image: {
  42254. source: "./media/characters/rex/head.svg"
  42255. }
  42256. },
  42257. },
  42258. [
  42259. {
  42260. name: "Nano",
  42261. height: math.unit(18 + 7/12, "feet")
  42262. },
  42263. {
  42264. name: "Micro",
  42265. height: math.unit(1.5, "megameters")
  42266. },
  42267. {
  42268. name: "Normal",
  42269. height: math.unit(440, "megameters"),
  42270. default: true
  42271. },
  42272. {
  42273. name: "Macro",
  42274. height: math.unit(2.5, "gigameters")
  42275. },
  42276. {
  42277. name: "Gigamacro",
  42278. height: math.unit(2, "galaxies")
  42279. },
  42280. ]
  42281. ))
  42282. characterMakers.push(() => makeCharacter(
  42283. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42284. {
  42285. side: {
  42286. height: math.unit(32, "feet"),
  42287. weight: math.unit(250000, "lb"),
  42288. name: "Side",
  42289. image: {
  42290. source: "./media/characters/silverwing/side.svg",
  42291. extra: 1100/1019,
  42292. bottom: 204/1304
  42293. }
  42294. },
  42295. },
  42296. [
  42297. {
  42298. name: "Normal",
  42299. height: math.unit(32, "feet"),
  42300. default: true
  42301. },
  42302. ]
  42303. ))
  42304. characterMakers.push(() => makeCharacter(
  42305. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42306. {
  42307. front: {
  42308. height: math.unit(6 + 6/12, "feet"),
  42309. weight: math.unit(350, "lb"),
  42310. name: "Front",
  42311. image: {
  42312. source: "./media/characters/tristan-hawthorne/front.svg",
  42313. extra: 1159/1124,
  42314. bottom: 37/1196
  42315. },
  42316. form: "labrador",
  42317. default: true
  42318. },
  42319. skunkFront: {
  42320. height: math.unit(4 + 6/12, "feet"),
  42321. weight: math.unit(120, "lb"),
  42322. name: "Front",
  42323. image: {
  42324. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42325. extra: 1609/1551,
  42326. bottom: 169/1778
  42327. },
  42328. form: "skunk",
  42329. default: true
  42330. },
  42331. },
  42332. [
  42333. {
  42334. name: "Normal",
  42335. height: math.unit(6 + 6/12, "feet"),
  42336. form: "labrador",
  42337. default: true
  42338. },
  42339. {
  42340. name: "Normal",
  42341. height: math.unit(4 + 6/12, "feet"),
  42342. form: "skunk",
  42343. default: true
  42344. },
  42345. ],
  42346. {
  42347. "labrador": {
  42348. name: "Labrador",
  42349. default: true
  42350. },
  42351. "skunk": {
  42352. name: "Skunk"
  42353. }
  42354. }
  42355. ))
  42356. characterMakers.push(() => makeCharacter(
  42357. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42358. {
  42359. front: {
  42360. height: math.unit(5 + 11/12, "feet"),
  42361. weight: math.unit(190, "lb"),
  42362. name: "Front",
  42363. image: {
  42364. source: "./media/characters/mizu/front.svg",
  42365. extra: 1988/1788,
  42366. bottom: 14/2002
  42367. }
  42368. },
  42369. },
  42370. [
  42371. {
  42372. name: "Normal",
  42373. height: math.unit(5 + 11/12, "feet"),
  42374. default: true
  42375. },
  42376. ]
  42377. ))
  42378. characterMakers.push(() => makeCharacter(
  42379. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42380. {
  42381. front: {
  42382. height: math.unit(1.7, "feet"),
  42383. weight: math.unit(50, "lb"),
  42384. name: "Front",
  42385. image: {
  42386. source: "./media/characters/dechroma/front.svg",
  42387. extra: 1095/859,
  42388. bottom: 64/1159
  42389. }
  42390. },
  42391. },
  42392. [
  42393. {
  42394. name: "Normal",
  42395. height: math.unit(1.7, "feet"),
  42396. default: true
  42397. },
  42398. ]
  42399. ))
  42400. characterMakers.push(() => makeCharacter(
  42401. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42402. {
  42403. side: {
  42404. height: math.unit(30, "feet"),
  42405. name: "Side",
  42406. image: {
  42407. source: "./media/characters/veluren-thanazel/side.svg",
  42408. extra: 1611/633,
  42409. bottom: 118/1729
  42410. }
  42411. },
  42412. front: {
  42413. height: math.unit(30, "feet"),
  42414. name: "Front",
  42415. image: {
  42416. source: "./media/characters/veluren-thanazel/front.svg",
  42417. extra: 1486/636,
  42418. bottom: 238/1724
  42419. }
  42420. },
  42421. head: {
  42422. height: math.unit(21.4, "feet"),
  42423. name: "Head",
  42424. image: {
  42425. source: "./media/characters/veluren-thanazel/head.svg"
  42426. }
  42427. },
  42428. genitals: {
  42429. height: math.unit(19.4, "feet"),
  42430. name: "Genitals",
  42431. image: {
  42432. source: "./media/characters/veluren-thanazel/genitals.svg"
  42433. }
  42434. },
  42435. },
  42436. [
  42437. {
  42438. name: "Social",
  42439. height: math.unit(6, "feet")
  42440. },
  42441. {
  42442. name: "Play",
  42443. height: math.unit(12, "feet")
  42444. },
  42445. {
  42446. name: "True",
  42447. height: math.unit(30, "feet"),
  42448. default: true
  42449. },
  42450. ]
  42451. ))
  42452. characterMakers.push(() => makeCharacter(
  42453. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42454. {
  42455. front: {
  42456. height: math.unit(7 + 6/12, "feet"),
  42457. weight: math.unit(500, "kg"),
  42458. name: "Front",
  42459. image: {
  42460. source: "./media/characters/arcturas/front.svg",
  42461. extra: 1700/1500,
  42462. bottom: 145/1845
  42463. }
  42464. },
  42465. },
  42466. [
  42467. {
  42468. name: "Normal",
  42469. height: math.unit(7 + 6/12, "feet"),
  42470. default: true
  42471. },
  42472. ]
  42473. ))
  42474. characterMakers.push(() => makeCharacter(
  42475. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42476. {
  42477. side: {
  42478. height: math.unit(6, "feet"),
  42479. weight: math.unit(2, "tons"),
  42480. name: "Side",
  42481. image: {
  42482. source: "./media/characters/vitaen/side.svg",
  42483. extra: 1157/617,
  42484. bottom: 122/1279
  42485. }
  42486. },
  42487. },
  42488. [
  42489. {
  42490. name: "Normal",
  42491. height: math.unit(6, "feet"),
  42492. default: true
  42493. },
  42494. ]
  42495. ))
  42496. characterMakers.push(() => makeCharacter(
  42497. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42498. {
  42499. front: {
  42500. height: math.unit(19, "feet"),
  42501. name: "Front",
  42502. image: {
  42503. source: "./media/characters/fia-dreamweaver/front.svg",
  42504. extra: 1630/1504,
  42505. bottom: 25/1655
  42506. }
  42507. },
  42508. },
  42509. [
  42510. {
  42511. name: "Normal",
  42512. height: math.unit(19, "feet"),
  42513. default: true
  42514. },
  42515. ]
  42516. ))
  42517. characterMakers.push(() => makeCharacter(
  42518. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42519. {
  42520. front: {
  42521. height: math.unit(5 + 4/12, "feet"),
  42522. name: "Front",
  42523. image: {
  42524. source: "./media/characters/artan/front.svg",
  42525. extra: 1618/1535,
  42526. bottom: 46/1664
  42527. }
  42528. },
  42529. back: {
  42530. height: math.unit(5 + 4/12, "feet"),
  42531. name: "Back",
  42532. image: {
  42533. source: "./media/characters/artan/back.svg",
  42534. extra: 1618/1543,
  42535. bottom: 31/1649
  42536. }
  42537. },
  42538. },
  42539. [
  42540. {
  42541. name: "Normal",
  42542. height: math.unit(5 + 4/12, "feet"),
  42543. default: true
  42544. },
  42545. ]
  42546. ))
  42547. characterMakers.push(() => makeCharacter(
  42548. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42549. {
  42550. side: {
  42551. height: math.unit(182, "cm"),
  42552. weight: math.unit(1000, "lb"),
  42553. name: "Side",
  42554. image: {
  42555. source: "./media/characters/silver-dragon/side.svg",
  42556. extra: 710/287,
  42557. bottom: 88/798
  42558. }
  42559. },
  42560. },
  42561. [
  42562. {
  42563. name: "Normal",
  42564. height: math.unit(182, "cm"),
  42565. default: true
  42566. },
  42567. ]
  42568. ))
  42569. characterMakers.push(() => makeCharacter(
  42570. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42571. {
  42572. side: {
  42573. height: math.unit(6 + 6/12, "feet"),
  42574. weight: math.unit(1.5, "tons"),
  42575. name: "Side",
  42576. image: {
  42577. source: "./media/characters/zephyr/side.svg",
  42578. extra: 1433/586,
  42579. bottom: 109/1542
  42580. }
  42581. },
  42582. },
  42583. [
  42584. {
  42585. name: "Normal",
  42586. height: math.unit(6 + 6/12, "feet"),
  42587. default: true
  42588. },
  42589. ]
  42590. ))
  42591. characterMakers.push(() => makeCharacter(
  42592. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42593. {
  42594. side: {
  42595. height: math.unit(1, "feet"),
  42596. name: "Side",
  42597. image: {
  42598. source: "./media/characters/vixye/side.svg",
  42599. extra: 632/541,
  42600. bottom: 0/632
  42601. }
  42602. },
  42603. },
  42604. [
  42605. {
  42606. name: "Normal",
  42607. height: math.unit(1, "feet"),
  42608. default: true
  42609. },
  42610. {
  42611. name: "True",
  42612. height: math.unit(1e15, "multiverses")
  42613. },
  42614. ]
  42615. ))
  42616. characterMakers.push(() => makeCharacter(
  42617. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42618. {
  42619. front: {
  42620. height: math.unit(8 + 2/12, "feet"),
  42621. weight: math.unit(650, "lb"),
  42622. name: "Front",
  42623. image: {
  42624. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42625. extra: 1174/1137,
  42626. bottom: 82/1256
  42627. }
  42628. },
  42629. back: {
  42630. height: math.unit(8 + 2/12, "feet"),
  42631. weight: math.unit(650, "lb"),
  42632. name: "Back",
  42633. image: {
  42634. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42635. extra: 1204/1157,
  42636. bottom: 46/1250
  42637. }
  42638. },
  42639. },
  42640. [
  42641. {
  42642. name: "Wildform",
  42643. height: math.unit(8 + 2/12, "feet"),
  42644. default: true
  42645. },
  42646. ]
  42647. ))
  42648. characterMakers.push(() => makeCharacter(
  42649. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42650. {
  42651. front: {
  42652. height: math.unit(18, "feet"),
  42653. name: "Front",
  42654. image: {
  42655. source: "./media/characters/cyphin/front.svg",
  42656. extra: 970/886,
  42657. bottom: 42/1012
  42658. }
  42659. },
  42660. back: {
  42661. height: math.unit(18, "feet"),
  42662. name: "Back",
  42663. image: {
  42664. source: "./media/characters/cyphin/back.svg",
  42665. extra: 1009/894,
  42666. bottom: 24/1033
  42667. }
  42668. },
  42669. head: {
  42670. height: math.unit(5.05, "feet"),
  42671. name: "Head",
  42672. image: {
  42673. source: "./media/characters/cyphin/head.svg"
  42674. }
  42675. },
  42676. tailbud: {
  42677. height: math.unit(5, "feet"),
  42678. name: "Tailbud",
  42679. image: {
  42680. source: "./media/characters/cyphin/tailbud.svg"
  42681. }
  42682. },
  42683. },
  42684. [
  42685. ]
  42686. ))
  42687. characterMakers.push(() => makeCharacter(
  42688. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42689. {
  42690. side: {
  42691. height: math.unit(10, "feet"),
  42692. weight: math.unit(6, "tons"),
  42693. name: "Side",
  42694. image: {
  42695. source: "./media/characters/raijin/side.svg",
  42696. extra: 1529/613,
  42697. bottom: 337/1866
  42698. }
  42699. },
  42700. },
  42701. [
  42702. {
  42703. name: "Normal",
  42704. height: math.unit(10, "feet"),
  42705. default: true
  42706. },
  42707. ]
  42708. ))
  42709. characterMakers.push(() => makeCharacter(
  42710. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42711. {
  42712. side: {
  42713. height: math.unit(9, "feet"),
  42714. name: "Side",
  42715. image: {
  42716. source: "./media/characters/nilghais/side.svg",
  42717. extra: 1047/744,
  42718. bottom: 91/1138
  42719. }
  42720. },
  42721. head: {
  42722. height: math.unit(3.14, "feet"),
  42723. name: "Head",
  42724. image: {
  42725. source: "./media/characters/nilghais/head.svg"
  42726. }
  42727. },
  42728. mouth: {
  42729. height: math.unit(4.6, "feet"),
  42730. name: "Mouth",
  42731. image: {
  42732. source: "./media/characters/nilghais/mouth.svg"
  42733. }
  42734. },
  42735. wings: {
  42736. height: math.unit(24, "feet"),
  42737. name: "Wings",
  42738. image: {
  42739. source: "./media/characters/nilghais/wings.svg"
  42740. }
  42741. },
  42742. ass: {
  42743. height: math.unit(6.12, "feet"),
  42744. name: "Ass",
  42745. image: {
  42746. source: "./media/characters/nilghais/ass.svg"
  42747. }
  42748. },
  42749. },
  42750. [
  42751. {
  42752. name: "Normal",
  42753. height: math.unit(9, "feet"),
  42754. default: true
  42755. },
  42756. ]
  42757. ))
  42758. characterMakers.push(() => makeCharacter(
  42759. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42760. {
  42761. regular: {
  42762. height: math.unit(16 + 2/12, "feet"),
  42763. weight: math.unit(2300, "lb"),
  42764. name: "Regular",
  42765. image: {
  42766. source: "./media/characters/zolgar/regular.svg",
  42767. extra: 1246/1004,
  42768. bottom: 124/1370
  42769. }
  42770. },
  42771. boxers: {
  42772. height: math.unit(16 + 2/12, "feet"),
  42773. weight: math.unit(2300, "lb"),
  42774. name: "Boxers",
  42775. image: {
  42776. source: "./media/characters/zolgar/boxers.svg",
  42777. extra: 1246/1004,
  42778. bottom: 124/1370
  42779. }
  42780. },
  42781. armored: {
  42782. height: math.unit(16 + 2/12, "feet"),
  42783. weight: math.unit(2300, "lb"),
  42784. name: "Armored",
  42785. image: {
  42786. source: "./media/characters/zolgar/armored.svg",
  42787. extra: 1246/1004,
  42788. bottom: 124/1370
  42789. }
  42790. },
  42791. goth: {
  42792. height: math.unit(16 + 2/12, "feet"),
  42793. weight: math.unit(2300, "lb"),
  42794. name: "Goth",
  42795. image: {
  42796. source: "./media/characters/zolgar/goth.svg",
  42797. extra: 1246/1004,
  42798. bottom: 124/1370
  42799. }
  42800. },
  42801. },
  42802. [
  42803. {
  42804. name: "Shrunken Down",
  42805. height: math.unit(9 + 2/12, "feet")
  42806. },
  42807. {
  42808. name: "Normal",
  42809. height: math.unit(16 + 2/12, "feet"),
  42810. default: true
  42811. },
  42812. ]
  42813. ))
  42814. characterMakers.push(() => makeCharacter(
  42815. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42816. {
  42817. front: {
  42818. height: math.unit(6, "feet"),
  42819. weight: math.unit(168, "lb"),
  42820. name: "Front",
  42821. image: {
  42822. source: "./media/characters/luca/front.svg",
  42823. extra: 841/667,
  42824. bottom: 102/943
  42825. }
  42826. },
  42827. },
  42828. [
  42829. {
  42830. name: "Normal",
  42831. height: math.unit(6, "feet"),
  42832. default: true
  42833. },
  42834. ]
  42835. ))
  42836. characterMakers.push(() => makeCharacter(
  42837. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42838. {
  42839. side: {
  42840. height: math.unit(7 + 3/12, "feet"),
  42841. weight: math.unit(312, "lb"),
  42842. name: "Side",
  42843. image: {
  42844. source: "./media/characters/zezo/side.svg",
  42845. extra: 1192/1067,
  42846. bottom: 63/1255
  42847. }
  42848. },
  42849. },
  42850. [
  42851. {
  42852. name: "Normal",
  42853. height: math.unit(7 + 3/12, "feet"),
  42854. default: true
  42855. },
  42856. ]
  42857. ))
  42858. characterMakers.push(() => makeCharacter(
  42859. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42860. {
  42861. front: {
  42862. height: math.unit(5 + 5/12, "feet"),
  42863. weight: math.unit(170, "lb"),
  42864. name: "Front",
  42865. image: {
  42866. source: "./media/characters/mayso/front.svg",
  42867. extra: 1215/1108,
  42868. bottom: 16/1231
  42869. }
  42870. },
  42871. },
  42872. [
  42873. {
  42874. name: "Normal",
  42875. height: math.unit(5 + 5/12, "feet"),
  42876. default: true
  42877. },
  42878. ]
  42879. ))
  42880. characterMakers.push(() => makeCharacter(
  42881. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42882. {
  42883. front: {
  42884. height: math.unit(4 + 3/12, "feet"),
  42885. weight: math.unit(80, "lb"),
  42886. name: "Front",
  42887. image: {
  42888. source: "./media/characters/hess/front.svg",
  42889. extra: 1200/1123,
  42890. bottom: 16/1216
  42891. }
  42892. },
  42893. },
  42894. [
  42895. {
  42896. name: "Normal",
  42897. height: math.unit(4 + 3/12, "feet"),
  42898. default: true
  42899. },
  42900. ]
  42901. ))
  42902. characterMakers.push(() => makeCharacter(
  42903. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42904. {
  42905. front: {
  42906. height: math.unit(1.9, "meters"),
  42907. name: "Front",
  42908. image: {
  42909. source: "./media/characters/ashgar/front.svg",
  42910. extra: 1177/1146,
  42911. bottom: 99/1276
  42912. }
  42913. },
  42914. back: {
  42915. height: math.unit(1.9, "meters"),
  42916. name: "Back",
  42917. image: {
  42918. source: "./media/characters/ashgar/back.svg",
  42919. extra: 1201/1183,
  42920. bottom: 53/1254
  42921. }
  42922. },
  42923. feral: {
  42924. height: math.unit(1.4, "meters"),
  42925. name: "Feral",
  42926. image: {
  42927. source: "./media/characters/ashgar/feral.svg",
  42928. extra: 370/345,
  42929. bottom: 45/415
  42930. }
  42931. },
  42932. },
  42933. [
  42934. {
  42935. name: "Normal",
  42936. height: math.unit(1.9, "meters"),
  42937. default: true
  42938. },
  42939. ]
  42940. ))
  42941. characterMakers.push(() => makeCharacter(
  42942. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42943. {
  42944. regular: {
  42945. height: math.unit(6, "feet"),
  42946. weight: math.unit(220, "lb"),
  42947. name: "Regular",
  42948. image: {
  42949. source: "./media/characters/phillip/regular.svg",
  42950. extra: 1373/1277,
  42951. bottom: 75/1448
  42952. }
  42953. },
  42954. dressed: {
  42955. height: math.unit(6, "feet"),
  42956. weight: math.unit(220, "lb"),
  42957. name: "Dressed",
  42958. image: {
  42959. source: "./media/characters/phillip/dressed.svg",
  42960. extra: 1373/1277,
  42961. bottom: 75/1448
  42962. }
  42963. },
  42964. paw: {
  42965. height: math.unit(1.44, "feet"),
  42966. name: "Paw",
  42967. image: {
  42968. source: "./media/characters/phillip/paw.svg"
  42969. }
  42970. },
  42971. },
  42972. [
  42973. {
  42974. name: "Normal",
  42975. height: math.unit(6, "feet"),
  42976. default: true
  42977. },
  42978. ]
  42979. ))
  42980. characterMakers.push(() => makeCharacter(
  42981. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42982. {
  42983. side: {
  42984. height: math.unit(42, "feet"),
  42985. name: "Side",
  42986. image: {
  42987. source: "./media/characters/uvula/side.svg",
  42988. extra: 683/586,
  42989. bottom: 60/743
  42990. }
  42991. },
  42992. front: {
  42993. height: math.unit(42, "feet"),
  42994. name: "Front",
  42995. image: {
  42996. source: "./media/characters/uvula/front.svg",
  42997. extra: 705/613,
  42998. bottom: 54/759
  42999. }
  43000. },
  43001. maw: {
  43002. height: math.unit(23.5, "feet"),
  43003. name: "Maw",
  43004. image: {
  43005. source: "./media/characters/uvula/maw.svg"
  43006. }
  43007. },
  43008. },
  43009. [
  43010. {
  43011. name: "Original Size",
  43012. height: math.unit(14, "inches")
  43013. },
  43014. {
  43015. name: "Human Size",
  43016. height: math.unit(6, "feet")
  43017. },
  43018. {
  43019. name: "Big",
  43020. height: math.unit(42, "feet"),
  43021. default: true
  43022. },
  43023. {
  43024. name: "Bigger",
  43025. height: math.unit(100, "feet")
  43026. },
  43027. ]
  43028. ))
  43029. characterMakers.push(() => makeCharacter(
  43030. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43031. {
  43032. front: {
  43033. height: math.unit(5 + 11/12, "feet"),
  43034. name: "Front",
  43035. image: {
  43036. source: "./media/characters/lannah/front.svg",
  43037. extra: 1208/1113,
  43038. bottom: 97/1305
  43039. }
  43040. },
  43041. },
  43042. [
  43043. {
  43044. name: "Normal",
  43045. height: math.unit(5 + 11/12, "feet"),
  43046. default: true
  43047. },
  43048. ]
  43049. ))
  43050. characterMakers.push(() => makeCharacter(
  43051. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43052. {
  43053. front: {
  43054. height: math.unit(6 + 3/12, "feet"),
  43055. weight: math.unit(3.5, "tons"),
  43056. name: "Front",
  43057. image: {
  43058. source: "./media/characters/emberflame/front.svg",
  43059. extra: 1198/672,
  43060. bottom: 82/1280
  43061. }
  43062. },
  43063. side: {
  43064. height: math.unit(6 + 3/12, "feet"),
  43065. weight: math.unit(3.5, "tons"),
  43066. name: "Side",
  43067. image: {
  43068. source: "./media/characters/emberflame/side.svg",
  43069. extra: 938/527,
  43070. bottom: 56/994
  43071. }
  43072. },
  43073. },
  43074. [
  43075. {
  43076. name: "Normal",
  43077. height: math.unit(6 + 3/12, "feet"),
  43078. default: true
  43079. },
  43080. ]
  43081. ))
  43082. characterMakers.push(() => makeCharacter(
  43083. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43084. {
  43085. side: {
  43086. height: math.unit(17.5, "feet"),
  43087. weight: math.unit(35, "tons"),
  43088. name: "Side",
  43089. image: {
  43090. source: "./media/characters/sophie-ambrose/side.svg",
  43091. extra: 1573/1242,
  43092. bottom: 71/1644
  43093. }
  43094. },
  43095. maw: {
  43096. height: math.unit(7.4, "feet"),
  43097. name: "Maw",
  43098. image: {
  43099. source: "./media/characters/sophie-ambrose/maw.svg"
  43100. }
  43101. },
  43102. },
  43103. [
  43104. {
  43105. name: "Normal",
  43106. height: math.unit(17.5, "feet"),
  43107. default: true
  43108. },
  43109. ]
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43113. {
  43114. front: {
  43115. height: math.unit(280, "feet"),
  43116. weight: math.unit(550, "tons"),
  43117. name: "Front",
  43118. image: {
  43119. source: "./media/characters/king-mugi/front.svg",
  43120. extra: 1102/947,
  43121. bottom: 104/1206
  43122. }
  43123. },
  43124. },
  43125. [
  43126. {
  43127. name: "King Mugi",
  43128. height: math.unit(280, "feet"),
  43129. default: true
  43130. },
  43131. ]
  43132. ))
  43133. characterMakers.push(() => makeCharacter(
  43134. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43135. {
  43136. front: {
  43137. height: math.unit(64, "meters"),
  43138. name: "Front",
  43139. image: {
  43140. source: "./media/characters/nova-fox/front.svg",
  43141. extra: 1310/1246,
  43142. bottom: 65/1375
  43143. }
  43144. },
  43145. },
  43146. [
  43147. {
  43148. name: "Macro",
  43149. height: math.unit(64, "meters"),
  43150. default: true
  43151. },
  43152. ]
  43153. ))
  43154. characterMakers.push(() => makeCharacter(
  43155. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43156. {
  43157. front: {
  43158. height: math.unit(6 + 3/12, "feet"),
  43159. weight: math.unit(170, "lb"),
  43160. name: "Front",
  43161. image: {
  43162. source: "./media/characters/sam-bat/front.svg",
  43163. extra: 1601/1411,
  43164. bottom: 125/1726
  43165. }
  43166. },
  43167. back: {
  43168. height: math.unit(6 + 3/12, "feet"),
  43169. weight: math.unit(170, "lb"),
  43170. name: "Back",
  43171. image: {
  43172. source: "./media/characters/sam-bat/back.svg",
  43173. extra: 1577/1405,
  43174. bottom: 58/1635
  43175. }
  43176. },
  43177. },
  43178. [
  43179. {
  43180. name: "Normal",
  43181. height: math.unit(6 + 3/12, "feet"),
  43182. default: true
  43183. },
  43184. ]
  43185. ))
  43186. characterMakers.push(() => makeCharacter(
  43187. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43188. {
  43189. front: {
  43190. height: math.unit(59, "feet"),
  43191. weight: math.unit(40000, "lb"),
  43192. name: "Front",
  43193. image: {
  43194. source: "./media/characters/inari/front.svg",
  43195. extra: 1884/1350,
  43196. bottom: 95/1979
  43197. }
  43198. },
  43199. },
  43200. [
  43201. {
  43202. name: "Gigantamax",
  43203. height: math.unit(59, "feet"),
  43204. default: true
  43205. },
  43206. ]
  43207. ))
  43208. characterMakers.push(() => makeCharacter(
  43209. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43210. {
  43211. front: {
  43212. height: math.unit(5 + 8/12, "feet"),
  43213. name: "Front",
  43214. image: {
  43215. source: "./media/characters/elizabeth/front.svg",
  43216. extra: 1395/1298,
  43217. bottom: 54/1449
  43218. }
  43219. },
  43220. mouth: {
  43221. height: math.unit(1.97, "feet"),
  43222. name: "Mouth",
  43223. image: {
  43224. source: "./media/characters/elizabeth/mouth.svg"
  43225. }
  43226. },
  43227. foot: {
  43228. height: math.unit(1.17, "feet"),
  43229. name: "Foot",
  43230. image: {
  43231. source: "./media/characters/elizabeth/foot.svg"
  43232. }
  43233. },
  43234. },
  43235. [
  43236. {
  43237. name: "Normal",
  43238. height: math.unit(5 + 8/12, "feet"),
  43239. default: true
  43240. },
  43241. {
  43242. name: "Minimacro",
  43243. height: math.unit(18, "feet")
  43244. },
  43245. {
  43246. name: "Macro",
  43247. height: math.unit(180, "feet")
  43248. },
  43249. ]
  43250. ))
  43251. characterMakers.push(() => makeCharacter(
  43252. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43253. {
  43254. front: {
  43255. height: math.unit(5 + 2/12, "feet"),
  43256. name: "Front",
  43257. image: {
  43258. source: "./media/characters/october-gossamer/front.svg",
  43259. extra: 505/454,
  43260. bottom: 7/512
  43261. }
  43262. },
  43263. back: {
  43264. height: math.unit(5 + 2/12, "feet"),
  43265. name: "Back",
  43266. image: {
  43267. source: "./media/characters/october-gossamer/back.svg",
  43268. extra: 501/454,
  43269. bottom: 11/512
  43270. }
  43271. },
  43272. },
  43273. [
  43274. {
  43275. name: "Normal",
  43276. height: math.unit(5 + 2/12, "feet"),
  43277. default: true
  43278. },
  43279. ]
  43280. ))
  43281. characterMakers.push(() => makeCharacter(
  43282. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43283. {
  43284. front: {
  43285. height: math.unit(5, "feet"),
  43286. name: "Front",
  43287. image: {
  43288. source: "./media/characters/epiglottis/front.svg",
  43289. extra: 923/849,
  43290. bottom: 17/940
  43291. }
  43292. },
  43293. },
  43294. [
  43295. {
  43296. name: "Original Size",
  43297. height: math.unit(10, "inches")
  43298. },
  43299. {
  43300. name: "Human Size",
  43301. height: math.unit(5, "feet"),
  43302. default: true
  43303. },
  43304. {
  43305. name: "Big",
  43306. height: math.unit(25, "feet")
  43307. },
  43308. {
  43309. name: "Bigger",
  43310. height: math.unit(50, "feet")
  43311. },
  43312. {
  43313. name: "oh lawd",
  43314. height: math.unit(75, "feet")
  43315. },
  43316. ]
  43317. ))
  43318. characterMakers.push(() => makeCharacter(
  43319. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43320. {
  43321. front: {
  43322. height: math.unit(2 + 4/12, "feet"),
  43323. weight: math.unit(60, "lb"),
  43324. name: "Front",
  43325. image: {
  43326. source: "./media/characters/lerm/front.svg",
  43327. extra: 796/790,
  43328. bottom: 79/875
  43329. }
  43330. },
  43331. },
  43332. [
  43333. {
  43334. name: "Normal",
  43335. height: math.unit(2 + 4/12, "feet"),
  43336. default: true
  43337. },
  43338. ]
  43339. ))
  43340. characterMakers.push(() => makeCharacter(
  43341. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43342. {
  43343. front: {
  43344. height: math.unit(5.5, "feet"),
  43345. weight: math.unit(130, "lb"),
  43346. name: "Front",
  43347. image: {
  43348. source: "./media/characters/xena-nebadon/front.svg",
  43349. extra: 1828/1730,
  43350. bottom: 79/1907
  43351. }
  43352. },
  43353. },
  43354. [
  43355. {
  43356. name: "Tiny Puppy",
  43357. height: math.unit(3, "inches")
  43358. },
  43359. {
  43360. name: "Normal",
  43361. height: math.unit(5.5, "feet"),
  43362. default: true
  43363. },
  43364. {
  43365. name: "Lotta Lady",
  43366. height: math.unit(12, "feet")
  43367. },
  43368. {
  43369. name: "Pretty Big",
  43370. height: math.unit(100, "feet")
  43371. },
  43372. {
  43373. name: "Big",
  43374. height: math.unit(500, "feet")
  43375. },
  43376. {
  43377. name: "Skyscraper Toys",
  43378. height: math.unit(2500, "feet")
  43379. },
  43380. {
  43381. name: "Plane Catcher",
  43382. height: math.unit(8, "miles")
  43383. },
  43384. {
  43385. name: "Planet Toys",
  43386. height: math.unit(15, "earths")
  43387. },
  43388. {
  43389. name: "Stardust",
  43390. height: math.unit(0.25, "galaxies")
  43391. },
  43392. {
  43393. name: "Snacks",
  43394. height: math.unit(70, "universes")
  43395. },
  43396. ]
  43397. ))
  43398. characterMakers.push(() => makeCharacter(
  43399. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43400. {
  43401. front: {
  43402. height: math.unit(1.6, "meters"),
  43403. weight: math.unit(60, "kg"),
  43404. name: "Front",
  43405. image: {
  43406. source: "./media/characters/bounty/front.svg",
  43407. extra: 1426/1308,
  43408. bottom: 15/1441
  43409. }
  43410. },
  43411. back: {
  43412. height: math.unit(1.6, "meters"),
  43413. weight: math.unit(60, "kg"),
  43414. name: "Back",
  43415. image: {
  43416. source: "./media/characters/bounty/back.svg",
  43417. extra: 1417/1307,
  43418. bottom: 8/1425
  43419. }
  43420. },
  43421. },
  43422. [
  43423. {
  43424. name: "Normal",
  43425. height: math.unit(1.6, "meters"),
  43426. default: true
  43427. },
  43428. {
  43429. name: "Macro",
  43430. height: math.unit(300, "meters")
  43431. },
  43432. ]
  43433. ))
  43434. characterMakers.push(() => makeCharacter(
  43435. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43436. {
  43437. front: {
  43438. height: math.unit(2 + 8/12, "feet"),
  43439. weight: math.unit(15, "lb"),
  43440. name: "Front",
  43441. image: {
  43442. source: "./media/characters/mochi/front.svg",
  43443. extra: 1022/852,
  43444. bottom: 435/1457
  43445. }
  43446. },
  43447. back: {
  43448. height: math.unit(2 + 8/12, "feet"),
  43449. weight: math.unit(15, "lb"),
  43450. name: "Back",
  43451. image: {
  43452. source: "./media/characters/mochi/back.svg",
  43453. extra: 1335/1119,
  43454. bottom: 39/1374
  43455. }
  43456. },
  43457. bird: {
  43458. height: math.unit(2 + 8/12, "feet"),
  43459. weight: math.unit(15, "lb"),
  43460. name: "Bird",
  43461. image: {
  43462. source: "./media/characters/mochi/bird.svg",
  43463. extra: 1251/1113,
  43464. bottom: 178/1429
  43465. }
  43466. },
  43467. kaiju: {
  43468. height: math.unit(154, "feet"),
  43469. weight: math.unit(1e7, "lb"),
  43470. name: "Kaiju",
  43471. image: {
  43472. source: "./media/characters/mochi/kaiju.svg",
  43473. extra: 460/324,
  43474. bottom: 40/500
  43475. }
  43476. },
  43477. head: {
  43478. height: math.unit(1.21, "feet"),
  43479. name: "Head",
  43480. image: {
  43481. source: "./media/characters/mochi/head.svg"
  43482. }
  43483. },
  43484. alternateTail: {
  43485. height: math.unit(2 + 8/12, "feet"),
  43486. weight: math.unit(45, "lb"),
  43487. name: "Alternate Tail",
  43488. image: {
  43489. source: "./media/characters/mochi/alternate-tail.svg",
  43490. extra: 139/76,
  43491. bottom: 45/184
  43492. }
  43493. },
  43494. },
  43495. [
  43496. {
  43497. name: "Micro",
  43498. height: math.unit(2, "inches")
  43499. },
  43500. {
  43501. name: "Normal",
  43502. height: math.unit(2 + 8/12, "feet"),
  43503. default: true
  43504. },
  43505. {
  43506. name: "Macro",
  43507. height: math.unit(106, "feet")
  43508. },
  43509. ]
  43510. ))
  43511. characterMakers.push(() => makeCharacter(
  43512. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43513. {
  43514. front: {
  43515. height: math.unit(5.67, "feet"),
  43516. weight: math.unit(135, "lb"),
  43517. name: "Front",
  43518. image: {
  43519. source: "./media/characters/sarel/front.svg",
  43520. extra: 865/788,
  43521. bottom: 97/962
  43522. }
  43523. },
  43524. back: {
  43525. height: math.unit(5.67, "feet"),
  43526. weight: math.unit(135, "lb"),
  43527. name: "Back",
  43528. image: {
  43529. source: "./media/characters/sarel/back.svg",
  43530. extra: 857/777,
  43531. bottom: 32/889
  43532. }
  43533. },
  43534. chozoan: {
  43535. height: math.unit(5.67, "feet"),
  43536. weight: math.unit(135, "lb"),
  43537. name: "Chozoan",
  43538. image: {
  43539. source: "./media/characters/sarel/chozoan.svg",
  43540. extra: 865/788,
  43541. bottom: 97/962
  43542. }
  43543. },
  43544. current: {
  43545. height: math.unit(5.67, "feet"),
  43546. weight: math.unit(135, "lb"),
  43547. name: "Current",
  43548. image: {
  43549. source: "./media/characters/sarel/current.svg",
  43550. extra: 865/788,
  43551. bottom: 97/962
  43552. }
  43553. },
  43554. head: {
  43555. height: math.unit(1.77, "feet"),
  43556. name: "Head",
  43557. image: {
  43558. source: "./media/characters/sarel/head.svg"
  43559. }
  43560. },
  43561. claws: {
  43562. height: math.unit(1.8, "feet"),
  43563. name: "Claws",
  43564. image: {
  43565. source: "./media/characters/sarel/claws.svg"
  43566. }
  43567. },
  43568. clawsAlt: {
  43569. height: math.unit(1.8, "feet"),
  43570. name: "Claws-alt",
  43571. image: {
  43572. source: "./media/characters/sarel/claws-alt.svg"
  43573. }
  43574. },
  43575. },
  43576. [
  43577. {
  43578. name: "Normal",
  43579. height: math.unit(5.67, "feet"),
  43580. default: true
  43581. },
  43582. ]
  43583. ))
  43584. characterMakers.push(() => makeCharacter(
  43585. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43586. {
  43587. front: {
  43588. height: math.unit(5500, "feet"),
  43589. name: "Front",
  43590. image: {
  43591. source: "./media/characters/alyonia/front.svg",
  43592. extra: 1200/1135,
  43593. bottom: 29/1229
  43594. }
  43595. },
  43596. back: {
  43597. height: math.unit(5500, "feet"),
  43598. name: "Back",
  43599. image: {
  43600. source: "./media/characters/alyonia/back.svg",
  43601. extra: 1205/1138,
  43602. bottom: 10/1215
  43603. }
  43604. },
  43605. },
  43606. [
  43607. {
  43608. name: "Small",
  43609. height: math.unit(10, "feet")
  43610. },
  43611. {
  43612. name: "Macro",
  43613. height: math.unit(500, "feet")
  43614. },
  43615. {
  43616. name: "Mega Macro",
  43617. height: math.unit(5500, "feet"),
  43618. default: true
  43619. },
  43620. {
  43621. name: "Mega Macro+",
  43622. height: math.unit(500000, "feet")
  43623. },
  43624. {
  43625. name: "Giga Macro",
  43626. height: math.unit(3000, "miles")
  43627. },
  43628. {
  43629. name: "Tera Macro",
  43630. height: math.unit(2.8e6, "miles")
  43631. },
  43632. {
  43633. name: "Galactic",
  43634. height: math.unit(120000, "lightyears")
  43635. },
  43636. ]
  43637. ))
  43638. characterMakers.push(() => makeCharacter(
  43639. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43640. {
  43641. werewolf: {
  43642. height: math.unit(8, "feet"),
  43643. weight: math.unit(425, "lb"),
  43644. name: "Werewolf",
  43645. image: {
  43646. source: "./media/characters/autumn/werewolf.svg",
  43647. extra: 2154/2031,
  43648. bottom: 160/2314
  43649. }
  43650. },
  43651. human: {
  43652. height: math.unit(5 + 8/12, "feet"),
  43653. weight: math.unit(150, "lb"),
  43654. name: "Human",
  43655. image: {
  43656. source: "./media/characters/autumn/human.svg",
  43657. extra: 1200/1149,
  43658. bottom: 30/1230
  43659. }
  43660. },
  43661. },
  43662. [
  43663. {
  43664. name: "Normal",
  43665. height: math.unit(8, "feet"),
  43666. default: true
  43667. },
  43668. ]
  43669. ))
  43670. characterMakers.push(() => makeCharacter(
  43671. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43672. {
  43673. front: {
  43674. height: math.unit(8 + 5/12, "feet"),
  43675. weight: math.unit(825, "lb"),
  43676. name: "Front",
  43677. image: {
  43678. source: "./media/characters/cobalt-charizard/front.svg",
  43679. extra: 1268/1155,
  43680. bottom: 122/1390
  43681. }
  43682. },
  43683. side: {
  43684. height: math.unit(8 + 5/12, "feet"),
  43685. weight: math.unit(825, "lb"),
  43686. name: "Side",
  43687. image: {
  43688. source: "./media/characters/cobalt-charizard/side.svg",
  43689. extra: 1348/1257,
  43690. bottom: 58/1406
  43691. }
  43692. },
  43693. gMax: {
  43694. height: math.unit(134 + 11/12, "feet"),
  43695. name: "G-Max",
  43696. image: {
  43697. source: "./media/characters/cobalt-charizard/g-max.svg",
  43698. extra: 1835/1541,
  43699. bottom: 151/1986
  43700. }
  43701. },
  43702. },
  43703. [
  43704. {
  43705. name: "Normal",
  43706. height: math.unit(8 + 5/12, "feet"),
  43707. default: true
  43708. },
  43709. ]
  43710. ))
  43711. characterMakers.push(() => makeCharacter(
  43712. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43713. {
  43714. front: {
  43715. height: math.unit(6 + 3/12, "feet"),
  43716. weight: math.unit(210, "lb"),
  43717. name: "Front",
  43718. image: {
  43719. source: "./media/characters/stella/front.svg",
  43720. extra: 3549/3335,
  43721. bottom: 51/3600
  43722. }
  43723. },
  43724. },
  43725. [
  43726. {
  43727. name: "Normal",
  43728. height: math.unit(6 + 3/12, "feet"),
  43729. default: true
  43730. },
  43731. ]
  43732. ))
  43733. characterMakers.push(() => makeCharacter(
  43734. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43735. {
  43736. front: {
  43737. height: math.unit(5, "feet"),
  43738. weight: math.unit(90, "lb"),
  43739. name: "Front",
  43740. image: {
  43741. source: "./media/characters/riley-bishop/front.svg",
  43742. extra: 1450/1428,
  43743. bottom: 152/1602
  43744. }
  43745. },
  43746. },
  43747. [
  43748. {
  43749. name: "Normal",
  43750. height: math.unit(5, "feet"),
  43751. default: true
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43757. {
  43758. side: {
  43759. height: math.unit(8 + 2/12, "feet"),
  43760. weight: math.unit(500, "kg"),
  43761. name: "Side",
  43762. image: {
  43763. source: "./media/characters/theo-arcanine/side.svg",
  43764. extra: 1342/1074,
  43765. bottom: 111/1453
  43766. }
  43767. },
  43768. },
  43769. [
  43770. {
  43771. name: "Normal",
  43772. height: math.unit(8 + 2/12, "feet"),
  43773. default: true
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43779. {
  43780. front: {
  43781. height: math.unit(4, "feet"),
  43782. name: "Front",
  43783. image: {
  43784. source: "./media/characters/kali/front.svg",
  43785. extra: 1921/1357,
  43786. bottom: 70/1991
  43787. }
  43788. },
  43789. },
  43790. [
  43791. {
  43792. name: "Normal",
  43793. height: math.unit(4, "feet"),
  43794. default: true
  43795. },
  43796. {
  43797. name: "Macro",
  43798. height: math.unit(32, "meters")
  43799. },
  43800. {
  43801. name: "Macro+",
  43802. height: math.unit(150, "meters")
  43803. },
  43804. {
  43805. name: "Megamacro",
  43806. height: math.unit(7500, "meters")
  43807. },
  43808. {
  43809. name: "Megamacro+",
  43810. height: math.unit(80, "kilometers")
  43811. },
  43812. ]
  43813. ))
  43814. characterMakers.push(() => makeCharacter(
  43815. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43816. {
  43817. side: {
  43818. height: math.unit(5 + 11/12, "feet"),
  43819. weight: math.unit(236, "lb"),
  43820. name: "Side",
  43821. image: {
  43822. source: "./media/characters/gapp/side.svg",
  43823. extra: 775/340,
  43824. bottom: 58/833
  43825. }
  43826. },
  43827. mouth: {
  43828. height: math.unit(2.98, "feet"),
  43829. name: "Mouth",
  43830. image: {
  43831. source: "./media/characters/gapp/mouth.svg"
  43832. }
  43833. },
  43834. },
  43835. [
  43836. {
  43837. name: "Normal",
  43838. height: math.unit(5 + 1/12, "feet"),
  43839. default: true
  43840. },
  43841. ]
  43842. ))
  43843. characterMakers.push(() => makeCharacter(
  43844. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43845. {
  43846. front: {
  43847. height: math.unit(6, "feet"),
  43848. name: "Front",
  43849. image: {
  43850. source: "./media/characters/persephone/front.svg",
  43851. extra: 1895/1717,
  43852. bottom: 96/1991
  43853. }
  43854. },
  43855. back: {
  43856. height: math.unit(6, "feet"),
  43857. name: "Back",
  43858. image: {
  43859. source: "./media/characters/persephone/back.svg",
  43860. extra: 1868/1679,
  43861. bottom: 26/1894
  43862. }
  43863. },
  43864. casual: {
  43865. height: math.unit(6, "feet"),
  43866. name: "Casual",
  43867. image: {
  43868. source: "./media/characters/persephone/casual.svg",
  43869. extra: 1713/1541,
  43870. bottom: 76/1789
  43871. }
  43872. },
  43873. },
  43874. [
  43875. {
  43876. name: "Human Size",
  43877. height: math.unit(6, "feet")
  43878. },
  43879. {
  43880. name: "Big Steppy",
  43881. height: math.unit(600, "meters"),
  43882. default: true
  43883. },
  43884. {
  43885. name: "Galaxy Brain",
  43886. height: math.unit(1, "zettameter")
  43887. },
  43888. ]
  43889. ))
  43890. characterMakers.push(() => makeCharacter(
  43891. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43892. {
  43893. front: {
  43894. height: math.unit(1.85, "meters"),
  43895. name: "Front",
  43896. image: {
  43897. source: "./media/characters/riley-foxthing/front.svg",
  43898. extra: 1495/1354,
  43899. bottom: 122/1617
  43900. }
  43901. },
  43902. frontAlt: {
  43903. height: math.unit(1.85, "meters"),
  43904. name: "Front (Alt)",
  43905. image: {
  43906. source: "./media/characters/riley-foxthing/front-alt.svg",
  43907. extra: 1572/1389,
  43908. bottom: 116/1688
  43909. }
  43910. },
  43911. },
  43912. [
  43913. {
  43914. name: "Normal Sized",
  43915. height: math.unit(1.85, "meters"),
  43916. default: true
  43917. },
  43918. {
  43919. name: "Quite Sizable",
  43920. height: math.unit(5, "meters")
  43921. },
  43922. {
  43923. name: "Rather Large",
  43924. height: math.unit(20, "meters")
  43925. },
  43926. {
  43927. name: "Macro",
  43928. height: math.unit(450, "meters")
  43929. },
  43930. {
  43931. name: "Giga",
  43932. height: math.unit(5, "km")
  43933. },
  43934. ]
  43935. ))
  43936. characterMakers.push(() => makeCharacter(
  43937. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43938. {
  43939. front: {
  43940. height: math.unit(6, "feet"),
  43941. weight: math.unit(200, "lb"),
  43942. name: "Front",
  43943. image: {
  43944. source: "./media/characters/blizzard/front.svg",
  43945. extra: 1136/990,
  43946. bottom: 136/1272
  43947. }
  43948. },
  43949. back: {
  43950. height: math.unit(6, "feet"),
  43951. weight: math.unit(200, "lb"),
  43952. name: "Back",
  43953. image: {
  43954. source: "./media/characters/blizzard/back.svg",
  43955. extra: 1175/1034,
  43956. bottom: 97/1272
  43957. }
  43958. },
  43959. sitting: {
  43960. height: math.unit(3.725, "feet"),
  43961. weight: math.unit(200, "lb"),
  43962. name: "Sitting",
  43963. image: {
  43964. source: "./media/characters/blizzard/sitting.svg",
  43965. extra: 581/485,
  43966. bottom: 90/671
  43967. }
  43968. },
  43969. frontWizard: {
  43970. height: math.unit(7.9, "feet"),
  43971. weight: math.unit(200, "lb"),
  43972. name: "Front (Wizard)",
  43973. image: {
  43974. source: "./media/characters/blizzard/front-wizard.svg"
  43975. }
  43976. },
  43977. backWizard: {
  43978. height: math.unit(7.9, "feet"),
  43979. weight: math.unit(200, "lb"),
  43980. name: "Back (Wizard)",
  43981. image: {
  43982. source: "./media/characters/blizzard/back-wizard.svg"
  43983. }
  43984. },
  43985. frontNsfw: {
  43986. height: math.unit(6, "feet"),
  43987. weight: math.unit(200, "lb"),
  43988. name: "Front (NSFW)",
  43989. image: {
  43990. source: "./media/characters/blizzard/front-nsfw.svg",
  43991. extra: 1136/990,
  43992. bottom: 136/1272
  43993. }
  43994. },
  43995. backNsfw: {
  43996. height: math.unit(6, "feet"),
  43997. weight: math.unit(200, "lb"),
  43998. name: "Back (NSFW)",
  43999. image: {
  44000. source: "./media/characters/blizzard/back-nsfw.svg",
  44001. extra: 1175/1034,
  44002. bottom: 97/1272
  44003. }
  44004. },
  44005. sittingNsfw: {
  44006. height: math.unit(3.725, "feet"),
  44007. weight: math.unit(200, "lb"),
  44008. name: "Sitting (NSFW)",
  44009. image: {
  44010. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44011. extra: 581/485,
  44012. bottom: 90/671
  44013. }
  44014. },
  44015. wizardFrontNsfw: {
  44016. height: math.unit(7.9, "feet"),
  44017. weight: math.unit(200, "lb"),
  44018. name: "Wizard (Front, NSFW)",
  44019. image: {
  44020. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44021. }
  44022. },
  44023. },
  44024. [
  44025. {
  44026. name: "Normal",
  44027. height: math.unit(6, "feet"),
  44028. default: true
  44029. },
  44030. ]
  44031. ))
  44032. characterMakers.push(() => makeCharacter(
  44033. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44034. {
  44035. front: {
  44036. height: math.unit(5 + 2/12, "feet"),
  44037. name: "Front",
  44038. image: {
  44039. source: "./media/characters/lumi/front.svg",
  44040. extra: 1328/1268,
  44041. bottom: 103/1431
  44042. }
  44043. },
  44044. back: {
  44045. height: math.unit(5 + 2/12, "feet"),
  44046. name: "Back",
  44047. image: {
  44048. source: "./media/characters/lumi/back.svg",
  44049. extra: 1381/1327,
  44050. bottom: 43/1424
  44051. }
  44052. },
  44053. },
  44054. [
  44055. {
  44056. name: "Normal",
  44057. height: math.unit(5 + 2/12, "feet"),
  44058. default: true
  44059. },
  44060. ]
  44061. ))
  44062. characterMakers.push(() => makeCharacter(
  44063. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44064. {
  44065. front: {
  44066. height: math.unit(5 + 9/12, "feet"),
  44067. name: "Front",
  44068. image: {
  44069. source: "./media/characters/aliya-cotton/front.svg",
  44070. extra: 577/564,
  44071. bottom: 29/606
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Normal",
  44078. height: math.unit(5 + 9/12, "feet"),
  44079. default: true
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44085. {
  44086. front: {
  44087. height: math.unit(2.7, "meters"),
  44088. weight: math.unit(25000, "lb"),
  44089. name: "Front",
  44090. image: {
  44091. source: "./media/characters/noah-luxray/front.svg",
  44092. extra: 1644/825,
  44093. bottom: 339/1983
  44094. }
  44095. },
  44096. side: {
  44097. height: math.unit(2.97, "meters"),
  44098. weight: math.unit(25000, "lb"),
  44099. name: "Side",
  44100. image: {
  44101. source: "./media/characters/noah-luxray/side.svg",
  44102. extra: 1319/650,
  44103. bottom: 163/1482
  44104. }
  44105. },
  44106. dick: {
  44107. height: math.unit(7.4, "feet"),
  44108. weight: math.unit(2500, "lb"),
  44109. name: "Dick",
  44110. image: {
  44111. source: "./media/characters/noah-luxray/dick.svg"
  44112. }
  44113. },
  44114. dickAlt: {
  44115. height: math.unit(10.83, "feet"),
  44116. weight: math.unit(2500, "lb"),
  44117. name: "Dick-alt",
  44118. image: {
  44119. source: "./media/characters/noah-luxray/dick-alt.svg"
  44120. }
  44121. },
  44122. },
  44123. [
  44124. {
  44125. name: "BIG",
  44126. height: math.unit(2.7, "meters"),
  44127. default: true
  44128. },
  44129. ]
  44130. ))
  44131. characterMakers.push(() => makeCharacter(
  44132. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44133. {
  44134. standing: {
  44135. height: math.unit(183, "cm"),
  44136. weight: math.unit(68, "kg"),
  44137. name: "Standing",
  44138. image: {
  44139. source: "./media/characters/arion/standing.svg",
  44140. extra: 1869/1807,
  44141. bottom: 93/1962
  44142. }
  44143. },
  44144. reclining: {
  44145. height: math.unit(70.5, "cm"),
  44146. weight: math.unit(68, "lb"),
  44147. name: "Reclining",
  44148. image: {
  44149. source: "./media/characters/arion/reclining.svg",
  44150. extra: 937/870,
  44151. bottom: 63/1000
  44152. }
  44153. },
  44154. },
  44155. [
  44156. {
  44157. name: "Colossus Size, Low",
  44158. height: math.unit(33, "meters"),
  44159. default: true
  44160. },
  44161. {
  44162. name: "Colossus Size, Mid",
  44163. height: math.unit(52, "meters")
  44164. },
  44165. {
  44166. name: "Colossus Size, High",
  44167. height: math.unit(60, "meters")
  44168. },
  44169. {
  44170. name: "Titan Size, Low",
  44171. height: math.unit(91, "meters"),
  44172. },
  44173. {
  44174. name: "Titan Size, Mid",
  44175. height: math.unit(122, "meters")
  44176. },
  44177. {
  44178. name: "Titan Size, High",
  44179. height: math.unit(162, "meters")
  44180. },
  44181. ]
  44182. ))
  44183. characterMakers.push(() => makeCharacter(
  44184. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44185. {
  44186. front: {
  44187. height: math.unit(53, "meters"),
  44188. name: "Front",
  44189. image: {
  44190. source: "./media/characters/stellar-marbey/front.svg",
  44191. extra: 1913/1805,
  44192. bottom: 92/2005
  44193. }
  44194. },
  44195. back: {
  44196. height: math.unit(53, "meters"),
  44197. name: "Back",
  44198. image: {
  44199. source: "./media/characters/stellar-marbey/back.svg",
  44200. extra: 1960/1851,
  44201. bottom: 28/1988
  44202. }
  44203. },
  44204. mouth: {
  44205. height: math.unit(3.5, "meters"),
  44206. name: "Mouth",
  44207. image: {
  44208. source: "./media/characters/stellar-marbey/mouth.svg"
  44209. }
  44210. },
  44211. },
  44212. [
  44213. {
  44214. name: "Macro",
  44215. height: math.unit(53, "meters"),
  44216. default: true
  44217. },
  44218. ]
  44219. ))
  44220. characterMakers.push(() => makeCharacter(
  44221. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44222. {
  44223. front: {
  44224. height: math.unit(8 + 1/12, "feet"),
  44225. weight: math.unit(233, "lb"),
  44226. name: "Front",
  44227. image: {
  44228. source: "./media/characters/matsu/front.svg",
  44229. extra: 832/772,
  44230. bottom: 40/872
  44231. }
  44232. },
  44233. back: {
  44234. height: math.unit(8 + 1/12, "feet"),
  44235. weight: math.unit(233, "lb"),
  44236. name: "Back",
  44237. image: {
  44238. source: "./media/characters/matsu/back.svg",
  44239. extra: 839/780,
  44240. bottom: 47/886
  44241. }
  44242. },
  44243. },
  44244. [
  44245. {
  44246. name: "Normal",
  44247. height: math.unit(8 + 1/12, "feet"),
  44248. default: true
  44249. },
  44250. ]
  44251. ))
  44252. characterMakers.push(() => makeCharacter(
  44253. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44254. {
  44255. front: {
  44256. height: math.unit(4, "feet"),
  44257. weight: math.unit(148, "lb"),
  44258. name: "Front",
  44259. image: {
  44260. source: "./media/characters/thiz/front.svg",
  44261. extra: 1913/1748,
  44262. bottom: 62/1975
  44263. }
  44264. },
  44265. },
  44266. [
  44267. {
  44268. name: "Normal",
  44269. height: math.unit(4, "feet"),
  44270. default: true
  44271. },
  44272. ]
  44273. ))
  44274. characterMakers.push(() => makeCharacter(
  44275. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44276. {
  44277. front: {
  44278. height: math.unit(7 + 6/12, "feet"),
  44279. weight: math.unit(267, "lb"),
  44280. name: "Front",
  44281. image: {
  44282. source: "./media/characters/marcel/front.svg",
  44283. extra: 1221/1096,
  44284. bottom: 76/1297
  44285. }
  44286. },
  44287. },
  44288. [
  44289. {
  44290. name: "Normal",
  44291. height: math.unit(7 + 6/12, "feet"),
  44292. default: true
  44293. },
  44294. ]
  44295. ))
  44296. characterMakers.push(() => makeCharacter(
  44297. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44298. {
  44299. side: {
  44300. height: math.unit(42, "meters"),
  44301. name: "Side",
  44302. image: {
  44303. source: "./media/characters/flake/side.svg",
  44304. extra: 1525/1306,
  44305. bottom: 209/1734
  44306. }
  44307. },
  44308. },
  44309. [
  44310. {
  44311. name: "Normal",
  44312. height: math.unit(42, "meters"),
  44313. default: true
  44314. },
  44315. ]
  44316. ))
  44317. characterMakers.push(() => makeCharacter(
  44318. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44319. {
  44320. dressed: {
  44321. height: math.unit(6 + 4/12, "feet"),
  44322. weight: math.unit(520, "lb"),
  44323. name: "Dressed",
  44324. image: {
  44325. source: "./media/characters/someonne/dressed.svg",
  44326. extra: 1020/1010,
  44327. bottom: 178/1198
  44328. }
  44329. },
  44330. undressed: {
  44331. height: math.unit(6 + 4/12, "feet"),
  44332. weight: math.unit(520, "lb"),
  44333. name: "Undressed",
  44334. image: {
  44335. source: "./media/characters/someonne/undressed.svg",
  44336. extra: 1019/1014,
  44337. bottom: 169/1188
  44338. }
  44339. },
  44340. },
  44341. [
  44342. {
  44343. name: "Normal",
  44344. height: math.unit(6 + 4/12, "feet"),
  44345. default: true
  44346. },
  44347. ]
  44348. ))
  44349. characterMakers.push(() => makeCharacter(
  44350. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44351. {
  44352. front: {
  44353. height: math.unit(3, "feet"),
  44354. weight: math.unit(30, "lb"),
  44355. name: "Front",
  44356. image: {
  44357. source: "./media/characters/till/front.svg",
  44358. extra: 892/823,
  44359. bottom: 55/947
  44360. }
  44361. },
  44362. },
  44363. [
  44364. {
  44365. name: "Normal",
  44366. height: math.unit(3, "feet"),
  44367. default: true
  44368. },
  44369. ]
  44370. ))
  44371. characterMakers.push(() => makeCharacter(
  44372. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44373. {
  44374. front: {
  44375. height: math.unit(9 + 8/12, "feet"),
  44376. weight: math.unit(800, "lb"),
  44377. name: "Front",
  44378. image: {
  44379. source: "./media/characters/sydney-heki/front.svg",
  44380. extra: 1360/1300,
  44381. bottom: 22/1382
  44382. }
  44383. },
  44384. back: {
  44385. height: math.unit(9 + 8/12, "feet"),
  44386. weight: math.unit(800, "lb"),
  44387. name: "Back",
  44388. image: {
  44389. source: "./media/characters/sydney-heki/back.svg",
  44390. extra: 1356/1293,
  44391. bottom: 12/1368
  44392. }
  44393. },
  44394. frontDressed: {
  44395. height: math.unit(9 + 8/12, "feet"),
  44396. weight: math.unit(800, "lb"),
  44397. name: "Front-dressed",
  44398. image: {
  44399. source: "./media/characters/sydney-heki/front-dressed.svg",
  44400. extra: 1360/1300,
  44401. bottom: 22/1382
  44402. }
  44403. },
  44404. },
  44405. [
  44406. {
  44407. name: "Normal",
  44408. height: math.unit(9 + 8/12, "feet"),
  44409. default: true
  44410. },
  44411. {
  44412. name: "Macro",
  44413. height: math.unit(500, "feet")
  44414. },
  44415. {
  44416. name: "Megamacro",
  44417. height: math.unit(3.6, "miles")
  44418. },
  44419. ]
  44420. ))
  44421. characterMakers.push(() => makeCharacter(
  44422. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44423. {
  44424. front: {
  44425. height: math.unit(200, "cm"),
  44426. weight: math.unit(250, "lb"),
  44427. name: "Front",
  44428. image: {
  44429. source: "./media/characters/fowler-karlsson/front.svg",
  44430. extra: 897/845,
  44431. bottom: 123/1020
  44432. }
  44433. },
  44434. back: {
  44435. height: math.unit(200, "cm"),
  44436. weight: math.unit(250, "lb"),
  44437. name: "Back",
  44438. image: {
  44439. source: "./media/characters/fowler-karlsson/back.svg",
  44440. extra: 999/944,
  44441. bottom: 26/1025
  44442. }
  44443. },
  44444. dick: {
  44445. height: math.unit(1.92, "feet"),
  44446. weight: math.unit(150, "lb"),
  44447. name: "Dick",
  44448. image: {
  44449. source: "./media/characters/fowler-karlsson/dick.svg"
  44450. }
  44451. },
  44452. },
  44453. [
  44454. {
  44455. name: "Normal",
  44456. height: math.unit(200, "cm"),
  44457. default: true
  44458. },
  44459. {
  44460. name: "Smaller Macro",
  44461. height: math.unit(90, "m")
  44462. },
  44463. {
  44464. name: "Macro",
  44465. height: math.unit(150, "m")
  44466. },
  44467. {
  44468. name: "Bigger Macro",
  44469. height: math.unit(300, "m")
  44470. },
  44471. ]
  44472. ))
  44473. characterMakers.push(() => makeCharacter(
  44474. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44475. {
  44476. side: {
  44477. height: math.unit(8 + 2/12, "feet"),
  44478. weight: math.unit(1, "tonne"),
  44479. name: "Side",
  44480. image: {
  44481. source: "./media/characters/rylide/side.svg",
  44482. extra: 1318/1034,
  44483. bottom: 106/1424
  44484. }
  44485. },
  44486. sitting: {
  44487. height: math.unit(303, "cm"),
  44488. weight: math.unit(1, "tonne"),
  44489. name: "Sitting",
  44490. image: {
  44491. source: "./media/characters/rylide/sitting.svg",
  44492. extra: 1303/1103,
  44493. bottom: 36/1339
  44494. }
  44495. },
  44496. },
  44497. [
  44498. {
  44499. name: "Normal",
  44500. height: math.unit(8 + 2/12, "feet"),
  44501. default: true
  44502. },
  44503. ]
  44504. ))
  44505. characterMakers.push(() => makeCharacter(
  44506. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44507. {
  44508. front: {
  44509. height: math.unit(5 + 10/12, "feet"),
  44510. weight: math.unit(160, "lb"),
  44511. name: "Front",
  44512. image: {
  44513. source: "./media/characters/pudask/front.svg",
  44514. extra: 1616/1590,
  44515. bottom: 161/1777
  44516. }
  44517. },
  44518. },
  44519. [
  44520. {
  44521. name: "Ferret Height",
  44522. height: math.unit(2 + 5/12, "feet")
  44523. },
  44524. {
  44525. name: "Canon Height",
  44526. height: math.unit(5 + 10/12, "feet"),
  44527. default: true
  44528. },
  44529. ]
  44530. ))
  44531. characterMakers.push(() => makeCharacter(
  44532. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44533. {
  44534. front: {
  44535. height: math.unit(3 + 6/12, "feet"),
  44536. weight: math.unit(60, "lb"),
  44537. name: "Front",
  44538. image: {
  44539. source: "./media/characters/ramita/front.svg",
  44540. extra: 1402/1232,
  44541. bottom: 62/1464
  44542. }
  44543. },
  44544. dressed: {
  44545. height: math.unit(3 + 6/12, "feet"),
  44546. weight: math.unit(60, "lb"),
  44547. name: "Dressed",
  44548. image: {
  44549. source: "./media/characters/ramita/dressed.svg",
  44550. extra: 1534/1249,
  44551. bottom: 50/1584
  44552. }
  44553. },
  44554. },
  44555. [
  44556. {
  44557. name: "Normal",
  44558. height: math.unit(3 + 6/12, "feet"),
  44559. default: true
  44560. },
  44561. ]
  44562. ))
  44563. characterMakers.push(() => makeCharacter(
  44564. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44565. {
  44566. front: {
  44567. height: math.unit(8, "feet"),
  44568. name: "Front",
  44569. image: {
  44570. source: "./media/characters/ark/front.svg",
  44571. extra: 772/693,
  44572. bottom: 45/817
  44573. }
  44574. },
  44575. },
  44576. [
  44577. {
  44578. name: "Normal",
  44579. height: math.unit(8, "feet"),
  44580. default: true
  44581. },
  44582. ]
  44583. ))
  44584. characterMakers.push(() => makeCharacter(
  44585. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44586. {
  44587. front: {
  44588. height: math.unit(6, "feet"),
  44589. weight: math.unit(250, "lb"),
  44590. volume: math.unit(5/8, "gallons"),
  44591. name: "Front",
  44592. image: {
  44593. source: "./media/characters/ludwig-horn/front.svg",
  44594. extra: 1782/1635,
  44595. bottom: 96/1878
  44596. }
  44597. },
  44598. back: {
  44599. height: math.unit(6, "feet"),
  44600. weight: math.unit(250, "lb"),
  44601. volume: math.unit(5/8, "gallons"),
  44602. name: "Back",
  44603. image: {
  44604. source: "./media/characters/ludwig-horn/back.svg",
  44605. extra: 1874/1729,
  44606. bottom: 27/1901
  44607. }
  44608. },
  44609. dick: {
  44610. height: math.unit(1.05, "feet"),
  44611. weight: math.unit(15, "lb"),
  44612. volume: math.unit(5/8, "gallons"),
  44613. name: "Dick",
  44614. image: {
  44615. source: "./media/characters/ludwig-horn/dick.svg"
  44616. }
  44617. },
  44618. },
  44619. [
  44620. {
  44621. name: "Small",
  44622. height: math.unit(6, "feet")
  44623. },
  44624. {
  44625. name: "Typical",
  44626. height: math.unit(12, "feet"),
  44627. default: true
  44628. },
  44629. {
  44630. name: "Building",
  44631. height: math.unit(80, "feet")
  44632. },
  44633. {
  44634. name: "Town",
  44635. height: math.unit(800, "feet")
  44636. },
  44637. {
  44638. name: "Kingdom",
  44639. height: math.unit(80000, "feet")
  44640. },
  44641. {
  44642. name: "Planet",
  44643. height: math.unit(8000000, "feet")
  44644. },
  44645. {
  44646. name: "Universe",
  44647. height: math.unit(8000000000, "feet")
  44648. },
  44649. {
  44650. name: "Transcended",
  44651. height: math.unit(8e27, "feet")
  44652. },
  44653. ]
  44654. ))
  44655. characterMakers.push(() => makeCharacter(
  44656. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44657. {
  44658. front: {
  44659. height: math.unit(5, "feet"),
  44660. weight: math.unit(50, "kg"),
  44661. name: "Front",
  44662. image: {
  44663. source: "./media/characters/biot-avery/front.svg",
  44664. extra: 1295/1232,
  44665. bottom: 86/1381
  44666. }
  44667. },
  44668. },
  44669. [
  44670. {
  44671. name: "Normal",
  44672. height: math.unit(5, "feet"),
  44673. default: true
  44674. },
  44675. ]
  44676. ))
  44677. characterMakers.push(() => makeCharacter(
  44678. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44679. {
  44680. front: {
  44681. height: math.unit(6, "feet"),
  44682. name: "Front",
  44683. image: {
  44684. source: "./media/characters/kitsune-kiro/front.svg",
  44685. extra: 1270/1158,
  44686. bottom: 42/1312
  44687. }
  44688. },
  44689. frontAlt: {
  44690. height: math.unit(6, "feet"),
  44691. name: "Front-alt",
  44692. image: {
  44693. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44694. extra: 1130/1081,
  44695. bottom: 36/1166
  44696. }
  44697. },
  44698. },
  44699. [
  44700. {
  44701. name: "Smol",
  44702. height: math.unit(3, "feet")
  44703. },
  44704. {
  44705. name: "Normal",
  44706. height: math.unit(6, "feet"),
  44707. default: true
  44708. },
  44709. ]
  44710. ))
  44711. characterMakers.push(() => makeCharacter(
  44712. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44713. {
  44714. front: {
  44715. height: math.unit(6, "feet"),
  44716. weight: math.unit(125, "lb"),
  44717. name: "Front",
  44718. image: {
  44719. source: "./media/characters/jack-thatcher/front.svg",
  44720. extra: 1474/1370,
  44721. bottom: 26/1500
  44722. }
  44723. },
  44724. back: {
  44725. height: math.unit(6, "feet"),
  44726. weight: math.unit(125, "lb"),
  44727. name: "Back",
  44728. image: {
  44729. source: "./media/characters/jack-thatcher/back.svg",
  44730. extra: 1489/1384,
  44731. bottom: 18/1507
  44732. }
  44733. },
  44734. },
  44735. [
  44736. {
  44737. name: "Normal",
  44738. height: math.unit(6, "feet"),
  44739. default: true
  44740. },
  44741. {
  44742. name: "Macro",
  44743. height: math.unit(75, "feet")
  44744. },
  44745. {
  44746. name: "Macro-er",
  44747. height: math.unit(250, "feet")
  44748. },
  44749. ]
  44750. ))
  44751. characterMakers.push(() => makeCharacter(
  44752. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44753. {
  44754. front: {
  44755. height: math.unit(7, "feet"),
  44756. weight: math.unit(110, "kg"),
  44757. name: "Front",
  44758. image: {
  44759. source: "./media/characters/max-hyper/front.svg",
  44760. extra: 1969/1881,
  44761. bottom: 49/2018
  44762. }
  44763. },
  44764. },
  44765. [
  44766. {
  44767. name: "Normal",
  44768. height: math.unit(7, "feet"),
  44769. default: true
  44770. },
  44771. ]
  44772. ))
  44773. characterMakers.push(() => makeCharacter(
  44774. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44775. {
  44776. front: {
  44777. height: math.unit(5 + 5/12, "feet"),
  44778. weight: math.unit(160, "lb"),
  44779. name: "Front",
  44780. image: {
  44781. source: "./media/characters/spook/front.svg",
  44782. extra: 794/791,
  44783. bottom: 54/848
  44784. }
  44785. },
  44786. back: {
  44787. height: math.unit(5 + 5/12, "feet"),
  44788. weight: math.unit(160, "lb"),
  44789. name: "Back",
  44790. image: {
  44791. source: "./media/characters/spook/back.svg",
  44792. extra: 812/798,
  44793. bottom: 32/844
  44794. }
  44795. },
  44796. },
  44797. [
  44798. {
  44799. name: "Normal",
  44800. height: math.unit(5 + 5/12, "feet"),
  44801. default: true
  44802. },
  44803. ]
  44804. ))
  44805. characterMakers.push(() => makeCharacter(
  44806. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44807. {
  44808. front: {
  44809. height: math.unit(18, "feet"),
  44810. name: "Front",
  44811. image: {
  44812. source: "./media/characters/xeaduulix/front.svg",
  44813. extra: 1380/1166,
  44814. bottom: 110/1490
  44815. }
  44816. },
  44817. back: {
  44818. height: math.unit(18, "feet"),
  44819. name: "Back",
  44820. image: {
  44821. source: "./media/characters/xeaduulix/back.svg",
  44822. extra: 1592/1170,
  44823. bottom: 128/1720
  44824. }
  44825. },
  44826. frontNsfw: {
  44827. height: math.unit(18, "feet"),
  44828. name: "Front (NSFW)",
  44829. image: {
  44830. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44831. extra: 1380/1166,
  44832. bottom: 110/1490
  44833. }
  44834. },
  44835. backNsfw: {
  44836. height: math.unit(18, "feet"),
  44837. name: "Back (NSFW)",
  44838. image: {
  44839. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44840. extra: 1592/1170,
  44841. bottom: 128/1720
  44842. }
  44843. },
  44844. },
  44845. [
  44846. {
  44847. name: "Normal",
  44848. height: math.unit(18, "feet"),
  44849. default: true
  44850. },
  44851. ]
  44852. ))
  44853. characterMakers.push(() => makeCharacter(
  44854. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44855. {
  44856. spreadWings: {
  44857. height: math.unit(20, "feet"),
  44858. name: "Spread Wings",
  44859. image: {
  44860. source: "./media/characters/fledge/spread-wings.svg",
  44861. extra: 693/635,
  44862. bottom: 26/719
  44863. }
  44864. },
  44865. front: {
  44866. height: math.unit(20, "feet"),
  44867. name: "Front",
  44868. image: {
  44869. source: "./media/characters/fledge/front.svg",
  44870. extra: 684/637,
  44871. bottom: 18/702
  44872. }
  44873. },
  44874. frontAlt: {
  44875. height: math.unit(20, "feet"),
  44876. name: "Front (Alt)",
  44877. image: {
  44878. source: "./media/characters/fledge/front-alt.svg",
  44879. extra: 708/664,
  44880. bottom: 13/721
  44881. }
  44882. },
  44883. back: {
  44884. height: math.unit(20, "feet"),
  44885. name: "Back",
  44886. image: {
  44887. source: "./media/characters/fledge/back.svg",
  44888. extra: 718/634,
  44889. bottom: 22/740
  44890. }
  44891. },
  44892. head: {
  44893. height: math.unit(5.55, "feet"),
  44894. name: "Head",
  44895. image: {
  44896. source: "./media/characters/fledge/head.svg"
  44897. }
  44898. },
  44899. headAlt: {
  44900. height: math.unit(5.1, "feet"),
  44901. name: "Head (Alt)",
  44902. image: {
  44903. source: "./media/characters/fledge/head-alt.svg"
  44904. }
  44905. },
  44906. },
  44907. [
  44908. {
  44909. name: "Small",
  44910. height: math.unit(6 + 2/12, "feet")
  44911. },
  44912. {
  44913. name: "Big",
  44914. height: math.unit(20, "feet"),
  44915. default: true
  44916. },
  44917. {
  44918. name: "Giant",
  44919. height: math.unit(100, "feet")
  44920. },
  44921. {
  44922. name: "Macro",
  44923. height: math.unit(200, "feet")
  44924. },
  44925. ]
  44926. ))
  44927. characterMakers.push(() => makeCharacter(
  44928. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44929. {
  44930. front: {
  44931. height: math.unit(1, "meter"),
  44932. name: "Front",
  44933. image: {
  44934. source: "./media/characters/atlas-morenai/front.svg",
  44935. extra: 1275/1043,
  44936. bottom: 19/1294
  44937. }
  44938. },
  44939. back: {
  44940. height: math.unit(1, "meter"),
  44941. name: "Back",
  44942. image: {
  44943. source: "./media/characters/atlas-morenai/back.svg",
  44944. extra: 1141/1001,
  44945. bottom: 25/1166
  44946. }
  44947. },
  44948. },
  44949. [
  44950. {
  44951. name: "Normal",
  44952. height: math.unit(1, "meter"),
  44953. default: true
  44954. },
  44955. {
  44956. name: "Magic-Infused",
  44957. height: math.unit(5, "meters")
  44958. },
  44959. ]
  44960. ))
  44961. characterMakers.push(() => makeCharacter(
  44962. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44963. {
  44964. front: {
  44965. height: math.unit(5, "meters"),
  44966. name: "Front",
  44967. image: {
  44968. source: "./media/characters/cintia/front.svg",
  44969. extra: 1312/1228,
  44970. bottom: 38/1350
  44971. }
  44972. },
  44973. back: {
  44974. height: math.unit(5, "meters"),
  44975. name: "Back",
  44976. image: {
  44977. source: "./media/characters/cintia/back.svg",
  44978. extra: 1260/1166,
  44979. bottom: 98/1358
  44980. }
  44981. },
  44982. frontDick: {
  44983. height: math.unit(5, "meters"),
  44984. name: "Front (Dick)",
  44985. image: {
  44986. source: "./media/characters/cintia/front-dick.svg",
  44987. extra: 1312/1228,
  44988. bottom: 38/1350
  44989. }
  44990. },
  44991. backDick: {
  44992. height: math.unit(5, "meters"),
  44993. name: "Back (Dick)",
  44994. image: {
  44995. source: "./media/characters/cintia/back-dick.svg",
  44996. extra: 1260/1166,
  44997. bottom: 98/1358
  44998. }
  44999. },
  45000. bust: {
  45001. height: math.unit(1.97, "meters"),
  45002. name: "Bust",
  45003. image: {
  45004. source: "./media/characters/cintia/bust.svg",
  45005. extra: 617/565,
  45006. bottom: 0/617
  45007. }
  45008. },
  45009. },
  45010. [
  45011. {
  45012. name: "Normal",
  45013. height: math.unit(5, "meters"),
  45014. default: true
  45015. },
  45016. ]
  45017. ))
  45018. characterMakers.push(() => makeCharacter(
  45019. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45020. {
  45021. side: {
  45022. height: math.unit(100, "feet"),
  45023. name: "Side",
  45024. image: {
  45025. source: "./media/characters/denora/side.svg",
  45026. extra: 875/803,
  45027. bottom: 9/884
  45028. }
  45029. },
  45030. },
  45031. [
  45032. {
  45033. name: "Standard",
  45034. height: math.unit(100, "feet"),
  45035. default: true
  45036. },
  45037. {
  45038. name: "Grand",
  45039. height: math.unit(1000, "feet")
  45040. },
  45041. {
  45042. name: "Conquering",
  45043. height: math.unit(10000, "feet")
  45044. },
  45045. ]
  45046. ))
  45047. characterMakers.push(() => makeCharacter(
  45048. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45049. {
  45050. dressed: {
  45051. height: math.unit(8 + 5/12, "feet"),
  45052. weight: math.unit(700, "lb"),
  45053. name: "Dressed",
  45054. image: {
  45055. source: "./media/characters/kiva/dressed.svg",
  45056. extra: 1102/1055,
  45057. bottom: 60/1162
  45058. }
  45059. },
  45060. nude: {
  45061. height: math.unit(8 + 5/12, "feet"),
  45062. weight: math.unit(700, "lb"),
  45063. name: "Nude",
  45064. image: {
  45065. source: "./media/characters/kiva/nude.svg",
  45066. extra: 1102/1055,
  45067. bottom: 60/1162
  45068. }
  45069. },
  45070. },
  45071. [
  45072. {
  45073. name: "Base Height",
  45074. height: math.unit(8 + 5/12, "feet"),
  45075. default: true
  45076. },
  45077. {
  45078. name: "Macro",
  45079. height: math.unit(100, "feet")
  45080. },
  45081. {
  45082. name: "Max",
  45083. height: math.unit(3280, "feet")
  45084. },
  45085. ]
  45086. ))
  45087. characterMakers.push(() => makeCharacter(
  45088. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45089. {
  45090. front: {
  45091. height: math.unit(6 + 8/12, "feet"),
  45092. weight: math.unit(250, "lb"),
  45093. name: "Front",
  45094. image: {
  45095. source: "./media/characters/ztragon/front.svg",
  45096. extra: 1825/1684,
  45097. bottom: 98/1923
  45098. }
  45099. },
  45100. },
  45101. [
  45102. {
  45103. name: "Normal",
  45104. height: math.unit(6 + 8/12, "feet"),
  45105. default: true
  45106. },
  45107. {
  45108. name: "Macro",
  45109. height: math.unit(80, "feet")
  45110. },
  45111. ]
  45112. ))
  45113. characterMakers.push(() => makeCharacter(
  45114. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45115. {
  45116. front: {
  45117. height: math.unit(10.4, "feet"),
  45118. weight: math.unit(2, "tons"),
  45119. name: "Front",
  45120. image: {
  45121. source: "./media/characters/yesenia/front.svg",
  45122. extra: 1479/1474,
  45123. bottom: 233/1712
  45124. }
  45125. },
  45126. },
  45127. [
  45128. {
  45129. name: "Normal",
  45130. height: math.unit(10.4, "feet"),
  45131. default: true
  45132. },
  45133. ]
  45134. ))
  45135. characterMakers.push(() => makeCharacter(
  45136. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45137. {
  45138. normal: {
  45139. height: math.unit(6 + 1/12, "feet"),
  45140. weight: math.unit(180, "lb"),
  45141. name: "Normal",
  45142. image: {
  45143. source: "./media/characters/leanne-lycheborne/normal.svg",
  45144. extra: 1748/1660,
  45145. bottom: 98/1846
  45146. }
  45147. },
  45148. were: {
  45149. height: math.unit(12, "feet"),
  45150. weight: math.unit(1600, "lb"),
  45151. name: "Were",
  45152. image: {
  45153. source: "./media/characters/leanne-lycheborne/were.svg",
  45154. extra: 1485/1432,
  45155. bottom: 66/1551
  45156. }
  45157. },
  45158. },
  45159. [
  45160. {
  45161. name: "Normal",
  45162. height: math.unit(6 + 1/12, "feet"),
  45163. default: true
  45164. },
  45165. ]
  45166. ))
  45167. characterMakers.push(() => makeCharacter(
  45168. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45169. {
  45170. side: {
  45171. height: math.unit(13, "feet"),
  45172. name: "Side",
  45173. image: {
  45174. source: "./media/characters/kira-tyler/side.svg",
  45175. extra: 693/393,
  45176. bottom: 58/751
  45177. }
  45178. },
  45179. },
  45180. [
  45181. {
  45182. name: "Normal",
  45183. height: math.unit(13, "feet"),
  45184. default: true
  45185. },
  45186. ]
  45187. ))
  45188. characterMakers.push(() => makeCharacter(
  45189. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45190. {
  45191. front: {
  45192. height: math.unit(10.3, "feet"),
  45193. weight: math.unit(150, "lb"),
  45194. name: "Front",
  45195. image: {
  45196. source: "./media/characters/blaze/front.svg",
  45197. extra: 1378/1286,
  45198. bottom: 172/1550
  45199. }
  45200. },
  45201. },
  45202. [
  45203. {
  45204. name: "Normal",
  45205. height: math.unit(10.3, "feet"),
  45206. default: true
  45207. },
  45208. ]
  45209. ))
  45210. characterMakers.push(() => makeCharacter(
  45211. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45212. {
  45213. side: {
  45214. height: math.unit(2, "meters"),
  45215. weight: math.unit(400, "kg"),
  45216. name: "Side",
  45217. image: {
  45218. source: "./media/characters/anu/side.svg",
  45219. extra: 506/394,
  45220. bottom: 18/524
  45221. }
  45222. },
  45223. },
  45224. [
  45225. {
  45226. name: "Humanoid",
  45227. height: math.unit(2, "meters")
  45228. },
  45229. {
  45230. name: "Normal",
  45231. height: math.unit(5, "meters"),
  45232. default: true
  45233. },
  45234. ]
  45235. ))
  45236. characterMakers.push(() => makeCharacter(
  45237. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45238. {
  45239. front: {
  45240. height: math.unit(5 + 5/12, "feet"),
  45241. weight: math.unit(170, "lb"),
  45242. name: "Front",
  45243. image: {
  45244. source: "./media/characters/synx-the-lynx/front.svg",
  45245. extra: 1893/1745,
  45246. bottom: 17/1910
  45247. }
  45248. },
  45249. side: {
  45250. height: math.unit(5 + 5/12, "feet"),
  45251. weight: math.unit(170, "lb"),
  45252. name: "Side",
  45253. image: {
  45254. source: "./media/characters/synx-the-lynx/side.svg",
  45255. extra: 1884/1740,
  45256. bottom: 39/1923
  45257. }
  45258. },
  45259. back: {
  45260. height: math.unit(5 + 5/12, "feet"),
  45261. weight: math.unit(170, "lb"),
  45262. name: "Back",
  45263. image: {
  45264. source: "./media/characters/synx-the-lynx/back.svg",
  45265. extra: 1903/1755,
  45266. bottom: 14/1917
  45267. }
  45268. },
  45269. },
  45270. [
  45271. {
  45272. name: "Normal",
  45273. height: math.unit(5 + 5/12, "feet"),
  45274. default: true
  45275. },
  45276. ]
  45277. ))
  45278. characterMakers.push(() => makeCharacter(
  45279. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45280. {
  45281. back: {
  45282. height: math.unit(15, "feet"),
  45283. name: "Back",
  45284. image: {
  45285. source: "./media/characters/nadezda-fex/back.svg",
  45286. extra: 1695/1481,
  45287. bottom: 25/1720
  45288. }
  45289. },
  45290. },
  45291. [
  45292. {
  45293. name: "Normal",
  45294. height: math.unit(15, "feet"),
  45295. default: true
  45296. },
  45297. {
  45298. name: "Macro",
  45299. height: math.unit(2.5, "miles")
  45300. },
  45301. {
  45302. name: "Goddess",
  45303. height: math.unit(2, "multiverses")
  45304. },
  45305. ]
  45306. ))
  45307. characterMakers.push(() => makeCharacter(
  45308. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45309. {
  45310. front: {
  45311. height: math.unit(216, "cm"),
  45312. name: "Front",
  45313. image: {
  45314. source: "./media/characters/lev/front.svg",
  45315. extra: 1728/1670,
  45316. bottom: 82/1810
  45317. }
  45318. },
  45319. back: {
  45320. height: math.unit(216, "cm"),
  45321. name: "Back",
  45322. image: {
  45323. source: "./media/characters/lev/back.svg",
  45324. extra: 1738/1675,
  45325. bottom: 24/1762
  45326. }
  45327. },
  45328. dressed: {
  45329. height: math.unit(216, "cm"),
  45330. name: "Dressed",
  45331. image: {
  45332. source: "./media/characters/lev/dressed.svg",
  45333. extra: 1397/1351,
  45334. bottom: 73/1470
  45335. }
  45336. },
  45337. head: {
  45338. height: math.unit(0.51, "meter"),
  45339. name: "Head",
  45340. image: {
  45341. source: "./media/characters/lev/head.svg"
  45342. }
  45343. },
  45344. },
  45345. [
  45346. {
  45347. name: "Normal",
  45348. height: math.unit(216, "cm"),
  45349. default: true
  45350. },
  45351. {
  45352. name: "Relatively Macro",
  45353. height: math.unit(80, "meters")
  45354. },
  45355. {
  45356. name: "Megamacro",
  45357. height: math.unit(21600, "meters")
  45358. },
  45359. {
  45360. name: "Megamacro+",
  45361. height: math.unit(64800, "meters")
  45362. },
  45363. ]
  45364. ))
  45365. characterMakers.push(() => makeCharacter(
  45366. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45367. {
  45368. front: {
  45369. height: math.unit(2, "meters"),
  45370. weight: math.unit(80, "kg"),
  45371. name: "Front",
  45372. image: {
  45373. source: "./media/characters/moka/front.svg",
  45374. extra: 1337/1255,
  45375. bottom: 58/1395
  45376. }
  45377. },
  45378. },
  45379. [
  45380. {
  45381. name: "Micro",
  45382. height: math.unit(15, "cm")
  45383. },
  45384. {
  45385. name: "Normal",
  45386. height: math.unit(2, "meters"),
  45387. default: true
  45388. },
  45389. {
  45390. name: "Macro",
  45391. height: math.unit(20, "meters"),
  45392. },
  45393. ]
  45394. ))
  45395. characterMakers.push(() => makeCharacter(
  45396. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45397. {
  45398. front: {
  45399. height: math.unit(9, "feet"),
  45400. weight: math.unit(240, "lb"),
  45401. name: "Front",
  45402. image: {
  45403. source: "./media/characters/kuzco/front.svg",
  45404. extra: 1593/1487,
  45405. bottom: 32/1625
  45406. }
  45407. },
  45408. side: {
  45409. height: math.unit(9, "feet"),
  45410. weight: math.unit(240, "lb"),
  45411. name: "Side",
  45412. image: {
  45413. source: "./media/characters/kuzco/side.svg",
  45414. extra: 1575/1485,
  45415. bottom: 30/1605
  45416. }
  45417. },
  45418. back: {
  45419. height: math.unit(9, "feet"),
  45420. weight: math.unit(240, "lb"),
  45421. name: "Back",
  45422. image: {
  45423. source: "./media/characters/kuzco/back.svg",
  45424. extra: 1603/1514,
  45425. bottom: 14/1617
  45426. }
  45427. },
  45428. },
  45429. [
  45430. {
  45431. name: "Normal",
  45432. height: math.unit(9, "feet"),
  45433. default: true
  45434. },
  45435. ]
  45436. ))
  45437. characterMakers.push(() => makeCharacter(
  45438. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45439. {
  45440. side: {
  45441. height: math.unit(2, "meters"),
  45442. weight: math.unit(300, "kg"),
  45443. name: "Side",
  45444. image: {
  45445. source: "./media/characters/ceruleus/side.svg",
  45446. extra: 1068/974,
  45447. bottom: 126/1194
  45448. }
  45449. },
  45450. },
  45451. [
  45452. {
  45453. name: "Normal",
  45454. height: math.unit(16, "meters"),
  45455. default: true
  45456. },
  45457. ]
  45458. ))
  45459. characterMakers.push(() => makeCharacter(
  45460. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45461. {
  45462. front: {
  45463. height: math.unit(9, "feet"),
  45464. weight: math.unit(500, "kg"),
  45465. name: "Front",
  45466. image: {
  45467. source: "./media/characters/acouya/front.svg",
  45468. extra: 1660/1473,
  45469. bottom: 28/1688
  45470. }
  45471. },
  45472. },
  45473. [
  45474. {
  45475. name: "Normal",
  45476. height: math.unit(9, "feet"),
  45477. default: true
  45478. },
  45479. ]
  45480. ))
  45481. characterMakers.push(() => makeCharacter(
  45482. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45483. {
  45484. front: {
  45485. height: math.unit(5 + 6/12, "feet"),
  45486. weight: math.unit(195, "lb"),
  45487. name: "Front",
  45488. image: {
  45489. source: "./media/characters/vant/front.svg",
  45490. extra: 1396/1320,
  45491. bottom: 20/1416
  45492. }
  45493. },
  45494. back: {
  45495. height: math.unit(5 + 6/12, "feet"),
  45496. weight: math.unit(195, "lb"),
  45497. name: "Back",
  45498. image: {
  45499. source: "./media/characters/vant/back.svg",
  45500. extra: 1396/1320,
  45501. bottom: 20/1416
  45502. }
  45503. },
  45504. maw: {
  45505. height: math.unit(0.75, "feet"),
  45506. name: "Maw",
  45507. image: {
  45508. source: "./media/characters/vant/maw.svg"
  45509. }
  45510. },
  45511. paw: {
  45512. height: math.unit(1.07, "feet"),
  45513. name: "Paw",
  45514. image: {
  45515. source: "./media/characters/vant/paw.svg"
  45516. }
  45517. },
  45518. },
  45519. [
  45520. {
  45521. name: "Micro",
  45522. height: math.unit(0.25, "inches")
  45523. },
  45524. {
  45525. name: "Normal",
  45526. height: math.unit(5 + 6/12, "feet"),
  45527. default: true
  45528. },
  45529. {
  45530. name: "Macro",
  45531. height: math.unit(75, "feet")
  45532. },
  45533. ]
  45534. ))
  45535. characterMakers.push(() => makeCharacter(
  45536. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45537. {
  45538. front: {
  45539. height: math.unit(30, "meters"),
  45540. weight: math.unit(363, "tons"),
  45541. name: "Front",
  45542. image: {
  45543. source: "./media/characters/ahra/front.svg",
  45544. extra: 1914/1814,
  45545. bottom: 46/1960
  45546. }
  45547. },
  45548. },
  45549. [
  45550. {
  45551. name: "Macro",
  45552. height: math.unit(30, "meters"),
  45553. default: true
  45554. },
  45555. ]
  45556. ))
  45557. characterMakers.push(() => makeCharacter(
  45558. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45559. {
  45560. undressed: {
  45561. height: math.unit(2, "m"),
  45562. weight: math.unit(250, "kg"),
  45563. name: "Undressed",
  45564. image: {
  45565. source: "./media/characters/coriander/undressed.svg",
  45566. extra: 1757/1606,
  45567. bottom: 107/1864
  45568. }
  45569. },
  45570. dressed: {
  45571. height: math.unit(2, "m"),
  45572. weight: math.unit(250, "kg"),
  45573. name: "Dressed",
  45574. image: {
  45575. source: "./media/characters/coriander/dressed.svg",
  45576. extra: 1757/1606,
  45577. bottom: 107/1864
  45578. }
  45579. },
  45580. },
  45581. [
  45582. {
  45583. name: "Normal",
  45584. height: math.unit(4, "meters"),
  45585. default: true
  45586. },
  45587. {
  45588. name: "XL",
  45589. height: math.unit(6, "meters")
  45590. },
  45591. {
  45592. name: "XXL",
  45593. height: math.unit(8, "meters")
  45594. },
  45595. ]
  45596. ))
  45597. characterMakers.push(() => makeCharacter(
  45598. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45599. {
  45600. front: {
  45601. height: math.unit(6, "feet"),
  45602. name: "Front",
  45603. image: {
  45604. source: "./media/characters/syrinx/front.svg",
  45605. extra: 1557/1259,
  45606. bottom: 171/1728
  45607. }
  45608. },
  45609. },
  45610. [
  45611. {
  45612. name: "Normal",
  45613. height: math.unit(6 + 3/12, "feet"),
  45614. default: true
  45615. },
  45616. ]
  45617. ))
  45618. characterMakers.push(() => makeCharacter(
  45619. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45620. {
  45621. front: {
  45622. height: math.unit(11 + 6/12, "feet"),
  45623. weight: math.unit(1.5, "tons"),
  45624. name: "Front",
  45625. image: {
  45626. source: "./media/characters/bor/front.svg",
  45627. extra: 1189/1109,
  45628. bottom: 170/1359
  45629. }
  45630. },
  45631. },
  45632. [
  45633. {
  45634. name: "Normal",
  45635. height: math.unit(11 + 6/12, "feet"),
  45636. default: true
  45637. },
  45638. {
  45639. name: "Macro",
  45640. height: math.unit(32 + 9/12, "feet")
  45641. },
  45642. ]
  45643. ))
  45644. characterMakers.push(() => makeCharacter(
  45645. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45646. {
  45647. anthro: {
  45648. height: math.unit(9, "feet"),
  45649. weight: math.unit(2076, "lb"),
  45650. name: "Anthro",
  45651. image: {
  45652. source: "./media/characters/abacus/anthro.svg",
  45653. extra: 1540/1494,
  45654. bottom: 233/1773
  45655. }
  45656. },
  45657. pigeon: {
  45658. height: math.unit(1, "feet"),
  45659. name: "Pigeon",
  45660. image: {
  45661. source: "./media/characters/abacus/pigeon.svg",
  45662. extra: 528/525,
  45663. bottom: 46/574
  45664. }
  45665. },
  45666. },
  45667. [
  45668. {
  45669. name: "Normal",
  45670. height: math.unit(9, "feet"),
  45671. default: true
  45672. },
  45673. ]
  45674. ))
  45675. characterMakers.push(() => makeCharacter(
  45676. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45677. {
  45678. side: {
  45679. height: math.unit(6, "feet"),
  45680. name: "Side",
  45681. image: {
  45682. source: "./media/characters/delkhan/side.svg",
  45683. extra: 1884/1786,
  45684. bottom: 308/2192
  45685. }
  45686. },
  45687. head: {
  45688. height: math.unit(3.38, "feet"),
  45689. name: "Head",
  45690. image: {
  45691. source: "./media/characters/delkhan/head.svg"
  45692. }
  45693. },
  45694. },
  45695. [
  45696. {
  45697. name: "Normal",
  45698. height: math.unit(72, "feet"),
  45699. default: true
  45700. },
  45701. {
  45702. name: "Giant",
  45703. height: math.unit(172, "feet")
  45704. },
  45705. ]
  45706. ))
  45707. characterMakers.push(() => makeCharacter(
  45708. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45709. {
  45710. standing: {
  45711. height: math.unit(6, "feet"),
  45712. name: "Standing",
  45713. image: {
  45714. source: "./media/characters/euchidat/standing.svg",
  45715. extra: 1612/1553,
  45716. bottom: 116/1728
  45717. }
  45718. },
  45719. leaning: {
  45720. height: math.unit(6, "feet"),
  45721. name: "Leaning",
  45722. image: {
  45723. source: "./media/characters/euchidat/leaning.svg",
  45724. extra: 1719/1674,
  45725. bottom: 27/1746
  45726. }
  45727. },
  45728. },
  45729. [
  45730. {
  45731. name: "Normal",
  45732. height: math.unit(175, "feet"),
  45733. default: true
  45734. },
  45735. {
  45736. name: "Megamacro",
  45737. height: math.unit(190, "miles")
  45738. },
  45739. {
  45740. name: "Gigamacro",
  45741. height: math.unit(190000, "miles")
  45742. },
  45743. ]
  45744. ))
  45745. characterMakers.push(() => makeCharacter(
  45746. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45747. {
  45748. front: {
  45749. height: math.unit(6, "feet"),
  45750. weight: math.unit(150, "lb"),
  45751. name: "Front",
  45752. image: {
  45753. source: "./media/characters/rebecca-stack/front.svg",
  45754. extra: 1256/1201,
  45755. bottom: 18/1274
  45756. }
  45757. },
  45758. },
  45759. [
  45760. {
  45761. name: "Normal",
  45762. height: math.unit(5 + 8/12, "feet"),
  45763. default: true
  45764. },
  45765. {
  45766. name: "Demolitionist",
  45767. height: math.unit(200, "feet")
  45768. },
  45769. {
  45770. name: "Out of Control",
  45771. height: math.unit(2, "miles")
  45772. },
  45773. {
  45774. name: "Giga",
  45775. height: math.unit(7200, "miles")
  45776. },
  45777. ]
  45778. ))
  45779. characterMakers.push(() => makeCharacter(
  45780. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45781. {
  45782. front: {
  45783. height: math.unit(6, "feet"),
  45784. weight: math.unit(150, "lb"),
  45785. name: "Front",
  45786. image: {
  45787. source: "./media/characters/jenny-cartwright/front.svg",
  45788. extra: 1384/1376,
  45789. bottom: 58/1442
  45790. }
  45791. },
  45792. },
  45793. [
  45794. {
  45795. name: "Normal",
  45796. height: math.unit(6 + 7/12, "feet"),
  45797. default: true
  45798. },
  45799. {
  45800. name: "Librarian",
  45801. height: math.unit(55, "feet")
  45802. },
  45803. {
  45804. name: "Sightseer",
  45805. height: math.unit(50, "miles")
  45806. },
  45807. {
  45808. name: "Giga",
  45809. height: math.unit(30000, "miles")
  45810. },
  45811. ]
  45812. ))
  45813. characterMakers.push(() => makeCharacter(
  45814. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45815. {
  45816. nude: {
  45817. height: math.unit(8, "feet"),
  45818. weight: math.unit(225, "lb"),
  45819. name: "Nude",
  45820. image: {
  45821. source: "./media/characters/marvy/nude.svg",
  45822. extra: 1900/1683,
  45823. bottom: 89/1989
  45824. }
  45825. },
  45826. dressed: {
  45827. height: math.unit(8, "feet"),
  45828. weight: math.unit(225, "lb"),
  45829. name: "Dressed",
  45830. image: {
  45831. source: "./media/characters/marvy/dressed.svg",
  45832. extra: 1900/1683,
  45833. bottom: 89/1989
  45834. }
  45835. },
  45836. head: {
  45837. height: math.unit(2.85, "feet"),
  45838. name: "Head",
  45839. image: {
  45840. source: "./media/characters/marvy/head.svg"
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Normal",
  45847. height: math.unit(8, "feet"),
  45848. default: true
  45849. },
  45850. ]
  45851. ))
  45852. characterMakers.push(() => makeCharacter(
  45853. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45854. {
  45855. front: {
  45856. height: math.unit(8, "feet"),
  45857. weight: math.unit(250, "lb"),
  45858. name: "Front",
  45859. image: {
  45860. source: "./media/characters/leah/front.svg",
  45861. extra: 1257/1149,
  45862. bottom: 109/1366
  45863. }
  45864. },
  45865. },
  45866. [
  45867. {
  45868. name: "Normal",
  45869. height: math.unit(8, "feet"),
  45870. default: true
  45871. },
  45872. {
  45873. name: "Minimacro",
  45874. height: math.unit(40, "feet")
  45875. },
  45876. {
  45877. name: "Macro",
  45878. height: math.unit(124, "feet")
  45879. },
  45880. {
  45881. name: "Megamacro",
  45882. height: math.unit(850, "feet")
  45883. },
  45884. ]
  45885. ))
  45886. characterMakers.push(() => makeCharacter(
  45887. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45888. {
  45889. side: {
  45890. height: math.unit(13 + 6/12, "feet"),
  45891. weight: math.unit(3200, "lb"),
  45892. name: "Side",
  45893. image: {
  45894. source: "./media/characters/alvir/side.svg",
  45895. extra: 896/589,
  45896. bottom: 26/922
  45897. }
  45898. },
  45899. },
  45900. [
  45901. {
  45902. name: "Normal",
  45903. height: math.unit(13 + 6/12, "feet"),
  45904. default: true
  45905. },
  45906. ]
  45907. ))
  45908. characterMakers.push(() => makeCharacter(
  45909. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45910. {
  45911. front: {
  45912. height: math.unit(5 + 4/12, "feet"),
  45913. weight: math.unit(236, "lb"),
  45914. name: "Front",
  45915. image: {
  45916. source: "./media/characters/zaina-khalil/front.svg",
  45917. extra: 1533/1485,
  45918. bottom: 94/1627
  45919. }
  45920. },
  45921. side: {
  45922. height: math.unit(5 + 4/12, "feet"),
  45923. weight: math.unit(236, "lb"),
  45924. name: "Side",
  45925. image: {
  45926. source: "./media/characters/zaina-khalil/side.svg",
  45927. extra: 1537/1498,
  45928. bottom: 66/1603
  45929. }
  45930. },
  45931. back: {
  45932. height: math.unit(5 + 4/12, "feet"),
  45933. weight: math.unit(236, "lb"),
  45934. name: "Back",
  45935. image: {
  45936. source: "./media/characters/zaina-khalil/back.svg",
  45937. extra: 1546/1494,
  45938. bottom: 89/1635
  45939. }
  45940. },
  45941. },
  45942. [
  45943. {
  45944. name: "Normal",
  45945. height: math.unit(5 + 4/12, "feet"),
  45946. default: true
  45947. },
  45948. ]
  45949. ))
  45950. characterMakers.push(() => makeCharacter(
  45951. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45952. {
  45953. side: {
  45954. height: math.unit(12, "feet"),
  45955. weight: math.unit(4000, "lb"),
  45956. name: "Side",
  45957. image: {
  45958. source: "./media/characters/terry/side.svg",
  45959. extra: 1518/1439,
  45960. bottom: 149/1667
  45961. }
  45962. },
  45963. },
  45964. [
  45965. {
  45966. name: "Normal",
  45967. height: math.unit(12, "feet"),
  45968. default: true
  45969. },
  45970. ]
  45971. ))
  45972. characterMakers.push(() => makeCharacter(
  45973. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45974. {
  45975. front: {
  45976. height: math.unit(12, "feet"),
  45977. weight: math.unit(1500, "lb"),
  45978. name: "Front",
  45979. image: {
  45980. source: "./media/characters/kahea/front.svg",
  45981. extra: 1722/1617,
  45982. bottom: 179/1901
  45983. }
  45984. },
  45985. },
  45986. [
  45987. {
  45988. name: "Normal",
  45989. height: math.unit(12, "feet"),
  45990. default: true
  45991. },
  45992. ]
  45993. ))
  45994. characterMakers.push(() => makeCharacter(
  45995. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45996. {
  45997. demonFront: {
  45998. height: math.unit(36, "feet"),
  45999. name: "Front",
  46000. image: {
  46001. source: "./media/characters/alex-xuria/demon-front.svg",
  46002. extra: 1705/1673,
  46003. bottom: 198/1903
  46004. },
  46005. form: "demon",
  46006. default: true
  46007. },
  46008. demonBack: {
  46009. height: math.unit(36, "feet"),
  46010. name: "Back",
  46011. image: {
  46012. source: "./media/characters/alex-xuria/demon-back.svg",
  46013. extra: 1725/1693,
  46014. bottom: 70/1795
  46015. },
  46016. form: "demon"
  46017. },
  46018. demonHead: {
  46019. height: math.unit(2.14, "meters"),
  46020. name: "Head",
  46021. image: {
  46022. source: "./media/characters/alex-xuria/demon-head.svg"
  46023. },
  46024. form: "demon"
  46025. },
  46026. demonHand: {
  46027. height: math.unit(1.61, "meters"),
  46028. name: "Hand",
  46029. image: {
  46030. source: "./media/characters/alex-xuria/demon-hand.svg"
  46031. },
  46032. form: "demon"
  46033. },
  46034. demonPaw: {
  46035. height: math.unit(1.35, "meters"),
  46036. name: "Paw",
  46037. image: {
  46038. source: "./media/characters/alex-xuria/demon-paw.svg"
  46039. },
  46040. form: "demon"
  46041. },
  46042. demonFoot: {
  46043. height: math.unit(2.2, "meters"),
  46044. name: "Foot",
  46045. image: {
  46046. source: "./media/characters/alex-xuria/demon-foot.svg"
  46047. },
  46048. form: "demon"
  46049. },
  46050. demonCock: {
  46051. height: math.unit(1.74, "meters"),
  46052. name: "Cock",
  46053. image: {
  46054. source: "./media/characters/alex-xuria/demon-cock.svg"
  46055. },
  46056. form: "demon"
  46057. },
  46058. demonTailClosed: {
  46059. height: math.unit(1.47, "meters"),
  46060. name: "Tail (Closed)",
  46061. image: {
  46062. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46063. },
  46064. form: "demon"
  46065. },
  46066. demonTailOpen: {
  46067. height: math.unit(2.85, "meters"),
  46068. name: "Tail (Open)",
  46069. image: {
  46070. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46071. },
  46072. form: "demon"
  46073. },
  46074. incubusFront: {
  46075. height: math.unit(12, "feet"),
  46076. name: "Front",
  46077. image: {
  46078. source: "./media/characters/alex-xuria/incubus-front.svg",
  46079. extra: 1754/1677,
  46080. bottom: 125/1879
  46081. },
  46082. form: "incubus",
  46083. default: true
  46084. },
  46085. incubusBack: {
  46086. height: math.unit(12, "feet"),
  46087. name: "Back",
  46088. image: {
  46089. source: "./media/characters/alex-xuria/incubus-back.svg",
  46090. extra: 1702/1647,
  46091. bottom: 30/1732
  46092. },
  46093. form: "incubus"
  46094. },
  46095. incubusHead: {
  46096. height: math.unit(3.45, "feet"),
  46097. name: "Head",
  46098. image: {
  46099. source: "./media/characters/alex-xuria/incubus-head.svg"
  46100. },
  46101. form: "incubus"
  46102. },
  46103. rabbitFront: {
  46104. height: math.unit(6, "feet"),
  46105. name: "Front",
  46106. image: {
  46107. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46108. extra: 1369/1349,
  46109. bottom: 45/1414
  46110. },
  46111. form: "rabbit",
  46112. default: true
  46113. },
  46114. rabbitSide: {
  46115. height: math.unit(6, "feet"),
  46116. name: "Side",
  46117. image: {
  46118. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46119. extra: 1370/1356,
  46120. bottom: 37/1407
  46121. },
  46122. form: "rabbit"
  46123. },
  46124. rabbitBack: {
  46125. height: math.unit(6, "feet"),
  46126. name: "Back",
  46127. image: {
  46128. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46129. extra: 1375/1358,
  46130. bottom: 43/1418
  46131. },
  46132. form: "rabbit"
  46133. },
  46134. },
  46135. [
  46136. {
  46137. name: "Normal",
  46138. height: math.unit(6, "feet"),
  46139. default: true,
  46140. form: "rabbit"
  46141. },
  46142. {
  46143. name: "Incubus",
  46144. height: math.unit(12, "feet"),
  46145. default: true,
  46146. form: "incubus"
  46147. },
  46148. {
  46149. name: "Demon",
  46150. height: math.unit(36, "feet"),
  46151. default: true,
  46152. form: "demon"
  46153. }
  46154. ],
  46155. {
  46156. "demon": {
  46157. name: "Demon",
  46158. default: true
  46159. },
  46160. "incubus": {
  46161. name: "Incubus",
  46162. },
  46163. "rabbit": {
  46164. name: "Rabbit"
  46165. }
  46166. }
  46167. ))
  46168. characterMakers.push(() => makeCharacter(
  46169. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46170. {
  46171. front: {
  46172. height: math.unit(7 + 5/12, "feet"),
  46173. weight: math.unit(510, "lb"),
  46174. name: "Front",
  46175. image: {
  46176. source: "./media/characters/syrup/front.svg",
  46177. extra: 932/916,
  46178. bottom: 26/958
  46179. }
  46180. },
  46181. },
  46182. [
  46183. {
  46184. name: "Normal",
  46185. height: math.unit(7 + 5/12, "feet"),
  46186. default: true
  46187. },
  46188. {
  46189. name: "Big",
  46190. height: math.unit(50, "feet")
  46191. },
  46192. {
  46193. name: "Macro",
  46194. height: math.unit(300, "feet")
  46195. },
  46196. {
  46197. name: "Megamacro",
  46198. height: math.unit(1, "mile")
  46199. },
  46200. ]
  46201. ))
  46202. characterMakers.push(() => makeCharacter(
  46203. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46204. {
  46205. front: {
  46206. height: math.unit(6 + 9/12, "feet"),
  46207. name: "Front",
  46208. image: {
  46209. source: "./media/characters/zeimne/front.svg",
  46210. extra: 1969/1806,
  46211. bottom: 53/2022
  46212. }
  46213. },
  46214. },
  46215. [
  46216. {
  46217. name: "Normal",
  46218. height: math.unit(6 + 9/12, "feet"),
  46219. default: true
  46220. },
  46221. {
  46222. name: "Giant",
  46223. height: math.unit(550, "feet")
  46224. },
  46225. {
  46226. name: "Mega",
  46227. height: math.unit(3, "miles")
  46228. },
  46229. {
  46230. name: "Giga",
  46231. height: math.unit(250, "miles")
  46232. },
  46233. {
  46234. name: "Tera",
  46235. height: math.unit(1, "AU")
  46236. },
  46237. ]
  46238. ))
  46239. characterMakers.push(() => makeCharacter(
  46240. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46241. {
  46242. front: {
  46243. height: math.unit(5 + 2/12, "feet"),
  46244. name: "Front",
  46245. image: {
  46246. source: "./media/characters/grar/front.svg",
  46247. extra: 1331/1119,
  46248. bottom: 60/1391
  46249. }
  46250. },
  46251. back: {
  46252. height: math.unit(5 + 2/12, "feet"),
  46253. name: "Back",
  46254. image: {
  46255. source: "./media/characters/grar/back.svg",
  46256. extra: 1385/1169,
  46257. bottom: 23/1408
  46258. }
  46259. },
  46260. },
  46261. [
  46262. {
  46263. name: "Normal",
  46264. height: math.unit(5 + 2/12, "feet"),
  46265. default: true
  46266. },
  46267. ]
  46268. ))
  46269. characterMakers.push(() => makeCharacter(
  46270. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46271. {
  46272. front: {
  46273. height: math.unit(13 + 7/12, "feet"),
  46274. weight: math.unit(2200, "lb"),
  46275. name: "Front",
  46276. image: {
  46277. source: "./media/characters/endraya/front.svg",
  46278. extra: 1289/1215,
  46279. bottom: 50/1339
  46280. }
  46281. },
  46282. nude: {
  46283. height: math.unit(13 + 7/12, "feet"),
  46284. weight: math.unit(2200, "lb"),
  46285. name: "Nude",
  46286. image: {
  46287. source: "./media/characters/endraya/nude.svg",
  46288. extra: 1247/1171,
  46289. bottom: 40/1287
  46290. }
  46291. },
  46292. head: {
  46293. height: math.unit(2.6, "feet"),
  46294. name: "Head",
  46295. image: {
  46296. source: "./media/characters/endraya/head.svg"
  46297. }
  46298. },
  46299. slit: {
  46300. height: math.unit(3.4, "feet"),
  46301. name: "Slit",
  46302. image: {
  46303. source: "./media/characters/endraya/slit.svg"
  46304. }
  46305. },
  46306. },
  46307. [
  46308. {
  46309. name: "Normal",
  46310. height: math.unit(13 + 7/12, "feet"),
  46311. default: true
  46312. },
  46313. {
  46314. name: "Macro",
  46315. height: math.unit(200, "feet")
  46316. },
  46317. ]
  46318. ))
  46319. characterMakers.push(() => makeCharacter(
  46320. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46321. {
  46322. front: {
  46323. height: math.unit(1.81, "meters"),
  46324. weight: math.unit(69, "kg"),
  46325. name: "Front",
  46326. image: {
  46327. source: "./media/characters/rodryana/front.svg",
  46328. extra: 2002/1921,
  46329. bottom: 53/2055
  46330. }
  46331. },
  46332. back: {
  46333. height: math.unit(1.81, "meters"),
  46334. weight: math.unit(69, "kg"),
  46335. name: "Back",
  46336. image: {
  46337. source: "./media/characters/rodryana/back.svg",
  46338. extra: 1993/1926,
  46339. bottom: 48/2041
  46340. }
  46341. },
  46342. maw: {
  46343. height: math.unit(0.19769417475, "meters"),
  46344. name: "Maw",
  46345. image: {
  46346. source: "./media/characters/rodryana/maw.svg"
  46347. }
  46348. },
  46349. slit: {
  46350. height: math.unit(0.31631067961, "meters"),
  46351. name: "Slit",
  46352. image: {
  46353. source: "./media/characters/rodryana/slit.svg"
  46354. }
  46355. },
  46356. },
  46357. [
  46358. {
  46359. name: "Normal",
  46360. height: math.unit(1.81, "meters")
  46361. },
  46362. {
  46363. name: "Mini Macro",
  46364. height: math.unit(181, "meters")
  46365. },
  46366. {
  46367. name: "Macro",
  46368. height: math.unit(452, "meters"),
  46369. default: true
  46370. },
  46371. {
  46372. name: "Mega Macro",
  46373. height: math.unit(1.375, "km")
  46374. },
  46375. {
  46376. name: "Giga Macro",
  46377. height: math.unit(13.575, "km")
  46378. },
  46379. ]
  46380. ))
  46381. characterMakers.push(() => makeCharacter(
  46382. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46383. {
  46384. front: {
  46385. height: math.unit(6, "feet"),
  46386. weight: math.unit(1000, "lb"),
  46387. name: "Front",
  46388. image: {
  46389. source: "./media/characters/asaya/front.svg",
  46390. extra: 1460/1200,
  46391. bottom: 71/1531
  46392. }
  46393. },
  46394. },
  46395. [
  46396. {
  46397. name: "Normal",
  46398. height: math.unit(8, "km"),
  46399. default: true
  46400. },
  46401. ]
  46402. ))
  46403. characterMakers.push(() => makeCharacter(
  46404. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46405. {
  46406. front: {
  46407. height: math.unit(3.5, "meters"),
  46408. name: "Front",
  46409. image: {
  46410. source: "./media/characters/sarzu-and-israz/front.svg",
  46411. extra: 1570/1558,
  46412. bottom: 150/1720
  46413. },
  46414. },
  46415. back: {
  46416. height: math.unit(3.5, "meters"),
  46417. name: "Back",
  46418. image: {
  46419. source: "./media/characters/sarzu-and-israz/back.svg",
  46420. extra: 1523/1509,
  46421. bottom: 132/1655
  46422. },
  46423. },
  46424. frontFemale: {
  46425. height: math.unit(3.5, "meters"),
  46426. name: "Front (Female)",
  46427. image: {
  46428. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46429. extra: 1570/1558,
  46430. bottom: 150/1720
  46431. },
  46432. },
  46433. frontHerm: {
  46434. height: math.unit(3.5, "meters"),
  46435. name: "Front (Herm)",
  46436. image: {
  46437. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46438. extra: 1570/1558,
  46439. bottom: 150/1720
  46440. },
  46441. },
  46442. },
  46443. [
  46444. {
  46445. name: "Normal",
  46446. height: math.unit(3.5, "meters"),
  46447. default: true,
  46448. },
  46449. {
  46450. name: "Macro",
  46451. height: math.unit(65.5, "meters"),
  46452. },
  46453. ],
  46454. ))
  46455. characterMakers.push(() => makeCharacter(
  46456. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46457. {
  46458. front: {
  46459. height: math.unit(6, "feet"),
  46460. weight: math.unit(250, "lb"),
  46461. name: "Front",
  46462. image: {
  46463. source: "./media/characters/zenimma/front.svg",
  46464. extra: 1346/1320,
  46465. bottom: 58/1404
  46466. }
  46467. },
  46468. back: {
  46469. height: math.unit(6, "feet"),
  46470. weight: math.unit(250, "lb"),
  46471. name: "Back",
  46472. image: {
  46473. source: "./media/characters/zenimma/back.svg",
  46474. extra: 1324/1308,
  46475. bottom: 44/1368
  46476. }
  46477. },
  46478. dick: {
  46479. height: math.unit(1.44, "feet"),
  46480. name: "Dick",
  46481. image: {
  46482. source: "./media/characters/zenimma/dick.svg"
  46483. }
  46484. },
  46485. },
  46486. [
  46487. {
  46488. name: "Canon Height",
  46489. height: math.unit(66, "miles"),
  46490. default: true
  46491. },
  46492. ]
  46493. ))
  46494. characterMakers.push(() => makeCharacter(
  46495. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46496. {
  46497. nude: {
  46498. height: math.unit(6, "feet"),
  46499. weight: math.unit(150, "lb"),
  46500. name: "Nude",
  46501. image: {
  46502. source: "./media/characters/shavon/nude.svg",
  46503. extra: 1242/1096,
  46504. bottom: 98/1340
  46505. }
  46506. },
  46507. dressed: {
  46508. height: math.unit(6, "feet"),
  46509. weight: math.unit(150, "lb"),
  46510. name: "Dressed",
  46511. image: {
  46512. source: "./media/characters/shavon/dressed.svg",
  46513. extra: 1242/1096,
  46514. bottom: 98/1340
  46515. }
  46516. },
  46517. },
  46518. [
  46519. {
  46520. name: "Macro",
  46521. height: math.unit(255, "feet"),
  46522. default: true
  46523. },
  46524. ]
  46525. ))
  46526. characterMakers.push(() => makeCharacter(
  46527. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46528. {
  46529. front: {
  46530. height: math.unit(6, "feet"),
  46531. name: "Front",
  46532. image: {
  46533. source: "./media/characters/steph/front.svg",
  46534. extra: 1430/1330,
  46535. bottom: 54/1484
  46536. }
  46537. },
  46538. },
  46539. [
  46540. {
  46541. name: "Normal",
  46542. height: math.unit(6, "feet"),
  46543. default: true
  46544. },
  46545. ]
  46546. ))
  46547. characterMakers.push(() => makeCharacter(
  46548. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46549. {
  46550. front: {
  46551. height: math.unit(9, "feet"),
  46552. weight: math.unit(400, "lb"),
  46553. name: "Front",
  46554. image: {
  46555. source: "./media/characters/kil'aman/front.svg",
  46556. extra: 1210/1159,
  46557. bottom: 109/1319
  46558. }
  46559. },
  46560. head: {
  46561. height: math.unit(2.14, "feet"),
  46562. name: "Head",
  46563. image: {
  46564. source: "./media/characters/kil'aman/head.svg"
  46565. }
  46566. },
  46567. maw: {
  46568. height: math.unit(1.21, "feet"),
  46569. name: "Maw",
  46570. image: {
  46571. source: "./media/characters/kil'aman/maw.svg"
  46572. }
  46573. },
  46574. foot: {
  46575. height: math.unit(1.7, "feet"),
  46576. name: "Foot",
  46577. image: {
  46578. source: "./media/characters/kil'aman/foot.svg"
  46579. }
  46580. },
  46581. dick: {
  46582. height: math.unit(2.1, "feet"),
  46583. name: "Dick",
  46584. image: {
  46585. source: "./media/characters/kil'aman/dick.svg"
  46586. }
  46587. },
  46588. },
  46589. [
  46590. {
  46591. name: "Normal",
  46592. height: math.unit(9, "feet")
  46593. },
  46594. {
  46595. name: "Canon Height",
  46596. height: math.unit(10, "miles"),
  46597. default: true
  46598. },
  46599. {
  46600. name: "Maximum",
  46601. height: math.unit(6e9, "miles")
  46602. },
  46603. ]
  46604. ))
  46605. characterMakers.push(() => makeCharacter(
  46606. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46607. {
  46608. front: {
  46609. height: math.unit(90, "feet"),
  46610. weight: math.unit(675000, "lb"),
  46611. name: "Front",
  46612. image: {
  46613. source: "./media/characters/qadan/front.svg",
  46614. extra: 1012/1004,
  46615. bottom: 78/1090
  46616. }
  46617. },
  46618. back: {
  46619. height: math.unit(90, "feet"),
  46620. weight: math.unit(675000, "lb"),
  46621. name: "Back",
  46622. image: {
  46623. source: "./media/characters/qadan/back.svg",
  46624. extra: 1042/1031,
  46625. bottom: 55/1097
  46626. }
  46627. },
  46628. armored: {
  46629. height: math.unit(90, "feet"),
  46630. weight: math.unit(675000, "lb"),
  46631. name: "Armored",
  46632. image: {
  46633. source: "./media/characters/qadan/armored.svg",
  46634. extra: 1047/1037,
  46635. bottom: 48/1095
  46636. }
  46637. },
  46638. },
  46639. [
  46640. {
  46641. name: "Normal",
  46642. height: math.unit(90, "feet"),
  46643. default: true
  46644. },
  46645. ]
  46646. ))
  46647. characterMakers.push(() => makeCharacter(
  46648. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46649. {
  46650. front: {
  46651. height: math.unit(6, "feet"),
  46652. weight: math.unit(225, "lb"),
  46653. name: "Front",
  46654. image: {
  46655. source: "./media/characters/brooke/front.svg",
  46656. extra: 1050/1010,
  46657. bottom: 66/1116
  46658. }
  46659. },
  46660. back: {
  46661. height: math.unit(6, "feet"),
  46662. weight: math.unit(225, "lb"),
  46663. name: "Back",
  46664. image: {
  46665. source: "./media/characters/brooke/back.svg",
  46666. extra: 1053/1013,
  46667. bottom: 41/1094
  46668. }
  46669. },
  46670. dressed: {
  46671. height: math.unit(6, "feet"),
  46672. weight: math.unit(225, "lb"),
  46673. name: "Dressed",
  46674. image: {
  46675. source: "./media/characters/brooke/dressed.svg",
  46676. extra: 1050/1010,
  46677. bottom: 66/1116
  46678. }
  46679. },
  46680. },
  46681. [
  46682. {
  46683. name: "Canon Height",
  46684. height: math.unit(500, "miles"),
  46685. default: true
  46686. },
  46687. ]
  46688. ))
  46689. characterMakers.push(() => makeCharacter(
  46690. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46691. {
  46692. front: {
  46693. height: math.unit(6 + 2/12, "feet"),
  46694. weight: math.unit(210, "lb"),
  46695. name: "Front",
  46696. image: {
  46697. source: "./media/characters/wubs/front.svg",
  46698. extra: 1345/1325,
  46699. bottom: 70/1415
  46700. }
  46701. },
  46702. back: {
  46703. height: math.unit(6 + 2/12, "feet"),
  46704. weight: math.unit(210, "lb"),
  46705. name: "Back",
  46706. image: {
  46707. source: "./media/characters/wubs/back.svg",
  46708. extra: 1296/1275,
  46709. bottom: 58/1354
  46710. }
  46711. },
  46712. },
  46713. [
  46714. {
  46715. name: "Normal",
  46716. height: math.unit(6 + 2/12, "feet"),
  46717. default: true
  46718. },
  46719. {
  46720. name: "Macro",
  46721. height: math.unit(1000, "feet")
  46722. },
  46723. {
  46724. name: "Megamacro",
  46725. height: math.unit(1, "mile")
  46726. },
  46727. ]
  46728. ))
  46729. characterMakers.push(() => makeCharacter(
  46730. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46731. {
  46732. front: {
  46733. height: math.unit(4, "feet"),
  46734. weight: math.unit(120, "lb"),
  46735. name: "Front",
  46736. image: {
  46737. source: "./media/characters/blue/front.svg",
  46738. extra: 1636/1525,
  46739. bottom: 43/1679
  46740. }
  46741. },
  46742. back: {
  46743. height: math.unit(4, "feet"),
  46744. weight: math.unit(120, "lb"),
  46745. name: "Back",
  46746. image: {
  46747. source: "./media/characters/blue/back.svg",
  46748. extra: 1660/1560,
  46749. bottom: 57/1717
  46750. }
  46751. },
  46752. paws: {
  46753. height: math.unit(0.826, "feet"),
  46754. name: "Paws",
  46755. image: {
  46756. source: "./media/characters/blue/paws.svg"
  46757. }
  46758. },
  46759. },
  46760. [
  46761. {
  46762. name: "Micro",
  46763. height: math.unit(3, "inches")
  46764. },
  46765. {
  46766. name: "Normal",
  46767. height: math.unit(4, "feet"),
  46768. default: true
  46769. },
  46770. {
  46771. name: "Femenine Form",
  46772. height: math.unit(14, "feet")
  46773. },
  46774. {
  46775. name: "Werebat Form",
  46776. height: math.unit(18, "feet")
  46777. },
  46778. ]
  46779. ))
  46780. characterMakers.push(() => makeCharacter(
  46781. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46782. {
  46783. female: {
  46784. height: math.unit(7 + 4/12, "feet"),
  46785. weight: math.unit(243, "lb"),
  46786. name: "Female",
  46787. image: {
  46788. source: "./media/characters/kaya/female.svg",
  46789. extra: 975/898,
  46790. bottom: 34/1009
  46791. }
  46792. },
  46793. herm: {
  46794. height: math.unit(7 + 4/12, "feet"),
  46795. weight: math.unit(243, "lb"),
  46796. name: "Herm",
  46797. image: {
  46798. source: "./media/characters/kaya/herm.svg",
  46799. extra: 975/898,
  46800. bottom: 34/1009
  46801. }
  46802. },
  46803. },
  46804. [
  46805. {
  46806. name: "Normal",
  46807. height: math.unit(7 + 4/12, "feet"),
  46808. default: true
  46809. },
  46810. ]
  46811. ))
  46812. characterMakers.push(() => makeCharacter(
  46813. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46814. {
  46815. female: {
  46816. height: math.unit(9 + 4/12, "feet"),
  46817. weight: math.unit(398, "lb"),
  46818. name: "Female",
  46819. image: {
  46820. source: "./media/characters/kassandra/female.svg",
  46821. extra: 908/839,
  46822. bottom: 61/969
  46823. }
  46824. },
  46825. intersex: {
  46826. height: math.unit(9 + 4/12, "feet"),
  46827. weight: math.unit(398, "lb"),
  46828. name: "Intersex",
  46829. image: {
  46830. source: "./media/characters/kassandra/intersex.svg",
  46831. extra: 908/839,
  46832. bottom: 61/969
  46833. }
  46834. },
  46835. },
  46836. [
  46837. {
  46838. name: "Normal",
  46839. height: math.unit(9 + 4/12, "feet"),
  46840. default: true
  46841. },
  46842. ]
  46843. ))
  46844. characterMakers.push(() => makeCharacter(
  46845. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46846. {
  46847. front: {
  46848. height: math.unit(3, "meters"),
  46849. name: "Front",
  46850. image: {
  46851. source: "./media/characters/amy/front.svg",
  46852. extra: 1380/1343,
  46853. bottom: 70/1450
  46854. }
  46855. },
  46856. back: {
  46857. height: math.unit(3, "meters"),
  46858. name: "Back",
  46859. image: {
  46860. source: "./media/characters/amy/back.svg",
  46861. extra: 1380/1347,
  46862. bottom: 66/1446
  46863. }
  46864. },
  46865. },
  46866. [
  46867. {
  46868. name: "Normal",
  46869. height: math.unit(3, "meters"),
  46870. default: true
  46871. },
  46872. ]
  46873. ))
  46874. characterMakers.push(() => makeCharacter(
  46875. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46876. {
  46877. side: {
  46878. height: math.unit(47, "cm"),
  46879. weight: math.unit(10.8, "kg"),
  46880. name: "Side",
  46881. image: {
  46882. source: "./media/characters/alphaschakal/side.svg",
  46883. extra: 1058/568,
  46884. bottom: 62/1120
  46885. }
  46886. },
  46887. back: {
  46888. height: math.unit(78, "cm"),
  46889. weight: math.unit(10.8, "kg"),
  46890. name: "Back",
  46891. image: {
  46892. source: "./media/characters/alphaschakal/back.svg",
  46893. extra: 1102/942,
  46894. bottom: 185/1287
  46895. }
  46896. },
  46897. head: {
  46898. height: math.unit(28, "cm"),
  46899. name: "Head",
  46900. image: {
  46901. source: "./media/characters/alphaschakal/head.svg",
  46902. extra: 696/508,
  46903. bottom: 0/696
  46904. }
  46905. },
  46906. paw: {
  46907. height: math.unit(16, "cm"),
  46908. name: "Paw",
  46909. image: {
  46910. source: "./media/characters/alphaschakal/paw.svg"
  46911. }
  46912. },
  46913. },
  46914. [
  46915. {
  46916. name: "Normal",
  46917. height: math.unit(47, "cm"),
  46918. default: true
  46919. },
  46920. {
  46921. name: "Macro",
  46922. height: math.unit(340, "cm")
  46923. },
  46924. ]
  46925. ))
  46926. characterMakers.push(() => makeCharacter(
  46927. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46928. {
  46929. front: {
  46930. height: math.unit(36, "earths"),
  46931. name: "Front",
  46932. image: {
  46933. source: "./media/characters/ecobyss/front.svg",
  46934. extra: 1282/1215,
  46935. bottom: 11/1293
  46936. }
  46937. },
  46938. back: {
  46939. height: math.unit(36, "earths"),
  46940. name: "Back",
  46941. image: {
  46942. source: "./media/characters/ecobyss/back.svg",
  46943. extra: 1291/1222,
  46944. bottom: 8/1299
  46945. }
  46946. },
  46947. },
  46948. [
  46949. {
  46950. name: "Normal",
  46951. height: math.unit(36, "earths"),
  46952. default: true
  46953. },
  46954. ]
  46955. ))
  46956. characterMakers.push(() => makeCharacter(
  46957. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46958. {
  46959. front: {
  46960. height: math.unit(12, "feet"),
  46961. name: "Front",
  46962. image: {
  46963. source: "./media/characters/vasuk/front.svg",
  46964. extra: 1326/1207,
  46965. bottom: 64/1390
  46966. }
  46967. },
  46968. },
  46969. [
  46970. {
  46971. name: "Normal",
  46972. height: math.unit(12, "feet"),
  46973. default: true
  46974. },
  46975. ]
  46976. ))
  46977. characterMakers.push(() => makeCharacter(
  46978. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46979. {
  46980. side: {
  46981. height: math.unit(100, "feet"),
  46982. name: "Side",
  46983. image: {
  46984. source: "./media/characters/linneaus/side.svg",
  46985. extra: 987/807,
  46986. bottom: 47/1034
  46987. }
  46988. },
  46989. },
  46990. [
  46991. {
  46992. name: "Macro",
  46993. height: math.unit(100, "feet"),
  46994. default: true
  46995. },
  46996. ]
  46997. ))
  46998. characterMakers.push(() => makeCharacter(
  46999. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47000. {
  47001. front: {
  47002. height: math.unit(8, "feet"),
  47003. weight: math.unit(1200, "lb"),
  47004. name: "Front",
  47005. image: {
  47006. source: "./media/characters/nyterious-daligdig/front.svg",
  47007. extra: 1284/1094,
  47008. bottom: 84/1368
  47009. }
  47010. },
  47011. back: {
  47012. height: math.unit(8, "feet"),
  47013. weight: math.unit(1200, "lb"),
  47014. name: "Back",
  47015. image: {
  47016. source: "./media/characters/nyterious-daligdig/back.svg",
  47017. extra: 1301/1121,
  47018. bottom: 129/1430
  47019. }
  47020. },
  47021. mouth: {
  47022. height: math.unit(1.464, "feet"),
  47023. name: "Mouth",
  47024. image: {
  47025. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47026. }
  47027. },
  47028. },
  47029. [
  47030. {
  47031. name: "Small",
  47032. height: math.unit(8, "feet"),
  47033. default: true
  47034. },
  47035. {
  47036. name: "Normal",
  47037. height: math.unit(15, "feet")
  47038. },
  47039. {
  47040. name: "Macro",
  47041. height: math.unit(90, "feet")
  47042. },
  47043. ]
  47044. ))
  47045. characterMakers.push(() => makeCharacter(
  47046. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47047. {
  47048. front: {
  47049. height: math.unit(7 + 4/12, "feet"),
  47050. weight: math.unit(252, "lb"),
  47051. name: "Front",
  47052. image: {
  47053. source: "./media/characters/bandel/front.svg",
  47054. extra: 1946/1775,
  47055. bottom: 26/1972
  47056. }
  47057. },
  47058. back: {
  47059. height: math.unit(7 + 4/12, "feet"),
  47060. weight: math.unit(252, "lb"),
  47061. name: "Back",
  47062. image: {
  47063. source: "./media/characters/bandel/back.svg",
  47064. extra: 1940/1770,
  47065. bottom: 25/1965
  47066. }
  47067. },
  47068. maw: {
  47069. height: math.unit(2.15, "feet"),
  47070. name: "Maw",
  47071. image: {
  47072. source: "./media/characters/bandel/maw.svg"
  47073. }
  47074. },
  47075. stomach: {
  47076. height: math.unit(1.95, "feet"),
  47077. name: "Stomach",
  47078. image: {
  47079. source: "./media/characters/bandel/stomach.svg"
  47080. }
  47081. },
  47082. },
  47083. [
  47084. {
  47085. name: "Normal",
  47086. height: math.unit(7 + 4/12, "feet"),
  47087. default: true
  47088. },
  47089. ]
  47090. ))
  47091. characterMakers.push(() => makeCharacter(
  47092. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47093. {
  47094. front: {
  47095. height: math.unit(10 + 5/12, "feet"),
  47096. weight: math.unit(773.5, "kg"),
  47097. name: "Front",
  47098. image: {
  47099. source: "./media/characters/zed/front.svg",
  47100. extra: 987/941,
  47101. bottom: 52/1039
  47102. }
  47103. },
  47104. },
  47105. [
  47106. {
  47107. name: "Short",
  47108. height: math.unit(5 + 4/12, "feet")
  47109. },
  47110. {
  47111. name: "Average",
  47112. height: math.unit(10 + 5/12, "feet"),
  47113. default: true
  47114. },
  47115. {
  47116. name: "Mini-Macro",
  47117. height: math.unit(24 + 9/12, "feet")
  47118. },
  47119. {
  47120. name: "Macro",
  47121. height: math.unit(249, "feet")
  47122. },
  47123. {
  47124. name: "Mega-Macro",
  47125. height: math.unit(12490, "feet")
  47126. },
  47127. {
  47128. name: "Giga-Macro",
  47129. height: math.unit(24.9, "miles")
  47130. },
  47131. {
  47132. name: "Tera-Macro",
  47133. height: math.unit(24900, "miles")
  47134. },
  47135. {
  47136. name: "Cosmic Scale",
  47137. height: math.unit(38.9, "lightyears")
  47138. },
  47139. {
  47140. name: "Universal Scale",
  47141. height: math.unit(138e12, "lightyears")
  47142. },
  47143. ]
  47144. ))
  47145. characterMakers.push(() => makeCharacter(
  47146. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47147. {
  47148. front: {
  47149. height: math.unit(1561, "inches"),
  47150. name: "Front",
  47151. image: {
  47152. source: "./media/characters/ivan/front.svg",
  47153. extra: 1126/1071,
  47154. bottom: 26/1152
  47155. }
  47156. },
  47157. back: {
  47158. height: math.unit(1561, "inches"),
  47159. name: "Back",
  47160. image: {
  47161. source: "./media/characters/ivan/back.svg",
  47162. extra: 1134/1079,
  47163. bottom: 30/1164
  47164. }
  47165. },
  47166. },
  47167. [
  47168. {
  47169. name: "Normal",
  47170. height: math.unit(1561, "inches"),
  47171. default: true
  47172. },
  47173. ]
  47174. ))
  47175. characterMakers.push(() => makeCharacter(
  47176. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47177. {
  47178. front: {
  47179. height: math.unit(5 + 7/12, "feet"),
  47180. weight: math.unit(150, "lb"),
  47181. name: "Front",
  47182. image: {
  47183. source: "./media/characters/robin-arctic-hare/front.svg",
  47184. extra: 1148/974,
  47185. bottom: 20/1168
  47186. }
  47187. },
  47188. },
  47189. [
  47190. {
  47191. name: "Normal",
  47192. height: math.unit(5 + 7/12, "feet"),
  47193. default: true
  47194. },
  47195. ]
  47196. ))
  47197. characterMakers.push(() => makeCharacter(
  47198. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47199. {
  47200. side: {
  47201. height: math.unit(5, "feet"),
  47202. name: "Side",
  47203. image: {
  47204. source: "./media/characters/birch/side.svg",
  47205. extra: 985/796,
  47206. bottom: 111/1096
  47207. }
  47208. },
  47209. },
  47210. [
  47211. {
  47212. name: "Normal",
  47213. height: math.unit(5, "feet"),
  47214. default: true
  47215. },
  47216. ]
  47217. ))
  47218. characterMakers.push(() => makeCharacter(
  47219. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47220. {
  47221. front: {
  47222. height: math.unit(4, "feet"),
  47223. name: "Front",
  47224. image: {
  47225. source: "./media/characters/rasp/front.svg",
  47226. extra: 561/478,
  47227. bottom: 74/635
  47228. }
  47229. },
  47230. },
  47231. [
  47232. {
  47233. name: "Normal",
  47234. height: math.unit(4, "feet"),
  47235. default: true
  47236. },
  47237. ]
  47238. ))
  47239. characterMakers.push(() => makeCharacter(
  47240. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47241. {
  47242. front: {
  47243. height: math.unit(4 + 6/12, "feet"),
  47244. name: "Front",
  47245. image: {
  47246. source: "./media/characters/agatha/front.svg",
  47247. extra: 947/933,
  47248. bottom: 42/989
  47249. }
  47250. },
  47251. back: {
  47252. height: math.unit(4 + 6/12, "feet"),
  47253. name: "Back",
  47254. image: {
  47255. source: "./media/characters/agatha/back.svg",
  47256. extra: 935/922,
  47257. bottom: 48/983
  47258. }
  47259. },
  47260. },
  47261. [
  47262. {
  47263. name: "Normal",
  47264. height: math.unit(4 + 6 /12, "feet"),
  47265. default: true
  47266. },
  47267. {
  47268. name: "Max Size",
  47269. height: math.unit(500, "feet")
  47270. },
  47271. ]
  47272. ))
  47273. characterMakers.push(() => makeCharacter(
  47274. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47275. {
  47276. side: {
  47277. height: math.unit(30, "feet"),
  47278. name: "Side",
  47279. image: {
  47280. source: "./media/characters/roggy/side.svg",
  47281. extra: 909/643,
  47282. bottom: 63/972
  47283. }
  47284. },
  47285. lounging: {
  47286. height: math.unit(20, "feet"),
  47287. name: "Lounging",
  47288. image: {
  47289. source: "./media/characters/roggy/lounging.svg",
  47290. extra: 643/479,
  47291. bottom: 145/788
  47292. }
  47293. },
  47294. handpaw: {
  47295. height: math.unit(13.1, "feet"),
  47296. name: "Handpaw",
  47297. image: {
  47298. source: "./media/characters/roggy/handpaw.svg"
  47299. }
  47300. },
  47301. footpaw: {
  47302. height: math.unit(15.8, "feet"),
  47303. name: "Footpaw",
  47304. image: {
  47305. source: "./media/characters/roggy/footpaw.svg"
  47306. }
  47307. },
  47308. },
  47309. [
  47310. {
  47311. name: "Menacing",
  47312. height: math.unit(30, "feet"),
  47313. default: true
  47314. },
  47315. ]
  47316. ))
  47317. characterMakers.push(() => makeCharacter(
  47318. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47319. {
  47320. front: {
  47321. height: math.unit(5 + 7/12, "feet"),
  47322. weight: math.unit(135, "lb"),
  47323. name: "Front",
  47324. image: {
  47325. source: "./media/characters/naomi/front.svg",
  47326. extra: 1209/1154,
  47327. bottom: 129/1338
  47328. }
  47329. },
  47330. back: {
  47331. height: math.unit(5 + 7/12, "feet"),
  47332. weight: math.unit(135, "lb"),
  47333. name: "Back",
  47334. image: {
  47335. source: "./media/characters/naomi/back.svg",
  47336. extra: 1252/1190,
  47337. bottom: 23/1275
  47338. }
  47339. },
  47340. },
  47341. [
  47342. {
  47343. name: "Normal",
  47344. height: math.unit(5 + 7 /12, "feet"),
  47345. default: true
  47346. },
  47347. ]
  47348. ))
  47349. characterMakers.push(() => makeCharacter(
  47350. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47351. {
  47352. side: {
  47353. height: math.unit(35, "meters"),
  47354. name: "Side",
  47355. image: {
  47356. source: "./media/characters/kimpi/side.svg",
  47357. extra: 419/382,
  47358. bottom: 63/482
  47359. }
  47360. },
  47361. hand: {
  47362. height: math.unit(8.96, "meters"),
  47363. name: "Hand",
  47364. image: {
  47365. source: "./media/characters/kimpi/hand.svg"
  47366. }
  47367. },
  47368. },
  47369. [
  47370. {
  47371. name: "Normal",
  47372. height: math.unit(35, "meters"),
  47373. default: true
  47374. },
  47375. ]
  47376. ))
  47377. characterMakers.push(() => makeCharacter(
  47378. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47379. {
  47380. front: {
  47381. height: math.unit(4 + 4/12, "feet"),
  47382. name: "Front",
  47383. image: {
  47384. source: "./media/characters/pepper-purrloin/front.svg",
  47385. extra: 1141/1024,
  47386. bottom: 21/1162
  47387. }
  47388. },
  47389. },
  47390. [
  47391. {
  47392. name: "Normal",
  47393. height: math.unit(4 + 4/12, "feet"),
  47394. default: true
  47395. },
  47396. ]
  47397. ))
  47398. characterMakers.push(() => makeCharacter(
  47399. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47400. {
  47401. front: {
  47402. height: math.unit(6 + 2/12, "feet"),
  47403. name: "Front",
  47404. image: {
  47405. source: "./media/characters/raphael/front.svg",
  47406. extra: 1101/962,
  47407. bottom: 59/1160
  47408. }
  47409. },
  47410. },
  47411. [
  47412. {
  47413. name: "Normal",
  47414. height: math.unit(6 + 2/12, "feet"),
  47415. default: true
  47416. },
  47417. ]
  47418. ))
  47419. characterMakers.push(() => makeCharacter(
  47420. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47421. {
  47422. front: {
  47423. height: math.unit(6, "feet"),
  47424. weight: math.unit(150, "lb"),
  47425. name: "Front",
  47426. image: {
  47427. source: "./media/characters/victor-williams/front.svg",
  47428. extra: 1894/1825,
  47429. bottom: 67/1961
  47430. }
  47431. },
  47432. },
  47433. [
  47434. {
  47435. name: "Normal",
  47436. height: math.unit(6, "feet"),
  47437. default: true
  47438. },
  47439. ]
  47440. ))
  47441. characterMakers.push(() => makeCharacter(
  47442. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47443. {
  47444. front: {
  47445. height: math.unit(5 + 8/12, "feet"),
  47446. weight: math.unit(150, "lb"),
  47447. name: "Front",
  47448. image: {
  47449. source: "./media/characters/rachel/front.svg",
  47450. extra: 1902/1787,
  47451. bottom: 46/1948
  47452. }
  47453. },
  47454. },
  47455. [
  47456. {
  47457. name: "Base Height",
  47458. height: math.unit(5 + 8/12, "feet"),
  47459. default: true
  47460. },
  47461. {
  47462. name: "Macro",
  47463. height: math.unit(200, "feet")
  47464. },
  47465. {
  47466. name: "Mega Macro",
  47467. height: math.unit(1, "mile")
  47468. },
  47469. {
  47470. name: "Giga Macro",
  47471. height: math.unit(1500, "miles")
  47472. },
  47473. {
  47474. name: "Tera Macro",
  47475. height: math.unit(8000, "miles")
  47476. },
  47477. {
  47478. name: "Tera Macro+",
  47479. height: math.unit(2e5, "miles")
  47480. },
  47481. ]
  47482. ))
  47483. characterMakers.push(() => makeCharacter(
  47484. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47485. {
  47486. front: {
  47487. height: math.unit(6.5, "feet"),
  47488. name: "Front",
  47489. image: {
  47490. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47491. extra: 860/819,
  47492. bottom: 307/1167
  47493. }
  47494. },
  47495. back: {
  47496. height: math.unit(6.5, "feet"),
  47497. name: "Back",
  47498. image: {
  47499. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47500. extra: 880/837,
  47501. bottom: 395/1275
  47502. }
  47503. },
  47504. sleeping: {
  47505. height: math.unit(2.79, "feet"),
  47506. name: "Sleeping",
  47507. image: {
  47508. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47509. extra: 465/383,
  47510. bottom: 263/728
  47511. }
  47512. },
  47513. maw: {
  47514. height: math.unit(2.52, "feet"),
  47515. name: "Maw",
  47516. image: {
  47517. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47518. }
  47519. },
  47520. },
  47521. [
  47522. {
  47523. name: "Normal",
  47524. height: math.unit(6.5, "feet"),
  47525. default: true
  47526. },
  47527. ]
  47528. ))
  47529. characterMakers.push(() => makeCharacter(
  47530. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47531. {
  47532. front: {
  47533. height: math.unit(5, "feet"),
  47534. name: "Front",
  47535. image: {
  47536. source: "./media/characters/nova-nerium/front.svg",
  47537. extra: 1548/1392,
  47538. bottom: 374/1922
  47539. }
  47540. },
  47541. back: {
  47542. height: math.unit(5, "feet"),
  47543. name: "Back",
  47544. image: {
  47545. source: "./media/characters/nova-nerium/back.svg",
  47546. extra: 1658/1468,
  47547. bottom: 257/1915
  47548. }
  47549. },
  47550. },
  47551. [
  47552. {
  47553. name: "Normal",
  47554. height: math.unit(5, "feet"),
  47555. default: true
  47556. },
  47557. ]
  47558. ))
  47559. characterMakers.push(() => makeCharacter(
  47560. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47561. {
  47562. front: {
  47563. height: math.unit(5 + 4/12, "feet"),
  47564. name: "Front",
  47565. image: {
  47566. source: "./media/characters/ashe-pyriph/front.svg",
  47567. extra: 1935/1747,
  47568. bottom: 60/1995
  47569. }
  47570. },
  47571. },
  47572. [
  47573. {
  47574. name: "Normal",
  47575. height: math.unit(5 + 4/12, "feet"),
  47576. default: true
  47577. },
  47578. ]
  47579. ))
  47580. characterMakers.push(() => makeCharacter(
  47581. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47582. {
  47583. front: {
  47584. height: math.unit(8.7, "feet"),
  47585. name: "Front",
  47586. image: {
  47587. source: "./media/characters/flicker-wisp/front.svg",
  47588. extra: 1835/1613,
  47589. bottom: 449/2284
  47590. }
  47591. },
  47592. side: {
  47593. height: math.unit(8.7, "feet"),
  47594. name: "Side",
  47595. image: {
  47596. source: "./media/characters/flicker-wisp/side.svg",
  47597. extra: 1841/1642,
  47598. bottom: 336/2177
  47599. },
  47600. default: true
  47601. },
  47602. maw: {
  47603. height: math.unit(3.35, "feet"),
  47604. name: "Maw",
  47605. image: {
  47606. source: "./media/characters/flicker-wisp/maw.svg",
  47607. extra: 2338/1506,
  47608. bottom: 0/2338
  47609. }
  47610. },
  47611. ovipositor: {
  47612. height: math.unit(4.95, "feet"),
  47613. name: "Ovipositor",
  47614. image: {
  47615. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47616. }
  47617. },
  47618. egg: {
  47619. height: math.unit(0.385, "feet"),
  47620. weight: math.unit(2, "lb"),
  47621. name: "Egg",
  47622. image: {
  47623. source: "./media/characters/flicker-wisp/egg.svg"
  47624. }
  47625. },
  47626. },
  47627. [
  47628. {
  47629. name: "Normal",
  47630. height: math.unit(8.7, "feet"),
  47631. default: true
  47632. },
  47633. ]
  47634. ))
  47635. characterMakers.push(() => makeCharacter(
  47636. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47637. {
  47638. side: {
  47639. height: math.unit(11, "feet"),
  47640. name: "Side",
  47641. image: {
  47642. source: "./media/characters/faefnul/side.svg",
  47643. extra: 1100/1007,
  47644. bottom: 0/1100
  47645. }
  47646. },
  47647. },
  47648. [
  47649. {
  47650. name: "Normal",
  47651. height: math.unit(11, "feet"),
  47652. default: true
  47653. },
  47654. ]
  47655. ))
  47656. characterMakers.push(() => makeCharacter(
  47657. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47658. {
  47659. front: {
  47660. height: math.unit(6 + 2/12, "feet"),
  47661. name: "Front",
  47662. image: {
  47663. source: "./media/characters/shady/front.svg",
  47664. extra: 502/461,
  47665. bottom: 9/511
  47666. }
  47667. },
  47668. kneeling: {
  47669. height: math.unit(4.6, "feet"),
  47670. name: "Kneeling",
  47671. image: {
  47672. source: "./media/characters/shady/kneeling.svg",
  47673. extra: 1328/1219,
  47674. bottom: 117/1445
  47675. }
  47676. },
  47677. maw: {
  47678. height: math.unit(2, "feet"),
  47679. name: "Maw",
  47680. image: {
  47681. source: "./media/characters/shady/maw.svg"
  47682. }
  47683. },
  47684. },
  47685. [
  47686. {
  47687. name: "Nano",
  47688. height: math.unit(1, "mm")
  47689. },
  47690. {
  47691. name: "Micro",
  47692. height: math.unit(12, "mm")
  47693. },
  47694. {
  47695. name: "Tiny",
  47696. height: math.unit(3, "inches")
  47697. },
  47698. {
  47699. name: "Normal",
  47700. height: math.unit(6 + 2/12, "feet"),
  47701. default: true
  47702. },
  47703. {
  47704. name: "Big",
  47705. height: math.unit(15, "feet")
  47706. },
  47707. {
  47708. name: "Macro",
  47709. height: math.unit(150, "feet")
  47710. },
  47711. {
  47712. name: "Titanic",
  47713. height: math.unit(500, "feet")
  47714. },
  47715. ]
  47716. ))
  47717. characterMakers.push(() => makeCharacter(
  47718. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47719. {
  47720. front: {
  47721. height: math.unit(12, "feet"),
  47722. name: "Front",
  47723. image: {
  47724. source: "./media/characters/fenrir/front.svg",
  47725. extra: 968/875,
  47726. bottom: 22/990
  47727. }
  47728. },
  47729. },
  47730. [
  47731. {
  47732. name: "Big",
  47733. height: math.unit(12, "feet"),
  47734. default: true
  47735. },
  47736. ]
  47737. ))
  47738. characterMakers.push(() => makeCharacter(
  47739. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47740. {
  47741. front: {
  47742. height: math.unit(5 + 4/12, "feet"),
  47743. name: "Front",
  47744. image: {
  47745. source: "./media/characters/makar/front.svg",
  47746. extra: 1181/1112,
  47747. bottom: 78/1259
  47748. }
  47749. },
  47750. },
  47751. [
  47752. {
  47753. name: "Normal",
  47754. height: math.unit(5 + 4/12, "feet"),
  47755. default: true
  47756. },
  47757. ]
  47758. ))
  47759. characterMakers.push(() => makeCharacter(
  47760. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47761. {
  47762. front: {
  47763. height: math.unit(5 + 7/12, "feet"),
  47764. name: "Front",
  47765. image: {
  47766. source: "./media/characters/callow/front.svg",
  47767. extra: 1482/1304,
  47768. bottom: 23/1505
  47769. }
  47770. },
  47771. back: {
  47772. height: math.unit(5 + 7/12, "feet"),
  47773. name: "Back",
  47774. image: {
  47775. source: "./media/characters/callow/back.svg",
  47776. extra: 1484/1296,
  47777. bottom: 25/1509
  47778. }
  47779. },
  47780. },
  47781. [
  47782. {
  47783. name: "Micro",
  47784. height: math.unit(3, "inches"),
  47785. default: true
  47786. },
  47787. {
  47788. name: "Normal",
  47789. height: math.unit(5 + 7/12, "feet")
  47790. },
  47791. ]
  47792. ))
  47793. characterMakers.push(() => makeCharacter(
  47794. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47795. {
  47796. front: {
  47797. height: math.unit(6 + 2/12, "feet"),
  47798. name: "Front",
  47799. image: {
  47800. source: "./media/characters/natel/front.svg",
  47801. extra: 1833/1692,
  47802. bottom: 166/1999
  47803. }
  47804. },
  47805. },
  47806. [
  47807. {
  47808. name: "Normal",
  47809. height: math.unit(6 + 2/12, "feet"),
  47810. default: true
  47811. },
  47812. ]
  47813. ))
  47814. characterMakers.push(() => makeCharacter(
  47815. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47816. {
  47817. front: {
  47818. height: math.unit(1.75, "meters"),
  47819. name: "Front",
  47820. image: {
  47821. source: "./media/characters/misu/front.svg",
  47822. extra: 1690/1558,
  47823. bottom: 234/1924
  47824. }
  47825. },
  47826. back: {
  47827. height: math.unit(1.75, "meters"),
  47828. name: "Back",
  47829. image: {
  47830. source: "./media/characters/misu/back.svg",
  47831. extra: 1762/1618,
  47832. bottom: 146/1908
  47833. }
  47834. },
  47835. frontNude: {
  47836. height: math.unit(1.75, "meters"),
  47837. name: "Front (Nude)",
  47838. image: {
  47839. source: "./media/characters/misu/front-nude.svg",
  47840. extra: 1690/1558,
  47841. bottom: 234/1924
  47842. }
  47843. },
  47844. backNude: {
  47845. height: math.unit(1.75, "meters"),
  47846. name: "Back (Nude)",
  47847. image: {
  47848. source: "./media/characters/misu/back-nude.svg",
  47849. extra: 1762/1618,
  47850. bottom: 146/1908
  47851. }
  47852. },
  47853. frontErect: {
  47854. height: math.unit(1.75, "meters"),
  47855. name: "Front (Erect)",
  47856. image: {
  47857. source: "./media/characters/misu/front-erect.svg",
  47858. extra: 1690/1558,
  47859. bottom: 234/1924
  47860. }
  47861. },
  47862. maw: {
  47863. height: math.unit(0.47, "meters"),
  47864. name: "Maw",
  47865. image: {
  47866. source: "./media/characters/misu/maw.svg"
  47867. }
  47868. },
  47869. head: {
  47870. height: math.unit(0.35, "meters"),
  47871. name: "Head",
  47872. image: {
  47873. source: "./media/characters/misu/head.svg"
  47874. }
  47875. },
  47876. rear: {
  47877. height: math.unit(0.47, "meters"),
  47878. name: "Rear",
  47879. image: {
  47880. source: "./media/characters/misu/rear.svg"
  47881. }
  47882. },
  47883. },
  47884. [
  47885. {
  47886. name: "Normal",
  47887. height: math.unit(1.75, "meters")
  47888. },
  47889. {
  47890. name: "Not good for the people",
  47891. height: math.unit(42, "meters")
  47892. },
  47893. {
  47894. name: "Not good for the neighborhood",
  47895. height: math.unit(135, "meters")
  47896. },
  47897. {
  47898. name: "Bit bigger problem",
  47899. height: math.unit(380, "meters"),
  47900. default: true
  47901. },
  47902. {
  47903. name: "Not good for the city",
  47904. height: math.unit(1.5, "km")
  47905. },
  47906. {
  47907. name: "Not good for the county",
  47908. height: math.unit(5.5, "km")
  47909. },
  47910. {
  47911. name: "Not good for the state",
  47912. height: math.unit(25, "km")
  47913. },
  47914. {
  47915. name: "Not good for the country",
  47916. height: math.unit(125, "km")
  47917. },
  47918. {
  47919. name: "Not good for the continent",
  47920. height: math.unit(2100, "km")
  47921. },
  47922. {
  47923. name: "Not good for the planet",
  47924. height: math.unit(35000, "km")
  47925. },
  47926. {
  47927. name: "Just no",
  47928. height: math.unit(8.5e18, "km")
  47929. },
  47930. ]
  47931. ))
  47932. characterMakers.push(() => makeCharacter(
  47933. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47934. {
  47935. front: {
  47936. height: math.unit(6.5, "feet"),
  47937. name: "Front",
  47938. image: {
  47939. source: "./media/characters/poppy/front.svg",
  47940. extra: 1878/1812,
  47941. bottom: 43/1921
  47942. }
  47943. },
  47944. feet: {
  47945. height: math.unit(1.06, "feet"),
  47946. name: "Feet",
  47947. image: {
  47948. source: "./media/characters/poppy/feet.svg",
  47949. extra: 1083/1083,
  47950. bottom: 87/1170
  47951. }
  47952. },
  47953. },
  47954. [
  47955. {
  47956. name: "Human",
  47957. height: math.unit(6.5, "feet")
  47958. },
  47959. {
  47960. name: "Default",
  47961. height: math.unit(300, "feet"),
  47962. default: true
  47963. },
  47964. {
  47965. name: "Huge",
  47966. height: math.unit(850, "feet")
  47967. },
  47968. {
  47969. name: "Mega",
  47970. height: math.unit(8000, "feet")
  47971. },
  47972. {
  47973. name: "Giga",
  47974. height: math.unit(300, "miles")
  47975. },
  47976. ]
  47977. ))
  47978. characterMakers.push(() => makeCharacter(
  47979. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  47980. {
  47981. bipedal: {
  47982. height: math.unit(7, "feet"),
  47983. name: "Bipedal",
  47984. image: {
  47985. source: "./media/characters/zener/bipedal.svg",
  47986. extra: 874/805,
  47987. bottom: 109/983
  47988. }
  47989. },
  47990. quadrupedal: {
  47991. height: math.unit(4.64, "feet"),
  47992. name: "Quadrupedal",
  47993. image: {
  47994. source: "./media/characters/zener/quadrupedal.svg",
  47995. extra: 638/507,
  47996. bottom: 190/828
  47997. }
  47998. },
  47999. cock: {
  48000. height: math.unit(18, "inches"),
  48001. name: "Cock",
  48002. image: {
  48003. source: "./media/characters/zener/cock.svg"
  48004. }
  48005. },
  48006. },
  48007. [
  48008. {
  48009. name: "Normal",
  48010. height: math.unit(7, "feet"),
  48011. default: true
  48012. },
  48013. ]
  48014. ))
  48015. characterMakers.push(() => makeCharacter(
  48016. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48017. {
  48018. nude: {
  48019. height: math.unit(5 + 6/12, "feet"),
  48020. name: "Nude",
  48021. image: {
  48022. source: "./media/characters/charlie-dog/nude.svg",
  48023. extra: 768/734,
  48024. bottom: 26/794
  48025. }
  48026. },
  48027. dressed: {
  48028. height: math.unit(5 + 6/12, "feet"),
  48029. name: "Dressed",
  48030. image: {
  48031. source: "./media/characters/charlie-dog/dressed.svg",
  48032. extra: 768/734,
  48033. bottom: 26/794
  48034. }
  48035. },
  48036. },
  48037. [
  48038. {
  48039. name: "Normal",
  48040. height: math.unit(5 + 6/12, "feet"),
  48041. default: true
  48042. },
  48043. ]
  48044. ))
  48045. characterMakers.push(() => makeCharacter(
  48046. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48047. {
  48048. front: {
  48049. height: math.unit(6 + 4/12, "feet"),
  48050. name: "Front",
  48051. image: {
  48052. source: "./media/characters/ir'istrasz/front.svg",
  48053. extra: 1014/977,
  48054. bottom: 65/1079
  48055. }
  48056. },
  48057. back: {
  48058. height: math.unit(6 + 4/12, "feet"),
  48059. name: "Back",
  48060. image: {
  48061. source: "./media/characters/ir'istrasz/back.svg",
  48062. extra: 1024/992,
  48063. bottom: 34/1058
  48064. }
  48065. },
  48066. },
  48067. [
  48068. {
  48069. name: "Normal",
  48070. height: math.unit(6 + 4/12, "feet"),
  48071. default: true
  48072. },
  48073. ]
  48074. ))
  48075. characterMakers.push(() => makeCharacter(
  48076. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48077. {
  48078. front: {
  48079. height: math.unit(5 + 8/12, "feet"),
  48080. name: "Front",
  48081. image: {
  48082. source: "./media/characters/dee-ditto/front.svg",
  48083. extra: 1874/1785,
  48084. bottom: 68/1942
  48085. }
  48086. },
  48087. back: {
  48088. height: math.unit(5 + 8/12, "feet"),
  48089. name: "Back",
  48090. image: {
  48091. source: "./media/characters/dee-ditto/back.svg",
  48092. extra: 1870/1783,
  48093. bottom: 77/1947
  48094. }
  48095. },
  48096. },
  48097. [
  48098. {
  48099. name: "Normal",
  48100. height: math.unit(5 + 8/12, "feet"),
  48101. default: true
  48102. },
  48103. ]
  48104. ))
  48105. characterMakers.push(() => makeCharacter(
  48106. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48107. {
  48108. front: {
  48109. height: math.unit(7 + 6/12, "feet"),
  48110. name: "Front",
  48111. image: {
  48112. source: "./media/characters/fey/front.svg",
  48113. extra: 995/979,
  48114. bottom: 30/1025
  48115. }
  48116. },
  48117. back: {
  48118. height: math.unit(7 + 6/12, "feet"),
  48119. name: "Back",
  48120. image: {
  48121. source: "./media/characters/fey/back.svg",
  48122. extra: 1079/1008,
  48123. bottom: 5/1084
  48124. }
  48125. },
  48126. dressed: {
  48127. height: math.unit(7 + 6/12, "feet"),
  48128. name: "Dressed",
  48129. image: {
  48130. source: "./media/characters/fey/dressed.svg",
  48131. extra: 995/979,
  48132. bottom: 30/1025
  48133. }
  48134. },
  48135. },
  48136. [
  48137. {
  48138. name: "Normal",
  48139. height: math.unit(7 + 6/12, "feet"),
  48140. default: true
  48141. },
  48142. ]
  48143. ))
  48144. characterMakers.push(() => makeCharacter(
  48145. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48146. {
  48147. standing: {
  48148. height: math.unit(17, "feet"),
  48149. name: "Standing",
  48150. image: {
  48151. source: "./media/characters/aster/standing.svg",
  48152. extra: 1798/1598,
  48153. bottom: 117/1915
  48154. }
  48155. },
  48156. },
  48157. [
  48158. {
  48159. name: "Normal",
  48160. height: math.unit(17, "feet"),
  48161. default: true
  48162. },
  48163. {
  48164. name: "Homewrecker",
  48165. height: math.unit(95, "feet")
  48166. },
  48167. {
  48168. name: "Planet Devourer",
  48169. height: math.unit(1008000, "miles")
  48170. },
  48171. ]
  48172. ))
  48173. characterMakers.push(() => makeCharacter(
  48174. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48175. {
  48176. front: {
  48177. height: math.unit(6 + 5/12, "feet"),
  48178. weight: math.unit(265, "lb"),
  48179. name: "Front",
  48180. image: {
  48181. source: "./media/characters/devon-childs/front.svg",
  48182. extra: 1795/1721,
  48183. bottom: 41/1836
  48184. }
  48185. },
  48186. side: {
  48187. height: math.unit(6 + 5/12, "feet"),
  48188. weight: math.unit(265, "lb"),
  48189. name: "Side",
  48190. image: {
  48191. source: "./media/characters/devon-childs/side.svg",
  48192. extra: 1812/1738,
  48193. bottom: 30/1842
  48194. }
  48195. },
  48196. back: {
  48197. height: math.unit(6 + 5/12, "feet"),
  48198. weight: math.unit(265, "lb"),
  48199. name: "Back",
  48200. image: {
  48201. source: "./media/characters/devon-childs/back.svg",
  48202. extra: 1808/1735,
  48203. bottom: 23/1831
  48204. }
  48205. },
  48206. hand: {
  48207. height: math.unit(1.464, "feet"),
  48208. name: "Hand",
  48209. image: {
  48210. source: "./media/characters/devon-childs/hand.svg"
  48211. }
  48212. },
  48213. foot: {
  48214. height: math.unit(1.6, "feet"),
  48215. name: "Foot",
  48216. image: {
  48217. source: "./media/characters/devon-childs/foot.svg"
  48218. }
  48219. },
  48220. },
  48221. [
  48222. {
  48223. name: "Micro",
  48224. height: math.unit(7, "cm")
  48225. },
  48226. {
  48227. name: "Normal",
  48228. height: math.unit(6 + 5/12, "feet"),
  48229. default: true
  48230. },
  48231. {
  48232. name: "Macro",
  48233. height: math.unit(154, "feet")
  48234. },
  48235. ]
  48236. ))
  48237. characterMakers.push(() => makeCharacter(
  48238. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48239. {
  48240. front: {
  48241. height: math.unit(6, "feet"),
  48242. weight: math.unit(180, "lb"),
  48243. name: "Front",
  48244. image: {
  48245. source: "./media/characters/lydemox-vir/front.svg",
  48246. extra: 1632/1435,
  48247. bottom: 58/1690
  48248. }
  48249. },
  48250. frontSFW: {
  48251. height: math.unit(6, "feet"),
  48252. weight: math.unit(180, "lb"),
  48253. name: "Front (SFW)",
  48254. image: {
  48255. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48256. extra: 1632/1435,
  48257. bottom: 58/1690
  48258. }
  48259. },
  48260. back: {
  48261. height: math.unit(6, "feet"),
  48262. weight: math.unit(180, "lb"),
  48263. name: "Back",
  48264. image: {
  48265. source: "./media/characters/lydemox-vir/back.svg",
  48266. extra: 1593/1408,
  48267. bottom: 31/1624
  48268. }
  48269. },
  48270. paw: {
  48271. height: math.unit(1.85, "feet"),
  48272. name: "Paw",
  48273. image: {
  48274. source: "./media/characters/lydemox-vir/paw.svg"
  48275. }
  48276. },
  48277. dick: {
  48278. height: math.unit(1.8, "feet"),
  48279. name: "Dick",
  48280. image: {
  48281. source: "./media/characters/lydemox-vir/dick.svg"
  48282. }
  48283. },
  48284. },
  48285. [
  48286. {
  48287. name: "Macro",
  48288. height: math.unit(100, "feet"),
  48289. default: true
  48290. },
  48291. {
  48292. name: "Teramacro",
  48293. height: math.unit(1, "earth")
  48294. },
  48295. {
  48296. name: "Planetary",
  48297. height: math.unit(20, "earths")
  48298. },
  48299. ]
  48300. ))
  48301. characterMakers.push(() => makeCharacter(
  48302. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48303. {
  48304. front: {
  48305. height: math.unit(15 + 8/12, "feet"),
  48306. weight: math.unit(1237, "kg"),
  48307. name: "Front",
  48308. image: {
  48309. source: "./media/characters/mia/front.svg",
  48310. extra: 1573/1446,
  48311. bottom: 58/1631
  48312. }
  48313. },
  48314. },
  48315. [
  48316. {
  48317. name: "Small",
  48318. height: math.unit(9 + 5/12, "feet")
  48319. },
  48320. {
  48321. name: "Normal",
  48322. height: math.unit(15 + 8/12, "feet"),
  48323. default: true
  48324. },
  48325. ]
  48326. ))
  48327. characterMakers.push(() => makeCharacter(
  48328. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48329. {
  48330. front: {
  48331. height: math.unit(10 + 6/12, "feet"),
  48332. weight: math.unit(1.3, "tons"),
  48333. name: "Front",
  48334. image: {
  48335. source: "./media/characters/mr-graves/front.svg",
  48336. extra: 1779/1695,
  48337. bottom: 198/1977
  48338. }
  48339. },
  48340. },
  48341. [
  48342. {
  48343. name: "Normal",
  48344. height: math.unit(10 + 6 /12, "feet"),
  48345. default: true
  48346. },
  48347. ]
  48348. ))
  48349. characterMakers.push(() => makeCharacter(
  48350. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48351. {
  48352. dressedFront: {
  48353. height: math.unit(5 + 8/12, "feet"),
  48354. weight: math.unit(125, "lb"),
  48355. name: "Dressed (Front)",
  48356. image: {
  48357. source: "./media/characters/jess/dressed-front.svg",
  48358. extra: 1176/1152,
  48359. bottom: 42/1218
  48360. }
  48361. },
  48362. dressedSide: {
  48363. height: math.unit(5 + 8/12, "feet"),
  48364. weight: math.unit(125, "lb"),
  48365. name: "Dressed (Side)",
  48366. image: {
  48367. source: "./media/characters/jess/dressed-side.svg",
  48368. extra: 1204/1190,
  48369. bottom: 6/1210
  48370. }
  48371. },
  48372. nudeFront: {
  48373. height: math.unit(5 + 8/12, "feet"),
  48374. weight: math.unit(125, "lb"),
  48375. name: "Nude (Front)",
  48376. image: {
  48377. source: "./media/characters/jess/nude-front.svg",
  48378. extra: 1176/1152,
  48379. bottom: 42/1218
  48380. }
  48381. },
  48382. nudeSide: {
  48383. height: math.unit(5 + 8/12, "feet"),
  48384. weight: math.unit(125, "lb"),
  48385. name: "Nude (Side)",
  48386. image: {
  48387. source: "./media/characters/jess/nude-side.svg",
  48388. extra: 1204/1190,
  48389. bottom: 6/1210
  48390. }
  48391. },
  48392. organsFront: {
  48393. height: math.unit(2.83799342105, "feet"),
  48394. name: "Organs (Front)",
  48395. image: {
  48396. source: "./media/characters/jess/organs-front.svg"
  48397. }
  48398. },
  48399. organsSide: {
  48400. height: math.unit(2.64225290474, "feet"),
  48401. name: "Organs (Side)",
  48402. image: {
  48403. source: "./media/characters/jess/organs-side.svg"
  48404. }
  48405. },
  48406. digestiveTractFront: {
  48407. height: math.unit(2.8106580871, "feet"),
  48408. name: "Digestive Tract (Front)",
  48409. image: {
  48410. source: "./media/characters/jess/digestive-tract-front.svg"
  48411. }
  48412. },
  48413. digestiveTractSide: {
  48414. height: math.unit(2.54365045014, "feet"),
  48415. name: "Digestive Tract (Side)",
  48416. image: {
  48417. source: "./media/characters/jess/digestive-tract-side.svg"
  48418. }
  48419. },
  48420. respiratorySystemFront: {
  48421. height: math.unit(1.11196233456, "feet"),
  48422. name: "Respiratory System (Front)",
  48423. image: {
  48424. source: "./media/characters/jess/respiratory-system-front.svg"
  48425. }
  48426. },
  48427. respiratorySystemSide: {
  48428. height: math.unit(0.89327966297, "feet"),
  48429. name: "Respiratory System (Side)",
  48430. image: {
  48431. source: "./media/characters/jess/respiratory-system-side.svg"
  48432. }
  48433. },
  48434. urinaryTractFront: {
  48435. height: math.unit(1.16126356186, "feet"),
  48436. name: "Urinary Tract (Front)",
  48437. image: {
  48438. source: "./media/characters/jess/urinary-tract-front.svg"
  48439. }
  48440. },
  48441. urinaryTractSide: {
  48442. height: math.unit(1.20910039627, "feet"),
  48443. name: "Urinary Tract (Side)",
  48444. image: {
  48445. source: "./media/characters/jess/urinary-tract-side.svg"
  48446. }
  48447. },
  48448. reproductiveOrgansFront: {
  48449. height: math.unit(0.48422591566, "feet"),
  48450. name: "Reproductive Organs (Front)",
  48451. image: {
  48452. source: "./media/characters/jess/reproductive-organs-front.svg"
  48453. }
  48454. },
  48455. reproductiveOrgansSide: {
  48456. height: math.unit(0.61553314481, "feet"),
  48457. name: "Reproductive Organs (Side)",
  48458. image: {
  48459. source: "./media/characters/jess/reproductive-organs-side.svg"
  48460. }
  48461. },
  48462. breastsFront: {
  48463. height: math.unit(0.47690395121, "feet"),
  48464. name: "Breasts (Front)",
  48465. image: {
  48466. source: "./media/characters/jess/breasts-front.svg"
  48467. }
  48468. },
  48469. breastsSide: {
  48470. height: math.unit(0.30556998307, "feet"),
  48471. name: "Breasts (Side)",
  48472. image: {
  48473. source: "./media/characters/jess/breasts-side.svg"
  48474. }
  48475. },
  48476. heartFront: {
  48477. height: math.unit(0.53011022622, "feet"),
  48478. name: "Heart (Front)",
  48479. image: {
  48480. source: "./media/characters/jess/heart-front.svg"
  48481. }
  48482. },
  48483. heartSide: {
  48484. height: math.unit(0.51790695213, "feet"),
  48485. name: "Heart (Side)",
  48486. image: {
  48487. source: "./media/characters/jess/heart-side.svg"
  48488. }
  48489. },
  48490. earsAndNoseFront: {
  48491. height: math.unit(0.29385483995, "feet"),
  48492. name: "Ears and Nose (Front)",
  48493. image: {
  48494. source: "./media/characters/jess/ears-and-nose-front.svg"
  48495. }
  48496. },
  48497. earsAndNoseSide: {
  48498. height: math.unit(0.18109658741, "feet"),
  48499. name: "Ears and Nose (Side)",
  48500. image: {
  48501. source: "./media/characters/jess/ears-and-nose-side.svg"
  48502. }
  48503. },
  48504. },
  48505. [
  48506. {
  48507. name: "Normal",
  48508. height: math.unit(5 + 8/12, "feet"),
  48509. default: true
  48510. },
  48511. ]
  48512. ))
  48513. characterMakers.push(() => makeCharacter(
  48514. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48515. {
  48516. front: {
  48517. height: math.unit(6, "feet"),
  48518. weight: math.unit(6.64467e-7, "grams"),
  48519. name: "Front",
  48520. image: {
  48521. source: "./media/characters/wimpering/front.svg",
  48522. extra: 597/587,
  48523. bottom: 34/631
  48524. }
  48525. },
  48526. },
  48527. [
  48528. {
  48529. name: "Micro",
  48530. height: math.unit(0.4, "mm"),
  48531. default: true
  48532. },
  48533. ]
  48534. ))
  48535. characterMakers.push(() => makeCharacter(
  48536. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48537. {
  48538. front: {
  48539. height: math.unit(6, "feet"),
  48540. weight: math.unit(150, "lb"),
  48541. name: "Front",
  48542. image: {
  48543. source: "./media/characters/keltre/front.svg",
  48544. extra: 1099/1057,
  48545. bottom: 22/1121
  48546. }
  48547. },
  48548. back: {
  48549. height: math.unit(6, "feet"),
  48550. weight: math.unit(150, "lb"),
  48551. name: "Back",
  48552. image: {
  48553. source: "./media/characters/keltre/back.svg",
  48554. extra: 1095/1053,
  48555. bottom: 17/1112
  48556. }
  48557. },
  48558. dressed: {
  48559. height: math.unit(6, "feet"),
  48560. weight: math.unit(150, "lb"),
  48561. name: "Dressed",
  48562. image: {
  48563. source: "./media/characters/keltre/dressed.svg",
  48564. extra: 1099/1057,
  48565. bottom: 22/1121
  48566. }
  48567. },
  48568. winter: {
  48569. height: math.unit(6, "feet"),
  48570. weight: math.unit(150, "lb"),
  48571. name: "Winter",
  48572. image: {
  48573. source: "./media/characters/keltre/winter.svg",
  48574. extra: 1099/1057,
  48575. bottom: 22/1121
  48576. }
  48577. },
  48578. head: {
  48579. height: math.unit(1.61, "feet"),
  48580. name: "Head",
  48581. image: {
  48582. source: "./media/characters/keltre/head.svg",
  48583. extra: 534/421,
  48584. bottom: 0/534
  48585. }
  48586. },
  48587. hand: {
  48588. height: math.unit(1.3, "feet"),
  48589. name: "Hand",
  48590. image: {
  48591. source: "./media/characters/keltre/hand.svg"
  48592. }
  48593. },
  48594. foot: {
  48595. height: math.unit(1.8, "feet"),
  48596. name: "Foot",
  48597. image: {
  48598. source: "./media/characters/keltre/foot.svg"
  48599. }
  48600. },
  48601. },
  48602. [
  48603. {
  48604. name: "Normal",
  48605. height: math.unit(6, "feet"),
  48606. default: true
  48607. },
  48608. ]
  48609. ))
  48610. characterMakers.push(() => makeCharacter(
  48611. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48612. {
  48613. front: {
  48614. height: math.unit(6 + 2/12, "feet"),
  48615. name: "Front",
  48616. image: {
  48617. source: "./media/characters/nox/front.svg",
  48618. extra: 1917/1830,
  48619. bottom: 74/1991
  48620. }
  48621. },
  48622. back: {
  48623. height: math.unit(6 + 2/12, "feet"),
  48624. name: "Back",
  48625. image: {
  48626. source: "./media/characters/nox/back.svg",
  48627. extra: 1896/1815,
  48628. bottom: 21/1917
  48629. }
  48630. },
  48631. head: {
  48632. height: math.unit(1.1, "feet"),
  48633. name: "Head",
  48634. image: {
  48635. source: "./media/characters/nox/head.svg",
  48636. extra: 874/704,
  48637. bottom: 0/874
  48638. }
  48639. },
  48640. tattoo: {
  48641. height: math.unit(0.729, "feet"),
  48642. name: "Tattoo",
  48643. image: {
  48644. source: "./media/characters/nox/tattoo.svg"
  48645. }
  48646. },
  48647. },
  48648. [
  48649. {
  48650. name: "Normal",
  48651. height: math.unit(6 + 2/12, "feet")
  48652. },
  48653. {
  48654. name: "Gigamacro",
  48655. height: math.unit(2, "earths"),
  48656. default: true
  48657. },
  48658. {
  48659. name: "Cosmic",
  48660. height: math.unit(867, "yottameters")
  48661. },
  48662. ]
  48663. ))
  48664. //characters
  48665. function makeCharacters() {
  48666. const results = [];
  48667. characterMakers.forEach(character => {
  48668. results.push(character());
  48669. });
  48670. return results;
  48671. }