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.
 
 
 

48032 line
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["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. }
  1888. //species
  1889. function getSpeciesInfo(speciesList) {
  1890. let result = new Set();
  1891. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1892. result.add(entry)
  1893. });
  1894. return Array.from(result);
  1895. };
  1896. function getSpeciesInfoHelper(species) {
  1897. if (!speciesData[species]) {
  1898. console.warn(species + " doesn't exist");
  1899. return [];
  1900. }
  1901. if (speciesData[species].parents) {
  1902. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1903. } else {
  1904. return [species];
  1905. }
  1906. }
  1907. characterMakers.push(() => makeCharacter(
  1908. {
  1909. name: "Fen",
  1910. species: ["crux"],
  1911. description: {
  1912. title: "Bio",
  1913. text: "Very furry. Sheds on everything."
  1914. },
  1915. tags: [
  1916. "anthro",
  1917. "goo"
  1918. ]
  1919. },
  1920. {
  1921. front: {
  1922. height: math.unit(12, "feet"),
  1923. weight: math.unit(2400, "lb"),
  1924. name: "Front",
  1925. image: {
  1926. source: "./media/characters/fen/front.svg",
  1927. extra: 1804/1562,
  1928. bottom: 205/2009
  1929. }
  1930. },
  1931. diving: {
  1932. height: math.unit(4.9, "meters"),
  1933. weight: math.unit(2400, "lb"),
  1934. name: "Diving",
  1935. image: {
  1936. source: "./media/characters/fen/diving.svg"
  1937. }
  1938. },
  1939. goo: {
  1940. height: math.unit(12, "feet"),
  1941. weight: math.unit(3000, "lb"),
  1942. capacity: math.unit(6, "people"),
  1943. name: "Goo",
  1944. image: {
  1945. source: "./media/characters/fen/goo.svg",
  1946. extra: 1307/1071,
  1947. bottom: 134/1441
  1948. }
  1949. },
  1950. maw: {
  1951. height: math.unit(5.03, "feet"),
  1952. name: "Maw",
  1953. image: {
  1954. source: "./media/characters/fen/maw.svg"
  1955. }
  1956. },
  1957. gooCeiling: {
  1958. height: math.unit(6.6, "feet"),
  1959. weight: math.unit(3000, "lb"),
  1960. capacity: math.unit(6, "people"),
  1961. name: "Goo (Ceiling)",
  1962. image: {
  1963. source: "./media/characters/fen/goo-ceiling.svg"
  1964. }
  1965. },
  1966. back: {
  1967. height: math.unit(12, "feet"),
  1968. weight: math.unit(2400, "lb"),
  1969. name: "Back",
  1970. image: {
  1971. source: "./media/characters/fen/back.svg",
  1972. },
  1973. info: {
  1974. description: {
  1975. mode: "append",
  1976. text: "\n\nHe is not currently looking at you."
  1977. }
  1978. }
  1979. },
  1980. full: {
  1981. height: math.unit(1.6, "meter"),
  1982. weight: math.unit(3200, "lb"),
  1983. name: "Full",
  1984. image: {
  1985. source: "./media/characters/fen/full.svg",
  1986. extra: 1133/859,
  1987. bottom: 145/1278
  1988. },
  1989. info: {
  1990. description: {
  1991. mode: "append",
  1992. text: "\n\nMunch."
  1993. }
  1994. }
  1995. },
  1996. gooLounging: {
  1997. height: math.unit(4.53, "feet"),
  1998. weight: math.unit(3000, "lb"),
  1999. capacity: math.unit(6, "people"),
  2000. name: "Goo (Lounging)",
  2001. image: {
  2002. source: "./media/characters/fen/goo.svg",
  2003. bottom: 116 / 613
  2004. }
  2005. },
  2006. lounging: {
  2007. height: math.unit(10.52, "feet"),
  2008. weight: math.unit(2400, "lb"),
  2009. name: "Lounging",
  2010. image: {
  2011. source: "./media/characters/fen/lounging.svg"
  2012. }
  2013. },
  2014. },
  2015. [
  2016. {
  2017. name: "Small",
  2018. height: math.unit(2.2428, "meter")
  2019. },
  2020. {
  2021. name: "Normal",
  2022. height: math.unit(12, "feet"),
  2023. default: true,
  2024. },
  2025. {
  2026. name: "Big",
  2027. height: math.unit(20, "feet")
  2028. },
  2029. {
  2030. name: "Minimacro",
  2031. height: math.unit(40, "feet"),
  2032. info: {
  2033. description: {
  2034. mode: "append",
  2035. text: "\n\nTOO DAMN BIG"
  2036. }
  2037. }
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(100, "feet"),
  2042. info: {
  2043. description: {
  2044. mode: "append",
  2045. text: "\n\nTOO DAMN BIG"
  2046. }
  2047. }
  2048. },
  2049. {
  2050. name: "Megamacro",
  2051. height: math.unit(2, "miles")
  2052. },
  2053. {
  2054. name: "Gigamacro",
  2055. height: math.unit(10, "earths")
  2056. },
  2057. ]
  2058. ))
  2059. characterMakers.push(() => makeCharacter(
  2060. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2061. {
  2062. front: {
  2063. height: math.unit(183, "cm"),
  2064. weight: math.unit(80, "kg"),
  2065. name: "Front",
  2066. image: {
  2067. source: "./media/characters/sofia-fluttertail/front.svg",
  2068. bottom: 0.01,
  2069. extra: 2154 / 2081
  2070. }
  2071. },
  2072. frontAlt: {
  2073. height: math.unit(183, "cm"),
  2074. weight: math.unit(80, "kg"),
  2075. name: "Front (alt)",
  2076. image: {
  2077. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2078. }
  2079. },
  2080. back: {
  2081. height: math.unit(183, "cm"),
  2082. weight: math.unit(80, "kg"),
  2083. name: "Back",
  2084. image: {
  2085. source: "./media/characters/sofia-fluttertail/back.svg"
  2086. }
  2087. },
  2088. kneeling: {
  2089. height: math.unit(125, "cm"),
  2090. weight: math.unit(80, "kg"),
  2091. name: "Kneeling",
  2092. image: {
  2093. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2094. extra: 1033 / 977,
  2095. bottom: 23.7 / 1057
  2096. }
  2097. },
  2098. maw: {
  2099. height: math.unit(183 / 5, "cm"),
  2100. name: "Maw",
  2101. image: {
  2102. source: "./media/characters/sofia-fluttertail/maw.svg"
  2103. }
  2104. },
  2105. mawcloseup: {
  2106. height: math.unit(183 / 5 * 0.41, "cm"),
  2107. name: "Maw (Closeup)",
  2108. image: {
  2109. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2110. }
  2111. },
  2112. paws: {
  2113. height: math.unit(1.17, "feet"),
  2114. name: "Paws",
  2115. image: {
  2116. source: "./media/characters/sofia-fluttertail/paws.svg",
  2117. extra: 851 / 851,
  2118. bottom: 17 / 868
  2119. }
  2120. },
  2121. },
  2122. [
  2123. {
  2124. name: "Normal",
  2125. height: math.unit(1.83, "meter")
  2126. },
  2127. {
  2128. name: "Size Thief",
  2129. height: math.unit(18, "feet")
  2130. },
  2131. {
  2132. name: "50 Foot Collie",
  2133. height: math.unit(50, "feet")
  2134. },
  2135. {
  2136. name: "Macro",
  2137. height: math.unit(96, "feet"),
  2138. default: true
  2139. },
  2140. {
  2141. name: "Megamerger",
  2142. height: math.unit(650, "feet")
  2143. },
  2144. ]
  2145. ))
  2146. characterMakers.push(() => makeCharacter(
  2147. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2148. {
  2149. front: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Front",
  2153. image: {
  2154. source: "./media/characters/march/front.svg",
  2155. extra: 1992/1851,
  2156. bottom: 39/2031
  2157. }
  2158. },
  2159. foot: {
  2160. height: math.unit(0.9, "feet"),
  2161. name: "Foot",
  2162. image: {
  2163. source: "./media/characters/march/foot.svg"
  2164. }
  2165. },
  2166. },
  2167. [
  2168. {
  2169. name: "Normal",
  2170. height: math.unit(7.9, "feet")
  2171. },
  2172. {
  2173. name: "Macro",
  2174. height: math.unit(220, "meters")
  2175. },
  2176. {
  2177. name: "Megamacro",
  2178. height: math.unit(2.98, "km"),
  2179. default: true
  2180. },
  2181. {
  2182. name: "Gigamacro",
  2183. height: math.unit(15963, "km")
  2184. },
  2185. {
  2186. name: "Teramacro",
  2187. height: math.unit(2980000000, "km")
  2188. },
  2189. {
  2190. name: "Examacro",
  2191. height: math.unit(250, "parsecs")
  2192. },
  2193. ]
  2194. ))
  2195. characterMakers.push(() => makeCharacter(
  2196. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2197. {
  2198. front: {
  2199. height: math.unit(6, "feet"),
  2200. weight: math.unit(60, "kg"),
  2201. name: "Front",
  2202. image: {
  2203. source: "./media/characters/noir/front.svg",
  2204. extra: 1,
  2205. bottom: 0.032
  2206. }
  2207. },
  2208. },
  2209. [
  2210. {
  2211. name: "Normal",
  2212. height: math.unit(6.6, "feet")
  2213. },
  2214. {
  2215. name: "Macro",
  2216. height: math.unit(500, "feet")
  2217. },
  2218. {
  2219. name: "Megamacro",
  2220. height: math.unit(2.5, "km"),
  2221. default: true
  2222. },
  2223. {
  2224. name: "Gigamacro",
  2225. height: math.unit(22500, "km")
  2226. },
  2227. {
  2228. name: "Teramacro",
  2229. height: math.unit(2500000000, "km")
  2230. },
  2231. {
  2232. name: "Examacro",
  2233. height: math.unit(200, "parsecs")
  2234. },
  2235. ]
  2236. ))
  2237. characterMakers.push(() => makeCharacter(
  2238. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2239. {
  2240. front: {
  2241. height: math.unit(7, "feet"),
  2242. weight: math.unit(100, "kg"),
  2243. name: "Front",
  2244. image: {
  2245. source: "./media/characters/okuri/front.svg",
  2246. extra: 1,
  2247. bottom: 0.037
  2248. }
  2249. },
  2250. back: {
  2251. height: math.unit(7, "feet"),
  2252. weight: math.unit(100, "kg"),
  2253. name: "Back",
  2254. image: {
  2255. source: "./media/characters/okuri/back.svg",
  2256. extra: 1,
  2257. bottom: 0.007
  2258. }
  2259. },
  2260. },
  2261. [
  2262. {
  2263. name: "Megamacro",
  2264. height: math.unit(100, "miles"),
  2265. default: true
  2266. },
  2267. ]
  2268. ))
  2269. characterMakers.push(() => makeCharacter(
  2270. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2271. {
  2272. front: {
  2273. height: math.unit(7, "feet"),
  2274. weight: math.unit(100, "kg"),
  2275. name: "Front",
  2276. image: {
  2277. source: "./media/characters/manny/front.svg",
  2278. extra: 1,
  2279. bottom: 0.06
  2280. }
  2281. },
  2282. back: {
  2283. height: math.unit(7, "feet"),
  2284. weight: math.unit(100, "kg"),
  2285. name: "Back",
  2286. image: {
  2287. source: "./media/characters/manny/back.svg",
  2288. extra: 1,
  2289. bottom: 0.014
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Normal",
  2296. height: math.unit(7, "feet"),
  2297. },
  2298. {
  2299. name: "Macro",
  2300. height: math.unit(78, "feet"),
  2301. default: true
  2302. },
  2303. {
  2304. name: "Macro+",
  2305. height: math.unit(300, "meters")
  2306. },
  2307. {
  2308. name: "Macro++",
  2309. height: math.unit(2400, "meters")
  2310. },
  2311. {
  2312. name: "Megamacro",
  2313. height: math.unit(5167, "meters")
  2314. },
  2315. {
  2316. name: "Gigamacro",
  2317. height: math.unit(41769, "miles")
  2318. },
  2319. ]
  2320. ))
  2321. characterMakers.push(() => makeCharacter(
  2322. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2323. {
  2324. front: {
  2325. height: math.unit(7, "feet"),
  2326. weight: math.unit(100, "kg"),
  2327. name: "Front",
  2328. image: {
  2329. source: "./media/characters/adake/front-1.svg"
  2330. }
  2331. },
  2332. frontAlt: {
  2333. height: math.unit(7, "feet"),
  2334. weight: math.unit(100, "kg"),
  2335. name: "Front (Alt)",
  2336. image: {
  2337. source: "./media/characters/adake/front-2.svg",
  2338. extra: 1,
  2339. bottom: 0.01
  2340. }
  2341. },
  2342. back: {
  2343. height: math.unit(7, "feet"),
  2344. weight: math.unit(100, "kg"),
  2345. name: "Back",
  2346. image: {
  2347. source: "./media/characters/adake/back.svg",
  2348. }
  2349. },
  2350. kneel: {
  2351. height: math.unit(5.385, "feet"),
  2352. weight: math.unit(100, "kg"),
  2353. name: "Kneeling",
  2354. image: {
  2355. source: "./media/characters/adake/kneel.svg",
  2356. bottom: 0.052
  2357. }
  2358. },
  2359. },
  2360. [
  2361. {
  2362. name: "Normal",
  2363. height: math.unit(7, "feet"),
  2364. },
  2365. {
  2366. name: "Macro",
  2367. height: math.unit(78, "feet"),
  2368. default: true
  2369. },
  2370. {
  2371. name: "Macro+",
  2372. height: math.unit(300, "meters")
  2373. },
  2374. {
  2375. name: "Macro++",
  2376. height: math.unit(2400, "meters")
  2377. },
  2378. {
  2379. name: "Megamacro",
  2380. height: math.unit(5167, "meters")
  2381. },
  2382. {
  2383. name: "Gigamacro",
  2384. height: math.unit(41769, "miles")
  2385. },
  2386. ]
  2387. ))
  2388. characterMakers.push(() => makeCharacter(
  2389. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2390. {
  2391. front: {
  2392. height: math.unit(1.65, "meters"),
  2393. weight: math.unit(50, "kg"),
  2394. name: "Front",
  2395. image: {
  2396. source: "./media/characters/elijah/front.svg",
  2397. extra: 858 / 830,
  2398. bottom: 95.5 / 953.8559
  2399. }
  2400. },
  2401. back: {
  2402. height: math.unit(1.65, "meters"),
  2403. weight: math.unit(50, "kg"),
  2404. name: "Back",
  2405. image: {
  2406. source: "./media/characters/elijah/back.svg",
  2407. extra: 895 / 850,
  2408. bottom: 5.3 / 897.956
  2409. }
  2410. },
  2411. frontNsfw: {
  2412. height: math.unit(1.65, "meters"),
  2413. weight: math.unit(50, "kg"),
  2414. name: "Front (NSFW)",
  2415. image: {
  2416. source: "./media/characters/elijah/front-nsfw.svg",
  2417. extra: 858 / 830,
  2418. bottom: 95.5 / 953.8559
  2419. }
  2420. },
  2421. backNsfw: {
  2422. height: math.unit(1.65, "meters"),
  2423. weight: math.unit(50, "kg"),
  2424. name: "Back (NSFW)",
  2425. image: {
  2426. source: "./media/characters/elijah/back-nsfw.svg",
  2427. extra: 895 / 850,
  2428. bottom: 5.3 / 897.956
  2429. }
  2430. },
  2431. dick: {
  2432. height: math.unit(1, "feet"),
  2433. name: "Dick",
  2434. image: {
  2435. source: "./media/characters/elijah/dick.svg"
  2436. }
  2437. },
  2438. beakOpen: {
  2439. height: math.unit(1.25, "feet"),
  2440. name: "Beak (Open)",
  2441. image: {
  2442. source: "./media/characters/elijah/beak-open.svg"
  2443. }
  2444. },
  2445. beakShut: {
  2446. height: math.unit(1.25, "feet"),
  2447. name: "Beak (Shut)",
  2448. image: {
  2449. source: "./media/characters/elijah/beak-shut.svg"
  2450. }
  2451. },
  2452. footFlexing: {
  2453. height: math.unit(1.61, "feet"),
  2454. name: "Foot (Flexing)",
  2455. image: {
  2456. source: "./media/characters/elijah/foot-flexing.svg"
  2457. }
  2458. },
  2459. footStepping: {
  2460. height: math.unit(1.44, "feet"),
  2461. name: "Foot (Stepping)",
  2462. image: {
  2463. source: "./media/characters/elijah/foot-stepping.svg"
  2464. }
  2465. },
  2466. plantigradeLeg: {
  2467. height: math.unit(2.34, "feet"),
  2468. name: "Plantigrade Leg",
  2469. image: {
  2470. source: "./media/characters/elijah/plantigrade-leg.svg"
  2471. }
  2472. },
  2473. plantigradeFootLeft: {
  2474. height: math.unit(0.9, "feet"),
  2475. name: "Plantigrade Foot (Left)",
  2476. image: {
  2477. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2478. }
  2479. },
  2480. plantigradeFootRight: {
  2481. height: math.unit(0.9, "feet"),
  2482. name: "Plantigrade Foot (Right)",
  2483. image: {
  2484. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2485. }
  2486. },
  2487. },
  2488. [
  2489. {
  2490. name: "Normal",
  2491. height: math.unit(1.65, "meters")
  2492. },
  2493. {
  2494. name: "Macro",
  2495. height: math.unit(55, "meters"),
  2496. default: true
  2497. },
  2498. {
  2499. name: "Macro+",
  2500. height: math.unit(105, "meters")
  2501. },
  2502. ]
  2503. ))
  2504. characterMakers.push(() => makeCharacter(
  2505. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2506. {
  2507. front: {
  2508. height: math.unit(7 + 2/12, "feet"),
  2509. weight: math.unit(320, "kg"),
  2510. name: "Front",
  2511. image: {
  2512. source: "./media/characters/rai/front.svg",
  2513. extra: 1802/1696,
  2514. bottom: 68/1870
  2515. }
  2516. },
  2517. frontDressed: {
  2518. height: math.unit(7 + 2/12, "feet"),
  2519. weight: math.unit(320, "kg"),
  2520. name: "Front (Dressed)",
  2521. image: {
  2522. source: "./media/characters/rai/front-dressed.svg",
  2523. extra: 1802/1696,
  2524. bottom: 68/1870
  2525. }
  2526. },
  2527. side: {
  2528. height: math.unit(7 + 2/12, "feet"),
  2529. weight: math.unit(320, "kg"),
  2530. name: "Side",
  2531. image: {
  2532. source: "./media/characters/rai/side.svg",
  2533. extra: 1789/1710,
  2534. bottom: 115/1904
  2535. }
  2536. },
  2537. back: {
  2538. height: math.unit(7 + 2/12, "feet"),
  2539. weight: math.unit(320, "kg"),
  2540. name: "Back",
  2541. image: {
  2542. source: "./media/characters/rai/back.svg",
  2543. extra: 1770/1707,
  2544. bottom: 28/1798
  2545. }
  2546. },
  2547. feral: {
  2548. height: math.unit(9.5, "feet"),
  2549. weight: math.unit(640, "kg"),
  2550. name: "Feral",
  2551. image: {
  2552. source: "./media/characters/rai/feral.svg",
  2553. extra: 945/553,
  2554. bottom: 176/1121
  2555. }
  2556. },
  2557. dragon: {
  2558. height: math.unit(23, "feet"),
  2559. weight: math.unit(50000, "lb"),
  2560. name: "Dragon",
  2561. image: {
  2562. source: "./media/characters/rai/dragon.svg",
  2563. extra: 2498 / 2030,
  2564. bottom: 85.2 / 2584
  2565. }
  2566. },
  2567. maw: {
  2568. height: math.unit(1.69, "feet"),
  2569. name: "Maw",
  2570. image: {
  2571. source: "./media/characters/rai/maw.svg"
  2572. }
  2573. },
  2574. },
  2575. [
  2576. {
  2577. name: "Normal",
  2578. height: math.unit(7 + 2/12, "feet")
  2579. },
  2580. {
  2581. name: "Big",
  2582. height: math.unit(11, "feet")
  2583. },
  2584. {
  2585. name: "Macro",
  2586. height: math.unit(302, "feet"),
  2587. default: true
  2588. },
  2589. ]
  2590. ))
  2591. characterMakers.push(() => makeCharacter(
  2592. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2593. {
  2594. frontDressed: {
  2595. height: math.unit(216, "feet"),
  2596. weight: math.unit(7000000, "lb"),
  2597. name: "Front (Dressed)",
  2598. image: {
  2599. source: "./media/characters/jazzy/front-dressed.svg",
  2600. extra: 2738 / 2651,
  2601. bottom: 41.8 / 2786
  2602. }
  2603. },
  2604. backDressed: {
  2605. height: math.unit(216, "feet"),
  2606. weight: math.unit(7000000, "lb"),
  2607. name: "Back (Dressed)",
  2608. image: {
  2609. source: "./media/characters/jazzy/back-dressed.svg",
  2610. extra: 2775 / 2673,
  2611. bottom: 36.8 / 2817
  2612. }
  2613. },
  2614. front: {
  2615. height: math.unit(216, "feet"),
  2616. weight: math.unit(7000000, "lb"),
  2617. name: "Front",
  2618. image: {
  2619. source: "./media/characters/jazzy/front.svg",
  2620. extra: 2738 / 2651,
  2621. bottom: 41.8 / 2786
  2622. }
  2623. },
  2624. back: {
  2625. height: math.unit(216, "feet"),
  2626. weight: math.unit(7000000, "lb"),
  2627. name: "Back",
  2628. image: {
  2629. source: "./media/characters/jazzy/back.svg",
  2630. extra: 2775 / 2673,
  2631. bottom: 36.8 / 2817
  2632. }
  2633. },
  2634. maw: {
  2635. height: math.unit(20, "feet"),
  2636. name: "Maw",
  2637. image: {
  2638. source: "./media/characters/jazzy/maw.svg"
  2639. }
  2640. },
  2641. paws: {
  2642. height: math.unit(27.5, "feet"),
  2643. name: "Paws",
  2644. image: {
  2645. source: "./media/characters/jazzy/paws.svg"
  2646. }
  2647. },
  2648. eye: {
  2649. height: math.unit(4.4, "feet"),
  2650. name: "Eye",
  2651. image: {
  2652. source: "./media/characters/jazzy/eye.svg"
  2653. }
  2654. },
  2655. droneOffense: {
  2656. height: math.unit(9.5, "inches"),
  2657. name: "Drone (Offense)",
  2658. image: {
  2659. source: "./media/characters/jazzy/drone-offense.svg"
  2660. }
  2661. },
  2662. droneRecon: {
  2663. height: math.unit(9.5, "inches"),
  2664. name: "Drone (Recon)",
  2665. image: {
  2666. source: "./media/characters/jazzy/drone-recon.svg"
  2667. }
  2668. },
  2669. droneDefense: {
  2670. height: math.unit(9.5, "inches"),
  2671. name: "Drone (Defense)",
  2672. image: {
  2673. source: "./media/characters/jazzy/drone-defense.svg"
  2674. }
  2675. },
  2676. },
  2677. [
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(216, "feet"),
  2681. default: true
  2682. },
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2687. {
  2688. front: {
  2689. height: math.unit(9 + 6/12, "feet"),
  2690. weight: math.unit(700, "lb"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/flamm/front.svg",
  2694. extra: 1751/1632,
  2695. bottom: 46/1797
  2696. }
  2697. },
  2698. buff: {
  2699. height: math.unit(9 + 6/12, "feet"),
  2700. weight: math.unit(950, "lb"),
  2701. name: "Buff",
  2702. image: {
  2703. source: "./media/characters/flamm/buff.svg",
  2704. extra: 3018/2874,
  2705. bottom: 221/3239
  2706. }
  2707. },
  2708. },
  2709. [
  2710. {
  2711. name: "Normal",
  2712. height: math.unit(9.5, "feet")
  2713. },
  2714. {
  2715. name: "Macro",
  2716. height: math.unit(200, "feet"),
  2717. default: true
  2718. },
  2719. ]
  2720. ))
  2721. characterMakers.push(() => makeCharacter(
  2722. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2723. {
  2724. front: {
  2725. height: math.unit(5 + 3/12, "feet"),
  2726. weight: math.unit(60, "kg"),
  2727. name: "Front",
  2728. image: {
  2729. source: "./media/characters/zephiro/front.svg",
  2730. extra: 2309 / 2162,
  2731. bottom: 0.069
  2732. }
  2733. },
  2734. side: {
  2735. height: math.unit(5 + 3/12, "feet"),
  2736. weight: math.unit(60, "kg"),
  2737. name: "Side",
  2738. image: {
  2739. source: "./media/characters/zephiro/side.svg",
  2740. extra: 2403 / 2279,
  2741. bottom: 0.015
  2742. }
  2743. },
  2744. back: {
  2745. height: math.unit(5 + 3/12, "feet"),
  2746. weight: math.unit(60, "kg"),
  2747. name: "Back",
  2748. image: {
  2749. source: "./media/characters/zephiro/back.svg",
  2750. extra: 2373 / 2244,
  2751. bottom: 0.013
  2752. }
  2753. },
  2754. hand: {
  2755. height: math.unit(0.68, "feet"),
  2756. name: "Hand",
  2757. image: {
  2758. source: "./media/characters/zephiro/hand.svg"
  2759. }
  2760. },
  2761. paw: {
  2762. height: math.unit(1, "feet"),
  2763. name: "Paw",
  2764. image: {
  2765. source: "./media/characters/zephiro/paw.svg"
  2766. }
  2767. },
  2768. beans: {
  2769. height: math.unit(0.93, "feet"),
  2770. name: "Beans",
  2771. image: {
  2772. source: "./media/characters/zephiro/beans.svg"
  2773. }
  2774. },
  2775. },
  2776. [
  2777. {
  2778. name: "Micro",
  2779. height: math.unit(3, "inches")
  2780. },
  2781. {
  2782. name: "Normal",
  2783. height: math.unit(5 + 3 / 12, "feet"),
  2784. default: true
  2785. },
  2786. {
  2787. name: "Macro",
  2788. height: math.unit(118, "feet")
  2789. },
  2790. ]
  2791. ))
  2792. characterMakers.push(() => makeCharacter(
  2793. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2794. {
  2795. front: {
  2796. height: math.unit(5, "feet"),
  2797. weight: math.unit(90, "kg"),
  2798. name: "Front",
  2799. image: {
  2800. source: "./media/characters/fory/front.svg",
  2801. extra: 2862 / 2674,
  2802. bottom: 180 / 3043.8
  2803. }
  2804. },
  2805. back: {
  2806. height: math.unit(5, "feet"),
  2807. weight: math.unit(90, "kg"),
  2808. name: "Back",
  2809. image: {
  2810. source: "./media/characters/fory/back.svg",
  2811. extra: 2962 / 2791,
  2812. bottom: 106 / 3071.8
  2813. }
  2814. },
  2815. foot: {
  2816. height: math.unit(2.14, "feet"),
  2817. name: "Foot",
  2818. image: {
  2819. source: "./media/characters/fory/foot.svg"
  2820. }
  2821. },
  2822. },
  2823. [
  2824. {
  2825. name: "Normal",
  2826. height: math.unit(5, "feet")
  2827. },
  2828. {
  2829. name: "Macro",
  2830. height: math.unit(50, "feet"),
  2831. default: true
  2832. },
  2833. {
  2834. name: "Megamacro",
  2835. height: math.unit(10, "miles")
  2836. },
  2837. {
  2838. name: "Gigamacro",
  2839. height: math.unit(5, "earths")
  2840. },
  2841. ]
  2842. ))
  2843. characterMakers.push(() => makeCharacter(
  2844. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2845. {
  2846. front: {
  2847. height: math.unit(7, "feet"),
  2848. weight: math.unit(90, "kg"),
  2849. name: "Front",
  2850. image: {
  2851. source: "./media/characters/kurrikage/front.svg",
  2852. extra: 1845/1733,
  2853. bottom: 119/1964
  2854. }
  2855. },
  2856. back: {
  2857. height: math.unit(7, "feet"),
  2858. weight: math.unit(90, "kg"),
  2859. name: "Back",
  2860. image: {
  2861. source: "./media/characters/kurrikage/back.svg",
  2862. extra: 1790/1677,
  2863. bottom: 61/1851
  2864. }
  2865. },
  2866. dressed: {
  2867. height: math.unit(7, "feet"),
  2868. weight: math.unit(90, "kg"),
  2869. name: "Dressed",
  2870. image: {
  2871. source: "./media/characters/kurrikage/dressed.svg",
  2872. extra: 1845/1733,
  2873. bottom: 119/1964
  2874. }
  2875. },
  2876. foot: {
  2877. height: math.unit(1.5, "feet"),
  2878. name: "Foot",
  2879. image: {
  2880. source: "./media/characters/kurrikage/foot.svg"
  2881. }
  2882. },
  2883. staff: {
  2884. height: math.unit(6.7, "feet"),
  2885. name: "Staff",
  2886. image: {
  2887. source: "./media/characters/kurrikage/staff.svg"
  2888. }
  2889. },
  2890. peek: {
  2891. height: math.unit(1.05, "feet"),
  2892. name: "Peeking",
  2893. image: {
  2894. source: "./media/characters/kurrikage/peek.svg",
  2895. bottom: 0.08
  2896. }
  2897. },
  2898. },
  2899. [
  2900. {
  2901. name: "Normal",
  2902. height: math.unit(12, "feet"),
  2903. default: true
  2904. },
  2905. {
  2906. name: "Big",
  2907. height: math.unit(20, "feet")
  2908. },
  2909. {
  2910. name: "Macro",
  2911. height: math.unit(500, "feet")
  2912. },
  2913. {
  2914. name: "Megamacro",
  2915. height: math.unit(20, "miles")
  2916. },
  2917. ]
  2918. ))
  2919. characterMakers.push(() => makeCharacter(
  2920. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2921. {
  2922. front: {
  2923. height: math.unit(6, "feet"),
  2924. weight: math.unit(75, "kg"),
  2925. name: "Front",
  2926. image: {
  2927. source: "./media/characters/shingo/front.svg",
  2928. extra: 1900/1825,
  2929. bottom: 82/1982
  2930. }
  2931. },
  2932. side: {
  2933. height: math.unit(6, "feet"),
  2934. weight: math.unit(75, "kg"),
  2935. name: "Side",
  2936. image: {
  2937. source: "./media/characters/shingo/side.svg",
  2938. extra: 1930/1865,
  2939. bottom: 16/1946
  2940. }
  2941. },
  2942. back: {
  2943. height: math.unit(6, "feet"),
  2944. weight: math.unit(75, "kg"),
  2945. name: "Back",
  2946. image: {
  2947. source: "./media/characters/shingo/back.svg",
  2948. extra: 1922/1852,
  2949. bottom: 16/1938
  2950. }
  2951. },
  2952. frontDressed: {
  2953. height: math.unit(6, "feet"),
  2954. weight: math.unit(150, "lb"),
  2955. name: "Front-dressed",
  2956. image: {
  2957. source: "./media/characters/shingo/front-dressed.svg",
  2958. extra: 1900/1825,
  2959. bottom: 82/1982
  2960. }
  2961. },
  2962. paw: {
  2963. height: math.unit(1.29, "feet"),
  2964. name: "Paw",
  2965. image: {
  2966. source: "./media/characters/shingo/paw.svg"
  2967. }
  2968. },
  2969. hand: {
  2970. height: math.unit(1.07, "feet"),
  2971. name: "Hand",
  2972. image: {
  2973. source: "./media/characters/shingo/hand.svg"
  2974. }
  2975. },
  2976. frontAlt: {
  2977. height: math.unit(6, "feet"),
  2978. weight: math.unit(75, "kg"),
  2979. name: "Front (Alt)",
  2980. image: {
  2981. source: "./media/characters/shingo/front-alt.svg",
  2982. extra: 3511 / 3338,
  2983. bottom: 0.005
  2984. }
  2985. },
  2986. frontAlt2: {
  2987. height: math.unit(6, "feet"),
  2988. weight: math.unit(75, "kg"),
  2989. name: "Front (Alt 2)",
  2990. image: {
  2991. source: "./media/characters/shingo/front-alt-2.svg",
  2992. extra: 706/681,
  2993. bottom: 11/717
  2994. }
  2995. },
  2996. pawAlt: {
  2997. height: math.unit(1, "feet"),
  2998. name: "Paw (Alt)",
  2999. image: {
  3000. source: "./media/characters/shingo/paw-alt.svg"
  3001. }
  3002. },
  3003. },
  3004. [
  3005. {
  3006. name: "Micro",
  3007. height: math.unit(4, "inches")
  3008. },
  3009. {
  3010. name: "Normal",
  3011. height: math.unit(6, "feet"),
  3012. default: true
  3013. },
  3014. {
  3015. name: "Macro",
  3016. height: math.unit(108, "feet")
  3017. },
  3018. {
  3019. name: "Macro+",
  3020. height: math.unit(1500, "feet")
  3021. },
  3022. ]
  3023. ))
  3024. characterMakers.push(() => makeCharacter(
  3025. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3026. {
  3027. side: {
  3028. height: math.unit(6, "feet"),
  3029. weight: math.unit(75, "kg"),
  3030. name: "Side",
  3031. image: {
  3032. source: "./media/characters/aigey/side.svg"
  3033. }
  3034. },
  3035. },
  3036. [
  3037. {
  3038. name: "Macro",
  3039. height: math.unit(200, "feet"),
  3040. default: true
  3041. },
  3042. {
  3043. name: "Megamacro",
  3044. height: math.unit(100, "miles")
  3045. },
  3046. ]
  3047. )
  3048. )
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3051. {
  3052. front: {
  3053. height: math.unit(5 + 5 / 12, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/natasha/front.svg",
  3058. extra: 859 / 824,
  3059. bottom: 23 / 879.6
  3060. }
  3061. },
  3062. frontNsfw: {
  3063. height: math.unit(5 + 5 / 12, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Front (NSFW)",
  3066. image: {
  3067. source: "./media/characters/natasha/front-nsfw.svg",
  3068. extra: 859 / 824,
  3069. bottom: 23 / 879.6
  3070. }
  3071. },
  3072. frontErect: {
  3073. height: math.unit(5 + 5 / 12, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Front (Erect)",
  3076. image: {
  3077. source: "./media/characters/natasha/front-erect.svg",
  3078. extra: 859 / 824,
  3079. bottom: 23 / 879.6
  3080. }
  3081. },
  3082. back: {
  3083. height: math.unit(5 + 5 / 12, "feet"),
  3084. weight: math.unit(75, "kg"),
  3085. name: "Back",
  3086. image: {
  3087. source: "./media/characters/natasha/back.svg",
  3088. extra: 887.9 / 852.6,
  3089. bottom: 9.7 / 896.4
  3090. }
  3091. },
  3092. backAlt: {
  3093. height: math.unit(5 + 5 / 12, "feet"),
  3094. weight: math.unit(75, "kg"),
  3095. name: "Back (Alt)",
  3096. image: {
  3097. source: "./media/characters/natasha/back-alt.svg",
  3098. extra: 1236.7 / 1192,
  3099. bottom: 22.3 / 1258.2
  3100. }
  3101. },
  3102. dick: {
  3103. height: math.unit(1.772, "feet"),
  3104. name: "Dick",
  3105. image: {
  3106. source: "./media/characters/natasha/dick.svg"
  3107. }
  3108. },
  3109. paw: {
  3110. height: math.unit(0.250, "meters"),
  3111. name: "Paw",
  3112. image: {
  3113. source: "./media/characters/natasha/paw.svg"
  3114. }
  3115. },
  3116. },
  3117. [
  3118. {
  3119. name: "Normal",
  3120. height: math.unit(5 + 5 / 12, "feet")
  3121. },
  3122. {
  3123. name: "Large",
  3124. height: math.unit(12, "feet")
  3125. },
  3126. {
  3127. name: "Macro",
  3128. height: math.unit(100, "feet"),
  3129. default: true
  3130. },
  3131. {
  3132. name: "Macro+",
  3133. height: math.unit(260, "feet")
  3134. },
  3135. {
  3136. name: "Macro++",
  3137. height: math.unit(1, "mile")
  3138. },
  3139. ]
  3140. ))
  3141. characterMakers.push(() => makeCharacter(
  3142. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3143. {
  3144. front: {
  3145. height: math.unit(6, "feet"),
  3146. weight: math.unit(75, "kg"),
  3147. name: "Front",
  3148. image: {
  3149. source: "./media/characters/malik/front.svg"
  3150. }
  3151. },
  3152. side: {
  3153. height: math.unit(6, "feet"),
  3154. weight: math.unit(75, "kg"),
  3155. name: "Side",
  3156. image: {
  3157. source: "./media/characters/malik/side.svg",
  3158. extra: 1.1539
  3159. }
  3160. },
  3161. back: {
  3162. height: math.unit(6, "feet"),
  3163. weight: math.unit(75, "kg"),
  3164. name: "Back",
  3165. image: {
  3166. source: "./media/characters/malik/back.svg"
  3167. }
  3168. },
  3169. },
  3170. [
  3171. {
  3172. name: "Macro",
  3173. height: math.unit(156, "feet"),
  3174. default: true
  3175. },
  3176. {
  3177. name: "Macro+",
  3178. height: math.unit(1188, "feet")
  3179. },
  3180. ]
  3181. ))
  3182. characterMakers.push(() => makeCharacter(
  3183. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3184. {
  3185. front: {
  3186. height: math.unit(6, "feet"),
  3187. weight: math.unit(75, "kg"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/sefer/front.svg",
  3191. extra: 848 / 659,
  3192. bottom: 28.3 / 876.442
  3193. }
  3194. },
  3195. back: {
  3196. height: math.unit(6, "feet"),
  3197. weight: math.unit(75, "kg"),
  3198. name: "Back",
  3199. image: {
  3200. source: "./media/characters/sefer/back.svg",
  3201. extra: 864 / 695,
  3202. bottom: 10 / 871
  3203. }
  3204. },
  3205. frontDressed: {
  3206. height: math.unit(6, "feet"),
  3207. weight: math.unit(75, "kg"),
  3208. name: "Front (Dressed)",
  3209. image: {
  3210. source: "./media/characters/sefer/front-dressed.svg",
  3211. extra: 839 / 653,
  3212. bottom: 37.6 / 878
  3213. }
  3214. },
  3215. },
  3216. [
  3217. {
  3218. name: "Normal",
  3219. height: math.unit(6, "feet"),
  3220. default: true
  3221. },
  3222. ]
  3223. ))
  3224. characterMakers.push(() => makeCharacter(
  3225. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3226. {
  3227. body: {
  3228. height: math.unit(2.2428, "meter"),
  3229. weight: math.unit(124.738, "kg"),
  3230. name: "Body",
  3231. image: {
  3232. extra: 1225 / 1050,
  3233. source: "./media/characters/north/front.svg"
  3234. }
  3235. }
  3236. },
  3237. [
  3238. {
  3239. name: "Micro",
  3240. height: math.unit(4, "inches")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(63, "meters")
  3245. },
  3246. {
  3247. name: "Megamacro",
  3248. height: math.unit(101, "miles"),
  3249. default: true
  3250. }
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3255. {
  3256. angled: {
  3257. height: math.unit(4, "meter"),
  3258. weight: math.unit(150, "kg"),
  3259. name: "Angled",
  3260. image: {
  3261. source: "./media/characters/talan/angled-sfw.svg",
  3262. bottom: 29 / 3734
  3263. }
  3264. },
  3265. angledNsfw: {
  3266. height: math.unit(4, "meter"),
  3267. weight: math.unit(150, "kg"),
  3268. name: "Angled (NSFW)",
  3269. image: {
  3270. source: "./media/characters/talan/angled-nsfw.svg",
  3271. bottom: 29 / 3734
  3272. }
  3273. },
  3274. frontNsfw: {
  3275. height: math.unit(4, "meter"),
  3276. weight: math.unit(150, "kg"),
  3277. name: "Front (NSFW)",
  3278. image: {
  3279. source: "./media/characters/talan/front-nsfw.svg",
  3280. bottom: 29 / 3734
  3281. }
  3282. },
  3283. sideNsfw: {
  3284. height: math.unit(4, "meter"),
  3285. weight: math.unit(150, "kg"),
  3286. name: "Side (NSFW)",
  3287. image: {
  3288. source: "./media/characters/talan/side-nsfw.svg",
  3289. bottom: 29 / 3734
  3290. }
  3291. },
  3292. back: {
  3293. height: math.unit(4, "meter"),
  3294. weight: math.unit(150, "kg"),
  3295. name: "Back",
  3296. image: {
  3297. source: "./media/characters/talan/back.svg"
  3298. }
  3299. },
  3300. dickBottom: {
  3301. height: math.unit(0.621, "meter"),
  3302. name: "Dick (Bottom)",
  3303. image: {
  3304. source: "./media/characters/talan/dick-bottom.svg"
  3305. }
  3306. },
  3307. dickTop: {
  3308. height: math.unit(0.621, "meter"),
  3309. name: "Dick (Top)",
  3310. image: {
  3311. source: "./media/characters/talan/dick-top.svg"
  3312. }
  3313. },
  3314. dickSide: {
  3315. height: math.unit(0.305, "meter"),
  3316. name: "Dick (Side)",
  3317. image: {
  3318. source: "./media/characters/talan/dick-side.svg"
  3319. }
  3320. },
  3321. dickFront: {
  3322. height: math.unit(0.305, "meter"),
  3323. name: "Dick (Front)",
  3324. image: {
  3325. source: "./media/characters/talan/dick-front.svg"
  3326. }
  3327. },
  3328. },
  3329. [
  3330. {
  3331. name: "Normal",
  3332. height: math.unit(4, "meters")
  3333. },
  3334. {
  3335. name: "Macro",
  3336. height: math.unit(100, "meters")
  3337. },
  3338. {
  3339. name: "Megamacro",
  3340. height: math.unit(2, "miles"),
  3341. default: true
  3342. },
  3343. {
  3344. name: "Gigamacro",
  3345. height: math.unit(5000, "miles")
  3346. },
  3347. {
  3348. name: "Teramacro",
  3349. height: math.unit(100, "parsecs")
  3350. }
  3351. ]
  3352. ))
  3353. characterMakers.push(() => makeCharacter(
  3354. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3355. {
  3356. front: {
  3357. height: math.unit(2, "meter"),
  3358. weight: math.unit(90, "kg"),
  3359. name: "Front",
  3360. image: {
  3361. source: "./media/characters/gael'rathus/front.svg"
  3362. }
  3363. },
  3364. frontAlt: {
  3365. height: math.unit(2, "meter"),
  3366. weight: math.unit(90, "kg"),
  3367. name: "Front (alt)",
  3368. image: {
  3369. source: "./media/characters/gael'rathus/front-alt.svg"
  3370. }
  3371. },
  3372. frontAlt2: {
  3373. height: math.unit(2, "meter"),
  3374. weight: math.unit(90, "kg"),
  3375. name: "Front (alt 2)",
  3376. image: {
  3377. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3378. }
  3379. }
  3380. },
  3381. [
  3382. {
  3383. name: "Normal",
  3384. height: math.unit(9, "feet"),
  3385. default: true
  3386. },
  3387. {
  3388. name: "Large",
  3389. height: math.unit(25, "feet")
  3390. },
  3391. {
  3392. name: "Macro",
  3393. height: math.unit(0.25, "miles")
  3394. },
  3395. {
  3396. name: "Megamacro",
  3397. height: math.unit(10, "miles")
  3398. }
  3399. ]
  3400. ))
  3401. characterMakers.push(() => makeCharacter(
  3402. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3403. {
  3404. side: {
  3405. height: math.unit(2, "meter"),
  3406. weight: math.unit(140, "kg"),
  3407. name: "Side",
  3408. image: {
  3409. source: "./media/characters/sosha/side.svg",
  3410. bottom: 0.042
  3411. }
  3412. },
  3413. },
  3414. [
  3415. {
  3416. name: "Normal",
  3417. height: math.unit(12, "feet"),
  3418. default: true
  3419. }
  3420. ]
  3421. ))
  3422. characterMakers.push(() => makeCharacter(
  3423. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3424. {
  3425. side: {
  3426. height: math.unit(5 + 5 / 12, "feet"),
  3427. weight: math.unit(170, "kg"),
  3428. name: "Side",
  3429. image: {
  3430. source: "./media/characters/runnola/side.svg",
  3431. extra: 741 / 448,
  3432. bottom: 0.05
  3433. }
  3434. },
  3435. },
  3436. [
  3437. {
  3438. name: "Small",
  3439. height: math.unit(3, "feet")
  3440. },
  3441. {
  3442. name: "Normal",
  3443. height: math.unit(5 + 5 / 12, "feet"),
  3444. default: true
  3445. },
  3446. {
  3447. name: "Big",
  3448. height: math.unit(10, "feet")
  3449. },
  3450. ]
  3451. ))
  3452. characterMakers.push(() => makeCharacter(
  3453. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3454. {
  3455. front: {
  3456. height: math.unit(2, "meter"),
  3457. weight: math.unit(50, "kg"),
  3458. name: "Front",
  3459. image: {
  3460. source: "./media/characters/kurribird/front.svg",
  3461. bottom: 0.015
  3462. }
  3463. },
  3464. frontAlt: {
  3465. height: math.unit(1.5, "meter"),
  3466. weight: math.unit(50, "kg"),
  3467. name: "Front (Alt)",
  3468. image: {
  3469. source: "./media/characters/kurribird/front-alt.svg",
  3470. extra: 1.45
  3471. }
  3472. },
  3473. },
  3474. [
  3475. {
  3476. name: "Normal",
  3477. height: math.unit(7, "feet")
  3478. },
  3479. {
  3480. name: "Big",
  3481. height: math.unit(12, "feet"),
  3482. default: true
  3483. },
  3484. {
  3485. name: "Macro",
  3486. height: math.unit(1500, "feet")
  3487. },
  3488. {
  3489. name: "Megamacro",
  3490. height: math.unit(2, "miles")
  3491. }
  3492. ]
  3493. ))
  3494. characterMakers.push(() => makeCharacter(
  3495. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3496. {
  3497. front: {
  3498. height: math.unit(2, "meter"),
  3499. weight: math.unit(80, "kg"),
  3500. name: "Front",
  3501. image: {
  3502. source: "./media/characters/elbial/front.svg",
  3503. extra: 1643 / 1556,
  3504. bottom: 60.2 / 1696
  3505. }
  3506. },
  3507. side: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(80, "kg"),
  3510. name: "Side",
  3511. image: {
  3512. source: "./media/characters/elbial/side.svg",
  3513. extra: 1601/1528,
  3514. bottom: 97/1698
  3515. }
  3516. },
  3517. back: {
  3518. height: math.unit(2, "meter"),
  3519. weight: math.unit(80, "kg"),
  3520. name: "Back",
  3521. image: {
  3522. source: "./media/characters/elbial/back.svg",
  3523. extra: 1653/1569,
  3524. bottom: 20/1673
  3525. }
  3526. },
  3527. frontDressed: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(80, "kg"),
  3530. name: "Front (Dressed)",
  3531. image: {
  3532. source: "./media/characters/elbial/front-dressed.svg",
  3533. extra: 1638/1569,
  3534. bottom: 70/1708
  3535. }
  3536. },
  3537. genitals: {
  3538. height: math.unit(2 / 3.367, "meter"),
  3539. name: "Genitals",
  3540. image: {
  3541. source: "./media/characters/elbial/genitals.svg"
  3542. }
  3543. },
  3544. },
  3545. [
  3546. {
  3547. name: "Large",
  3548. height: math.unit(100, "feet")
  3549. },
  3550. {
  3551. name: "Macro",
  3552. height: math.unit(500, "feet"),
  3553. default: true
  3554. },
  3555. {
  3556. name: "Megamacro",
  3557. height: math.unit(10, "miles")
  3558. },
  3559. {
  3560. name: "Gigamacro",
  3561. height: math.unit(25000, "miles")
  3562. },
  3563. {
  3564. name: "Full-Size",
  3565. height: math.unit(8000000, "gigaparsecs")
  3566. }
  3567. ]
  3568. ))
  3569. characterMakers.push(() => makeCharacter(
  3570. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3571. {
  3572. front: {
  3573. height: math.unit(2, "meter"),
  3574. weight: math.unit(60, "kg"),
  3575. name: "Front",
  3576. image: {
  3577. source: "./media/characters/noah/front.svg"
  3578. }
  3579. },
  3580. talons: {
  3581. height: math.unit(0.315, "meter"),
  3582. name: "Talons",
  3583. image: {
  3584. source: "./media/characters/noah/talons.svg"
  3585. }
  3586. }
  3587. },
  3588. [
  3589. {
  3590. name: "Large",
  3591. height: math.unit(50, "feet")
  3592. },
  3593. {
  3594. name: "Macro",
  3595. height: math.unit(750, "feet"),
  3596. default: true
  3597. },
  3598. {
  3599. name: "Megamacro",
  3600. height: math.unit(50, "miles")
  3601. },
  3602. {
  3603. name: "Gigamacro",
  3604. height: math.unit(100000, "miles")
  3605. },
  3606. {
  3607. name: "Full-Size",
  3608. height: math.unit(3000000000, "miles")
  3609. }
  3610. ]
  3611. ))
  3612. characterMakers.push(() => makeCharacter(
  3613. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3614. {
  3615. front: {
  3616. height: math.unit(2, "meter"),
  3617. weight: math.unit(80, "kg"),
  3618. name: "Front",
  3619. image: {
  3620. source: "./media/characters/natalya/front.svg"
  3621. }
  3622. },
  3623. back: {
  3624. height: math.unit(2, "meter"),
  3625. weight: math.unit(80, "kg"),
  3626. name: "Back",
  3627. image: {
  3628. source: "./media/characters/natalya/back.svg"
  3629. }
  3630. }
  3631. },
  3632. [
  3633. {
  3634. name: "Normal",
  3635. height: math.unit(150, "feet"),
  3636. default: true
  3637. },
  3638. {
  3639. name: "Megamacro",
  3640. height: math.unit(5, "miles")
  3641. },
  3642. {
  3643. name: "Full-Size",
  3644. height: math.unit(600, "kiloparsecs")
  3645. }
  3646. ]
  3647. ))
  3648. characterMakers.push(() => makeCharacter(
  3649. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3650. {
  3651. front: {
  3652. height: math.unit(2, "meter"),
  3653. weight: math.unit(50, "kg"),
  3654. name: "Front",
  3655. image: {
  3656. source: "./media/characters/erestrebah/front.svg",
  3657. extra: 1262/1162,
  3658. bottom: 96/1358
  3659. }
  3660. },
  3661. back: {
  3662. height: math.unit(2, "meter"),
  3663. weight: math.unit(50, "kg"),
  3664. name: "Back",
  3665. image: {
  3666. source: "./media/characters/erestrebah/back.svg",
  3667. extra: 1257/1139,
  3668. bottom: 13/1270
  3669. }
  3670. },
  3671. wing: {
  3672. height: math.unit(2, "meter"),
  3673. weight: math.unit(50, "kg"),
  3674. name: "Wing",
  3675. image: {
  3676. source: "./media/characters/erestrebah/wing.svg",
  3677. extra: 1262/1162,
  3678. bottom: 96/1358
  3679. }
  3680. },
  3681. mouth: {
  3682. height: math.unit(0.39, "feet"),
  3683. name: "Mouth",
  3684. image: {
  3685. source: "./media/characters/erestrebah/mouth.svg"
  3686. }
  3687. }
  3688. },
  3689. [
  3690. {
  3691. name: "Normal",
  3692. height: math.unit(10, "feet")
  3693. },
  3694. {
  3695. name: "Large",
  3696. height: math.unit(50, "feet"),
  3697. default: true
  3698. },
  3699. {
  3700. name: "Macro",
  3701. height: math.unit(300, "feet")
  3702. },
  3703. {
  3704. name: "Macro+",
  3705. height: math.unit(750, "feet")
  3706. },
  3707. {
  3708. name: "Megamacro",
  3709. height: math.unit(3, "miles")
  3710. }
  3711. ]
  3712. ))
  3713. characterMakers.push(() => makeCharacter(
  3714. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3715. {
  3716. front: {
  3717. height: math.unit(2, "meter"),
  3718. weight: math.unit(80, "kg"),
  3719. name: "Front",
  3720. image: {
  3721. source: "./media/characters/jennifer/front.svg",
  3722. bottom: 0.11,
  3723. extra: 1.16
  3724. }
  3725. },
  3726. frontAlt: {
  3727. height: math.unit(2, "meter"),
  3728. weight: math.unit(80, "kg"),
  3729. name: "Front (Alt)",
  3730. image: {
  3731. source: "./media/characters/jennifer/front-alt.svg"
  3732. }
  3733. }
  3734. },
  3735. [
  3736. {
  3737. name: "Canon Height",
  3738. height: math.unit(120, "feet"),
  3739. default: true
  3740. },
  3741. {
  3742. name: "Macro+",
  3743. height: math.unit(300, "feet")
  3744. },
  3745. {
  3746. name: "Megamacro",
  3747. height: math.unit(20000, "feet")
  3748. }
  3749. ]
  3750. ))
  3751. characterMakers.push(() => makeCharacter(
  3752. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3753. {
  3754. front: {
  3755. height: math.unit(2, "meter"),
  3756. weight: math.unit(50, "kg"),
  3757. name: "Front",
  3758. image: {
  3759. source: "./media/characters/kalista/front.svg",
  3760. extra: 1314/1145,
  3761. bottom: 101/1415
  3762. }
  3763. },
  3764. back: {
  3765. height: math.unit(2, "meter"),
  3766. weight: math.unit(50, "kg"),
  3767. name: "Back",
  3768. image: {
  3769. source: "./media/characters/kalista/back.svg",
  3770. extra: 1366 / 1156,
  3771. bottom: 33.9 / 1362.78
  3772. }
  3773. }
  3774. },
  3775. [
  3776. {
  3777. name: "Uncomfortably Small",
  3778. height: math.unit(10, "feet")
  3779. },
  3780. {
  3781. name: "Small",
  3782. height: math.unit(30, "feet")
  3783. },
  3784. {
  3785. name: "Macro",
  3786. height: math.unit(100, "feet"),
  3787. default: true
  3788. },
  3789. {
  3790. name: "Macro+",
  3791. height: math.unit(2000, "feet")
  3792. },
  3793. {
  3794. name: "True Form",
  3795. height: math.unit(8924, "miles")
  3796. }
  3797. ]
  3798. ))
  3799. characterMakers.push(() => makeCharacter(
  3800. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3801. {
  3802. front: {
  3803. height: math.unit(2, "meter"),
  3804. weight: math.unit(120, "kg"),
  3805. name: "Front",
  3806. image: {
  3807. source: "./media/characters/ggv/front.svg"
  3808. }
  3809. },
  3810. side: {
  3811. height: math.unit(2, "meter"),
  3812. weight: math.unit(120, "kg"),
  3813. name: "Side",
  3814. image: {
  3815. source: "./media/characters/ggv/side.svg"
  3816. }
  3817. }
  3818. },
  3819. [
  3820. {
  3821. name: "Extremely Puny",
  3822. height: math.unit(9 + 5 / 12, "feet")
  3823. },
  3824. {
  3825. name: "Horribly Small",
  3826. height: math.unit(47.7, "miles"),
  3827. default: true
  3828. },
  3829. {
  3830. name: "Reasonably Sized",
  3831. height: math.unit(25000, "parsecs")
  3832. },
  3833. {
  3834. name: "Slightly Uncompressed",
  3835. height: math.unit(7.77e31, "parsecs")
  3836. },
  3837. {
  3838. name: "Omniversal",
  3839. height: math.unit(1e300, "meters")
  3840. },
  3841. ]
  3842. ))
  3843. characterMakers.push(() => makeCharacter(
  3844. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3845. {
  3846. front: {
  3847. height: math.unit(2, "meter"),
  3848. weight: math.unit(75, "lb"),
  3849. name: "Front",
  3850. image: {
  3851. source: "./media/characters/napalm/front.svg"
  3852. }
  3853. },
  3854. back: {
  3855. height: math.unit(2, "meter"),
  3856. weight: math.unit(75, "lb"),
  3857. name: "Back",
  3858. image: {
  3859. source: "./media/characters/napalm/back.svg"
  3860. }
  3861. }
  3862. },
  3863. [
  3864. {
  3865. name: "Standard",
  3866. height: math.unit(55, "feet"),
  3867. default: true
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(7 + 5 / 6, "feet"),
  3876. weight: math.unit(325, "lb"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/asana/front.svg",
  3880. extra: 1133 / 1060,
  3881. bottom: 15.2 / 1148.6
  3882. }
  3883. },
  3884. back: {
  3885. height: math.unit(7 + 5 / 6, "feet"),
  3886. weight: math.unit(325, "lb"),
  3887. name: "Back",
  3888. image: {
  3889. source: "./media/characters/asana/back.svg",
  3890. extra: 1114 / 1043,
  3891. bottom: 5 / 1120
  3892. }
  3893. },
  3894. dressedDark: {
  3895. height: math.unit(7 + 5 / 6, "feet"),
  3896. weight: math.unit(325, "lb"),
  3897. name: "Dressed (Dark)",
  3898. image: {
  3899. source: "./media/characters/asana/dressed-dark.svg",
  3900. extra: 1133 / 1060,
  3901. bottom: 15.2 / 1148.6
  3902. }
  3903. },
  3904. dressedLight: {
  3905. height: math.unit(7 + 5 / 6, "feet"),
  3906. weight: math.unit(325, "lb"),
  3907. name: "Dressed (Light)",
  3908. image: {
  3909. source: "./media/characters/asana/dressed-light.svg",
  3910. extra: 1133 / 1060,
  3911. bottom: 15.2 / 1148.6
  3912. }
  3913. },
  3914. },
  3915. [
  3916. {
  3917. name: "Standard",
  3918. height: math.unit(7 + 5 / 6, "feet"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Large",
  3923. height: math.unit(10, "meters")
  3924. },
  3925. {
  3926. name: "Macro",
  3927. height: math.unit(2500, "meters")
  3928. },
  3929. {
  3930. name: "Megamacro",
  3931. height: math.unit(5e6, "meters")
  3932. },
  3933. {
  3934. name: "Examacro",
  3935. height: math.unit(5e12, "lightyears")
  3936. },
  3937. {
  3938. name: "Max Size",
  3939. height: math.unit(1e31, "lightyears")
  3940. }
  3941. ]
  3942. ))
  3943. characterMakers.push(() => makeCharacter(
  3944. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3945. {
  3946. front: {
  3947. height: math.unit(2, "meter"),
  3948. weight: math.unit(60, "kg"),
  3949. name: "Front",
  3950. image: {
  3951. source: "./media/characters/ebony/front.svg",
  3952. bottom: 0.03,
  3953. extra: 1045 / 810 + 0.03
  3954. }
  3955. },
  3956. side: {
  3957. height: math.unit(2, "meter"),
  3958. weight: math.unit(60, "kg"),
  3959. name: "Side",
  3960. image: {
  3961. source: "./media/characters/ebony/side.svg",
  3962. bottom: 0.03,
  3963. extra: 1045 / 810 + 0.03
  3964. }
  3965. },
  3966. back: {
  3967. height: math.unit(2, "meter"),
  3968. weight: math.unit(60, "kg"),
  3969. name: "Back",
  3970. image: {
  3971. source: "./media/characters/ebony/back.svg",
  3972. bottom: 0.01,
  3973. extra: 1045 / 810 + 0.01
  3974. }
  3975. },
  3976. },
  3977. [
  3978. // TODO check why I did this lol
  3979. {
  3980. name: "Standard",
  3981. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3982. default: true
  3983. },
  3984. {
  3985. name: "Macro",
  3986. height: math.unit(200, "feet")
  3987. },
  3988. {
  3989. name: "Gigamacro",
  3990. height: math.unit(13000, "km")
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(6, "feet"),
  3999. weight: math.unit(175, "lb"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/mountain/front.svg",
  4003. extra: 972 / 955,
  4004. bottom: 64 / 1036.6
  4005. }
  4006. },
  4007. back: {
  4008. height: math.unit(6, "feet"),
  4009. weight: math.unit(175, "lb"),
  4010. name: "Back",
  4011. image: {
  4012. source: "./media/characters/mountain/back.svg",
  4013. extra: 970 / 950,
  4014. bottom: 28.25 / 999
  4015. }
  4016. },
  4017. },
  4018. [
  4019. {
  4020. name: "Large",
  4021. height: math.unit(20, "meters")
  4022. },
  4023. {
  4024. name: "Macro",
  4025. height: math.unit(300, "meters")
  4026. },
  4027. {
  4028. name: "Gigamacro",
  4029. height: math.unit(10000, "km"),
  4030. default: true
  4031. },
  4032. {
  4033. name: "Examacro",
  4034. height: math.unit(10e9, "lightyears")
  4035. }
  4036. ]
  4037. ))
  4038. characterMakers.push(() => makeCharacter(
  4039. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4040. {
  4041. front: {
  4042. height: math.unit(8, "feet"),
  4043. weight: math.unit(500, "lb"),
  4044. name: "Front",
  4045. image: {
  4046. source: "./media/characters/rick/front.svg"
  4047. }
  4048. }
  4049. },
  4050. [
  4051. {
  4052. name: "Normal",
  4053. height: math.unit(8, "feet"),
  4054. default: true
  4055. },
  4056. {
  4057. name: "Macro",
  4058. height: math.unit(5, "km")
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(8, "feet"),
  4067. weight: math.unit(120, "lb"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/ona/front.svg"
  4071. }
  4072. },
  4073. frontAlt: {
  4074. height: math.unit(8, "feet"),
  4075. weight: math.unit(120, "lb"),
  4076. name: "Front (Alt)",
  4077. image: {
  4078. source: "./media/characters/ona/front-alt.svg"
  4079. }
  4080. },
  4081. back: {
  4082. height: math.unit(8, "feet"),
  4083. weight: math.unit(120, "lb"),
  4084. name: "Back",
  4085. image: {
  4086. source: "./media/characters/ona/back.svg"
  4087. }
  4088. },
  4089. foot: {
  4090. height: math.unit(1.1, "feet"),
  4091. name: "Foot",
  4092. image: {
  4093. source: "./media/characters/ona/foot.svg"
  4094. }
  4095. }
  4096. },
  4097. [
  4098. {
  4099. name: "Megamacro",
  4100. height: math.unit(70, "km"),
  4101. default: true
  4102. },
  4103. {
  4104. name: "Gigamacro",
  4105. height: math.unit(681818, "miles")
  4106. },
  4107. {
  4108. name: "Examacro",
  4109. height: math.unit(3800000, "lightyears")
  4110. },
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4115. {
  4116. front: {
  4117. height: math.unit(12, "feet"),
  4118. weight: math.unit(3000, "lb"),
  4119. name: "Front",
  4120. image: {
  4121. source: "./media/characters/mech/front.svg",
  4122. extra: 2900 / 2770,
  4123. bottom: 110 / 3010
  4124. }
  4125. },
  4126. back: {
  4127. height: math.unit(12, "feet"),
  4128. weight: math.unit(3000, "lb"),
  4129. name: "Back",
  4130. image: {
  4131. source: "./media/characters/mech/back.svg",
  4132. extra: 3011 / 2890,
  4133. bottom: 94 / 3105
  4134. }
  4135. },
  4136. maw: {
  4137. height: math.unit(3.07, "feet"),
  4138. name: "Maw",
  4139. image: {
  4140. source: "./media/characters/mech/maw.svg"
  4141. }
  4142. },
  4143. head: {
  4144. height: math.unit(2.82, "feet"),
  4145. name: "Head",
  4146. image: {
  4147. source: "./media/characters/mech/head.svg"
  4148. }
  4149. },
  4150. dick: {
  4151. height: math.unit(1.43, "feet"),
  4152. name: "Dick",
  4153. image: {
  4154. source: "./media/characters/mech/dick.svg"
  4155. }
  4156. },
  4157. },
  4158. [
  4159. {
  4160. name: "Normal",
  4161. height: math.unit(12, "feet")
  4162. },
  4163. {
  4164. name: "Macro",
  4165. height: math.unit(300, "feet"),
  4166. default: true
  4167. },
  4168. {
  4169. name: "Macro+",
  4170. height: math.unit(1500, "feet")
  4171. },
  4172. ]
  4173. ))
  4174. characterMakers.push(() => makeCharacter(
  4175. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4176. {
  4177. front: {
  4178. height: math.unit(1.3, "meter"),
  4179. weight: math.unit(30, "kg"),
  4180. name: "Front",
  4181. image: {
  4182. source: "./media/characters/gregory/front.svg",
  4183. }
  4184. }
  4185. },
  4186. [
  4187. {
  4188. name: "Normal",
  4189. height: math.unit(1.3, "meter"),
  4190. default: true
  4191. },
  4192. {
  4193. name: "Macro",
  4194. height: math.unit(20, "meter")
  4195. }
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4200. {
  4201. front: {
  4202. height: math.unit(2.8, "meter"),
  4203. weight: math.unit(200, "kg"),
  4204. name: "Front",
  4205. image: {
  4206. source: "./media/characters/elory/front.svg",
  4207. }
  4208. }
  4209. },
  4210. [
  4211. {
  4212. name: "Normal",
  4213. height: math.unit(2.8, "meter"),
  4214. default: true
  4215. },
  4216. {
  4217. name: "Macro",
  4218. height: math.unit(38, "meter")
  4219. }
  4220. ]
  4221. ))
  4222. characterMakers.push(() => makeCharacter(
  4223. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4224. {
  4225. front: {
  4226. height: math.unit(470, "feet"),
  4227. weight: math.unit(924, "tons"),
  4228. name: "Front",
  4229. image: {
  4230. source: "./media/characters/angelpatamon/front.svg",
  4231. }
  4232. }
  4233. },
  4234. [
  4235. {
  4236. name: "Normal",
  4237. height: math.unit(470, "feet"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Deity Size I",
  4242. height: math.unit(28651.2, "km")
  4243. },
  4244. {
  4245. name: "Deity Size II",
  4246. height: math.unit(171907.2, "km")
  4247. }
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4252. {
  4253. side: {
  4254. height: math.unit(7.2, "meter"),
  4255. weight: math.unit(8.2, "tons"),
  4256. name: "Side",
  4257. image: {
  4258. source: "./media/characters/cryae/side.svg",
  4259. extra: 3500 / 1500
  4260. }
  4261. }
  4262. },
  4263. [
  4264. {
  4265. name: "Normal",
  4266. height: math.unit(7.2, "meter"),
  4267. default: true
  4268. }
  4269. ]
  4270. ))
  4271. characterMakers.push(() => makeCharacter(
  4272. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4273. {
  4274. front: {
  4275. height: math.unit(6, "feet"),
  4276. weight: math.unit(175, "lb"),
  4277. name: "Front",
  4278. image: {
  4279. source: "./media/characters/xera/front.svg",
  4280. extra: 2377 / 1972,
  4281. bottom: 75.5 / 2452
  4282. }
  4283. },
  4284. side: {
  4285. height: math.unit(6, "feet"),
  4286. weight: math.unit(175, "lb"),
  4287. name: "Side",
  4288. image: {
  4289. source: "./media/characters/xera/side.svg",
  4290. extra: 2345 / 2019,
  4291. bottom: 39.7 / 2384
  4292. }
  4293. },
  4294. back: {
  4295. height: math.unit(6, "feet"),
  4296. weight: math.unit(175, "lb"),
  4297. name: "Back",
  4298. image: {
  4299. source: "./media/characters/xera/back.svg",
  4300. extra: 2095 / 1984,
  4301. bottom: 67 / 2166
  4302. }
  4303. },
  4304. },
  4305. [
  4306. {
  4307. name: "Small",
  4308. height: math.unit(10, "feet")
  4309. },
  4310. {
  4311. name: "Macro",
  4312. height: math.unit(500, "meters"),
  4313. default: true
  4314. },
  4315. {
  4316. name: "Macro+",
  4317. height: math.unit(10, "km")
  4318. },
  4319. {
  4320. name: "Gigamacro",
  4321. height: math.unit(25000, "km")
  4322. },
  4323. {
  4324. name: "Teramacro",
  4325. height: math.unit(3e6, "km")
  4326. }
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4331. {
  4332. front: {
  4333. height: math.unit(6, "feet"),
  4334. weight: math.unit(175, "lb"),
  4335. name: "Front",
  4336. image: {
  4337. source: "./media/characters/nebula/front.svg",
  4338. extra: 2566 / 2362,
  4339. bottom: 81 / 2644
  4340. }
  4341. }
  4342. },
  4343. [
  4344. {
  4345. name: "Small",
  4346. height: math.unit(4.5, "meters")
  4347. },
  4348. {
  4349. name: "Macro",
  4350. height: math.unit(1500, "meters"),
  4351. default: true
  4352. },
  4353. {
  4354. name: "Megamacro",
  4355. height: math.unit(150, "km")
  4356. },
  4357. {
  4358. name: "Gigamacro",
  4359. height: math.unit(27000, "km")
  4360. }
  4361. ]
  4362. ))
  4363. characterMakers.push(() => makeCharacter(
  4364. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4365. {
  4366. front: {
  4367. height: math.unit(6, "feet"),
  4368. weight: math.unit(225, "lb"),
  4369. name: "Front",
  4370. image: {
  4371. source: "./media/characters/abysgar/front.svg"
  4372. }
  4373. }
  4374. },
  4375. [
  4376. {
  4377. name: "Small",
  4378. height: math.unit(4.5, "meters")
  4379. },
  4380. {
  4381. name: "Macro",
  4382. height: math.unit(1250, "meters"),
  4383. default: true
  4384. },
  4385. {
  4386. name: "Megamacro",
  4387. height: math.unit(125, "km")
  4388. },
  4389. {
  4390. name: "Gigamacro",
  4391. height: math.unit(26000, "km")
  4392. }
  4393. ]
  4394. ))
  4395. characterMakers.push(() => makeCharacter(
  4396. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4397. {
  4398. front: {
  4399. height: math.unit(6, "feet"),
  4400. weight: math.unit(180, "lb"),
  4401. name: "Front",
  4402. image: {
  4403. source: "./media/characters/yakuz/front.svg"
  4404. }
  4405. }
  4406. },
  4407. [
  4408. {
  4409. name: "Small",
  4410. height: math.unit(5, "meters")
  4411. },
  4412. {
  4413. name: "Macro",
  4414. height: math.unit(1500, "meters"),
  4415. default: true
  4416. },
  4417. {
  4418. name: "Megamacro",
  4419. height: math.unit(200, "km")
  4420. },
  4421. {
  4422. name: "Gigamacro",
  4423. height: math.unit(100000, "km")
  4424. }
  4425. ]
  4426. ))
  4427. characterMakers.push(() => makeCharacter(
  4428. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4429. {
  4430. front: {
  4431. height: math.unit(6, "feet"),
  4432. weight: math.unit(175, "lb"),
  4433. name: "Front",
  4434. image: {
  4435. source: "./media/characters/mirova/front.svg",
  4436. extra: 3334 / 3071,
  4437. bottom: 42 / 3375.6
  4438. }
  4439. }
  4440. },
  4441. [
  4442. {
  4443. name: "Small",
  4444. height: math.unit(5, "meters")
  4445. },
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(900, "meters"),
  4449. default: true
  4450. },
  4451. {
  4452. name: "Megamacro",
  4453. height: math.unit(135, "km")
  4454. },
  4455. {
  4456. name: "Gigamacro",
  4457. height: math.unit(20000, "km")
  4458. }
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4463. {
  4464. side: {
  4465. height: math.unit(28.35, "feet"),
  4466. weight: math.unit(99.75, "tons"),
  4467. name: "Side",
  4468. image: {
  4469. source: "./media/characters/asana-mech/side.svg",
  4470. extra: 923 / 699,
  4471. bottom: 50 / 975
  4472. }
  4473. },
  4474. chaingun: {
  4475. height: math.unit(7, "feet"),
  4476. weight: math.unit(2400, "lb"),
  4477. name: "Chaingun",
  4478. image: {
  4479. source: "./media/characters/asana-mech/chaingun.svg"
  4480. }
  4481. },
  4482. laser: {
  4483. height: math.unit(7.12, "feet"),
  4484. weight: math.unit(2000, "lb"),
  4485. name: "Laser",
  4486. image: {
  4487. source: "./media/characters/asana-mech/laser.svg"
  4488. }
  4489. },
  4490. },
  4491. [
  4492. {
  4493. name: "Normal",
  4494. height: math.unit(28.35, "feet"),
  4495. default: true
  4496. },
  4497. {
  4498. name: "Macro",
  4499. height: math.unit(2500, "feet")
  4500. },
  4501. {
  4502. name: "Megamacro",
  4503. height: math.unit(25, "miles")
  4504. },
  4505. {
  4506. name: "Examacro",
  4507. height: math.unit(6e8, "lightyears")
  4508. },
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4513. {
  4514. front: {
  4515. height: math.unit(5, "meters"),
  4516. weight: math.unit(1000, "kg"),
  4517. name: "Front",
  4518. image: {
  4519. source: "./media/characters/asche/front.svg",
  4520. extra: 1258 / 1190,
  4521. bottom: 47 / 1305
  4522. }
  4523. },
  4524. frontUnderwear: {
  4525. height: math.unit(5, "meters"),
  4526. weight: math.unit(1000, "kg"),
  4527. name: "Front (Underwear)",
  4528. image: {
  4529. source: "./media/characters/asche/front-underwear.svg",
  4530. extra: 1258 / 1190,
  4531. bottom: 47 / 1305
  4532. }
  4533. },
  4534. frontDressed: {
  4535. height: math.unit(5, "meters"),
  4536. weight: math.unit(1000, "kg"),
  4537. name: "Front (Dressed)",
  4538. image: {
  4539. source: "./media/characters/asche/front-dressed.svg",
  4540. extra: 1258 / 1190,
  4541. bottom: 47 / 1305
  4542. }
  4543. },
  4544. frontArmor: {
  4545. height: math.unit(5, "meters"),
  4546. weight: math.unit(1000, "kg"),
  4547. name: "Front (Armored)",
  4548. image: {
  4549. source: "./media/characters/asche/front-armored.svg",
  4550. extra: 1374 / 1308,
  4551. bottom: 23 / 1397
  4552. }
  4553. },
  4554. mp724: {
  4555. height: math.unit(0.96, "meters"),
  4556. weight: math.unit(38, "kg"),
  4557. name: "H&K MP724",
  4558. image: {
  4559. source: "./media/characters/asche/h&k-mp724.svg"
  4560. }
  4561. },
  4562. side: {
  4563. height: math.unit(5, "meters"),
  4564. weight: math.unit(1000, "kg"),
  4565. name: "Side",
  4566. image: {
  4567. source: "./media/characters/asche/side.svg",
  4568. extra: 1717 / 1609,
  4569. bottom: 0.005
  4570. }
  4571. },
  4572. back: {
  4573. height: math.unit(5, "meters"),
  4574. weight: math.unit(1000, "kg"),
  4575. name: "Back",
  4576. image: {
  4577. source: "./media/characters/asche/back.svg",
  4578. extra: 1570 / 1501
  4579. }
  4580. },
  4581. },
  4582. [
  4583. {
  4584. name: "DEFCON 5",
  4585. height: math.unit(5, "meters")
  4586. },
  4587. {
  4588. name: "DEFCON 4",
  4589. height: math.unit(500, "meters"),
  4590. default: true
  4591. },
  4592. {
  4593. name: "DEFCON 3",
  4594. height: math.unit(5, "km")
  4595. },
  4596. {
  4597. name: "DEFCON 2",
  4598. height: math.unit(500, "km")
  4599. },
  4600. {
  4601. name: "DEFCON 1",
  4602. height: math.unit(500000, "km")
  4603. },
  4604. {
  4605. name: "DEFCON 0",
  4606. height: math.unit(3, "gigaparsecs")
  4607. },
  4608. ]
  4609. ))
  4610. characterMakers.push(() => makeCharacter(
  4611. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4612. {
  4613. front: {
  4614. height: math.unit(2, "meters"),
  4615. weight: math.unit(76, "kg"),
  4616. name: "Front",
  4617. image: {
  4618. source: "./media/characters/gale/front.svg"
  4619. }
  4620. },
  4621. frontAlt1: {
  4622. height: math.unit(2, "meters"),
  4623. weight: math.unit(76, "kg"),
  4624. name: "Front (Alt 1)",
  4625. image: {
  4626. source: "./media/characters/gale/front-alt-1.svg"
  4627. }
  4628. },
  4629. frontAlt2: {
  4630. height: math.unit(2, "meters"),
  4631. weight: math.unit(76, "kg"),
  4632. name: "Front (Alt 2)",
  4633. image: {
  4634. source: "./media/characters/gale/front-alt-2.svg"
  4635. }
  4636. },
  4637. },
  4638. [
  4639. {
  4640. name: "Normal",
  4641. height: math.unit(7, "feet")
  4642. },
  4643. {
  4644. name: "Macro",
  4645. height: math.unit(150, "feet"),
  4646. default: true
  4647. },
  4648. {
  4649. name: "Macro+",
  4650. height: math.unit(300, "feet")
  4651. },
  4652. ]
  4653. ))
  4654. characterMakers.push(() => makeCharacter(
  4655. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4656. {
  4657. front: {
  4658. height: math.unit(5 + 10/12, "feet"),
  4659. weight: math.unit(67, "kg"),
  4660. name: "Front",
  4661. image: {
  4662. source: "./media/characters/draylen/front.svg",
  4663. extra: 832/777,
  4664. bottom: 85/917
  4665. }
  4666. }
  4667. },
  4668. [
  4669. {
  4670. name: "Normal",
  4671. height: math.unit(5 + 10/12, "feet")
  4672. },
  4673. {
  4674. name: "Macro",
  4675. height: math.unit(150, "feet"),
  4676. default: true
  4677. }
  4678. ]
  4679. ))
  4680. characterMakers.push(() => makeCharacter(
  4681. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4682. {
  4683. front: {
  4684. height: math.unit(7 + 9 / 12, "feet"),
  4685. weight: math.unit(379, "lbs"),
  4686. name: "Front",
  4687. image: {
  4688. source: "./media/characters/chez/front.svg"
  4689. }
  4690. },
  4691. side: {
  4692. height: math.unit(7 + 9 / 12, "feet"),
  4693. weight: math.unit(379, "lbs"),
  4694. name: "Side",
  4695. image: {
  4696. source: "./media/characters/chez/side.svg"
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Normal",
  4703. height: math.unit(7 + 9 / 12, "feet"),
  4704. default: true
  4705. },
  4706. {
  4707. name: "God King",
  4708. height: math.unit(9750000, "meters")
  4709. }
  4710. ]
  4711. ))
  4712. characterMakers.push(() => makeCharacter(
  4713. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4714. {
  4715. front: {
  4716. height: math.unit(6, "feet"),
  4717. weight: math.unit(275, "lbs"),
  4718. name: "Front",
  4719. image: {
  4720. source: "./media/characters/kaylum/front.svg",
  4721. bottom: 0.01,
  4722. extra: 1166 / 1031
  4723. }
  4724. },
  4725. frontWingless: {
  4726. height: math.unit(6, "feet"),
  4727. weight: math.unit(275, "lbs"),
  4728. name: "Front (Wingless)",
  4729. image: {
  4730. source: "./media/characters/kaylum/front-wingless.svg",
  4731. bottom: 0.01,
  4732. extra: 1117 / 1031
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(3.05, "meters")
  4740. },
  4741. {
  4742. name: "Master",
  4743. height: math.unit(5.5, "meters")
  4744. },
  4745. {
  4746. name: "Rampage",
  4747. height: math.unit(19, "meters")
  4748. },
  4749. {
  4750. name: "Macro Lite",
  4751. height: math.unit(37, "meters")
  4752. },
  4753. {
  4754. name: "Hyper Predator",
  4755. height: math.unit(61, "meters")
  4756. },
  4757. {
  4758. name: "Macro",
  4759. height: math.unit(138, "meters"),
  4760. default: true
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(6, "feet"),
  4769. weight: math.unit(150, "lbs"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/geta/front.svg"
  4773. }
  4774. }
  4775. },
  4776. [
  4777. {
  4778. name: "Micro",
  4779. height: math.unit(3, "inches"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "Normal",
  4784. height: math.unit(5 + 5 / 12, "feet")
  4785. }
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(300, "lbs"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/tyrnn/front.svg"
  4797. }
  4798. }
  4799. },
  4800. [
  4801. {
  4802. name: "Main Height",
  4803. height: math.unit(355, "feet"),
  4804. default: true
  4805. },
  4806. {
  4807. name: "Fave. Height",
  4808. height: math.unit(2400, "feet")
  4809. }
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4814. {
  4815. front: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(300, "lbs"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/appledectomy/front.svg"
  4821. }
  4822. }
  4823. },
  4824. [
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(2500, "feet")
  4828. },
  4829. {
  4830. name: "Megamacro",
  4831. height: math.unit(50, "miles"),
  4832. default: true
  4833. },
  4834. {
  4835. name: "Gigamacro",
  4836. height: math.unit(5000, "miles")
  4837. },
  4838. {
  4839. name: "Teramacro",
  4840. height: math.unit(250000, "miles")
  4841. },
  4842. ]
  4843. ))
  4844. characterMakers.push(() => makeCharacter(
  4845. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4846. {
  4847. front: {
  4848. height: math.unit(6, "feet"),
  4849. weight: math.unit(200, "lbs"),
  4850. name: "Front",
  4851. image: {
  4852. source: "./media/characters/vulpes/front.svg",
  4853. extra: 573 / 543,
  4854. bottom: 0.033
  4855. }
  4856. },
  4857. side: {
  4858. height: math.unit(6, "feet"),
  4859. weight: math.unit(200, "lbs"),
  4860. name: "Side",
  4861. image: {
  4862. source: "./media/characters/vulpes/side.svg",
  4863. extra: 577 / 549,
  4864. bottom: 11 / 588
  4865. }
  4866. },
  4867. back: {
  4868. height: math.unit(6, "feet"),
  4869. weight: math.unit(200, "lbs"),
  4870. name: "Back",
  4871. image: {
  4872. source: "./media/characters/vulpes/back.svg",
  4873. extra: 573 / 549,
  4874. bottom: 20 / 593
  4875. }
  4876. },
  4877. feet: {
  4878. height: math.unit(1.276, "feet"),
  4879. name: "Feet",
  4880. image: {
  4881. source: "./media/characters/vulpes/feet.svg"
  4882. }
  4883. },
  4884. maw: {
  4885. height: math.unit(1.18, "feet"),
  4886. name: "Maw",
  4887. image: {
  4888. source: "./media/characters/vulpes/maw.svg"
  4889. }
  4890. },
  4891. },
  4892. [
  4893. {
  4894. name: "Micro",
  4895. height: math.unit(2, "inches")
  4896. },
  4897. {
  4898. name: "Normal",
  4899. height: math.unit(6.3, "feet")
  4900. },
  4901. {
  4902. name: "Macro",
  4903. height: math.unit(850, "feet")
  4904. },
  4905. {
  4906. name: "Megamacro",
  4907. height: math.unit(7500, "feet"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Gigamacro",
  4912. height: math.unit(570000, "miles")
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4918. {
  4919. front: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(210, "lbs"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/rain-fallen/front.svg"
  4925. }
  4926. },
  4927. side: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(210, "lbs"),
  4930. name: "Side",
  4931. image: {
  4932. source: "./media/characters/rain-fallen/side.svg"
  4933. }
  4934. },
  4935. back: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(210, "lbs"),
  4938. name: "Back",
  4939. image: {
  4940. source: "./media/characters/rain-fallen/back.svg"
  4941. }
  4942. },
  4943. feral: {
  4944. height: math.unit(9, "feet"),
  4945. weight: math.unit(700, "lbs"),
  4946. name: "Feral",
  4947. image: {
  4948. source: "./media/characters/rain-fallen/feral.svg"
  4949. }
  4950. },
  4951. },
  4952. [
  4953. {
  4954. name: "Meddling with Mortals",
  4955. height: math.unit(8 + 8/12, "feet")
  4956. },
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(5, "meter")
  4960. },
  4961. {
  4962. name: "Macro",
  4963. height: math.unit(150, "meter"),
  4964. default: true
  4965. },
  4966. {
  4967. name: "Megamacro",
  4968. height: math.unit(278e6, "meter")
  4969. },
  4970. {
  4971. name: "Gigamacro",
  4972. height: math.unit(2e9, "meter")
  4973. },
  4974. {
  4975. name: "Teramacro",
  4976. height: math.unit(8e12, "meter")
  4977. },
  4978. {
  4979. name: "Devourer",
  4980. height: math.unit(14, "zettameters")
  4981. },
  4982. {
  4983. name: "Scarlet King",
  4984. height: math.unit(18, "yottameters")
  4985. },
  4986. {
  4987. name: "Void",
  4988. height: math.unit(1e88, "yottameters")
  4989. }
  4990. ]
  4991. ))
  4992. characterMakers.push(() => makeCharacter(
  4993. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4994. {
  4995. standing: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(180, "lbs"),
  4998. name: "Standing",
  4999. image: {
  5000. source: "./media/characters/zaakira/standing.svg",
  5001. extra: 1599/1504,
  5002. bottom: 39/1638
  5003. }
  5004. },
  5005. laying: {
  5006. height: math.unit(3, "feet"),
  5007. weight: math.unit(180, "lbs"),
  5008. name: "Laying",
  5009. image: {
  5010. source: "./media/characters/zaakira/laying.svg"
  5011. }
  5012. },
  5013. },
  5014. [
  5015. {
  5016. name: "Normal",
  5017. height: math.unit(12, "feet")
  5018. },
  5019. {
  5020. name: "Macro",
  5021. height: math.unit(279, "feet"),
  5022. default: true
  5023. }
  5024. ]
  5025. ))
  5026. characterMakers.push(() => makeCharacter(
  5027. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5028. {
  5029. femSfw: {
  5030. height: math.unit(8, "feet"),
  5031. weight: math.unit(350, "lb"),
  5032. name: "Fem",
  5033. image: {
  5034. source: "./media/characters/sigvald/fem-sfw.svg",
  5035. extra: 182 / 164,
  5036. bottom: 8.7 / 190.5
  5037. }
  5038. },
  5039. femNsfw: {
  5040. height: math.unit(8, "feet"),
  5041. weight: math.unit(350, "lb"),
  5042. name: "Fem (NSFW)",
  5043. image: {
  5044. source: "./media/characters/sigvald/fem-nsfw.svg",
  5045. extra: 182 / 164,
  5046. bottom: 8.7 / 190.5
  5047. }
  5048. },
  5049. maleNsfw: {
  5050. height: math.unit(8, "feet"),
  5051. weight: math.unit(350, "lb"),
  5052. name: "Male (NSFW)",
  5053. image: {
  5054. source: "./media/characters/sigvald/male-nsfw.svg",
  5055. extra: 182 / 164,
  5056. bottom: 8.7 / 190.5
  5057. }
  5058. },
  5059. hermNsfw: {
  5060. height: math.unit(8, "feet"),
  5061. weight: math.unit(350, "lb"),
  5062. name: "Herm (NSFW)",
  5063. image: {
  5064. source: "./media/characters/sigvald/herm-nsfw.svg",
  5065. extra: 182 / 164,
  5066. bottom: 8.7 / 190.5
  5067. }
  5068. },
  5069. dick: {
  5070. height: math.unit(2.36, "feet"),
  5071. name: "Dick",
  5072. image: {
  5073. source: "./media/characters/sigvald/dick.svg"
  5074. }
  5075. },
  5076. eye: {
  5077. height: math.unit(0.31, "feet"),
  5078. name: "Eye",
  5079. image: {
  5080. source: "./media/characters/sigvald/eye.svg"
  5081. }
  5082. },
  5083. mouth: {
  5084. height: math.unit(0.92, "feet"),
  5085. name: "Mouth",
  5086. image: {
  5087. source: "./media/characters/sigvald/mouth.svg"
  5088. }
  5089. },
  5090. paws: {
  5091. height: math.unit(2.2, "feet"),
  5092. name: "Paws",
  5093. image: {
  5094. source: "./media/characters/sigvald/paws.svg"
  5095. }
  5096. }
  5097. },
  5098. [
  5099. {
  5100. name: "Normal",
  5101. height: math.unit(8, "feet")
  5102. },
  5103. {
  5104. name: "Large",
  5105. height: math.unit(12, "feet")
  5106. },
  5107. {
  5108. name: "Larger",
  5109. height: math.unit(20, "feet")
  5110. },
  5111. {
  5112. name: "Macro",
  5113. height: math.unit(150, "feet")
  5114. },
  5115. {
  5116. name: "Macro+",
  5117. height: math.unit(200, "feet"),
  5118. default: true
  5119. },
  5120. ]
  5121. ))
  5122. characterMakers.push(() => makeCharacter(
  5123. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5124. {
  5125. side: {
  5126. height: math.unit(12, "feet"),
  5127. weight: math.unit(2000, "kg"),
  5128. name: "Side",
  5129. image: {
  5130. source: "./media/characters/scott/side.svg",
  5131. extra: 754 / 724,
  5132. bottom: 0.069
  5133. }
  5134. },
  5135. upright: {
  5136. height: math.unit(12, "feet"),
  5137. weight: math.unit(2000, "kg"),
  5138. name: "Upright",
  5139. image: {
  5140. source: "./media/characters/scott/upright.svg",
  5141. extra: 3881 / 3722,
  5142. bottom: 0.05
  5143. }
  5144. },
  5145. },
  5146. [
  5147. {
  5148. name: "Normal",
  5149. height: math.unit(12, "feet"),
  5150. default: true
  5151. },
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5156. {
  5157. side: {
  5158. height: math.unit(8, "meters"),
  5159. weight: math.unit(84755, "lbs"),
  5160. name: "Side",
  5161. image: {
  5162. source: "./media/characters/tobias/side.svg",
  5163. extra: 1474 / 1096,
  5164. bottom: 38.9 / 1513.1235
  5165. }
  5166. },
  5167. },
  5168. [
  5169. {
  5170. name: "Normal",
  5171. height: math.unit(8, "meters"),
  5172. default: true
  5173. },
  5174. ]
  5175. ))
  5176. characterMakers.push(() => makeCharacter(
  5177. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5178. {
  5179. front: {
  5180. height: math.unit(5.5, "feet"),
  5181. weight: math.unit(400, "lbs"),
  5182. name: "Front",
  5183. image: {
  5184. source: "./media/characters/kieran/front.svg",
  5185. extra: 2694 / 2364,
  5186. bottom: 217 / 2908
  5187. }
  5188. },
  5189. side: {
  5190. height: math.unit(5.5, "feet"),
  5191. weight: math.unit(400, "lbs"),
  5192. name: "Side",
  5193. image: {
  5194. source: "./media/characters/kieran/side.svg",
  5195. extra: 875 / 777,
  5196. bottom: 84.6 / 959
  5197. }
  5198. },
  5199. },
  5200. [
  5201. {
  5202. name: "Normal",
  5203. height: math.unit(5.5, "feet"),
  5204. default: true
  5205. },
  5206. ]
  5207. ))
  5208. characterMakers.push(() => makeCharacter(
  5209. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5210. {
  5211. side: {
  5212. height: math.unit(2, "meters"),
  5213. weight: math.unit(70, "kg"),
  5214. name: "Side",
  5215. image: {
  5216. source: "./media/characters/sanya/side.svg",
  5217. bottom: 0.02,
  5218. extra: 1.02
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Small",
  5225. height: math.unit(2, "meters")
  5226. },
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(3, "meters")
  5230. },
  5231. {
  5232. name: "Macro",
  5233. height: math.unit(16, "meters"),
  5234. default: true
  5235. },
  5236. ]
  5237. ))
  5238. characterMakers.push(() => makeCharacter(
  5239. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5240. {
  5241. front: {
  5242. height: math.unit(2, "meters"),
  5243. weight: math.unit(120, "kg"),
  5244. name: "Front",
  5245. image: {
  5246. source: "./media/characters/miranda/front.svg",
  5247. extra: 195 / 185,
  5248. bottom: 10.9 / 206.5
  5249. }
  5250. },
  5251. back: {
  5252. height: math.unit(2, "meters"),
  5253. weight: math.unit(120, "kg"),
  5254. name: "Back",
  5255. image: {
  5256. source: "./media/characters/miranda/back.svg",
  5257. extra: 201 / 193,
  5258. bottom: 2.3 / 203.7
  5259. }
  5260. },
  5261. },
  5262. [
  5263. {
  5264. name: "Normal",
  5265. height: math.unit(10, "feet"),
  5266. default: true
  5267. }
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "James", species: ["deer"], tags: ["anthro"] },
  5272. {
  5273. side: {
  5274. height: math.unit(2, "meters"),
  5275. weight: math.unit(100, "kg"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/james/front.svg",
  5279. extra: 10 / 8.5
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(8.5, "feet"),
  5287. default: true
  5288. }
  5289. ]
  5290. ))
  5291. characterMakers.push(() => makeCharacter(
  5292. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5293. {
  5294. side: {
  5295. height: math.unit(9.5, "feet"),
  5296. weight: math.unit(2500, "lbs"),
  5297. name: "Side",
  5298. image: {
  5299. source: "./media/characters/heather/side.svg"
  5300. }
  5301. },
  5302. },
  5303. [
  5304. {
  5305. name: "Normal",
  5306. height: math.unit(9.5, "feet"),
  5307. default: true
  5308. }
  5309. ]
  5310. ))
  5311. characterMakers.push(() => makeCharacter(
  5312. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5313. {
  5314. side: {
  5315. height: math.unit(6.5, "feet"),
  5316. weight: math.unit(400, "lbs"),
  5317. name: "Side",
  5318. image: {
  5319. source: "./media/characters/lukas/side.svg",
  5320. extra: 7.25 / 6.5
  5321. }
  5322. },
  5323. },
  5324. [
  5325. {
  5326. name: "Normal",
  5327. height: math.unit(6.5, "feet"),
  5328. default: true
  5329. }
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5334. {
  5335. side: {
  5336. height: math.unit(5, "feet"),
  5337. weight: math.unit(3000, "lbs"),
  5338. name: "Side",
  5339. image: {
  5340. source: "./media/characters/louise/side.svg"
  5341. }
  5342. },
  5343. },
  5344. [
  5345. {
  5346. name: "Normal",
  5347. height: math.unit(5, "feet"),
  5348. default: true
  5349. }
  5350. ]
  5351. ))
  5352. characterMakers.push(() => makeCharacter(
  5353. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5354. {
  5355. side: {
  5356. height: math.unit(6, "feet"),
  5357. weight: math.unit(150, "lbs"),
  5358. name: "Side",
  5359. image: {
  5360. source: "./media/characters/ramona/side.svg",
  5361. extra: 871/854,
  5362. bottom: 41/912
  5363. }
  5364. },
  5365. },
  5366. [
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(5.3, "meters"),
  5370. default: true
  5371. },
  5372. {
  5373. name: "Macro",
  5374. height: math.unit(20, "stories")
  5375. },
  5376. {
  5377. name: "Macro+",
  5378. height: math.unit(50, "stories")
  5379. },
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5384. {
  5385. standing: {
  5386. height: math.unit(5.75, "feet"),
  5387. weight: math.unit(160, "lbs"),
  5388. name: "Standing",
  5389. image: {
  5390. source: "./media/characters/deerpuff/standing.svg",
  5391. extra: 682 / 624
  5392. }
  5393. },
  5394. sitting: {
  5395. height: math.unit(5.75 / 1.79, "feet"),
  5396. weight: math.unit(160, "lbs"),
  5397. name: "Sitting",
  5398. image: {
  5399. source: "./media/characters/deerpuff/sitting.svg",
  5400. bottom: 44 / 400,
  5401. extra: 1
  5402. }
  5403. },
  5404. taurLaying: {
  5405. height: math.unit(6, "feet"),
  5406. weight: math.unit(400, "lbs"),
  5407. name: "Taur (Laying)",
  5408. image: {
  5409. source: "./media/characters/deerpuff/taur-laying.svg"
  5410. }
  5411. },
  5412. },
  5413. [
  5414. {
  5415. name: "Puffball",
  5416. height: math.unit(6, "inches")
  5417. },
  5418. {
  5419. name: "Normalpuff",
  5420. height: math.unit(5.75, "feet")
  5421. },
  5422. {
  5423. name: "Macropuff",
  5424. height: math.unit(1500, "feet"),
  5425. default: true
  5426. },
  5427. {
  5428. name: "Megapuff",
  5429. height: math.unit(500, "miles")
  5430. },
  5431. {
  5432. name: "Gigapuff",
  5433. height: math.unit(250000, "miles")
  5434. },
  5435. {
  5436. name: "Omegapuff",
  5437. height: math.unit(1000, "lightyears")
  5438. },
  5439. ]
  5440. ))
  5441. characterMakers.push(() => makeCharacter(
  5442. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5443. {
  5444. stomping: {
  5445. height: math.unit(6, "feet"),
  5446. weight: math.unit(170, "lbs"),
  5447. name: "Stomping",
  5448. image: {
  5449. source: "./media/characters/vivian/stomping.svg"
  5450. }
  5451. },
  5452. sitting: {
  5453. height: math.unit(6 / 1.75, "feet"),
  5454. weight: math.unit(170, "lbs"),
  5455. name: "Sitting",
  5456. image: {
  5457. source: "./media/characters/vivian/sitting.svg",
  5458. bottom: 1 / 6.4,
  5459. extra: 1,
  5460. }
  5461. },
  5462. },
  5463. [
  5464. {
  5465. name: "Normal",
  5466. height: math.unit(7, "feet"),
  5467. default: true
  5468. },
  5469. {
  5470. name: "Macro",
  5471. height: math.unit(10, "stories")
  5472. },
  5473. {
  5474. name: "Macro+",
  5475. height: math.unit(30, "stories")
  5476. },
  5477. {
  5478. name: "Megamacro",
  5479. height: math.unit(10, "miles")
  5480. },
  5481. {
  5482. name: "Megamacro+",
  5483. height: math.unit(2750000, "meters")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(6, "feet"),
  5492. weight: math.unit(160, "lbs"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/prince/front.svg",
  5496. extra: 3400 / 3000
  5497. }
  5498. },
  5499. jumping: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(160, "lbs"),
  5502. name: "Jumping",
  5503. image: {
  5504. source: "./media/characters/prince/jump.svg",
  5505. extra: 2555 / 2134
  5506. }
  5507. },
  5508. },
  5509. [
  5510. {
  5511. name: "Normal",
  5512. height: math.unit(7.75, "feet"),
  5513. default: true
  5514. },
  5515. {
  5516. name: "Not cute",
  5517. height: math.unit(17, "feet")
  5518. },
  5519. {
  5520. name: "I said NOT",
  5521. height: math.unit(91, "feet")
  5522. },
  5523. {
  5524. name: "Please stop",
  5525. height: math.unit(560, "feet")
  5526. },
  5527. {
  5528. name: "What have you done",
  5529. height: math.unit(2200, "feet")
  5530. },
  5531. {
  5532. name: "Deer God",
  5533. height: math.unit(3.6, "miles")
  5534. },
  5535. ]
  5536. ))
  5537. characterMakers.push(() => makeCharacter(
  5538. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5539. {
  5540. standing: {
  5541. height: math.unit(6, "feet"),
  5542. weight: math.unit(300, "lbs"),
  5543. name: "Standing",
  5544. image: {
  5545. source: "./media/characters/psymon/standing.svg",
  5546. extra: 1888 / 1810,
  5547. bottom: 0.05
  5548. }
  5549. },
  5550. slithering: {
  5551. height: math.unit(6, "feet"),
  5552. weight: math.unit(300, "lbs"),
  5553. name: "Slithering",
  5554. image: {
  5555. source: "./media/characters/psymon/slithering.svg",
  5556. extra: 1330 / 1224
  5557. }
  5558. },
  5559. slitheringAlt: {
  5560. height: math.unit(6, "feet"),
  5561. weight: math.unit(300, "lbs"),
  5562. name: "Slithering (Alt)",
  5563. image: {
  5564. source: "./media/characters/psymon/slithering-alt.svg",
  5565. extra: 1330 / 1224
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Normal",
  5572. height: math.unit(11.25, "feet"),
  5573. default: true
  5574. },
  5575. {
  5576. name: "Large",
  5577. height: math.unit(27, "feet")
  5578. },
  5579. {
  5580. name: "Giant",
  5581. height: math.unit(87, "feet")
  5582. },
  5583. {
  5584. name: "Macro",
  5585. height: math.unit(365, "feet")
  5586. },
  5587. {
  5588. name: "Megamacro",
  5589. height: math.unit(3, "miles")
  5590. },
  5591. {
  5592. name: "World Serpent",
  5593. height: math.unit(8000, "miles")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(6, "feet"),
  5602. weight: math.unit(180, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/daimos/front.svg",
  5606. extra: 4160 / 3897,
  5607. bottom: 0.021
  5608. }
  5609. }
  5610. },
  5611. [
  5612. {
  5613. name: "Normal",
  5614. height: math.unit(8, "feet"),
  5615. default: true
  5616. },
  5617. {
  5618. name: "Big Dog",
  5619. height: math.unit(22, "feet")
  5620. },
  5621. {
  5622. name: "Macro",
  5623. height: math.unit(127, "feet")
  5624. },
  5625. {
  5626. name: "Megamacro",
  5627. height: math.unit(3600, "feet")
  5628. },
  5629. ]
  5630. ))
  5631. characterMakers.push(() => makeCharacter(
  5632. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5633. {
  5634. side: {
  5635. height: math.unit(6, "feet"),
  5636. weight: math.unit(180, "lbs"),
  5637. name: "Side",
  5638. image: {
  5639. source: "./media/characters/blake/side.svg",
  5640. extra: 1212 / 1120,
  5641. bottom: 0.05
  5642. }
  5643. },
  5644. crouched: {
  5645. height: math.unit(6 * 0.57, "feet"),
  5646. weight: math.unit(180, "lbs"),
  5647. name: "Crouched",
  5648. image: {
  5649. source: "./media/characters/blake/crouched.svg",
  5650. extra: 840 / 587,
  5651. bottom: 0.04
  5652. }
  5653. },
  5654. bent: {
  5655. height: math.unit(6 * 0.75, "feet"),
  5656. weight: math.unit(180, "lbs"),
  5657. name: "Bent",
  5658. image: {
  5659. source: "./media/characters/blake/bent.svg",
  5660. extra: 592 / 544,
  5661. bottom: 0.035
  5662. }
  5663. },
  5664. },
  5665. [
  5666. {
  5667. name: "Normal",
  5668. height: math.unit(8 + 1 / 6, "feet"),
  5669. default: true
  5670. },
  5671. {
  5672. name: "Big Backside",
  5673. height: math.unit(37, "feet")
  5674. },
  5675. {
  5676. name: "Subway Shredder",
  5677. height: math.unit(72, "feet")
  5678. },
  5679. {
  5680. name: "City Carver",
  5681. height: math.unit(1675, "feet")
  5682. },
  5683. {
  5684. name: "Tectonic Tweaker",
  5685. height: math.unit(2300, "miles")
  5686. },
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5691. {
  5692. front: {
  5693. height: math.unit(6, "feet"),
  5694. weight: math.unit(180, "lbs"),
  5695. name: "Front",
  5696. image: {
  5697. source: "./media/characters/guisetto/front.svg",
  5698. extra: 856 / 817,
  5699. bottom: 0.06
  5700. }
  5701. },
  5702. airborne: {
  5703. height: math.unit(6, "feet"),
  5704. weight: math.unit(180, "lbs"),
  5705. name: "Airborne",
  5706. image: {
  5707. source: "./media/characters/guisetto/airborne.svg",
  5708. extra: 584 / 525
  5709. }
  5710. },
  5711. },
  5712. [
  5713. {
  5714. name: "Normal",
  5715. height: math.unit(10 + 11 / 12, "feet"),
  5716. default: true
  5717. },
  5718. {
  5719. name: "Large",
  5720. height: math.unit(35, "feet")
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(475, "feet")
  5725. },
  5726. ]
  5727. ))
  5728. characterMakers.push(() => makeCharacter(
  5729. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5730. {
  5731. front: {
  5732. height: math.unit(6, "feet"),
  5733. weight: math.unit(180, "lbs"),
  5734. name: "Front",
  5735. image: {
  5736. source: "./media/characters/luxor/front.svg",
  5737. extra: 2940 / 2152
  5738. }
  5739. },
  5740. back: {
  5741. height: math.unit(6, "feet"),
  5742. weight: math.unit(180, "lbs"),
  5743. name: "Back",
  5744. image: {
  5745. source: "./media/characters/luxor/back.svg",
  5746. extra: 1083 / 960
  5747. }
  5748. },
  5749. },
  5750. [
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(5 + 5 / 6, "feet"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Lamp",
  5758. height: math.unit(50, "feet")
  5759. },
  5760. {
  5761. name: "Lämp",
  5762. height: math.unit(300, "feet")
  5763. },
  5764. {
  5765. name: "The sun is a lamp",
  5766. height: math.unit(250000, "miles")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5772. {
  5773. front: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(50, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/huoyan/front.svg"
  5779. }
  5780. },
  5781. side: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(180, "lbs"),
  5784. name: "Side",
  5785. image: {
  5786. source: "./media/characters/huoyan/side.svg"
  5787. }
  5788. },
  5789. },
  5790. [
  5791. {
  5792. name: "Chef",
  5793. height: math.unit(9, "feet")
  5794. },
  5795. {
  5796. name: "Normal",
  5797. height: math.unit(65, "feet"),
  5798. default: true
  5799. },
  5800. {
  5801. name: "Macro",
  5802. height: math.unit(780, "feet")
  5803. },
  5804. {
  5805. name: "Flaming Mountain",
  5806. height: math.unit(4.8, "miles")
  5807. },
  5808. {
  5809. name: "Celestial",
  5810. height: math.unit(765000, "miles")
  5811. },
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5816. {
  5817. front: {
  5818. height: math.unit(5 + 3 / 4, "feet"),
  5819. weight: math.unit(120, "lbs"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/tails/front.svg"
  5823. }
  5824. }
  5825. },
  5826. [
  5827. {
  5828. name: "Normal",
  5829. height: math.unit(5 + 3 / 4, "feet"),
  5830. default: true
  5831. }
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(4, "feet"),
  5839. weight: math.unit(50, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/rainy/front.svg"
  5843. }
  5844. }
  5845. },
  5846. [
  5847. {
  5848. name: "Macro",
  5849. height: math.unit(800, "feet"),
  5850. default: true
  5851. }
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5856. {
  5857. front: {
  5858. height: math.unit(6, "feet"),
  5859. weight: math.unit(150, "lbs"),
  5860. name: "Front",
  5861. image: {
  5862. source: "./media/characters/rainier/front.svg"
  5863. }
  5864. }
  5865. },
  5866. [
  5867. {
  5868. name: "Micro",
  5869. height: math.unit(2, "mm"),
  5870. default: true
  5871. }
  5872. ]
  5873. ))
  5874. characterMakers.push(() => makeCharacter(
  5875. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5876. {
  5877. front: {
  5878. height: math.unit(8 + 4/12, "feet"),
  5879. name: "Front",
  5880. image: {
  5881. source: "./media/characters/andy-renard/front.svg",
  5882. extra: 1839/1726,
  5883. bottom: 134/1973
  5884. }
  5885. },
  5886. back: {
  5887. height: math.unit(8 + 4/12, "feet"),
  5888. name: "Back",
  5889. image: {
  5890. source: "./media/characters/andy-renard/back.svg",
  5891. extra: 1838/1710,
  5892. bottom: 105/1943
  5893. }
  5894. },
  5895. },
  5896. [
  5897. {
  5898. name: "Tall",
  5899. height: math.unit(8 + 4/12, "feet")
  5900. },
  5901. {
  5902. name: "Mini Macro",
  5903. height: math.unit(15, "feet"),
  5904. default: true
  5905. },
  5906. {
  5907. name: "Macro",
  5908. height: math.unit(100, "feet")
  5909. },
  5910. {
  5911. name: "Mega Macro",
  5912. height: math.unit(1000, "feet")
  5913. },
  5914. {
  5915. name: "Giga Macro",
  5916. height: math.unit(10, "miles")
  5917. },
  5918. {
  5919. name: "God Macro",
  5920. height: math.unit(1, "multiverse")
  5921. },
  5922. ]
  5923. ))
  5924. characterMakers.push(() => makeCharacter(
  5925. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5926. {
  5927. front: {
  5928. height: math.unit(6, "feet"),
  5929. weight: math.unit(210, "lbs"),
  5930. name: "Front",
  5931. image: {
  5932. source: "./media/characters/cimmaron/front-sfw.svg",
  5933. extra: 701 / 676,
  5934. bottom: 0.046
  5935. }
  5936. },
  5937. back: {
  5938. height: math.unit(6, "feet"),
  5939. weight: math.unit(210, "lbs"),
  5940. name: "Back",
  5941. image: {
  5942. source: "./media/characters/cimmaron/back-sfw.svg",
  5943. extra: 701 / 676,
  5944. bottom: 0.046
  5945. }
  5946. },
  5947. frontNsfw: {
  5948. height: math.unit(6, "feet"),
  5949. weight: math.unit(210, "lbs"),
  5950. name: "Front (NSFW)",
  5951. image: {
  5952. source: "./media/characters/cimmaron/front-nsfw.svg",
  5953. extra: 701 / 676,
  5954. bottom: 0.046
  5955. }
  5956. },
  5957. backNsfw: {
  5958. height: math.unit(6, "feet"),
  5959. weight: math.unit(210, "lbs"),
  5960. name: "Back (NSFW)",
  5961. image: {
  5962. source: "./media/characters/cimmaron/back-nsfw.svg",
  5963. extra: 701 / 676,
  5964. bottom: 0.046
  5965. }
  5966. },
  5967. dick: {
  5968. height: math.unit(1.714, "feet"),
  5969. name: "Dick",
  5970. image: {
  5971. source: "./media/characters/cimmaron/dick.svg"
  5972. }
  5973. },
  5974. },
  5975. [
  5976. {
  5977. name: "Normal",
  5978. height: math.unit(6, "feet"),
  5979. default: true
  5980. },
  5981. {
  5982. name: "Macro Mayor",
  5983. height: math.unit(350, "meters")
  5984. },
  5985. ]
  5986. ))
  5987. characterMakers.push(() => makeCharacter(
  5988. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5989. {
  5990. front: {
  5991. height: math.unit(6, "feet"),
  5992. weight: math.unit(200, "lbs"),
  5993. name: "Front",
  5994. image: {
  5995. source: "./media/characters/akari/front.svg",
  5996. extra: 962 / 901,
  5997. bottom: 0.04
  5998. }
  5999. }
  6000. },
  6001. [
  6002. {
  6003. name: "Micro",
  6004. height: math.unit(5, "inches"),
  6005. default: true
  6006. },
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(7, "feet")
  6010. },
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6015. {
  6016. front: {
  6017. height: math.unit(6, "feet"),
  6018. weight: math.unit(140, "lbs"),
  6019. name: "Front",
  6020. image: {
  6021. source: "./media/characters/cynosura/front.svg",
  6022. extra: 896 / 847
  6023. }
  6024. },
  6025. back: {
  6026. height: math.unit(6, "feet"),
  6027. weight: math.unit(140, "lbs"),
  6028. name: "Back",
  6029. image: {
  6030. source: "./media/characters/cynosura/back.svg",
  6031. extra: 1365 / 1250
  6032. }
  6033. },
  6034. },
  6035. [
  6036. {
  6037. name: "Micro",
  6038. height: math.unit(4, "inches")
  6039. },
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(5.75, "feet"),
  6043. default: true
  6044. },
  6045. {
  6046. name: "Tall",
  6047. height: math.unit(10, "feet")
  6048. },
  6049. {
  6050. name: "Big",
  6051. height: math.unit(20, "feet")
  6052. },
  6053. {
  6054. name: "Macro",
  6055. height: math.unit(50, "feet")
  6056. },
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6061. {
  6062. front: {
  6063. height: math.unit(13 + 2/12, "feet"),
  6064. weight: math.unit(800, "kg"),
  6065. name: "Front",
  6066. image: {
  6067. source: "./media/characters/gin/front.svg",
  6068. extra: 1312/1191,
  6069. bottom: 45/1357
  6070. }
  6071. },
  6072. mouth: {
  6073. height: math.unit(2.39 * 1.8, "feet"),
  6074. name: "Mouth",
  6075. image: {
  6076. source: "./media/characters/gin/mouth.svg"
  6077. }
  6078. },
  6079. hand: {
  6080. height: math.unit(1.57 * 2.19, "feet"),
  6081. name: "Hand",
  6082. image: {
  6083. source: "./media/characters/gin/hand.svg"
  6084. }
  6085. },
  6086. foot: {
  6087. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6088. name: "Foot",
  6089. image: {
  6090. source: "./media/characters/gin/foot.svg"
  6091. }
  6092. },
  6093. sole: {
  6094. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6095. name: "Sole",
  6096. image: {
  6097. source: "./media/characters/gin/sole.svg"
  6098. }
  6099. },
  6100. },
  6101. [
  6102. {
  6103. name: "Very Small",
  6104. height: math.unit(13 + 2 / 12, "feet")
  6105. },
  6106. {
  6107. name: "Micro",
  6108. height: math.unit(600, "miles")
  6109. },
  6110. {
  6111. name: "Regular",
  6112. height: math.unit(20, "earths"),
  6113. default: true
  6114. },
  6115. {
  6116. name: "Macro",
  6117. height: math.unit(2.2, "solarradii")
  6118. },
  6119. {
  6120. name: "Teramacro",
  6121. height: math.unit(1.2, "galaxies")
  6122. },
  6123. {
  6124. name: "Omegamacro",
  6125. height: math.unit(200, "universes")
  6126. },
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6131. {
  6132. front: {
  6133. height: math.unit(6 + 1 / 6, "feet"),
  6134. weight: math.unit(178, "lbs"),
  6135. name: "Front",
  6136. image: {
  6137. source: "./media/characters/guy/front.svg"
  6138. }
  6139. }
  6140. },
  6141. [
  6142. {
  6143. name: "Normal",
  6144. height: math.unit(6 + 1 / 6, "feet"),
  6145. default: true
  6146. },
  6147. {
  6148. name: "Large",
  6149. height: math.unit(25 + 7 / 12, "feet")
  6150. },
  6151. {
  6152. name: "Macro",
  6153. height: math.unit(60 + 9 / 12, "feet")
  6154. },
  6155. {
  6156. name: "Macro+",
  6157. height: math.unit(246, "feet")
  6158. },
  6159. {
  6160. name: "Macro++",
  6161. height: math.unit(878, "feet")
  6162. }
  6163. ]
  6164. ))
  6165. characterMakers.push(() => makeCharacter(
  6166. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6167. {
  6168. front: {
  6169. height: math.unit(9, "feet"),
  6170. weight: math.unit(800, "lbs"),
  6171. name: "Front",
  6172. image: {
  6173. source: "./media/characters/tiberius/front.svg",
  6174. extra: 2295 / 2071
  6175. }
  6176. },
  6177. back: {
  6178. height: math.unit(9, "feet"),
  6179. weight: math.unit(800, "lbs"),
  6180. name: "Back",
  6181. image: {
  6182. source: "./media/characters/tiberius/back.svg",
  6183. extra: 2373 / 2160
  6184. }
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(9, "feet"),
  6191. default: true
  6192. }
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6197. {
  6198. front: {
  6199. height: math.unit(6, "feet"),
  6200. weight: math.unit(600, "lbs"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/surgo/front.svg",
  6204. extra: 3591 / 2227
  6205. }
  6206. },
  6207. back: {
  6208. height: math.unit(6, "feet"),
  6209. weight: math.unit(600, "lbs"),
  6210. name: "Back",
  6211. image: {
  6212. source: "./media/characters/surgo/back.svg",
  6213. extra: 3557 / 2228
  6214. }
  6215. },
  6216. laying: {
  6217. height: math.unit(6 * 0.85, "feet"),
  6218. weight: math.unit(600, "lbs"),
  6219. name: "Laying",
  6220. image: {
  6221. source: "./media/characters/surgo/laying.svg"
  6222. }
  6223. },
  6224. },
  6225. [
  6226. {
  6227. name: "Normal",
  6228. height: math.unit(6, "feet"),
  6229. default: true
  6230. }
  6231. ]
  6232. ))
  6233. characterMakers.push(() => makeCharacter(
  6234. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6235. {
  6236. side: {
  6237. height: math.unit(6, "feet"),
  6238. weight: math.unit(150, "lbs"),
  6239. name: "Side",
  6240. image: {
  6241. source: "./media/characters/cibus/side.svg",
  6242. extra: 800 / 400
  6243. }
  6244. },
  6245. },
  6246. [
  6247. {
  6248. name: "Normal",
  6249. height: math.unit(6, "feet"),
  6250. default: true
  6251. }
  6252. ]
  6253. ))
  6254. characterMakers.push(() => makeCharacter(
  6255. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6256. {
  6257. front: {
  6258. height: math.unit(6, "feet"),
  6259. weight: math.unit(240, "lbs"),
  6260. name: "Front",
  6261. image: {
  6262. source: "./media/characters/nibbles/front.svg"
  6263. }
  6264. },
  6265. side: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(240, "lbs"),
  6268. name: "Side",
  6269. image: {
  6270. source: "./media/characters/nibbles/side.svg"
  6271. }
  6272. },
  6273. },
  6274. [
  6275. {
  6276. name: "Normal",
  6277. height: math.unit(9, "feet"),
  6278. default: true
  6279. }
  6280. ]
  6281. ))
  6282. characterMakers.push(() => makeCharacter(
  6283. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6284. {
  6285. side: {
  6286. height: math.unit(5 + 1 / 6, "feet"),
  6287. weight: math.unit(130, "lbs"),
  6288. name: "Side",
  6289. image: {
  6290. source: "./media/characters/rikky/side.svg",
  6291. extra: 851 / 801
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Normal",
  6298. height: math.unit(5 + 1 / 6, "feet")
  6299. },
  6300. {
  6301. name: "Macro",
  6302. height: math.unit(152, "feet"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Megamacro",
  6307. height: math.unit(7, "miles")
  6308. }
  6309. ]
  6310. ))
  6311. characterMakers.push(() => makeCharacter(
  6312. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6313. {
  6314. side: {
  6315. height: math.unit(370, "cm"),
  6316. weight: math.unit(350, "lbs"),
  6317. name: "Side",
  6318. image: {
  6319. source: "./media/characters/malfressa/side.svg"
  6320. }
  6321. },
  6322. walking: {
  6323. height: math.unit(370, "cm"),
  6324. weight: math.unit(350, "lbs"),
  6325. name: "Walking",
  6326. image: {
  6327. source: "./media/characters/malfressa/walking.svg"
  6328. }
  6329. },
  6330. feral: {
  6331. height: math.unit(2500, "cm"),
  6332. weight: math.unit(100000, "lbs"),
  6333. name: "Feral",
  6334. image: {
  6335. source: "./media/characters/malfressa/feral.svg",
  6336. extra: 2108 / 837,
  6337. bottom: 0.02
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(370, "cm")
  6345. },
  6346. {
  6347. name: "Macro",
  6348. height: math.unit(300, "meters"),
  6349. default: true
  6350. }
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6355. {
  6356. front: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(60, "kg"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/jaro/front.svg",
  6362. extra: 845/817,
  6363. bottom: 45/890
  6364. }
  6365. },
  6366. back: {
  6367. height: math.unit(6, "feet"),
  6368. weight: math.unit(60, "kg"),
  6369. name: "Back",
  6370. image: {
  6371. source: "./media/characters/jaro/back.svg",
  6372. extra: 847/817,
  6373. bottom: 34/881
  6374. }
  6375. },
  6376. },
  6377. [
  6378. {
  6379. name: "Micro",
  6380. height: math.unit(7, "inches")
  6381. },
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(5.5, "feet"),
  6385. default: true
  6386. },
  6387. {
  6388. name: "Minimacro",
  6389. height: math.unit(20, "feet")
  6390. },
  6391. {
  6392. name: "Macro",
  6393. height: math.unit(200, "meters")
  6394. }
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6399. {
  6400. front: {
  6401. height: math.unit(6, "feet"),
  6402. weight: math.unit(195, "lb"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/rogue/front.svg"
  6406. }
  6407. },
  6408. },
  6409. [
  6410. {
  6411. name: "Macro",
  6412. height: math.unit(90, "feet"),
  6413. default: true
  6414. },
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(5 + 8 / 12, "feet"),
  6422. weight: math.unit(140, "lb"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/piper/front.svg",
  6426. extra: 3948/3655,
  6427. bottom: 0/3948
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Micro",
  6434. height: math.unit(2, "inches")
  6435. },
  6436. {
  6437. name: "Normal",
  6438. height: math.unit(5 + 8 / 12, "feet")
  6439. },
  6440. {
  6441. name: "Macro",
  6442. height: math.unit(250, "feet"),
  6443. default: true
  6444. },
  6445. {
  6446. name: "Megamacro",
  6447. height: math.unit(7, "miles")
  6448. },
  6449. ]
  6450. ))
  6451. characterMakers.push(() => makeCharacter(
  6452. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6453. {
  6454. front: {
  6455. height: math.unit(6, "feet"),
  6456. weight: math.unit(220, "lb"),
  6457. name: "Front",
  6458. image: {
  6459. source: "./media/characters/gemini/front.svg"
  6460. }
  6461. },
  6462. back: {
  6463. height: math.unit(6, "feet"),
  6464. weight: math.unit(220, "lb"),
  6465. name: "Back",
  6466. image: {
  6467. source: "./media/characters/gemini/back.svg"
  6468. }
  6469. },
  6470. kneeling: {
  6471. height: math.unit(6 / 1.5, "feet"),
  6472. weight: math.unit(220, "lb"),
  6473. name: "Kneeling",
  6474. image: {
  6475. source: "./media/characters/gemini/kneeling.svg",
  6476. bottom: 0.02
  6477. }
  6478. },
  6479. },
  6480. [
  6481. {
  6482. name: "Macro",
  6483. height: math.unit(300, "meters"),
  6484. default: true
  6485. },
  6486. {
  6487. name: "Megamacro",
  6488. height: math.unit(6900, "meters")
  6489. },
  6490. ]
  6491. ))
  6492. characterMakers.push(() => makeCharacter(
  6493. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6494. {
  6495. anthro: {
  6496. height: math.unit(2.35, "meters"),
  6497. weight: math.unit(73, "kg"),
  6498. name: "Anthro",
  6499. image: {
  6500. source: "./media/characters/alicia/anthro.svg",
  6501. extra: 2571 / 2385,
  6502. bottom: 75 / 2648
  6503. }
  6504. },
  6505. paw: {
  6506. height: math.unit(1.32, "feet"),
  6507. name: "Paw",
  6508. image: {
  6509. source: "./media/characters/alicia/paw.svg"
  6510. }
  6511. },
  6512. feral: {
  6513. height: math.unit(1.69, "meters"),
  6514. weight: math.unit(73, "kg"),
  6515. name: "Feral",
  6516. image: {
  6517. source: "./media/characters/alicia/feral.svg",
  6518. extra: 2123 / 1715,
  6519. bottom: 222 / 2349
  6520. }
  6521. },
  6522. },
  6523. [
  6524. {
  6525. name: "Normal",
  6526. height: math.unit(2.35, "meters")
  6527. },
  6528. {
  6529. name: "Macro",
  6530. height: math.unit(60, "meters"),
  6531. default: true
  6532. },
  6533. {
  6534. name: "Megamacro",
  6535. height: math.unit(10000, "kilometers")
  6536. },
  6537. ]
  6538. ))
  6539. characterMakers.push(() => makeCharacter(
  6540. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6541. {
  6542. front: {
  6543. height: math.unit(7, "feet"),
  6544. weight: math.unit(250, "lbs"),
  6545. name: "Front",
  6546. image: {
  6547. source: "./media/characters/archy/front.svg"
  6548. }
  6549. }
  6550. },
  6551. [
  6552. {
  6553. name: "Micro",
  6554. height: math.unit(1, "inch")
  6555. },
  6556. {
  6557. name: "Shorty",
  6558. height: math.unit(5, "feet")
  6559. },
  6560. {
  6561. name: "Normal",
  6562. height: math.unit(7, "feet")
  6563. },
  6564. {
  6565. name: "Macro",
  6566. height: math.unit(600, "meters"),
  6567. default: true
  6568. },
  6569. {
  6570. name: "Megamacro",
  6571. height: math.unit(1, "mile")
  6572. },
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6577. {
  6578. front: {
  6579. height: math.unit(1.65, "meters"),
  6580. weight: math.unit(74, "kg"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/berri/front.svg",
  6584. extra: 857 / 837,
  6585. bottom: 18 / 877
  6586. }
  6587. },
  6588. bum: {
  6589. height: math.unit(1.46, "feet"),
  6590. name: "Bum",
  6591. image: {
  6592. source: "./media/characters/berri/bum.svg"
  6593. }
  6594. },
  6595. mouth: {
  6596. height: math.unit(0.44, "feet"),
  6597. name: "Mouth",
  6598. image: {
  6599. source: "./media/characters/berri/mouth.svg"
  6600. }
  6601. },
  6602. paw: {
  6603. height: math.unit(0.826, "feet"),
  6604. name: "Paw",
  6605. image: {
  6606. source: "./media/characters/berri/paw.svg"
  6607. }
  6608. },
  6609. },
  6610. [
  6611. {
  6612. name: "Normal",
  6613. height: math.unit(1.65, "meters")
  6614. },
  6615. {
  6616. name: "Macro",
  6617. height: math.unit(60, "m"),
  6618. default: true
  6619. },
  6620. {
  6621. name: "Megamacro",
  6622. height: math.unit(9.213, "km")
  6623. },
  6624. {
  6625. name: "Planet Eater",
  6626. height: math.unit(489, "megameters")
  6627. },
  6628. {
  6629. name: "Teramacro",
  6630. height: math.unit(2471635000000, "meters")
  6631. },
  6632. {
  6633. name: "Examacro",
  6634. height: math.unit(8.0624e+26, "meters")
  6635. }
  6636. ]
  6637. ))
  6638. characterMakers.push(() => makeCharacter(
  6639. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6640. {
  6641. front: {
  6642. height: math.unit(1.72, "meters"),
  6643. weight: math.unit(68, "kg"),
  6644. name: "Front",
  6645. image: {
  6646. source: "./media/characters/lexi/front.svg"
  6647. }
  6648. }
  6649. },
  6650. [
  6651. {
  6652. name: "Very Smol",
  6653. height: math.unit(10, "mm")
  6654. },
  6655. {
  6656. name: "Micro",
  6657. height: math.unit(6.8, "cm"),
  6658. default: true
  6659. },
  6660. {
  6661. name: "Normal",
  6662. height: math.unit(1.72, "m")
  6663. }
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6668. {
  6669. front: {
  6670. height: math.unit(1.69, "meters"),
  6671. weight: math.unit(68, "kg"),
  6672. name: "Front",
  6673. image: {
  6674. source: "./media/characters/martin/front.svg",
  6675. extra: 596 / 581
  6676. }
  6677. }
  6678. },
  6679. [
  6680. {
  6681. name: "Micro",
  6682. height: math.unit(6.85, "cm"),
  6683. default: true
  6684. },
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(1.69, "m")
  6688. }
  6689. ]
  6690. ))
  6691. characterMakers.push(() => makeCharacter(
  6692. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6693. {
  6694. front: {
  6695. height: math.unit(1.69, "meters"),
  6696. weight: math.unit(68, "kg"),
  6697. name: "Front",
  6698. image: {
  6699. source: "./media/characters/juno/front.svg"
  6700. }
  6701. }
  6702. },
  6703. [
  6704. {
  6705. name: "Micro",
  6706. height: math.unit(7, "cm")
  6707. },
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(1.89, "m")
  6711. },
  6712. {
  6713. name: "Macro",
  6714. height: math.unit(353, "meters"),
  6715. default: true
  6716. }
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(1.93, "meters"),
  6724. weight: math.unit(83, "kg"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/samantha/front.svg"
  6728. }
  6729. },
  6730. frontClothed: {
  6731. height: math.unit(1.93, "meters"),
  6732. weight: math.unit(83, "kg"),
  6733. name: "Front (Clothed)",
  6734. image: {
  6735. source: "./media/characters/samantha/front-clothed.svg"
  6736. }
  6737. },
  6738. back: {
  6739. height: math.unit(1.93, "meters"),
  6740. weight: math.unit(83, "kg"),
  6741. name: "Back",
  6742. image: {
  6743. source: "./media/characters/samantha/back.svg"
  6744. }
  6745. },
  6746. },
  6747. [
  6748. {
  6749. name: "Normal",
  6750. height: math.unit(1.93, "m")
  6751. },
  6752. {
  6753. name: "Macro",
  6754. height: math.unit(74, "meters"),
  6755. default: true
  6756. },
  6757. {
  6758. name: "Macro+",
  6759. height: math.unit(223, "meters"),
  6760. },
  6761. {
  6762. name: "Megamacro",
  6763. height: math.unit(8381, "meters"),
  6764. },
  6765. {
  6766. name: "Megamacro+",
  6767. height: math.unit(12000, "kilometers")
  6768. },
  6769. ]
  6770. ))
  6771. characterMakers.push(() => makeCharacter(
  6772. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6773. {
  6774. front: {
  6775. height: math.unit(1.92, "meters"),
  6776. weight: math.unit(80, "kg"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/dr-clay/front.svg"
  6780. }
  6781. },
  6782. frontClothed: {
  6783. height: math.unit(1.92, "meters"),
  6784. weight: math.unit(80, "kg"),
  6785. name: "Front (Clothed)",
  6786. image: {
  6787. source: "./media/characters/dr-clay/front-clothed.svg"
  6788. }
  6789. }
  6790. },
  6791. [
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(1.92, "m")
  6795. },
  6796. {
  6797. name: "Macro",
  6798. height: math.unit(214, "meters"),
  6799. default: true
  6800. },
  6801. {
  6802. name: "Macro+",
  6803. height: math.unit(12.237, "meters"),
  6804. },
  6805. {
  6806. name: "Megamacro",
  6807. height: math.unit(557, "megameters"),
  6808. },
  6809. {
  6810. name: "Unimaginable",
  6811. height: math.unit(120e9, "lightyears")
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6817. {
  6818. front: {
  6819. height: math.unit(2, "meters"),
  6820. weight: math.unit(80, "kg"),
  6821. name: "Front",
  6822. image: {
  6823. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6824. }
  6825. }
  6826. },
  6827. [
  6828. {
  6829. name: "Teramacro",
  6830. height: math.unit(500000, "lightyears"),
  6831. default: true
  6832. },
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6837. {
  6838. crux: {
  6839. height: math.unit(2, "meters"),
  6840. weight: math.unit(150, "kg"),
  6841. name: "Crux",
  6842. image: {
  6843. source: "./media/characters/vemus/crux.svg",
  6844. extra: 1074/936,
  6845. bottom: 23/1097
  6846. }
  6847. },
  6848. skunkTanuki: {
  6849. height: math.unit(2, "meters"),
  6850. weight: math.unit(150, "kg"),
  6851. name: "Skunk-Tanuki",
  6852. image: {
  6853. source: "./media/characters/vemus/skunk-tanuki.svg",
  6854. extra: 926/893,
  6855. bottom: 20/946
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Normal",
  6862. height: math.unit(3.75, "meters"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Big",
  6867. height: math.unit(8, "meters")
  6868. },
  6869. {
  6870. name: "Macro",
  6871. height: math.unit(100, "meters")
  6872. },
  6873. {
  6874. name: "Macro+",
  6875. height: math.unit(1500, "meters")
  6876. },
  6877. {
  6878. name: "Stellar",
  6879. height: math.unit(14e8, "meters")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(2, "meters"),
  6888. weight: math.unit(70, "kg"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/beherit/front.svg",
  6892. extra: 1234/1109,
  6893. bottom: 55/1289
  6894. }
  6895. }
  6896. },
  6897. [
  6898. {
  6899. name: "Normal",
  6900. height: math.unit(6, "feet")
  6901. },
  6902. {
  6903. name: "Lorg",
  6904. height: math.unit(25, "feet"),
  6905. default: true
  6906. },
  6907. {
  6908. name: "Lorger",
  6909. height: math.unit(75, "feet")
  6910. },
  6911. {
  6912. name: "Macro",
  6913. height: math.unit(200, "meters")
  6914. },
  6915. ]
  6916. ))
  6917. characterMakers.push(() => makeCharacter(
  6918. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6919. {
  6920. front: {
  6921. height: math.unit(2, "meters"),
  6922. weight: math.unit(150, "kg"),
  6923. name: "Front",
  6924. image: {
  6925. source: "./media/characters/everett/front.svg",
  6926. extra: 1017/866,
  6927. bottom: 86/1103
  6928. }
  6929. },
  6930. paw: {
  6931. height: math.unit(2 / 3.6, "meters"),
  6932. name: "Paw",
  6933. image: {
  6934. source: "./media/characters/everett/paw.svg"
  6935. }
  6936. },
  6937. },
  6938. [
  6939. {
  6940. name: "Normal",
  6941. height: math.unit(15, "feet"),
  6942. default: true
  6943. },
  6944. {
  6945. name: "Lorg",
  6946. height: math.unit(70, "feet"),
  6947. default: true
  6948. },
  6949. {
  6950. name: "Lorger",
  6951. height: math.unit(250, "feet")
  6952. },
  6953. {
  6954. name: "Macro",
  6955. height: math.unit(500, "meters")
  6956. },
  6957. ]
  6958. ))
  6959. characterMakers.push(() => makeCharacter(
  6960. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6961. {
  6962. front: {
  6963. height: math.unit(2, "meters"),
  6964. weight: math.unit(86, "kg"),
  6965. name: "Front",
  6966. image: {
  6967. source: "./media/characters/rose/front.svg",
  6968. extra: 1785/1636,
  6969. bottom: 30/1815
  6970. }
  6971. },
  6972. frontSporty: {
  6973. height: math.unit(2, "meters"),
  6974. weight: math.unit(86, "kg"),
  6975. name: "Front (Sporty)",
  6976. image: {
  6977. source: "./media/characters/rose/front-sporty.svg",
  6978. extra: 350/335,
  6979. bottom: 10/360
  6980. }
  6981. },
  6982. frontAlt: {
  6983. height: math.unit(1.6, "meters"),
  6984. weight: math.unit(86, "kg"),
  6985. name: "Front (Alt)",
  6986. image: {
  6987. source: "./media/characters/rose/front-alt.svg",
  6988. extra: 299/283,
  6989. bottom: 3/302
  6990. }
  6991. },
  6992. plush: {
  6993. height: math.unit(2, "meters"),
  6994. weight: math.unit(86/3, "kg"),
  6995. name: "Plush",
  6996. image: {
  6997. source: "./media/characters/rose/plush.svg",
  6998. extra: 361/337,
  6999. bottom: 11/372
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "True Micro",
  7006. height: math.unit(9, "cm")
  7007. },
  7008. {
  7009. name: "Micro",
  7010. height: math.unit(16, "cm")
  7011. },
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(1.85, "meters"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Mini-Macro",
  7019. height: math.unit(5, "meters")
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(15, "meters")
  7024. },
  7025. {
  7026. name: "True Macro",
  7027. height: math.unit(40, "meters")
  7028. },
  7029. {
  7030. name: "City Scale",
  7031. height: math.unit(1, "km")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(2, "meters"),
  7040. weight: math.unit(350, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/regal/front.svg"
  7044. }
  7045. },
  7046. back: {
  7047. height: math.unit(2, "meters"),
  7048. weight: math.unit(350, "lbs"),
  7049. name: "Back",
  7050. image: {
  7051. source: "./media/characters/regal/back.svg"
  7052. }
  7053. },
  7054. },
  7055. [
  7056. {
  7057. name: "Macro",
  7058. height: math.unit(350, "feet"),
  7059. default: true
  7060. }
  7061. ]
  7062. ))
  7063. characterMakers.push(() => makeCharacter(
  7064. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7065. {
  7066. front: {
  7067. height: math.unit(4 + 11 / 12, "feet"),
  7068. weight: math.unit(100, "lbs"),
  7069. name: "Front",
  7070. image: {
  7071. source: "./media/characters/opal/front.svg"
  7072. }
  7073. },
  7074. frontAlt: {
  7075. height: math.unit(4 + 11 / 12, "feet"),
  7076. weight: math.unit(100, "lbs"),
  7077. name: "Front (Alt)",
  7078. image: {
  7079. source: "./media/characters/opal/front-alt.svg"
  7080. }
  7081. },
  7082. },
  7083. [
  7084. {
  7085. name: "Small",
  7086. height: math.unit(4 + 11 / 12, "feet")
  7087. },
  7088. {
  7089. name: "Normal",
  7090. height: math.unit(20, "feet"),
  7091. default: true
  7092. },
  7093. {
  7094. name: "Macro",
  7095. height: math.unit(120, "feet")
  7096. },
  7097. {
  7098. name: "Megamacro",
  7099. height: math.unit(80, "miles")
  7100. },
  7101. {
  7102. name: "True Size",
  7103. height: math.unit(100000, "lightyears")
  7104. },
  7105. ]
  7106. ))
  7107. characterMakers.push(() => makeCharacter(
  7108. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7109. {
  7110. front: {
  7111. height: math.unit(6, "feet"),
  7112. weight: math.unit(200, "lbs"),
  7113. name: "Front",
  7114. image: {
  7115. source: "./media/characters/vector-wuff/front.svg"
  7116. }
  7117. }
  7118. },
  7119. [
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(2.8, "meters")
  7123. },
  7124. {
  7125. name: "Macro",
  7126. height: math.unit(450, "meters"),
  7127. default: true
  7128. },
  7129. {
  7130. name: "Megamacro",
  7131. height: math.unit(15, "kilometers")
  7132. }
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7137. {
  7138. front: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(256, "lbs"),
  7141. name: "Front",
  7142. image: {
  7143. source: "./media/characters/dannik/front.svg"
  7144. }
  7145. }
  7146. },
  7147. [
  7148. {
  7149. name: "Macro",
  7150. height: math.unit(69.57, "meters"),
  7151. default: true
  7152. },
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7157. {
  7158. front: {
  7159. height: math.unit(6, "feet"),
  7160. weight: math.unit(120, "lbs"),
  7161. name: "Front",
  7162. image: {
  7163. source: "./media/characters/azura-saharah/front.svg"
  7164. }
  7165. },
  7166. back: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(120, "lbs"),
  7169. name: "Back",
  7170. image: {
  7171. source: "./media/characters/azura-saharah/back.svg"
  7172. }
  7173. },
  7174. },
  7175. [
  7176. {
  7177. name: "Macro",
  7178. height: math.unit(100, "feet"),
  7179. default: true
  7180. },
  7181. ]
  7182. ))
  7183. characterMakers.push(() => makeCharacter(
  7184. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7185. {
  7186. side: {
  7187. height: math.unit(5 + 4 / 12, "feet"),
  7188. weight: math.unit(163, "lbs"),
  7189. name: "Side",
  7190. image: {
  7191. source: "./media/characters/kennedy/side.svg"
  7192. }
  7193. }
  7194. },
  7195. [
  7196. {
  7197. name: "Standard Doggo",
  7198. height: math.unit(5 + 4 / 12, "feet")
  7199. },
  7200. {
  7201. name: "Big Doggo",
  7202. height: math.unit(25 + 3 / 12, "feet"),
  7203. default: true
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(5 + 5/12, "feet"),
  7212. weight: math.unit(100, "lbs"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/odios-de-lunar/front.svg",
  7216. extra: 1468/1323,
  7217. bottom: 22/1490
  7218. }
  7219. }
  7220. },
  7221. [
  7222. {
  7223. name: "Micro",
  7224. height: math.unit(3, "inches")
  7225. },
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(5.5, "feet"),
  7229. default: true
  7230. },
  7231. {
  7232. name: "Macro",
  7233. height: math.unit(100, "feet")
  7234. },
  7235. ]
  7236. ))
  7237. characterMakers.push(() => makeCharacter(
  7238. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7239. {
  7240. back: {
  7241. height: math.unit(6, "feet"),
  7242. weight: math.unit(220, "lbs"),
  7243. name: "Back",
  7244. image: {
  7245. source: "./media/characters/mandake/back.svg"
  7246. }
  7247. }
  7248. },
  7249. [
  7250. {
  7251. name: "Normal",
  7252. height: math.unit(7, "feet"),
  7253. default: true
  7254. },
  7255. {
  7256. name: "Macro",
  7257. height: math.unit(78, "feet")
  7258. },
  7259. {
  7260. name: "Macro+",
  7261. height: math.unit(300, "meters")
  7262. },
  7263. {
  7264. name: "Macro++",
  7265. height: math.unit(2400, "feet")
  7266. },
  7267. {
  7268. name: "Megamacro",
  7269. height: math.unit(5167, "meters")
  7270. },
  7271. {
  7272. name: "Gigamacro",
  7273. height: math.unit(41769, "miles")
  7274. },
  7275. ]
  7276. ))
  7277. characterMakers.push(() => makeCharacter(
  7278. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7279. {
  7280. front: {
  7281. height: math.unit(6, "feet"),
  7282. weight: math.unit(120, "lbs"),
  7283. name: "Front",
  7284. image: {
  7285. source: "./media/characters/yozey/front.svg"
  7286. }
  7287. },
  7288. frontAlt: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(120, "lbs"),
  7291. name: "Front (Alt)",
  7292. image: {
  7293. source: "./media/characters/yozey/front-alt.svg"
  7294. }
  7295. },
  7296. side: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(120, "lbs"),
  7299. name: "Side",
  7300. image: {
  7301. source: "./media/characters/yozey/side.svg"
  7302. }
  7303. },
  7304. },
  7305. [
  7306. {
  7307. name: "Micro",
  7308. height: math.unit(3, "inches"),
  7309. default: true
  7310. },
  7311. {
  7312. name: "Normal",
  7313. height: math.unit(6, "feet")
  7314. }
  7315. ]
  7316. ))
  7317. characterMakers.push(() => makeCharacter(
  7318. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7319. {
  7320. front: {
  7321. height: math.unit(6, "feet"),
  7322. weight: math.unit(103, "lbs"),
  7323. name: "Front",
  7324. image: {
  7325. source: "./media/characters/valeska-voss/front.svg"
  7326. }
  7327. }
  7328. },
  7329. [
  7330. {
  7331. name: "Mini-Sized Sub",
  7332. height: math.unit(3.1, "inches")
  7333. },
  7334. {
  7335. name: "Mid-Sized Sub",
  7336. height: math.unit(6.2, "inches")
  7337. },
  7338. {
  7339. name: "Full-Sized Sub",
  7340. height: math.unit(9.3, "inches")
  7341. },
  7342. {
  7343. name: "Normal",
  7344. height: math.unit(5 + 2 / 12, "foot"),
  7345. default: true
  7346. },
  7347. ]
  7348. ))
  7349. characterMakers.push(() => makeCharacter(
  7350. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7351. {
  7352. front: {
  7353. height: math.unit(6, "feet"),
  7354. weight: math.unit(160, "lbs"),
  7355. name: "Front",
  7356. image: {
  7357. source: "./media/characters/gene-zeta/front.svg",
  7358. extra: 3006 / 2826,
  7359. bottom: 182 / 3188
  7360. }
  7361. }
  7362. },
  7363. [
  7364. {
  7365. name: "Micro",
  7366. height: math.unit(6, "inches")
  7367. },
  7368. {
  7369. name: "Normal",
  7370. height: math.unit(5 + 11 / 12, "foot"),
  7371. default: true
  7372. },
  7373. {
  7374. name: "Macro",
  7375. height: math.unit(140, "feet")
  7376. },
  7377. {
  7378. name: "Supercharged",
  7379. height: math.unit(2500, "feet")
  7380. },
  7381. ]
  7382. ))
  7383. characterMakers.push(() => makeCharacter(
  7384. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7385. {
  7386. front: {
  7387. height: math.unit(6, "feet"),
  7388. weight: math.unit(350, "lbs"),
  7389. name: "Front",
  7390. image: {
  7391. source: "./media/characters/razinox/front.svg",
  7392. extra: 1686 / 1548,
  7393. bottom: 28.2 / 1868
  7394. }
  7395. },
  7396. back: {
  7397. height: math.unit(6, "feet"),
  7398. weight: math.unit(350, "lbs"),
  7399. name: "Back",
  7400. image: {
  7401. source: "./media/characters/razinox/back.svg",
  7402. extra: 1660 / 1590,
  7403. bottom: 15 / 1665
  7404. }
  7405. },
  7406. },
  7407. [
  7408. {
  7409. name: "Normal",
  7410. height: math.unit(10 + 8 / 12, "foot")
  7411. },
  7412. {
  7413. name: "Minimacro",
  7414. height: math.unit(15, "foot")
  7415. },
  7416. {
  7417. name: "Macro",
  7418. height: math.unit(60, "foot"),
  7419. default: true
  7420. },
  7421. {
  7422. name: "Megamacro",
  7423. height: math.unit(5, "miles")
  7424. },
  7425. {
  7426. name: "Gigamacro",
  7427. height: math.unit(6000, "miles")
  7428. },
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7433. {
  7434. front: {
  7435. height: math.unit(6, "feet"),
  7436. weight: math.unit(150, "lbs"),
  7437. name: "Front",
  7438. image: {
  7439. source: "./media/characters/cobalt/front.svg"
  7440. }
  7441. }
  7442. },
  7443. [
  7444. {
  7445. name: "Normal",
  7446. height: math.unit(8 + 1 / 12, "foot")
  7447. },
  7448. {
  7449. name: "Macro",
  7450. height: math.unit(111, "foot"),
  7451. default: true
  7452. },
  7453. {
  7454. name: "Supracosmic",
  7455. height: math.unit(1e42, "feet")
  7456. },
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7461. {
  7462. front: {
  7463. height: math.unit(6, "feet"),
  7464. weight: math.unit(140, "lbs"),
  7465. name: "Front",
  7466. image: {
  7467. source: "./media/characters/amanda/front.svg"
  7468. }
  7469. }
  7470. },
  7471. [
  7472. {
  7473. name: "Micro",
  7474. height: math.unit(5, "inches"),
  7475. default: true
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7481. {
  7482. front: {
  7483. height: math.unit(2.75, "meters"),
  7484. weight: math.unit(1200, "lb"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/teal/front.svg",
  7488. extra: 2463 / 2320,
  7489. bottom: 166 / 2629
  7490. }
  7491. },
  7492. back: {
  7493. height: math.unit(2.75, "meters"),
  7494. weight: math.unit(1200, "lb"),
  7495. name: "Back",
  7496. image: {
  7497. source: "./media/characters/teal/back.svg",
  7498. extra: 2580 / 2489,
  7499. bottom: 151 / 2731
  7500. }
  7501. },
  7502. sitting: {
  7503. height: math.unit(1.9, "meters"),
  7504. weight: math.unit(1200, "lb"),
  7505. name: "Sitting",
  7506. image: {
  7507. source: "./media/characters/teal/sitting.svg",
  7508. extra: 623 / 590,
  7509. bottom: 121 / 744
  7510. }
  7511. },
  7512. standing: {
  7513. height: math.unit(2.75, "meters"),
  7514. weight: math.unit(1200, "lb"),
  7515. name: "Standing",
  7516. image: {
  7517. source: "./media/characters/teal/standing.svg",
  7518. extra: 923 / 893,
  7519. bottom: 60 / 983
  7520. }
  7521. },
  7522. stretching: {
  7523. height: math.unit(3.65, "meters"),
  7524. weight: math.unit(1200, "lb"),
  7525. name: "Stretching",
  7526. image: {
  7527. source: "./media/characters/teal/stretching.svg",
  7528. extra: 1276 / 1244,
  7529. bottom: 0 / 1276
  7530. }
  7531. },
  7532. legged: {
  7533. height: math.unit(1.3, "meters"),
  7534. weight: math.unit(100, "lb"),
  7535. name: "Legged",
  7536. image: {
  7537. source: "./media/characters/teal/legged.svg",
  7538. extra: 462 / 437,
  7539. bottom: 24 / 486
  7540. }
  7541. },
  7542. naga: {
  7543. height: math.unit(5.4, "meters"),
  7544. weight: math.unit(4000, "lb"),
  7545. name: "Naga",
  7546. image: {
  7547. source: "./media/characters/teal/naga.svg",
  7548. extra: 1902 / 1858,
  7549. bottom: 0 / 1902
  7550. }
  7551. },
  7552. hand: {
  7553. height: math.unit(0.52, "meters"),
  7554. name: "Hand",
  7555. image: {
  7556. source: "./media/characters/teal/hand.svg"
  7557. }
  7558. },
  7559. maw: {
  7560. height: math.unit(0.43, "meters"),
  7561. name: "Maw",
  7562. image: {
  7563. source: "./media/characters/teal/maw.svg"
  7564. }
  7565. },
  7566. slit: {
  7567. height: math.unit(0.25, "meters"),
  7568. name: "Slit",
  7569. image: {
  7570. source: "./media/characters/teal/slit.svg"
  7571. }
  7572. },
  7573. },
  7574. [
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(2.75, "meters"),
  7578. default: true
  7579. },
  7580. {
  7581. name: "Macro",
  7582. height: math.unit(300, "feet")
  7583. },
  7584. {
  7585. name: "Macro+",
  7586. height: math.unit(2000, "feet")
  7587. },
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7592. {
  7593. frontCat: {
  7594. height: math.unit(6, "feet"),
  7595. weight: math.unit(180, "lbs"),
  7596. name: "Front (Cat)",
  7597. image: {
  7598. source: "./media/characters/ravin-amulet/front-cat.svg"
  7599. }
  7600. },
  7601. frontCatAlt: {
  7602. height: math.unit(6, "feet"),
  7603. weight: math.unit(180, "lbs"),
  7604. name: "Front (Alt, Cat)",
  7605. image: {
  7606. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7607. }
  7608. },
  7609. frontWerewolf: {
  7610. height: math.unit(6 * 1.2, "feet"),
  7611. weight: math.unit(225, "lbs"),
  7612. name: "Front (Werewolf)",
  7613. image: {
  7614. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7615. }
  7616. },
  7617. backWerewolf: {
  7618. height: math.unit(6 * 1.2, "feet"),
  7619. weight: math.unit(225, "lbs"),
  7620. name: "Back (Werewolf)",
  7621. image: {
  7622. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Nano",
  7629. height: math.unit(1, "micrometer")
  7630. },
  7631. {
  7632. name: "Micro",
  7633. height: math.unit(1, "inch")
  7634. },
  7635. {
  7636. name: "Normal",
  7637. height: math.unit(6, "feet"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(60, "feet")
  7643. }
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(6, "feet"),
  7651. weight: math.unit(165, "lbs"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/fluoresce/front.svg"
  7655. }
  7656. }
  7657. },
  7658. [
  7659. {
  7660. name: "Micro",
  7661. height: math.unit(6, "cm")
  7662. },
  7663. {
  7664. name: "Normal",
  7665. height: math.unit(5 + 7 / 12, "feet"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Macro",
  7670. height: math.unit(56, "feet")
  7671. },
  7672. {
  7673. name: "Megamacro",
  7674. height: math.unit(1.9, "miles")
  7675. },
  7676. ]
  7677. ))
  7678. characterMakers.push(() => makeCharacter(
  7679. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7680. {
  7681. front: {
  7682. height: math.unit(9 + 6 / 12, "feet"),
  7683. weight: math.unit(523, "lbs"),
  7684. name: "Side",
  7685. image: {
  7686. source: "./media/characters/aurora/side.svg"
  7687. }
  7688. }
  7689. },
  7690. [
  7691. {
  7692. name: "Normal",
  7693. height: math.unit(9 + 6 / 12, "feet")
  7694. },
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(96, "feet"),
  7698. default: true
  7699. },
  7700. {
  7701. name: "Macro+",
  7702. height: math.unit(243, "feet")
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(194, "cm"),
  7711. weight: math.unit(90, "kg"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/ranek/front.svg"
  7715. }
  7716. },
  7717. side: {
  7718. height: math.unit(194, "cm"),
  7719. weight: math.unit(90, "kg"),
  7720. name: "Side",
  7721. image: {
  7722. source: "./media/characters/ranek/side.svg"
  7723. }
  7724. },
  7725. back: {
  7726. height: math.unit(194, "cm"),
  7727. weight: math.unit(90, "kg"),
  7728. name: "Back",
  7729. image: {
  7730. source: "./media/characters/ranek/back.svg"
  7731. }
  7732. },
  7733. feral: {
  7734. height: math.unit(30, "cm"),
  7735. weight: math.unit(1.6, "lbs"),
  7736. name: "Feral",
  7737. image: {
  7738. source: "./media/characters/ranek/feral.svg"
  7739. }
  7740. },
  7741. },
  7742. [
  7743. {
  7744. name: "Normal",
  7745. height: math.unit(194, "cm"),
  7746. default: true
  7747. },
  7748. {
  7749. name: "Macro",
  7750. height: math.unit(100, "meters")
  7751. },
  7752. ]
  7753. ))
  7754. characterMakers.push(() => makeCharacter(
  7755. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7756. {
  7757. front: {
  7758. height: math.unit(5 + 6 / 12, "feet"),
  7759. weight: math.unit(153, "lbs"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/andrew-cooper/front.svg"
  7763. }
  7764. },
  7765. },
  7766. [
  7767. {
  7768. name: "Nano",
  7769. height: math.unit(1, "mm")
  7770. },
  7771. {
  7772. name: "Micro",
  7773. height: math.unit(2, "inches")
  7774. },
  7775. {
  7776. name: "Normal",
  7777. height: math.unit(5 + 6 / 12, "feet"),
  7778. default: true
  7779. }
  7780. ]
  7781. ))
  7782. characterMakers.push(() => makeCharacter(
  7783. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7784. {
  7785. front: {
  7786. height: math.unit(6, "feet"),
  7787. weight: math.unit(180, "lbs"),
  7788. name: "Front",
  7789. image: {
  7790. source: "./media/characters/akane-sato/front.svg",
  7791. extra: 1219 / 1140
  7792. }
  7793. },
  7794. back: {
  7795. height: math.unit(6, "feet"),
  7796. weight: math.unit(180, "lbs"),
  7797. name: "Back",
  7798. image: {
  7799. source: "./media/characters/akane-sato/back.svg",
  7800. extra: 1219 / 1170
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(2.5, "meters")
  7808. },
  7809. {
  7810. name: "Macro",
  7811. height: math.unit(250, "meters"),
  7812. default: true
  7813. },
  7814. {
  7815. name: "Megamacro",
  7816. height: math.unit(25, "km")
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(6, "feet"),
  7825. weight: math.unit(65, "kg"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/rook/front.svg",
  7829. extra: 960 / 950
  7830. }
  7831. }
  7832. },
  7833. [
  7834. {
  7835. name: "Normal",
  7836. height: math.unit(8.8, "feet")
  7837. },
  7838. {
  7839. name: "Macro",
  7840. height: math.unit(88, "feet"),
  7841. default: true
  7842. },
  7843. {
  7844. name: "Megamacro",
  7845. height: math.unit(8, "miles")
  7846. },
  7847. ]
  7848. ))
  7849. characterMakers.push(() => makeCharacter(
  7850. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7851. {
  7852. front: {
  7853. height: math.unit(12 + 2 / 12, "feet"),
  7854. weight: math.unit(808, "lbs"),
  7855. name: "Front",
  7856. image: {
  7857. source: "./media/characters/prodigy/front.svg"
  7858. }
  7859. }
  7860. },
  7861. [
  7862. {
  7863. name: "Normal",
  7864. height: math.unit(12 + 2 / 12, "feet"),
  7865. default: true
  7866. },
  7867. {
  7868. name: "Macro",
  7869. height: math.unit(143, "feet")
  7870. },
  7871. {
  7872. name: "Macro+",
  7873. height: math.unit(400, "feet")
  7874. },
  7875. ]
  7876. ))
  7877. characterMakers.push(() => makeCharacter(
  7878. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7879. {
  7880. front: {
  7881. height: math.unit(6, "feet"),
  7882. weight: math.unit(225, "lbs"),
  7883. name: "Front",
  7884. image: {
  7885. source: "./media/characters/daniel/front.svg"
  7886. }
  7887. },
  7888. leaning: {
  7889. height: math.unit(6, "feet"),
  7890. weight: math.unit(225, "lbs"),
  7891. name: "Leaning",
  7892. image: {
  7893. source: "./media/characters/daniel/leaning.svg"
  7894. }
  7895. },
  7896. },
  7897. [
  7898. {
  7899. name: "Macro",
  7900. height: math.unit(1000, "feet"),
  7901. default: true
  7902. },
  7903. ]
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7907. {
  7908. front: {
  7909. height: math.unit(6, "feet"),
  7910. weight: math.unit(88, "lbs"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/chiros/front.svg",
  7914. extra: 306 / 226
  7915. }
  7916. },
  7917. side: {
  7918. height: math.unit(6, "feet"),
  7919. weight: math.unit(88, "lbs"),
  7920. name: "Side",
  7921. image: {
  7922. source: "./media/characters/chiros/side.svg",
  7923. extra: 306 / 226
  7924. }
  7925. },
  7926. },
  7927. [
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(6, "cm"),
  7931. default: true
  7932. },
  7933. ]
  7934. ))
  7935. characterMakers.push(() => makeCharacter(
  7936. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7937. {
  7938. front: {
  7939. height: math.unit(6, "feet"),
  7940. weight: math.unit(100, "lbs"),
  7941. name: "Front",
  7942. image: {
  7943. source: "./media/characters/selka/front.svg",
  7944. extra: 947 / 887
  7945. }
  7946. }
  7947. },
  7948. [
  7949. {
  7950. name: "Normal",
  7951. height: math.unit(5, "cm"),
  7952. default: true
  7953. },
  7954. ]
  7955. ))
  7956. characterMakers.push(() => makeCharacter(
  7957. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7958. {
  7959. front: {
  7960. height: math.unit(8 + 3 / 12, "feet"),
  7961. weight: math.unit(424, "lbs"),
  7962. name: "Front",
  7963. image: {
  7964. source: "./media/characters/verin/front.svg",
  7965. extra: 1845 / 1550
  7966. }
  7967. },
  7968. frontArmored: {
  7969. height: math.unit(8 + 3 / 12, "feet"),
  7970. weight: math.unit(424, "lbs"),
  7971. name: "Front (Armored)",
  7972. image: {
  7973. source: "./media/characters/verin/front-armor.svg",
  7974. extra: 1845 / 1550,
  7975. bottom: 0.01
  7976. }
  7977. },
  7978. back: {
  7979. height: math.unit(8 + 3 / 12, "feet"),
  7980. weight: math.unit(424, "lbs"),
  7981. name: "Back",
  7982. image: {
  7983. source: "./media/characters/verin/back.svg",
  7984. bottom: 0.1,
  7985. extra: 1
  7986. }
  7987. },
  7988. foot: {
  7989. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7990. name: "Foot",
  7991. image: {
  7992. source: "./media/characters/verin/foot.svg"
  7993. }
  7994. },
  7995. },
  7996. [
  7997. {
  7998. name: "Normal",
  7999. height: math.unit(8 + 3 / 12, "feet")
  8000. },
  8001. {
  8002. name: "Minimacro",
  8003. height: math.unit(21, "feet"),
  8004. default: true
  8005. },
  8006. {
  8007. name: "Macro",
  8008. height: math.unit(626, "feet")
  8009. },
  8010. ]
  8011. ))
  8012. characterMakers.push(() => makeCharacter(
  8013. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8014. {
  8015. front: {
  8016. height: math.unit(2.718, "meters"),
  8017. weight: math.unit(150, "lbs"),
  8018. name: "Front",
  8019. image: {
  8020. source: "./media/characters/sovrim-terraquian/front.svg",
  8021. extra: 1752/1689,
  8022. bottom: 36/1788
  8023. }
  8024. },
  8025. back: {
  8026. height: math.unit(2.718, "meters"),
  8027. weight: math.unit(150, "lbs"),
  8028. name: "Back",
  8029. image: {
  8030. source: "./media/characters/sovrim-terraquian/back.svg",
  8031. extra: 1698/1657,
  8032. bottom: 58/1756
  8033. }
  8034. },
  8035. tongue: {
  8036. height: math.unit(2.865, "feet"),
  8037. name: "Tongue",
  8038. image: {
  8039. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8040. }
  8041. },
  8042. hand: {
  8043. height: math.unit(1.61, "feet"),
  8044. name: "Hand",
  8045. image: {
  8046. source: "./media/characters/sovrim-terraquian/hand.svg"
  8047. }
  8048. },
  8049. foot: {
  8050. height: math.unit(1.05, "feet"),
  8051. name: "Foot",
  8052. image: {
  8053. source: "./media/characters/sovrim-terraquian/foot.svg"
  8054. }
  8055. },
  8056. footAlt: {
  8057. height: math.unit(0.88, "feet"),
  8058. name: "Foot (Alt)",
  8059. image: {
  8060. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8061. }
  8062. },
  8063. },
  8064. [
  8065. {
  8066. name: "Micro",
  8067. height: math.unit(2, "inches")
  8068. },
  8069. {
  8070. name: "Small",
  8071. height: math.unit(1, "meter")
  8072. },
  8073. {
  8074. name: "Normal",
  8075. height: math.unit(Math.E, "meters"),
  8076. default: true
  8077. },
  8078. {
  8079. name: "Macro",
  8080. height: math.unit(20, "meters")
  8081. },
  8082. {
  8083. name: "Macro+",
  8084. height: math.unit(400, "meters")
  8085. },
  8086. ]
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8090. {
  8091. front: {
  8092. height: math.unit(7, "feet"),
  8093. weight: math.unit(489, "lbs"),
  8094. name: "Front",
  8095. image: {
  8096. source: "./media/characters/reece-silvermane/front.svg",
  8097. bottom: 0.02,
  8098. extra: 1
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Macro",
  8105. height: math.unit(1.5, "miles"),
  8106. default: true
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(78, "kg"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/kane/front.svg",
  8119. extra: 978 / 899
  8120. }
  8121. },
  8122. },
  8123. [
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(2.1, "m"),
  8127. },
  8128. {
  8129. name: "Macro",
  8130. height: math.unit(1, "km"),
  8131. default: true
  8132. },
  8133. ]
  8134. ))
  8135. characterMakers.push(() => makeCharacter(
  8136. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8137. {
  8138. front: {
  8139. height: math.unit(6, "feet"),
  8140. weight: math.unit(200, "kg"),
  8141. name: "Front",
  8142. image: {
  8143. source: "./media/characters/tegon/front.svg",
  8144. bottom: 0.01,
  8145. extra: 1
  8146. }
  8147. },
  8148. },
  8149. [
  8150. {
  8151. name: "Micro",
  8152. height: math.unit(1, "inch")
  8153. },
  8154. {
  8155. name: "Normal",
  8156. height: math.unit(6 + 3 / 12, "feet"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Macro",
  8161. height: math.unit(300, "feet")
  8162. },
  8163. {
  8164. name: "Megamacro",
  8165. height: math.unit(69, "miles")
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8171. {
  8172. side: {
  8173. height: math.unit(6, "feet"),
  8174. weight: math.unit(2304, "lbs"),
  8175. name: "Side",
  8176. image: {
  8177. source: "./media/characters/arcturax/side.svg",
  8178. extra: 790 / 376,
  8179. bottom: 0.01
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Micro",
  8186. height: math.unit(2, "inch")
  8187. },
  8188. {
  8189. name: "Normal",
  8190. height: math.unit(6, "feet")
  8191. },
  8192. {
  8193. name: "Macro",
  8194. height: math.unit(39, "feet"),
  8195. default: true
  8196. },
  8197. {
  8198. name: "Megamacro",
  8199. height: math.unit(7, "miles")
  8200. },
  8201. ]
  8202. ))
  8203. characterMakers.push(() => makeCharacter(
  8204. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8205. {
  8206. front: {
  8207. height: math.unit(6, "feet"),
  8208. weight: math.unit(50, "lbs"),
  8209. name: "Front",
  8210. image: {
  8211. source: "./media/characters/sentri/front.svg",
  8212. extra: 1750 / 1570,
  8213. bottom: 0.025
  8214. }
  8215. },
  8216. frontAlt: {
  8217. height: math.unit(6, "feet"),
  8218. weight: math.unit(50, "lbs"),
  8219. name: "Front (Alt)",
  8220. image: {
  8221. source: "./media/characters/sentri/front-alt.svg",
  8222. extra: 1750 / 1570,
  8223. bottom: 0.025
  8224. }
  8225. },
  8226. },
  8227. [
  8228. {
  8229. name: "Normal",
  8230. height: math.unit(15, "feet"),
  8231. default: true
  8232. },
  8233. {
  8234. name: "Macro",
  8235. height: math.unit(2500, "feet")
  8236. }
  8237. ]
  8238. ))
  8239. characterMakers.push(() => makeCharacter(
  8240. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8241. {
  8242. front: {
  8243. height: math.unit(5 + 8 / 12, "feet"),
  8244. weight: math.unit(130, "lbs"),
  8245. name: "Front",
  8246. image: {
  8247. source: "./media/characters/corvin/front.svg",
  8248. extra: 1803 / 1629
  8249. }
  8250. },
  8251. frontShirt: {
  8252. height: math.unit(5 + 8 / 12, "feet"),
  8253. weight: math.unit(130, "lbs"),
  8254. name: "Front (Shirt)",
  8255. image: {
  8256. source: "./media/characters/corvin/front-shirt.svg",
  8257. extra: 1803 / 1629
  8258. }
  8259. },
  8260. frontPoncho: {
  8261. height: math.unit(5 + 8 / 12, "feet"),
  8262. weight: math.unit(130, "lbs"),
  8263. name: "Front (Poncho)",
  8264. image: {
  8265. source: "./media/characters/corvin/front-poncho.svg",
  8266. extra: 1803 / 1629
  8267. }
  8268. },
  8269. side: {
  8270. height: math.unit(5 + 8 / 12, "feet"),
  8271. weight: math.unit(130, "lbs"),
  8272. name: "Side",
  8273. image: {
  8274. source: "./media/characters/corvin/side.svg",
  8275. extra: 1012 / 945
  8276. }
  8277. },
  8278. back: {
  8279. height: math.unit(5 + 8 / 12, "feet"),
  8280. weight: math.unit(130, "lbs"),
  8281. name: "Back",
  8282. image: {
  8283. source: "./media/characters/corvin/back.svg",
  8284. extra: 1803 / 1629
  8285. }
  8286. },
  8287. },
  8288. [
  8289. {
  8290. name: "Micro",
  8291. height: math.unit(3, "inches")
  8292. },
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(5 + 8 / 12, "feet")
  8296. },
  8297. {
  8298. name: "Macro",
  8299. height: math.unit(300, "feet"),
  8300. default: true
  8301. },
  8302. {
  8303. name: "Megamacro",
  8304. height: math.unit(500, "miles")
  8305. }
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8310. {
  8311. front: {
  8312. height: math.unit(6, "feet"),
  8313. weight: math.unit(135, "lbs"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/q/front.svg",
  8317. extra: 854 / 752,
  8318. bottom: 0.005
  8319. }
  8320. },
  8321. back: {
  8322. height: math.unit(6, "feet"),
  8323. weight: math.unit(130, "lbs"),
  8324. name: "Back",
  8325. image: {
  8326. source: "./media/characters/q/back.svg",
  8327. extra: 854 / 752
  8328. }
  8329. },
  8330. },
  8331. [
  8332. {
  8333. name: "Macro",
  8334. height: math.unit(90, "feet"),
  8335. default: true
  8336. },
  8337. {
  8338. name: "Extra Macro",
  8339. height: math.unit(300, "feet"),
  8340. },
  8341. {
  8342. name: "BIG WALF",
  8343. height: math.unit(750, "feet"),
  8344. },
  8345. ]
  8346. ))
  8347. characterMakers.push(() => makeCharacter(
  8348. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8349. {
  8350. front: {
  8351. height: math.unit(6, "feet"),
  8352. weight: math.unit(150, "lbs"),
  8353. name: "Front",
  8354. image: {
  8355. source: "./media/characters/carley/front.svg",
  8356. extra: 3927 / 3540,
  8357. bottom: 29.2 / 735
  8358. }
  8359. }
  8360. },
  8361. [
  8362. {
  8363. name: "Normal",
  8364. height: math.unit(6 + 3 / 12, "feet")
  8365. },
  8366. {
  8367. name: "Macro",
  8368. height: math.unit(185, "feet"),
  8369. default: true
  8370. },
  8371. {
  8372. name: "Megamacro",
  8373. height: math.unit(8, "miles"),
  8374. },
  8375. ]
  8376. ))
  8377. characterMakers.push(() => makeCharacter(
  8378. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8379. {
  8380. front: {
  8381. height: math.unit(3, "feet"),
  8382. weight: math.unit(28, "lbs"),
  8383. name: "Front",
  8384. image: {
  8385. source: "./media/characters/citrine/front.svg"
  8386. }
  8387. }
  8388. },
  8389. [
  8390. {
  8391. name: "Normal",
  8392. height: math.unit(3, "feet"),
  8393. default: true
  8394. }
  8395. ]
  8396. ))
  8397. characterMakers.push(() => makeCharacter(
  8398. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8399. {
  8400. front: {
  8401. height: math.unit(14, "feet"),
  8402. weight: math.unit(1450, "kg"),
  8403. capacity: math.unit(15, "people"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/aura-starwind/front.svg",
  8407. extra: 1440/1327,
  8408. bottom: 11/1451
  8409. }
  8410. },
  8411. side: {
  8412. height: math.unit(14, "feet"),
  8413. weight: math.unit(1450, "kg"),
  8414. capacity: math.unit(15, "people"),
  8415. name: "Side",
  8416. image: {
  8417. source: "./media/characters/aura-starwind/side.svg",
  8418. extra: 1654 / 1497
  8419. }
  8420. },
  8421. taur: {
  8422. height: math.unit(18, "feet"),
  8423. weight: math.unit(5500, "kg"),
  8424. capacity: math.unit(50, "people"),
  8425. name: "Taur",
  8426. image: {
  8427. source: "./media/characters/aura-starwind/taur.svg",
  8428. extra: 1760 / 1650
  8429. }
  8430. },
  8431. feral: {
  8432. height: math.unit(46, "feet"),
  8433. weight: math.unit(25000, "kg"),
  8434. capacity: math.unit(120, "people"),
  8435. name: "Feral",
  8436. image: {
  8437. source: "./media/characters/aura-starwind/feral.svg"
  8438. }
  8439. },
  8440. },
  8441. [
  8442. {
  8443. name: "Normal",
  8444. height: math.unit(14, "feet"),
  8445. default: true
  8446. },
  8447. {
  8448. name: "Macro",
  8449. height: math.unit(50, "meters")
  8450. },
  8451. {
  8452. name: "Megamacro",
  8453. height: math.unit(5000, "meters")
  8454. },
  8455. {
  8456. name: "Gigamacro",
  8457. height: math.unit(100000, "kilometers")
  8458. },
  8459. ]
  8460. ))
  8461. characterMakers.push(() => makeCharacter(
  8462. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8463. {
  8464. front: {
  8465. height: math.unit(2 + 7 / 12, "feet"),
  8466. weight: math.unit(32, "lbs"),
  8467. name: "Front",
  8468. image: {
  8469. source: "./media/characters/rivet/front.svg",
  8470. extra: 1716 / 1658,
  8471. bottom: 0.03
  8472. }
  8473. },
  8474. foot: {
  8475. height: math.unit(0.551, "feet"),
  8476. name: "Rivet's Foot",
  8477. image: {
  8478. source: "./media/characters/rivet/foot.svg"
  8479. },
  8480. rename: true
  8481. }
  8482. },
  8483. [
  8484. {
  8485. name: "Micro",
  8486. height: math.unit(1.5, "inches"),
  8487. },
  8488. {
  8489. name: "Normal",
  8490. height: math.unit(2 + 7 / 12, "feet"),
  8491. default: true
  8492. },
  8493. {
  8494. name: "Macro",
  8495. height: math.unit(85, "feet")
  8496. },
  8497. {
  8498. name: "Megamacro",
  8499. height: math.unit(2.2, "km")
  8500. }
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8505. {
  8506. front: {
  8507. height: math.unit(5 + 9 / 12, "feet"),
  8508. weight: math.unit(150, "lbs"),
  8509. name: "Front",
  8510. image: {
  8511. source: "./media/characters/coffee/front.svg",
  8512. extra: 3666 / 3032,
  8513. bottom: 0.04
  8514. }
  8515. },
  8516. foot: {
  8517. height: math.unit(1.29, "feet"),
  8518. name: "Foot",
  8519. image: {
  8520. source: "./media/characters/coffee/foot.svg"
  8521. }
  8522. },
  8523. },
  8524. [
  8525. {
  8526. name: "Micro",
  8527. height: math.unit(2, "inches"),
  8528. },
  8529. {
  8530. name: "Normal",
  8531. height: math.unit(5 + 9 / 12, "feet"),
  8532. default: true
  8533. },
  8534. {
  8535. name: "Macro",
  8536. height: math.unit(800, "feet")
  8537. },
  8538. {
  8539. name: "Megamacro",
  8540. height: math.unit(25, "miles")
  8541. }
  8542. ]
  8543. ))
  8544. characterMakers.push(() => makeCharacter(
  8545. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8546. {
  8547. front: {
  8548. height: math.unit(6, "feet"),
  8549. weight: math.unit(200, "lbs"),
  8550. name: "Front",
  8551. image: {
  8552. source: "./media/characters/chari-gal/front.svg",
  8553. extra: 1568 / 1385,
  8554. bottom: 0.047
  8555. }
  8556. },
  8557. gigantamax: {
  8558. height: math.unit(6 * 16, "feet"),
  8559. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8560. name: "Gigantamax",
  8561. image: {
  8562. source: "./media/characters/chari-gal/gigantamax.svg",
  8563. extra: 1124 / 888,
  8564. bottom: 0.03
  8565. }
  8566. },
  8567. },
  8568. [
  8569. {
  8570. name: "Normal",
  8571. height: math.unit(5 + 7 / 12, "feet")
  8572. },
  8573. {
  8574. name: "Macro",
  8575. height: math.unit(200, "feet"),
  8576. default: true
  8577. }
  8578. ]
  8579. ))
  8580. characterMakers.push(() => makeCharacter(
  8581. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8582. {
  8583. front: {
  8584. height: math.unit(6, "feet"),
  8585. weight: math.unit(150, "lbs"),
  8586. name: "Front",
  8587. image: {
  8588. source: "./media/characters/nova/front.svg",
  8589. extra: 5000 / 4722,
  8590. bottom: 0.02
  8591. }
  8592. }
  8593. },
  8594. [
  8595. {
  8596. name: "Micro-",
  8597. height: math.unit(0.8, "inches")
  8598. },
  8599. {
  8600. name: "Micro",
  8601. height: math.unit(2, "inches"),
  8602. default: true
  8603. },
  8604. ]
  8605. ))
  8606. characterMakers.push(() => makeCharacter(
  8607. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8608. {
  8609. front: {
  8610. height: math.unit(3 + 1 / 12, "feet"),
  8611. weight: math.unit(21.7, "lbs"),
  8612. name: "Front",
  8613. image: {
  8614. source: "./media/characters/argent/front.svg",
  8615. extra: 1471 / 1331,
  8616. bottom: 100.8 / 1575.5
  8617. }
  8618. }
  8619. },
  8620. [
  8621. {
  8622. name: "Micro",
  8623. height: math.unit(2, "inches")
  8624. },
  8625. {
  8626. name: "Normal",
  8627. height: math.unit(3 + 1 / 12, "feet"),
  8628. default: true
  8629. },
  8630. {
  8631. name: "Macro",
  8632. height: math.unit(120, "feet")
  8633. },
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8638. {
  8639. lamp: {
  8640. height: math.unit(7 * 1559 / 989, "feet"),
  8641. name: "Magic Lamp",
  8642. image: {
  8643. source: "./media/characters/mira-al-cul/lamp.svg",
  8644. extra: 1617 / 1559
  8645. }
  8646. },
  8647. front: {
  8648. height: math.unit(7, "feet"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/mira-al-cul/front.svg",
  8652. extra: 1044 / 990
  8653. }
  8654. },
  8655. },
  8656. [
  8657. {
  8658. name: "Heavily Restricted",
  8659. height: math.unit(7 * 1559 / 989, "feet")
  8660. },
  8661. {
  8662. name: "Freshly Freed",
  8663. height: math.unit(50 * 1559 / 989, "feet")
  8664. },
  8665. {
  8666. name: "World Encompassing",
  8667. height: math.unit(10000 * 1559 / 989, "miles")
  8668. },
  8669. {
  8670. name: "Galactic",
  8671. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8672. },
  8673. {
  8674. name: "Palmed Universe",
  8675. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8676. default: true
  8677. },
  8678. {
  8679. name: "Multiversal Matriarch",
  8680. height: math.unit(8.87e10, "yottameters")
  8681. },
  8682. {
  8683. name: "Void Mother",
  8684. height: math.unit(3.14e110, "yottaparsecs")
  8685. },
  8686. {
  8687. name: "Toying with Transcendence",
  8688. height: math.unit(1e307, "meters")
  8689. },
  8690. ]
  8691. ))
  8692. characterMakers.push(() => makeCharacter(
  8693. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8694. {
  8695. front: {
  8696. height: math.unit(17 + 1 / 12, "feet"),
  8697. weight: math.unit(476.2 * 5, "lbs"),
  8698. name: "Front",
  8699. image: {
  8700. source: "./media/characters/kuro-shi-uchū/front.svg",
  8701. extra: 2329 / 1835,
  8702. bottom: 0.02
  8703. }
  8704. },
  8705. },
  8706. [
  8707. {
  8708. name: "Micro",
  8709. height: math.unit(2, "inches")
  8710. },
  8711. {
  8712. name: "Normal",
  8713. height: math.unit(12, "meters")
  8714. },
  8715. {
  8716. name: "Planetary",
  8717. height: math.unit(0.00929, "AU"),
  8718. default: true
  8719. },
  8720. {
  8721. name: "Universal",
  8722. height: math.unit(20, "gigaparsecs")
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(5 + 2 / 12, "feet"),
  8731. weight: math.unit(120, "lbs"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/katherine/front.svg",
  8735. extra: 2075 / 1969
  8736. }
  8737. },
  8738. dress: {
  8739. height: math.unit(5 + 2 / 12, "feet"),
  8740. weight: math.unit(120, "lbs"),
  8741. name: "Dress",
  8742. image: {
  8743. source: "./media/characters/katherine/dress.svg",
  8744. extra: 2258 / 2064
  8745. }
  8746. },
  8747. },
  8748. [
  8749. {
  8750. name: "Micro",
  8751. height: math.unit(1, "inches"),
  8752. default: true
  8753. },
  8754. {
  8755. name: "Normal",
  8756. height: math.unit(5 + 2 / 12, "feet")
  8757. },
  8758. {
  8759. name: "Macro",
  8760. height: math.unit(100, "meters")
  8761. },
  8762. {
  8763. name: "Megamacro",
  8764. height: math.unit(80, "miles")
  8765. },
  8766. ]
  8767. ))
  8768. characterMakers.push(() => makeCharacter(
  8769. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8770. {
  8771. front: {
  8772. height: math.unit(7 + 8 / 12, "feet"),
  8773. weight: math.unit(250, "lbs"),
  8774. name: "Front",
  8775. image: {
  8776. source: "./media/characters/yevis/front.svg",
  8777. extra: 1938 / 1755
  8778. }
  8779. }
  8780. },
  8781. [
  8782. {
  8783. name: "Mortal",
  8784. height: math.unit(7 + 8 / 12, "feet")
  8785. },
  8786. {
  8787. name: "Battle",
  8788. height: math.unit(25 + 11 / 12, "feet")
  8789. },
  8790. {
  8791. name: "Wrath",
  8792. height: math.unit(1654 + 11 / 12, "feet")
  8793. },
  8794. {
  8795. name: "Planet Destroyer",
  8796. height: math.unit(12000, "miles")
  8797. },
  8798. {
  8799. name: "Galaxy Conqueror",
  8800. height: math.unit(1.45, "zettameters"),
  8801. default: true
  8802. },
  8803. {
  8804. name: "Universal War",
  8805. height: math.unit(184, "gigaparsecs")
  8806. },
  8807. {
  8808. name: "Eternity War",
  8809. height: math.unit(1.98e55, "yottaparsecs")
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(5 + 8 / 12, "feet"),
  8818. weight: math.unit(63, "kg"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/xavier/front.svg",
  8822. extra: 944 / 883
  8823. }
  8824. },
  8825. frontStretch: {
  8826. height: math.unit(5 + 8 / 12, "feet"),
  8827. weight: math.unit(63, "kg"),
  8828. name: "Stretching",
  8829. image: {
  8830. source: "./media/characters/xavier/front-stretch.svg",
  8831. extra: 962 / 820
  8832. }
  8833. },
  8834. },
  8835. [
  8836. {
  8837. name: "Normal",
  8838. height: math.unit(5 + 8 / 12, "feet")
  8839. },
  8840. {
  8841. name: "Macro",
  8842. height: math.unit(100, "meters"),
  8843. default: true
  8844. },
  8845. {
  8846. name: "McLargeHuge",
  8847. height: math.unit(10, "miles")
  8848. },
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8853. {
  8854. front: {
  8855. height: math.unit(5 + 5 / 12, "feet"),
  8856. weight: math.unit(150, "lb"),
  8857. name: "Front",
  8858. image: {
  8859. source: "./media/characters/joshii/front.svg",
  8860. extra: 765 / 653,
  8861. bottom: 51 / 816
  8862. }
  8863. },
  8864. foot: {
  8865. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8866. name: "Foot",
  8867. image: {
  8868. source: "./media/characters/joshii/foot.svg"
  8869. }
  8870. },
  8871. },
  8872. [
  8873. {
  8874. name: "Micro",
  8875. height: math.unit(2, "inches"),
  8876. default: true
  8877. },
  8878. {
  8879. name: "Normal",
  8880. height: math.unit(5 + 5 / 12, "feet")
  8881. },
  8882. {
  8883. name: "Macro",
  8884. height: math.unit(785, "feet")
  8885. },
  8886. {
  8887. name: "Megamacro",
  8888. height: math.unit(24.5, "miles")
  8889. },
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8894. {
  8895. front: {
  8896. height: math.unit(6, "feet"),
  8897. weight: math.unit(150, "lb"),
  8898. name: "Front",
  8899. image: {
  8900. source: "./media/characters/goddess-elizabeth/front.svg",
  8901. extra: 1800 / 1525,
  8902. bottom: 0.005
  8903. }
  8904. },
  8905. foot: {
  8906. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8907. name: "Foot",
  8908. image: {
  8909. source: "./media/characters/goddess-elizabeth/foot.svg"
  8910. }
  8911. },
  8912. mouth: {
  8913. height: math.unit(6, "feet"),
  8914. name: "Mouth",
  8915. image: {
  8916. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Micro",
  8923. height: math.unit(12, "feet")
  8924. },
  8925. {
  8926. name: "Normal",
  8927. height: math.unit(80, "miles"),
  8928. default: true
  8929. },
  8930. {
  8931. name: "Macro",
  8932. height: math.unit(15000, "parsecs")
  8933. },
  8934. ]
  8935. ))
  8936. characterMakers.push(() => makeCharacter(
  8937. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8938. {
  8939. front: {
  8940. height: math.unit(5 + 9 / 12, "feet"),
  8941. weight: math.unit(144, "lb"),
  8942. name: "Front",
  8943. image: {
  8944. source: "./media/characters/kara/front.svg"
  8945. }
  8946. },
  8947. feet: {
  8948. height: math.unit(6 / 6.765, "feet"),
  8949. name: "Kara's Feet",
  8950. rename: true,
  8951. image: {
  8952. source: "./media/characters/kara/feet.svg"
  8953. }
  8954. },
  8955. },
  8956. [
  8957. {
  8958. name: "Normal",
  8959. height: math.unit(5 + 9 / 12, "feet")
  8960. },
  8961. {
  8962. name: "Macro",
  8963. height: math.unit(174, "feet"),
  8964. default: true
  8965. },
  8966. ]
  8967. ))
  8968. characterMakers.push(() => makeCharacter(
  8969. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8970. {
  8971. front: {
  8972. height: math.unit(18, "feet"),
  8973. weight: math.unit(4050, "lb"),
  8974. name: "Front",
  8975. image: {
  8976. source: "./media/characters/tyrone/front.svg",
  8977. extra: 2405 / 2270,
  8978. bottom: 182 / 2587
  8979. }
  8980. },
  8981. },
  8982. [
  8983. {
  8984. name: "Normal",
  8985. height: math.unit(18, "feet"),
  8986. default: true
  8987. },
  8988. {
  8989. name: "Macro",
  8990. height: math.unit(300, "feet")
  8991. },
  8992. {
  8993. name: "Megamacro",
  8994. height: math.unit(15, "km")
  8995. },
  8996. {
  8997. name: "Gigamacro",
  8998. height: math.unit(500, "km")
  8999. },
  9000. {
  9001. name: "Teramacro",
  9002. height: math.unit(0.5, "gigameters")
  9003. },
  9004. {
  9005. name: "Omnimacro",
  9006. height: math.unit(1e252, "yottauniverse")
  9007. },
  9008. ]
  9009. ))
  9010. characterMakers.push(() => makeCharacter(
  9011. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9012. {
  9013. front: {
  9014. height: math.unit(7 + 8 / 12, "feet"),
  9015. weight: math.unit(120, "lb"),
  9016. name: "Front",
  9017. image: {
  9018. source: "./media/characters/danny/front.svg",
  9019. extra: 1490 / 1350
  9020. }
  9021. },
  9022. back: {
  9023. height: math.unit(7 + 8 / 12, "feet"),
  9024. weight: math.unit(120, "lb"),
  9025. name: "Back",
  9026. image: {
  9027. source: "./media/characters/danny/back.svg",
  9028. extra: 1490 / 1350
  9029. }
  9030. },
  9031. },
  9032. [
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(7 + 8 / 12, "feet"),
  9036. default: true
  9037. },
  9038. ]
  9039. ))
  9040. characterMakers.push(() => makeCharacter(
  9041. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9042. {
  9043. front: {
  9044. height: math.unit(3.5, "inches"),
  9045. weight: math.unit(19, "grams"),
  9046. name: "Front",
  9047. image: {
  9048. source: "./media/characters/mallow/front.svg",
  9049. extra: 471 / 431
  9050. }
  9051. },
  9052. back: {
  9053. height: math.unit(3.5, "inches"),
  9054. weight: math.unit(19, "grams"),
  9055. name: "Back",
  9056. image: {
  9057. source: "./media/characters/mallow/back.svg",
  9058. extra: 471 / 431
  9059. }
  9060. },
  9061. },
  9062. [
  9063. {
  9064. name: "Normal",
  9065. height: math.unit(3.5, "inches"),
  9066. default: true
  9067. },
  9068. ]
  9069. ))
  9070. characterMakers.push(() => makeCharacter(
  9071. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9072. {
  9073. front: {
  9074. height: math.unit(9, "feet"),
  9075. weight: math.unit(230, "kg"),
  9076. name: "Front",
  9077. image: {
  9078. source: "./media/characters/starry-aqua/front.svg"
  9079. }
  9080. },
  9081. back: {
  9082. height: math.unit(9, "feet"),
  9083. weight: math.unit(230, "kg"),
  9084. name: "Back",
  9085. image: {
  9086. source: "./media/characters/starry-aqua/back.svg"
  9087. }
  9088. },
  9089. hand: {
  9090. height: math.unit(9 * 0.1168, "feet"),
  9091. name: "Hand",
  9092. image: {
  9093. source: "./media/characters/starry-aqua/hand.svg"
  9094. }
  9095. },
  9096. foot: {
  9097. height: math.unit(9 * 0.18, "feet"),
  9098. name: "Foot",
  9099. image: {
  9100. source: "./media/characters/starry-aqua/foot.svg"
  9101. }
  9102. }
  9103. },
  9104. [
  9105. {
  9106. name: "Micro",
  9107. height: math.unit(3, "inches")
  9108. },
  9109. {
  9110. name: "Normal",
  9111. height: math.unit(9, "feet")
  9112. },
  9113. {
  9114. name: "Macro",
  9115. height: math.unit(300, "feet"),
  9116. default: true
  9117. },
  9118. {
  9119. name: "Megamacro",
  9120. height: math.unit(3200, "feet")
  9121. }
  9122. ]
  9123. ))
  9124. characterMakers.push(() => makeCharacter(
  9125. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9126. {
  9127. front: {
  9128. height: math.unit(15, "feet"),
  9129. weight: math.unit(5026, "lb"),
  9130. name: "Front",
  9131. image: {
  9132. source: "./media/characters/luka-towers/front.svg",
  9133. extra: 1269/1133,
  9134. bottom: 51/1320
  9135. }
  9136. },
  9137. },
  9138. [
  9139. {
  9140. name: "Normal",
  9141. height: math.unit(15, "feet"),
  9142. default: true
  9143. },
  9144. {
  9145. name: "Minimacro",
  9146. height: math.unit(25, "feet")
  9147. },
  9148. {
  9149. name: "Macro",
  9150. height: math.unit(320, "feet")
  9151. },
  9152. {
  9153. name: "Megamacro",
  9154. height: math.unit(35000, "feet")
  9155. },
  9156. {
  9157. name: "Gigamacro",
  9158. height: math.unit(4000, "miles")
  9159. },
  9160. {
  9161. name: "Teramacro",
  9162. height: math.unit(15000, "miles")
  9163. },
  9164. ]
  9165. ))
  9166. characterMakers.push(() => makeCharacter(
  9167. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9168. {
  9169. front: {
  9170. height: math.unit(6, "feet"),
  9171. weight: math.unit(150, "lb"),
  9172. name: "Front",
  9173. image: {
  9174. source: "./media/characters/natalie-nightring/front.svg",
  9175. extra: 1,
  9176. bottom: 0.06
  9177. }
  9178. },
  9179. },
  9180. [
  9181. {
  9182. name: "Uh Oh",
  9183. height: math.unit(0.1, "mm")
  9184. },
  9185. {
  9186. name: "Small",
  9187. height: math.unit(3, "inches")
  9188. },
  9189. {
  9190. name: "Human Scale",
  9191. height: math.unit(6, "feet")
  9192. },
  9193. {
  9194. name: "Librarian",
  9195. height: math.unit(50, "feet"),
  9196. default: true
  9197. },
  9198. {
  9199. name: "Immense",
  9200. height: math.unit(200, "miles")
  9201. },
  9202. ]
  9203. ))
  9204. characterMakers.push(() => makeCharacter(
  9205. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9206. {
  9207. front: {
  9208. height: math.unit(6, "feet"),
  9209. weight: math.unit(180, "lbs"),
  9210. name: "Front",
  9211. image: {
  9212. source: "./media/characters/danni-rosie/front.svg",
  9213. extra: 1260 / 1128,
  9214. bottom: 0.022
  9215. }
  9216. },
  9217. },
  9218. [
  9219. {
  9220. name: "Micro",
  9221. height: math.unit(2, "inches"),
  9222. default: true
  9223. },
  9224. ]
  9225. ))
  9226. characterMakers.push(() => makeCharacter(
  9227. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9228. {
  9229. front: {
  9230. height: math.unit(5 + 9 / 12, "feet"),
  9231. weight: math.unit(220, "lb"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/samantha-kruse/front.svg",
  9235. extra: (985 / 935),
  9236. bottom: 0.03
  9237. }
  9238. },
  9239. frontUndressed: {
  9240. height: math.unit(5 + 9 / 12, "feet"),
  9241. weight: math.unit(220, "lb"),
  9242. name: "Front (Undressed)",
  9243. image: {
  9244. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9245. extra: (973 / 923),
  9246. bottom: 0.025
  9247. }
  9248. },
  9249. fat: {
  9250. height: math.unit(5 + 9 / 12, "feet"),
  9251. weight: math.unit(900, "lb"),
  9252. name: "Front (Fat)",
  9253. image: {
  9254. source: "./media/characters/samantha-kruse/fat.svg",
  9255. extra: 2688 / 2561
  9256. }
  9257. },
  9258. },
  9259. [
  9260. {
  9261. name: "Normal",
  9262. height: math.unit(5 + 9 / 12, "feet"),
  9263. default: true
  9264. }
  9265. ]
  9266. ))
  9267. characterMakers.push(() => makeCharacter(
  9268. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9269. {
  9270. back: {
  9271. height: math.unit(5 + 4 / 12, "feet"),
  9272. weight: math.unit(4963, "lb"),
  9273. name: "Back",
  9274. image: {
  9275. source: "./media/characters/amelia-rosie/back.svg",
  9276. extra: 1113 / 963,
  9277. bottom: 0.01
  9278. }
  9279. },
  9280. },
  9281. [
  9282. {
  9283. name: "Level 0",
  9284. height: math.unit(5 + 4 / 12, "feet")
  9285. },
  9286. {
  9287. name: "Level 1",
  9288. height: math.unit(164597, "feet"),
  9289. default: true
  9290. },
  9291. {
  9292. name: "Level 2",
  9293. height: math.unit(956243, "miles")
  9294. },
  9295. {
  9296. name: "Level 3",
  9297. height: math.unit(29421709423, "miles")
  9298. },
  9299. {
  9300. name: "Level 4",
  9301. height: math.unit(154, "lightyears")
  9302. },
  9303. {
  9304. name: "Level 5",
  9305. height: math.unit(4738272, "lightyears")
  9306. },
  9307. {
  9308. name: "Level 6",
  9309. height: math.unit(145787152896, "lightyears")
  9310. },
  9311. ]
  9312. ))
  9313. characterMakers.push(() => makeCharacter(
  9314. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9315. {
  9316. front: {
  9317. height: math.unit(5 + 11 / 12, "feet"),
  9318. weight: math.unit(65, "kg"),
  9319. name: "Front",
  9320. image: {
  9321. source: "./media/characters/rook-kitara/front.svg",
  9322. extra: 1347 / 1274,
  9323. bottom: 0.005
  9324. }
  9325. },
  9326. },
  9327. [
  9328. {
  9329. name: "Totally Unfair",
  9330. height: math.unit(1.8, "mm")
  9331. },
  9332. {
  9333. name: "Lap Rookie",
  9334. height: math.unit(1.4, "feet")
  9335. },
  9336. {
  9337. name: "Normal",
  9338. height: math.unit(5 + 11 / 12, "feet"),
  9339. default: true
  9340. },
  9341. {
  9342. name: "How Did This Happen",
  9343. height: math.unit(80, "miles")
  9344. }
  9345. ]
  9346. ))
  9347. characterMakers.push(() => makeCharacter(
  9348. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9349. {
  9350. front: {
  9351. height: math.unit(7, "feet"),
  9352. weight: math.unit(300, "lb"),
  9353. name: "Front",
  9354. image: {
  9355. source: "./media/characters/pisces/front.svg",
  9356. extra: 2255 / 2115,
  9357. bottom: 0.03
  9358. }
  9359. },
  9360. back: {
  9361. height: math.unit(7, "feet"),
  9362. weight: math.unit(300, "lb"),
  9363. name: "Back",
  9364. image: {
  9365. source: "./media/characters/pisces/back.svg",
  9366. extra: 2146 / 2055,
  9367. bottom: 0.04
  9368. }
  9369. },
  9370. },
  9371. [
  9372. {
  9373. name: "Normal",
  9374. height: math.unit(7, "feet"),
  9375. default: true
  9376. },
  9377. {
  9378. name: "Swimming Pool",
  9379. height: math.unit(12.2, "meters")
  9380. },
  9381. {
  9382. name: "Olympic Swimming Pool",
  9383. height: math.unit(56.3, "meters")
  9384. },
  9385. {
  9386. name: "Lake Superior",
  9387. height: math.unit(93900, "meters")
  9388. },
  9389. {
  9390. name: "Mediterranean Sea",
  9391. height: math.unit(644457, "meters")
  9392. },
  9393. {
  9394. name: "World's Oceans",
  9395. height: math.unit(4567491, "meters")
  9396. },
  9397. ]
  9398. ))
  9399. characterMakers.push(() => makeCharacter(
  9400. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9401. {
  9402. front: {
  9403. height: math.unit(2.3, "meters"),
  9404. weight: math.unit(120, "kg"),
  9405. name: "Front",
  9406. image: {
  9407. source: "./media/characters/zelas/front.svg"
  9408. }
  9409. },
  9410. side: {
  9411. height: math.unit(2.3, "meters"),
  9412. weight: math.unit(120, "kg"),
  9413. name: "Side",
  9414. image: {
  9415. source: "./media/characters/zelas/side.svg"
  9416. }
  9417. },
  9418. back: {
  9419. height: math.unit(2.3, "meters"),
  9420. weight: math.unit(120, "kg"),
  9421. name: "Back",
  9422. image: {
  9423. source: "./media/characters/zelas/back.svg"
  9424. }
  9425. },
  9426. foot: {
  9427. height: math.unit(1.116, "feet"),
  9428. name: "Foot",
  9429. image: {
  9430. source: "./media/characters/zelas/foot.svg"
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Normal",
  9437. height: math.unit(2.3, "meters")
  9438. },
  9439. {
  9440. name: "Macro",
  9441. height: math.unit(30, "meters"),
  9442. default: true
  9443. },
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9448. {
  9449. front: {
  9450. height: math.unit(1, "inch"),
  9451. weight: math.unit(0.21, "grams"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/talbot/front.svg",
  9455. extra: 594 / 544
  9456. }
  9457. },
  9458. },
  9459. [
  9460. {
  9461. name: "Micro",
  9462. height: math.unit(1, "inch"),
  9463. default: true
  9464. },
  9465. ]
  9466. ))
  9467. characterMakers.push(() => makeCharacter(
  9468. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9469. {
  9470. front: {
  9471. height: math.unit(3 + 3 / 12, "feet"),
  9472. weight: math.unit(51.8, "lb"),
  9473. name: "Front",
  9474. image: {
  9475. source: "./media/characters/fliss/front.svg",
  9476. extra: 840 / 640
  9477. }
  9478. },
  9479. },
  9480. [
  9481. {
  9482. name: "Teeny Tiny",
  9483. height: math.unit(1, "mm")
  9484. },
  9485. {
  9486. name: "Small",
  9487. height: math.unit(1, "inch"),
  9488. default: true
  9489. },
  9490. {
  9491. name: "Standard Sylveon",
  9492. height: math.unit(3 + 3 / 12, "feet")
  9493. },
  9494. {
  9495. name: "Large Nuisance",
  9496. height: math.unit(33, "feet")
  9497. },
  9498. {
  9499. name: "City Filler",
  9500. height: math.unit(3000, "feet")
  9501. },
  9502. {
  9503. name: "New Horizon",
  9504. height: math.unit(6000, "miles")
  9505. },
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9510. {
  9511. front: {
  9512. height: math.unit(5, "cm"),
  9513. weight: math.unit(1.94, "g"),
  9514. name: "Front",
  9515. image: {
  9516. source: "./media/characters/fleta/front.svg",
  9517. extra: 835 / 803
  9518. }
  9519. },
  9520. back: {
  9521. height: math.unit(5, "cm"),
  9522. weight: math.unit(1.94, "g"),
  9523. name: "Back",
  9524. image: {
  9525. source: "./media/characters/fleta/back.svg",
  9526. extra: 835 / 803
  9527. }
  9528. },
  9529. },
  9530. [
  9531. {
  9532. name: "Micro",
  9533. height: math.unit(5, "cm"),
  9534. default: true
  9535. },
  9536. ]
  9537. ))
  9538. characterMakers.push(() => makeCharacter(
  9539. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9540. {
  9541. front: {
  9542. height: math.unit(6, "feet"),
  9543. weight: math.unit(225, "lb"),
  9544. name: "Front",
  9545. image: {
  9546. source: "./media/characters/dominic/front.svg",
  9547. extra: 1770 / 1620,
  9548. bottom: 0.025
  9549. }
  9550. },
  9551. back: {
  9552. height: math.unit(6, "feet"),
  9553. weight: math.unit(225, "lb"),
  9554. name: "Back",
  9555. image: {
  9556. source: "./media/characters/dominic/back.svg",
  9557. extra: 1745 / 1620,
  9558. bottom: 0.065
  9559. }
  9560. },
  9561. },
  9562. [
  9563. {
  9564. name: "Nano",
  9565. height: math.unit(0.1, "mm")
  9566. },
  9567. {
  9568. name: "Micro-",
  9569. height: math.unit(1, "mm")
  9570. },
  9571. {
  9572. name: "Micro",
  9573. height: math.unit(4, "inches")
  9574. },
  9575. {
  9576. name: "Normal",
  9577. height: math.unit(6 + 4 / 12, "feet"),
  9578. default: true
  9579. },
  9580. {
  9581. name: "Macro",
  9582. height: math.unit(115, "feet")
  9583. },
  9584. {
  9585. name: "Macro+",
  9586. height: math.unit(955, "feet")
  9587. },
  9588. {
  9589. name: "Megamacro",
  9590. height: math.unit(8990, "feet")
  9591. },
  9592. {
  9593. name: "Gigmacro",
  9594. height: math.unit(9310, "miles")
  9595. },
  9596. {
  9597. name: "Teramacro",
  9598. height: math.unit(1567005010, "miles")
  9599. },
  9600. {
  9601. name: "Examacro",
  9602. height: math.unit(1425, "parsecs")
  9603. },
  9604. ]
  9605. ))
  9606. characterMakers.push(() => makeCharacter(
  9607. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9608. {
  9609. front: {
  9610. height: math.unit(400, "feet"),
  9611. weight: math.unit(44444444, "lb"),
  9612. name: "Front",
  9613. image: {
  9614. source: "./media/characters/major-colonel/front.svg"
  9615. }
  9616. },
  9617. back: {
  9618. height: math.unit(400, "feet"),
  9619. weight: math.unit(44444444, "lb"),
  9620. name: "Back",
  9621. image: {
  9622. source: "./media/characters/major-colonel/back.svg"
  9623. }
  9624. },
  9625. },
  9626. [
  9627. {
  9628. name: "Macro",
  9629. height: math.unit(400, "feet"),
  9630. default: true
  9631. },
  9632. ]
  9633. ))
  9634. characterMakers.push(() => makeCharacter(
  9635. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9636. {
  9637. catFront: {
  9638. height: math.unit(6, "feet"),
  9639. weight: math.unit(120, "lb"),
  9640. name: "Front (Cat Side)",
  9641. image: {
  9642. source: "./media/characters/axel-lycan/cat-front.svg",
  9643. extra: 430 / 402,
  9644. bottom: 43 / 472.35
  9645. }
  9646. },
  9647. catBack: {
  9648. height: math.unit(6, "feet"),
  9649. weight: math.unit(120, "lb"),
  9650. name: "Back (Cat Side)",
  9651. image: {
  9652. source: "./media/characters/axel-lycan/cat-back.svg",
  9653. extra: 447 / 419,
  9654. bottom: 23.3 / 469
  9655. }
  9656. },
  9657. wolfFront: {
  9658. height: math.unit(6, "feet"),
  9659. weight: math.unit(120, "lb"),
  9660. name: "Front (Wolf Side)",
  9661. image: {
  9662. source: "./media/characters/axel-lycan/wolf-front.svg",
  9663. extra: 485 / 456,
  9664. bottom: 19 / 504
  9665. }
  9666. },
  9667. wolfBack: {
  9668. height: math.unit(6, "feet"),
  9669. weight: math.unit(120, "lb"),
  9670. name: "Back (Wolf Side)",
  9671. image: {
  9672. source: "./media/characters/axel-lycan/wolf-back.svg",
  9673. extra: 475 / 438,
  9674. bottom: 39.2 / 514
  9675. }
  9676. },
  9677. },
  9678. [
  9679. {
  9680. name: "Macro",
  9681. height: math.unit(1, "km"),
  9682. default: true
  9683. },
  9684. ]
  9685. ))
  9686. characterMakers.push(() => makeCharacter(
  9687. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9688. {
  9689. front: {
  9690. height: math.unit(5 + 9 / 12, "feet"),
  9691. weight: math.unit(175, "lb"),
  9692. name: "Front",
  9693. image: {
  9694. source: "./media/characters/vanrel-hyena/front.svg",
  9695. extra: 1086 / 1010,
  9696. bottom: 0.04
  9697. }
  9698. },
  9699. },
  9700. [
  9701. {
  9702. name: "Normal",
  9703. height: math.unit(5 + 9 / 12, "feet"),
  9704. default: true
  9705. },
  9706. ]
  9707. ))
  9708. characterMakers.push(() => makeCharacter(
  9709. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9710. {
  9711. front: {
  9712. height: math.unit(6, "feet"),
  9713. weight: math.unit(103, "lb"),
  9714. name: "Front",
  9715. image: {
  9716. source: "./media/characters/abbott-absol/front.svg",
  9717. extra: 2010 / 1842
  9718. }
  9719. },
  9720. },
  9721. [
  9722. {
  9723. name: "Megamicro",
  9724. height: math.unit(0.1, "mm")
  9725. },
  9726. {
  9727. name: "Micro",
  9728. height: math.unit(1, "inch")
  9729. },
  9730. {
  9731. name: "Normal",
  9732. height: math.unit(6, "feet"),
  9733. default: true
  9734. },
  9735. ]
  9736. ))
  9737. characterMakers.push(() => makeCharacter(
  9738. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9739. {
  9740. front: {
  9741. height: math.unit(6, "feet"),
  9742. weight: math.unit(264, "lb"),
  9743. name: "Front",
  9744. image: {
  9745. source: "./media/characters/hector/front.svg",
  9746. extra: 2280 / 2130,
  9747. bottom: 0.07
  9748. }
  9749. },
  9750. },
  9751. [
  9752. {
  9753. name: "Normal",
  9754. height: math.unit(12.25, "foot"),
  9755. default: true
  9756. },
  9757. {
  9758. name: "Macro",
  9759. height: math.unit(160, "feet")
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9765. {
  9766. front: {
  9767. height: math.unit(6, "feet"),
  9768. weight: math.unit(150, "lb"),
  9769. name: "Front",
  9770. image: {
  9771. source: "./media/characters/sal/front.svg",
  9772. extra: 1846 / 1699,
  9773. bottom: 0.04
  9774. }
  9775. },
  9776. },
  9777. [
  9778. {
  9779. name: "Megamacro",
  9780. height: math.unit(10, "miles"),
  9781. default: true
  9782. },
  9783. ]
  9784. ))
  9785. characterMakers.push(() => makeCharacter(
  9786. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9787. {
  9788. front: {
  9789. height: math.unit(3, "meters"),
  9790. weight: math.unit(450, "kg"),
  9791. name: "front",
  9792. image: {
  9793. source: "./media/characters/ranger/front.svg",
  9794. extra: 2401 / 2243,
  9795. bottom: 0.05
  9796. }
  9797. },
  9798. },
  9799. [
  9800. {
  9801. name: "Normal",
  9802. height: math.unit(3, "meters"),
  9803. default: true
  9804. },
  9805. ]
  9806. ))
  9807. characterMakers.push(() => makeCharacter(
  9808. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9809. {
  9810. front: {
  9811. height: math.unit(14, "feet"),
  9812. weight: math.unit(800, "kg"),
  9813. name: "Front",
  9814. image: {
  9815. source: "./media/characters/theresa/front.svg",
  9816. extra: 3575 / 3346,
  9817. bottom: 0.03
  9818. }
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Normal",
  9824. height: math.unit(14, "feet"),
  9825. default: true
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(3, "kg"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/ine/front.svg",
  9838. extra: 678 / 539,
  9839. bottom: 0.023
  9840. }
  9841. },
  9842. },
  9843. [
  9844. {
  9845. name: "Normal",
  9846. height: math.unit(2.265, "feet"),
  9847. default: true
  9848. },
  9849. ]
  9850. ))
  9851. characterMakers.push(() => makeCharacter(
  9852. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9853. {
  9854. front: {
  9855. height: math.unit(5, "feet"),
  9856. weight: math.unit(30, "kg"),
  9857. name: "Front",
  9858. image: {
  9859. source: "./media/characters/vial/front.svg",
  9860. extra: 1365 / 1277,
  9861. bottom: 0.04
  9862. }
  9863. },
  9864. },
  9865. [
  9866. {
  9867. name: "Normal",
  9868. height: math.unit(5, "feet"),
  9869. default: true
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9875. {
  9876. side: {
  9877. height: math.unit(3.4, "meters"),
  9878. weight: math.unit(1000, "lb"),
  9879. name: "Side",
  9880. image: {
  9881. source: "./media/characters/rovoska/side.svg",
  9882. extra: 4403 / 1515
  9883. }
  9884. },
  9885. },
  9886. [
  9887. {
  9888. name: "Normal",
  9889. height: math.unit(3.4, "meters"),
  9890. default: true
  9891. },
  9892. ]
  9893. ))
  9894. characterMakers.push(() => makeCharacter(
  9895. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9896. {
  9897. front: {
  9898. height: math.unit(8, "feet"),
  9899. weight: math.unit(315, "lb"),
  9900. name: "Front",
  9901. image: {
  9902. source: "./media/characters/gunner-rotthbauer/front.svg"
  9903. }
  9904. },
  9905. back: {
  9906. height: math.unit(8, "feet"),
  9907. weight: math.unit(315, "lb"),
  9908. name: "Back",
  9909. image: {
  9910. source: "./media/characters/gunner-rotthbauer/back.svg"
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Micro",
  9917. height: math.unit(3.5, "inches")
  9918. },
  9919. {
  9920. name: "Normal",
  9921. height: math.unit(8, "feet"),
  9922. default: true
  9923. },
  9924. {
  9925. name: "Macro",
  9926. height: math.unit(250, "feet")
  9927. },
  9928. {
  9929. name: "Megamacro",
  9930. height: math.unit(1, "AU")
  9931. },
  9932. ]
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9936. {
  9937. front: {
  9938. height: math.unit(5 + 5 / 12, "feet"),
  9939. weight: math.unit(140, "lb"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/allatia/front.svg",
  9943. extra: 1227 / 1180,
  9944. bottom: 0.027
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Normal",
  9951. height: math.unit(5 + 5 / 12, "feet")
  9952. },
  9953. {
  9954. name: "Macro",
  9955. height: math.unit(250, "feet"),
  9956. default: true
  9957. },
  9958. {
  9959. name: "Megamacro",
  9960. height: math.unit(8, "miles")
  9961. }
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9966. {
  9967. front: {
  9968. height: math.unit(6, "feet"),
  9969. weight: math.unit(120, "lb"),
  9970. name: "Front",
  9971. image: {
  9972. source: "./media/characters/tene/front.svg",
  9973. extra: 1728 / 1578,
  9974. bottom: 0.022
  9975. }
  9976. },
  9977. stomping: {
  9978. height: math.unit(2.025, "meters"),
  9979. weight: math.unit(120, "lb"),
  9980. name: "Stomping",
  9981. image: {
  9982. source: "./media/characters/tene/stomping.svg",
  9983. extra: 938 / 873,
  9984. bottom: 0.01
  9985. }
  9986. },
  9987. sitting: {
  9988. height: math.unit(1, "meter"),
  9989. weight: math.unit(120, "lb"),
  9990. name: "Sitting",
  9991. image: {
  9992. source: "./media/characters/tene/sitting.svg",
  9993. extra: 437 / 415,
  9994. bottom: 0.1
  9995. }
  9996. },
  9997. feral: {
  9998. height: math.unit(3.9, "feet"),
  9999. weight: math.unit(250, "lb"),
  10000. name: "Feral",
  10001. image: {
  10002. source: "./media/characters/tene/feral.svg",
  10003. extra: 717 / 458,
  10004. bottom: 0.179
  10005. }
  10006. },
  10007. },
  10008. [
  10009. {
  10010. name: "Normal",
  10011. height: math.unit(6, "feet")
  10012. },
  10013. {
  10014. name: "Macro",
  10015. height: math.unit(300, "feet"),
  10016. default: true
  10017. },
  10018. {
  10019. name: "Megamacro",
  10020. height: math.unit(5, "miles")
  10021. },
  10022. ]
  10023. ))
  10024. characterMakers.push(() => makeCharacter(
  10025. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10026. {
  10027. side: {
  10028. height: math.unit(6, "feet"),
  10029. name: "Side",
  10030. image: {
  10031. source: "./media/characters/evander/side.svg",
  10032. extra: 877 / 477
  10033. }
  10034. },
  10035. },
  10036. [
  10037. {
  10038. name: "Normal",
  10039. height: math.unit(0.83, "meters"),
  10040. default: true
  10041. },
  10042. ]
  10043. ))
  10044. characterMakers.push(() => makeCharacter(
  10045. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10046. {
  10047. front: {
  10048. height: math.unit(12, "feet"),
  10049. weight: math.unit(1000, "lb"),
  10050. name: "Front",
  10051. image: {
  10052. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10053. extra: 1762 / 1611
  10054. }
  10055. },
  10056. back: {
  10057. height: math.unit(12, "feet"),
  10058. weight: math.unit(1000, "lb"),
  10059. name: "Back",
  10060. image: {
  10061. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10062. extra: 1762 / 1611
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Normal",
  10069. height: math.unit(12, "feet"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Kaiju",
  10074. height: math.unit(150, "feet")
  10075. },
  10076. ]
  10077. ))
  10078. characterMakers.push(() => makeCharacter(
  10079. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10080. {
  10081. front: {
  10082. height: math.unit(6, "feet"),
  10083. weight: math.unit(150, "lb"),
  10084. name: "Front",
  10085. image: {
  10086. source: "./media/characters/zero-alurus/front.svg"
  10087. }
  10088. },
  10089. back: {
  10090. height: math.unit(6, "feet"),
  10091. weight: math.unit(150, "lb"),
  10092. name: "Back",
  10093. image: {
  10094. source: "./media/characters/zero-alurus/back.svg"
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(5 + 10 / 12, "feet")
  10102. },
  10103. {
  10104. name: "Macro",
  10105. height: math.unit(60, "feet"),
  10106. default: true
  10107. },
  10108. {
  10109. name: "Macro+",
  10110. height: math.unit(450, "feet")
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(6, "feet"),
  10119. weight: math.unit(200, "lb"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/mega-shi/front.svg",
  10123. extra: 1279 / 1250,
  10124. bottom: 0.02
  10125. }
  10126. },
  10127. back: {
  10128. height: math.unit(6, "feet"),
  10129. weight: math.unit(200, "lb"),
  10130. name: "Back",
  10131. image: {
  10132. source: "./media/characters/mega-shi/back.svg",
  10133. extra: 1279 / 1250,
  10134. bottom: 0.02
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Micro",
  10141. height: math.unit(16 + 6 / 12, "feet")
  10142. },
  10143. {
  10144. name: "Third Dimension",
  10145. height: math.unit(40, "meters")
  10146. },
  10147. {
  10148. name: "Normal",
  10149. height: math.unit(660, "feet"),
  10150. default: true
  10151. },
  10152. {
  10153. name: "Megamacro",
  10154. height: math.unit(10, "miles")
  10155. },
  10156. {
  10157. name: "Planetary Launch",
  10158. height: math.unit(500, "miles")
  10159. },
  10160. {
  10161. name: "Interstellar",
  10162. height: math.unit(1e9, "miles")
  10163. },
  10164. {
  10165. name: "Leaving the Universe",
  10166. height: math.unit(1, "gigaparsec")
  10167. },
  10168. {
  10169. name: "Travelling Universes",
  10170. height: math.unit(30e15, "parsecs")
  10171. },
  10172. ]
  10173. ))
  10174. characterMakers.push(() => makeCharacter(
  10175. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10176. {
  10177. front: {
  10178. height: math.unit(5 + 4/12, "feet"),
  10179. weight: math.unit(120, "lb"),
  10180. name: "Front",
  10181. image: {
  10182. source: "./media/characters/odyssey/front.svg",
  10183. extra: 1747/1571,
  10184. bottom: 47/1794
  10185. }
  10186. },
  10187. side: {
  10188. height: math.unit(5.1, "feet"),
  10189. weight: math.unit(120, "lb"),
  10190. name: "Side",
  10191. image: {
  10192. source: "./media/characters/odyssey/side.svg",
  10193. extra: 1847/1619,
  10194. bottom: 47/1894
  10195. }
  10196. },
  10197. lounging: {
  10198. height: math.unit(1.464, "feet"),
  10199. weight: math.unit(120, "lb"),
  10200. name: "Lounging",
  10201. image: {
  10202. source: "./media/characters/odyssey/lounging.svg",
  10203. extra: 1235/837,
  10204. bottom: 551/1786
  10205. }
  10206. },
  10207. },
  10208. [
  10209. {
  10210. name: "Normal",
  10211. height: math.unit(5 + 4 / 12, "feet")
  10212. },
  10213. {
  10214. name: "Macro",
  10215. height: math.unit(1, "km")
  10216. },
  10217. {
  10218. name: "Megamacro",
  10219. height: math.unit(3000, "km")
  10220. },
  10221. {
  10222. name: "Gigamacro",
  10223. height: math.unit(1, "AU"),
  10224. default: true
  10225. },
  10226. {
  10227. name: "Omniversal",
  10228. height: math.unit(100e14, "lightyears")
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(6, "feet"),
  10237. weight: math.unit(300, "lb"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/mekuto/front.svg",
  10241. extra: 921 / 832,
  10242. bottom: 0.03
  10243. }
  10244. },
  10245. hand: {
  10246. height: math.unit(6 / 10.24, "feet"),
  10247. name: "Hand",
  10248. image: {
  10249. source: "./media/characters/mekuto/hand.svg"
  10250. }
  10251. },
  10252. foot: {
  10253. height: math.unit(6 / 5.05, "feet"),
  10254. name: "Foot",
  10255. image: {
  10256. source: "./media/characters/mekuto/foot.svg"
  10257. }
  10258. },
  10259. },
  10260. [
  10261. {
  10262. name: "Minimicro",
  10263. height: math.unit(0.2, "inches")
  10264. },
  10265. {
  10266. name: "Micro",
  10267. height: math.unit(1.5, "inches")
  10268. },
  10269. {
  10270. name: "Normal",
  10271. height: math.unit(5 + 11 / 12, "feet"),
  10272. default: true
  10273. },
  10274. {
  10275. name: "Minimacro",
  10276. height: math.unit(17 + 9 / 12, "feet")
  10277. },
  10278. {
  10279. name: "Macro",
  10280. height: math.unit(177.5, "feet")
  10281. },
  10282. {
  10283. name: "Megamacro",
  10284. height: math.unit(152, "miles")
  10285. },
  10286. ]
  10287. ))
  10288. characterMakers.push(() => makeCharacter(
  10289. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10290. {
  10291. front: {
  10292. height: math.unit(6.5, "inches"),
  10293. weight: math.unit(13, "oz"),
  10294. name: "Front",
  10295. image: {
  10296. source: "./media/characters/dafydd-tomos/front.svg",
  10297. extra: 2990 / 2603,
  10298. bottom: 0.03
  10299. }
  10300. },
  10301. },
  10302. [
  10303. {
  10304. name: "Micro",
  10305. height: math.unit(6.5, "inches"),
  10306. default: true
  10307. },
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10312. {
  10313. front: {
  10314. height: math.unit(6, "feet"),
  10315. weight: math.unit(150, "lb"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/splinter/front.svg",
  10319. extra: 2990 / 2882,
  10320. bottom: 0.04
  10321. }
  10322. },
  10323. back: {
  10324. height: math.unit(6, "feet"),
  10325. weight: math.unit(150, "lb"),
  10326. name: "Back",
  10327. image: {
  10328. source: "./media/characters/splinter/back.svg",
  10329. extra: 2990 / 2882,
  10330. bottom: 0.04
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Normal",
  10337. height: math.unit(6, "feet")
  10338. },
  10339. {
  10340. name: "Macro",
  10341. height: math.unit(230, "meters"),
  10342. default: true
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10348. {
  10349. front: {
  10350. height: math.unit(4 + 10 / 12, "feet"),
  10351. weight: math.unit(480, "lb"),
  10352. name: "Front",
  10353. image: {
  10354. source: "./media/characters/snow-gabumon/front.svg",
  10355. extra: 1140 / 963,
  10356. bottom: 0.058
  10357. }
  10358. },
  10359. back: {
  10360. height: math.unit(4 + 10 / 12, "feet"),
  10361. weight: math.unit(480, "lb"),
  10362. name: "Back",
  10363. image: {
  10364. source: "./media/characters/snow-gabumon/back.svg",
  10365. extra: 1115 / 962,
  10366. bottom: 0.041
  10367. }
  10368. },
  10369. frontUndresed: {
  10370. height: math.unit(4 + 10 / 12, "feet"),
  10371. weight: math.unit(480, "lb"),
  10372. name: "Front (Undressed)",
  10373. image: {
  10374. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10375. extra: 1061 / 960,
  10376. bottom: 0.045
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Micro",
  10383. height: math.unit(1, "inch")
  10384. },
  10385. {
  10386. name: "Normal",
  10387. height: math.unit(4 + 10 / 12, "feet"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Macro",
  10392. height: math.unit(200, "feet")
  10393. },
  10394. {
  10395. name: "Megamacro",
  10396. height: math.unit(120, "miles")
  10397. },
  10398. {
  10399. name: "Gigamacro",
  10400. height: math.unit(9800, "miles")
  10401. },
  10402. ]
  10403. ))
  10404. characterMakers.push(() => makeCharacter(
  10405. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10406. {
  10407. front: {
  10408. height: math.unit(1.7, "meters"),
  10409. weight: math.unit(140, "lb"),
  10410. name: "Front",
  10411. image: {
  10412. source: "./media/characters/moody/front.svg",
  10413. extra: 3226 / 3007,
  10414. bottom: 0.087
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Micro",
  10421. height: math.unit(1, "mm")
  10422. },
  10423. {
  10424. name: "Normal",
  10425. height: math.unit(1.7, "meters"),
  10426. default: true
  10427. },
  10428. {
  10429. name: "Macro",
  10430. height: math.unit(80, "meters")
  10431. },
  10432. {
  10433. name: "Macro+",
  10434. height: math.unit(500, "meters")
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10440. {
  10441. front: {
  10442. height: math.unit(6, "feet"),
  10443. weight: math.unit(150, "lb"),
  10444. name: "Front",
  10445. image: {
  10446. source: "./media/characters/zyas/front.svg",
  10447. extra: 1180 / 1120,
  10448. bottom: 0.045
  10449. }
  10450. },
  10451. },
  10452. [
  10453. {
  10454. name: "Normal",
  10455. height: math.unit(10, "feet"),
  10456. default: true
  10457. },
  10458. {
  10459. name: "Macro",
  10460. height: math.unit(500, "feet")
  10461. },
  10462. {
  10463. name: "Megamacro",
  10464. height: math.unit(5, "miles")
  10465. },
  10466. {
  10467. name: "Teramacro",
  10468. height: math.unit(150000, "miles")
  10469. },
  10470. ]
  10471. ))
  10472. characterMakers.push(() => makeCharacter(
  10473. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10474. {
  10475. front: {
  10476. height: math.unit(6, "feet"),
  10477. weight: math.unit(150, "lb"),
  10478. name: "Front",
  10479. image: {
  10480. source: "./media/characters/cuon/front.svg",
  10481. extra: 1390 / 1320,
  10482. bottom: 0.008
  10483. }
  10484. },
  10485. },
  10486. [
  10487. {
  10488. name: "Micro",
  10489. height: math.unit(3, "inches")
  10490. },
  10491. {
  10492. name: "Normal",
  10493. height: math.unit(18 + 9 / 12, "feet"),
  10494. default: true
  10495. },
  10496. {
  10497. name: "Macro",
  10498. height: math.unit(360, "feet")
  10499. },
  10500. {
  10501. name: "Megamacro",
  10502. height: math.unit(360, "miles")
  10503. },
  10504. ]
  10505. ))
  10506. characterMakers.push(() => makeCharacter(
  10507. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10508. {
  10509. front: {
  10510. height: math.unit(2.4, "meters"),
  10511. weight: math.unit(70, "kg"),
  10512. name: "Front",
  10513. image: {
  10514. source: "./media/characters/nyanuxk/front.svg",
  10515. extra: 1172 / 1084,
  10516. bottom: 0.065
  10517. }
  10518. },
  10519. side: {
  10520. height: math.unit(2.4, "meters"),
  10521. weight: math.unit(70, "kg"),
  10522. name: "Side",
  10523. image: {
  10524. source: "./media/characters/nyanuxk/side.svg",
  10525. extra: 1190 / 1132,
  10526. bottom: 0.007
  10527. }
  10528. },
  10529. back: {
  10530. height: math.unit(2.4, "meters"),
  10531. weight: math.unit(70, "kg"),
  10532. name: "Back",
  10533. image: {
  10534. source: "./media/characters/nyanuxk/back.svg",
  10535. extra: 1200 / 1141,
  10536. bottom: 0.015
  10537. }
  10538. },
  10539. foot: {
  10540. height: math.unit(0.52, "meters"),
  10541. name: "Foot",
  10542. image: {
  10543. source: "./media/characters/nyanuxk/foot.svg"
  10544. }
  10545. },
  10546. },
  10547. [
  10548. {
  10549. name: "Micro",
  10550. height: math.unit(2, "cm")
  10551. },
  10552. {
  10553. name: "Normal",
  10554. height: math.unit(2.4, "meters"),
  10555. default: true
  10556. },
  10557. {
  10558. name: "Smaller Macro",
  10559. height: math.unit(120, "meters")
  10560. },
  10561. {
  10562. name: "Bigger Macro",
  10563. height: math.unit(1.2, "km")
  10564. },
  10565. {
  10566. name: "Megamacro",
  10567. height: math.unit(15, "kilometers")
  10568. },
  10569. {
  10570. name: "Gigamacro",
  10571. height: math.unit(2000, "km")
  10572. },
  10573. {
  10574. name: "Teramacro",
  10575. height: math.unit(500000, "km")
  10576. },
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10581. {
  10582. side: {
  10583. height: math.unit(6, "feet"),
  10584. name: "Side",
  10585. image: {
  10586. source: "./media/characters/ailbhe/side.svg",
  10587. extra: 757 / 464,
  10588. bottom: 0.041
  10589. }
  10590. },
  10591. },
  10592. [
  10593. {
  10594. name: "Normal",
  10595. height: math.unit(1.07, "meters"),
  10596. default: true
  10597. },
  10598. ]
  10599. ))
  10600. characterMakers.push(() => makeCharacter(
  10601. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10602. {
  10603. front: {
  10604. height: math.unit(6, "feet"),
  10605. weight: math.unit(120, "kg"),
  10606. name: "Front",
  10607. image: {
  10608. source: "./media/characters/zevulfius/front.svg",
  10609. extra: 965 / 903
  10610. }
  10611. },
  10612. side: {
  10613. height: math.unit(6, "feet"),
  10614. weight: math.unit(120, "kg"),
  10615. name: "Side",
  10616. image: {
  10617. source: "./media/characters/zevulfius/side.svg",
  10618. extra: 939 / 900
  10619. }
  10620. },
  10621. back: {
  10622. height: math.unit(6, "feet"),
  10623. weight: math.unit(120, "kg"),
  10624. name: "Back",
  10625. image: {
  10626. source: "./media/characters/zevulfius/back.svg",
  10627. extra: 918 / 854,
  10628. bottom: 0.005
  10629. }
  10630. },
  10631. foot: {
  10632. height: math.unit(6 / 3.72, "feet"),
  10633. name: "Foot",
  10634. image: {
  10635. source: "./media/characters/zevulfius/foot.svg"
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Macro",
  10642. height: math.unit(750, "meters")
  10643. },
  10644. {
  10645. name: "Megamacro",
  10646. height: math.unit(20, "km"),
  10647. default: true
  10648. },
  10649. {
  10650. name: "Gigamacro",
  10651. height: math.unit(2000, "km")
  10652. },
  10653. {
  10654. name: "Teramacro",
  10655. height: math.unit(250000, "km")
  10656. },
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10661. {
  10662. front: {
  10663. height: math.unit(100, "feet"),
  10664. weight: math.unit(350, "kg"),
  10665. name: "Front",
  10666. image: {
  10667. source: "./media/characters/rikes/front.svg",
  10668. extra: 1565 / 1483,
  10669. bottom: 0.017
  10670. }
  10671. },
  10672. },
  10673. [
  10674. {
  10675. name: "Macro",
  10676. height: math.unit(100, "feet"),
  10677. default: true
  10678. },
  10679. ]
  10680. ))
  10681. characterMakers.push(() => makeCharacter(
  10682. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10683. {
  10684. front: {
  10685. height: math.unit(8, "feet"),
  10686. weight: math.unit(356, "lb"),
  10687. name: "Front",
  10688. image: {
  10689. source: "./media/characters/adam-silver-mane/front.svg",
  10690. extra: 1036/937,
  10691. bottom: 63/1099
  10692. }
  10693. },
  10694. side: {
  10695. height: math.unit(8, "feet"),
  10696. weight: math.unit(356, "lb"),
  10697. name: "Side",
  10698. image: {
  10699. source: "./media/characters/adam-silver-mane/side.svg",
  10700. extra: 997/901,
  10701. bottom: 59/1056
  10702. }
  10703. },
  10704. frontNsfw: {
  10705. height: math.unit(8, "feet"),
  10706. weight: math.unit(356, "lb"),
  10707. name: "Front (NSFW)",
  10708. image: {
  10709. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10710. extra: 1036/937,
  10711. bottom: 63/1099
  10712. }
  10713. },
  10714. sideNsfw: {
  10715. height: math.unit(8, "feet"),
  10716. weight: math.unit(356, "lb"),
  10717. name: "Side (NSFW)",
  10718. image: {
  10719. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10720. extra: 997/901,
  10721. bottom: 59/1056
  10722. }
  10723. },
  10724. dick: {
  10725. height: math.unit(2.1, "feet"),
  10726. name: "Dick",
  10727. image: {
  10728. source: "./media/characters/adam-silver-mane/dick.svg"
  10729. }
  10730. },
  10731. taur: {
  10732. height: math.unit(16, "feet"),
  10733. weight: math.unit(1500, "kg"),
  10734. name: "Taur",
  10735. image: {
  10736. source: "./media/characters/adam-silver-mane/taur.svg",
  10737. extra: 1713 / 1571,
  10738. bottom: 0.01
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Normal",
  10745. height: math.unit(8, "feet")
  10746. },
  10747. {
  10748. name: "Minimacro",
  10749. height: math.unit(80, "feet")
  10750. },
  10751. {
  10752. name: "MDA",
  10753. height: math.unit(80, "meters")
  10754. },
  10755. {
  10756. name: "Macro",
  10757. height: math.unit(800, "feet"),
  10758. default: true
  10759. },
  10760. {
  10761. name: "Megamacro",
  10762. height: math.unit(8000, "feet")
  10763. },
  10764. {
  10765. name: "Gigamacro",
  10766. height: math.unit(800, "miles")
  10767. },
  10768. {
  10769. name: "Teramacro",
  10770. height: math.unit(80000, "miles")
  10771. },
  10772. {
  10773. name: "Celestial",
  10774. height: math.unit(8e6, "miles")
  10775. },
  10776. {
  10777. name: "Star Dragon",
  10778. height: math.unit(800000, "parsecs")
  10779. },
  10780. {
  10781. name: "Godly",
  10782. height: math.unit(800, "teraparsecs")
  10783. },
  10784. ]
  10785. ))
  10786. characterMakers.push(() => makeCharacter(
  10787. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10788. {
  10789. front: {
  10790. height: math.unit(6, "feet"),
  10791. weight: math.unit(150, "lb"),
  10792. name: "Front",
  10793. image: {
  10794. source: "./media/characters/ky'owin/front.svg",
  10795. extra: 3888 / 3068,
  10796. bottom: 0.015
  10797. }
  10798. },
  10799. },
  10800. [
  10801. {
  10802. name: "Normal",
  10803. height: math.unit(6 + 8 / 12, "feet")
  10804. },
  10805. {
  10806. name: "Large",
  10807. height: math.unit(68, "feet")
  10808. },
  10809. {
  10810. name: "Macro",
  10811. height: math.unit(132, "feet")
  10812. },
  10813. {
  10814. name: "Macro+",
  10815. height: math.unit(340, "feet")
  10816. },
  10817. {
  10818. name: "Macro++",
  10819. height: math.unit(680, "feet"),
  10820. default: true
  10821. },
  10822. {
  10823. name: "Megamacro",
  10824. height: math.unit(1, "mile")
  10825. },
  10826. {
  10827. name: "Megamacro+",
  10828. height: math.unit(10, "miles")
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10834. {
  10835. front: {
  10836. height: math.unit(4, "feet"),
  10837. weight: math.unit(50, "lb"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/mal/front.svg",
  10841. extra: 785 / 724,
  10842. bottom: 0.07
  10843. }
  10844. },
  10845. },
  10846. [
  10847. {
  10848. name: "Micro",
  10849. height: math.unit(4, "inches")
  10850. },
  10851. {
  10852. name: "Normal",
  10853. height: math.unit(4, "feet"),
  10854. default: true
  10855. },
  10856. {
  10857. name: "Macro",
  10858. height: math.unit(200, "feet")
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10864. {
  10865. front: {
  10866. height: math.unit(6, "feet"),
  10867. weight: math.unit(150, "lb"),
  10868. name: "Front",
  10869. image: {
  10870. source: "./media/characters/jordan-deware/front.svg",
  10871. extra: 1191 / 1012
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Nano",
  10878. height: math.unit(0.01, "mm")
  10879. },
  10880. {
  10881. name: "Minimicro",
  10882. height: math.unit(1, "mm")
  10883. },
  10884. {
  10885. name: "Micro",
  10886. height: math.unit(0.5, "inches")
  10887. },
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(4, "feet"),
  10891. default: true
  10892. },
  10893. {
  10894. name: "Minimacro",
  10895. height: math.unit(40, "meters")
  10896. },
  10897. {
  10898. name: "Small Macro",
  10899. height: math.unit(400, "meters")
  10900. },
  10901. {
  10902. name: "Macro",
  10903. height: math.unit(4, "miles")
  10904. },
  10905. {
  10906. name: "Megamacro",
  10907. height: math.unit(40, "miles")
  10908. },
  10909. {
  10910. name: "Megamacro+",
  10911. height: math.unit(400, "miles")
  10912. },
  10913. {
  10914. name: "Gigamacro",
  10915. height: math.unit(400000, "miles")
  10916. },
  10917. ]
  10918. ))
  10919. characterMakers.push(() => makeCharacter(
  10920. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10921. {
  10922. side: {
  10923. height: math.unit(6, "feet"),
  10924. weight: math.unit(150, "lb"),
  10925. name: "Side",
  10926. image: {
  10927. source: "./media/characters/kimiko/side.svg",
  10928. extra: 600 / 358
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Normal",
  10935. height: math.unit(15, "feet"),
  10936. default: true
  10937. },
  10938. {
  10939. name: "Macro",
  10940. height: math.unit(220, "feet")
  10941. },
  10942. {
  10943. name: "Macro+",
  10944. height: math.unit(1450, "feet")
  10945. },
  10946. {
  10947. name: "Megamacro",
  10948. height: math.unit(11500, "feet")
  10949. },
  10950. {
  10951. name: "Gigamacro",
  10952. height: math.unit(9500, "miles")
  10953. },
  10954. {
  10955. name: "Teramacro",
  10956. height: math.unit(2208005005, "miles")
  10957. },
  10958. {
  10959. name: "Examacro",
  10960. height: math.unit(2750, "parsecs")
  10961. },
  10962. {
  10963. name: "Zettamacro",
  10964. height: math.unit(101500, "parsecs")
  10965. },
  10966. ]
  10967. ))
  10968. characterMakers.push(() => makeCharacter(
  10969. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10970. {
  10971. front: {
  10972. height: math.unit(6, "feet"),
  10973. weight: math.unit(70, "kg"),
  10974. name: "Front",
  10975. image: {
  10976. source: "./media/characters/andrew-sleepy/front.svg"
  10977. }
  10978. },
  10979. side: {
  10980. height: math.unit(6, "feet"),
  10981. weight: math.unit(70, "kg"),
  10982. name: "Side",
  10983. image: {
  10984. source: "./media/characters/andrew-sleepy/side.svg"
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Micro",
  10991. height: math.unit(1, "mm"),
  10992. default: true
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10998. {
  10999. front: {
  11000. height: math.unit(6, "feet"),
  11001. weight: math.unit(150, "lb"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/judio/front.svg",
  11005. extra: 1258 / 1110
  11006. }
  11007. },
  11008. },
  11009. [
  11010. {
  11011. name: "Normal",
  11012. height: math.unit(5 + 6 / 12, "feet")
  11013. },
  11014. {
  11015. name: "Macro",
  11016. height: math.unit(1000, "feet"),
  11017. default: true
  11018. },
  11019. {
  11020. name: "Megamacro",
  11021. height: math.unit(10, "miles")
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11027. {
  11028. front: {
  11029. height: math.unit(6, "feet"),
  11030. weight: math.unit(68, "kg"),
  11031. name: "Front",
  11032. image: {
  11033. source: "./media/characters/nomaxice/front.svg",
  11034. extra: 1498 / 1073,
  11035. bottom: 0.075
  11036. }
  11037. },
  11038. foot: {
  11039. height: math.unit(1.1, "feet"),
  11040. name: "Foot",
  11041. image: {
  11042. source: "./media/characters/nomaxice/foot.svg"
  11043. }
  11044. },
  11045. },
  11046. [
  11047. {
  11048. name: "Micro",
  11049. height: math.unit(8, "cm")
  11050. },
  11051. {
  11052. name: "Norm",
  11053. height: math.unit(1.82, "m")
  11054. },
  11055. {
  11056. name: "Norm+",
  11057. height: math.unit(8.8, "feet")
  11058. },
  11059. {
  11060. name: "Big",
  11061. height: math.unit(8, "meters"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Macro",
  11066. height: math.unit(18, "meters")
  11067. },
  11068. {
  11069. name: "Macro+",
  11070. height: math.unit(88, "meters")
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11076. {
  11077. front: {
  11078. height: math.unit(12, "feet"),
  11079. weight: math.unit(1.5, "tons"),
  11080. name: "Front",
  11081. image: {
  11082. source: "./media/characters/dydros/front.svg",
  11083. extra: 863 / 800,
  11084. bottom: 0.015
  11085. }
  11086. },
  11087. back: {
  11088. height: math.unit(12, "feet"),
  11089. weight: math.unit(1.5, "tons"),
  11090. name: "Back",
  11091. image: {
  11092. source: "./media/characters/dydros/back.svg",
  11093. extra: 900 / 843,
  11094. bottom: 0.005
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Normal",
  11101. height: math.unit(12, "feet"),
  11102. default: true
  11103. },
  11104. ]
  11105. ))
  11106. characterMakers.push(() => makeCharacter(
  11107. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11108. {
  11109. front: {
  11110. height: math.unit(6, "feet"),
  11111. weight: math.unit(100, "kg"),
  11112. name: "Front",
  11113. image: {
  11114. source: "./media/characters/riggi/front.svg",
  11115. extra: 5787 / 5303
  11116. }
  11117. },
  11118. hyper: {
  11119. height: math.unit(6 * 5 / 3, "feet"),
  11120. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11121. name: "Hyper",
  11122. image: {
  11123. source: "./media/characters/riggi/hyper.svg",
  11124. extra: 3595 / 3485
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Small Macro",
  11131. height: math.unit(50, "feet")
  11132. },
  11133. {
  11134. name: "Default",
  11135. height: math.unit(200, "feet"),
  11136. default: true
  11137. },
  11138. {
  11139. name: "Loom",
  11140. height: math.unit(10000, "feet")
  11141. },
  11142. {
  11143. name: "Cruising Altitude",
  11144. height: math.unit(30000, "feet")
  11145. },
  11146. {
  11147. name: "Megamacro",
  11148. height: math.unit(100, "miles")
  11149. },
  11150. {
  11151. name: "Continent Sized",
  11152. height: math.unit(2800, "miles")
  11153. },
  11154. {
  11155. name: "Earth Sized",
  11156. height: math.unit(8000, "miles")
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11162. {
  11163. front: {
  11164. height: math.unit(6, "feet"),
  11165. weight: math.unit(250, "lb"),
  11166. name: "Front",
  11167. image: {
  11168. source: "./media/characters/alexi/front.svg",
  11169. extra: 3483 / 3291,
  11170. bottom: 0.04
  11171. }
  11172. },
  11173. back: {
  11174. height: math.unit(6, "feet"),
  11175. weight: math.unit(250, "lb"),
  11176. name: "Back",
  11177. image: {
  11178. source: "./media/characters/alexi/back.svg",
  11179. extra: 3533 / 3356,
  11180. bottom: 0.021
  11181. }
  11182. },
  11183. frontTransforming: {
  11184. height: math.unit(8.58, "feet"),
  11185. weight: math.unit(1300, "lb"),
  11186. name: "Transforming",
  11187. image: {
  11188. source: "./media/characters/alexi/front-transforming.svg",
  11189. extra: 437 / 409,
  11190. bottom: 19 / 458.66
  11191. }
  11192. },
  11193. frontTransformed: {
  11194. height: math.unit(12.5, "feet"),
  11195. weight: math.unit(4000, "lb"),
  11196. name: "Transformed",
  11197. image: {
  11198. source: "./media/characters/alexi/front-transformed.svg",
  11199. extra: 639 / 614,
  11200. bottom: 30.55 / 671
  11201. }
  11202. },
  11203. },
  11204. [
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(14, "feet"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Minimacro",
  11212. height: math.unit(30, "meters")
  11213. },
  11214. {
  11215. name: "Macro",
  11216. height: math.unit(500, "meters")
  11217. },
  11218. {
  11219. name: "Megamacro",
  11220. height: math.unit(9000, "km")
  11221. },
  11222. {
  11223. name: "Teramacro",
  11224. height: math.unit(384000, "km")
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11230. {
  11231. front: {
  11232. height: math.unit(6, "feet"),
  11233. weight: math.unit(150, "lb"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/kayroo/front.svg",
  11237. extra: 1153 / 1038,
  11238. bottom: 0.06
  11239. }
  11240. },
  11241. foot: {
  11242. height: math.unit(6, "feet"),
  11243. weight: math.unit(150, "lb"),
  11244. name: "Foot",
  11245. image: {
  11246. source: "./media/characters/kayroo/foot.svg"
  11247. }
  11248. },
  11249. },
  11250. [
  11251. {
  11252. name: "Normal",
  11253. height: math.unit(8, "feet"),
  11254. default: true
  11255. },
  11256. {
  11257. name: "Minimacro",
  11258. height: math.unit(250, "feet")
  11259. },
  11260. {
  11261. name: "Macro",
  11262. height: math.unit(2800, "feet")
  11263. },
  11264. {
  11265. name: "Megamacro",
  11266. height: math.unit(5200, "feet")
  11267. },
  11268. {
  11269. name: "Gigamacro",
  11270. height: math.unit(27000, "feet")
  11271. },
  11272. {
  11273. name: "Omega",
  11274. height: math.unit(45000, "feet")
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11280. {
  11281. front: {
  11282. height: math.unit(18, "feet"),
  11283. weight: math.unit(5800, "lb"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/rhys/front.svg",
  11287. extra: 3386 / 3090,
  11288. bottom: 0.07
  11289. }
  11290. },
  11291. },
  11292. [
  11293. {
  11294. name: "Normal",
  11295. height: math.unit(18, "feet"),
  11296. default: true
  11297. },
  11298. {
  11299. name: "Working Size",
  11300. height: math.unit(200, "feet")
  11301. },
  11302. {
  11303. name: "Demolition Size",
  11304. height: math.unit(2000, "feet")
  11305. },
  11306. {
  11307. name: "Maximum Licensed Size",
  11308. height: math.unit(5, "miles")
  11309. },
  11310. {
  11311. name: "Maximum Observed Size",
  11312. height: math.unit(10, "yottameters")
  11313. },
  11314. ]
  11315. ))
  11316. characterMakers.push(() => makeCharacter(
  11317. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11318. {
  11319. front: {
  11320. height: math.unit(6, "feet"),
  11321. weight: math.unit(250, "lb"),
  11322. name: "Front",
  11323. image: {
  11324. source: "./media/characters/toto/front.svg",
  11325. extra: 527 / 479,
  11326. bottom: 0.05
  11327. }
  11328. },
  11329. },
  11330. [
  11331. {
  11332. name: "Micro",
  11333. height: math.unit(3, "feet")
  11334. },
  11335. {
  11336. name: "Normal",
  11337. height: math.unit(10, "feet")
  11338. },
  11339. {
  11340. name: "Macro",
  11341. height: math.unit(150, "feet"),
  11342. default: true
  11343. },
  11344. {
  11345. name: "Megamacro",
  11346. height: math.unit(1200, "feet")
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "King", species: ["lion"], tags: ["anthro"] },
  11352. {
  11353. back: {
  11354. height: math.unit(6, "feet"),
  11355. weight: math.unit(150, "lb"),
  11356. name: "Back",
  11357. image: {
  11358. source: "./media/characters/king/back.svg"
  11359. }
  11360. },
  11361. },
  11362. [
  11363. {
  11364. name: "Micro",
  11365. height: math.unit(2, "inches")
  11366. },
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(8, "feet")
  11370. },
  11371. {
  11372. name: "Macro",
  11373. height: math.unit(200, "feet"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Megamacro",
  11378. height: math.unit(50, "miles")
  11379. },
  11380. ]
  11381. ))
  11382. characterMakers.push(() => makeCharacter(
  11383. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11384. {
  11385. front: {
  11386. height: math.unit(11, "feet"),
  11387. weight: math.unit(1400, "lb"),
  11388. name: "Front",
  11389. image: {
  11390. source: "./media/characters/cordite/front.svg",
  11391. extra: 1919/1827,
  11392. bottom: 40/1959
  11393. }
  11394. },
  11395. side: {
  11396. height: math.unit(11, "feet"),
  11397. weight: math.unit(1400, "lb"),
  11398. name: "Side",
  11399. image: {
  11400. source: "./media/characters/cordite/side.svg",
  11401. extra: 1908/1793,
  11402. bottom: 38/1946
  11403. }
  11404. },
  11405. back: {
  11406. height: math.unit(11, "feet"),
  11407. weight: math.unit(1400, "lb"),
  11408. name: "Back",
  11409. image: {
  11410. source: "./media/characters/cordite/back.svg",
  11411. extra: 1938/1837,
  11412. bottom: 10/1948
  11413. }
  11414. },
  11415. feral: {
  11416. height: math.unit(2, "feet"),
  11417. weight: math.unit(90, "lb"),
  11418. name: "Feral",
  11419. image: {
  11420. source: "./media/characters/cordite/feral.svg",
  11421. extra: 1260 / 755,
  11422. bottom: 0.05
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(11, "feet"),
  11430. default: true
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11436. {
  11437. front: {
  11438. height: math.unit(6, "feet"),
  11439. weight: math.unit(150, "lb"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/pianostrong/front.svg",
  11443. extra: 6577 / 6254,
  11444. bottom: 0.02
  11445. }
  11446. },
  11447. side: {
  11448. height: math.unit(6, "feet"),
  11449. weight: math.unit(150, "lb"),
  11450. name: "Side",
  11451. image: {
  11452. source: "./media/characters/pianostrong/side.svg",
  11453. extra: 6106 / 5730
  11454. }
  11455. },
  11456. back: {
  11457. height: math.unit(6, "feet"),
  11458. weight: math.unit(150, "lb"),
  11459. name: "Back",
  11460. image: {
  11461. source: "./media/characters/pianostrong/back.svg",
  11462. extra: 6085 / 5733,
  11463. bottom: 0.01
  11464. }
  11465. },
  11466. },
  11467. [
  11468. {
  11469. name: "Macro",
  11470. height: math.unit(100, "feet")
  11471. },
  11472. {
  11473. name: "Macro+",
  11474. height: math.unit(300, "feet"),
  11475. default: true
  11476. },
  11477. {
  11478. name: "Macro++",
  11479. height: math.unit(1000, "feet")
  11480. },
  11481. ]
  11482. ))
  11483. characterMakers.push(() => makeCharacter(
  11484. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11485. {
  11486. front: {
  11487. height: math.unit(6, "feet"),
  11488. weight: math.unit(150, "lb"),
  11489. name: "Front",
  11490. image: {
  11491. source: "./media/characters/kona/front.svg",
  11492. extra: 2960 / 2629,
  11493. bottom: 0.005
  11494. }
  11495. },
  11496. },
  11497. [
  11498. {
  11499. name: "Normal",
  11500. height: math.unit(11 + 8 / 12, "feet")
  11501. },
  11502. {
  11503. name: "Macro",
  11504. height: math.unit(850, "feet"),
  11505. default: true
  11506. },
  11507. {
  11508. name: "Macro+",
  11509. height: math.unit(1.5, "km"),
  11510. default: true
  11511. },
  11512. {
  11513. name: "Megamacro",
  11514. height: math.unit(80, "miles")
  11515. },
  11516. {
  11517. name: "Gigamacro",
  11518. height: math.unit(3500, "miles")
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11524. {
  11525. side: {
  11526. height: math.unit(1.9, "meters"),
  11527. weight: math.unit(326, "kg"),
  11528. name: "Side",
  11529. image: {
  11530. source: "./media/characters/levi/side.svg",
  11531. extra: 1704 / 1334,
  11532. bottom: 0.02
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(1.9, "meters"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Macro",
  11544. height: math.unit(20, "meters")
  11545. },
  11546. {
  11547. name: "Macro+",
  11548. height: math.unit(200, "meters")
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(2, "km")
  11553. },
  11554. {
  11555. name: "Megamacro+",
  11556. height: math.unit(20, "km")
  11557. },
  11558. {
  11559. name: "Gigamacro",
  11560. height: math.unit(2500, "km")
  11561. },
  11562. {
  11563. name: "Gigamacro+",
  11564. height: math.unit(120000, "km")
  11565. },
  11566. {
  11567. name: "Teramacro",
  11568. height: math.unit(7.77e6, "km")
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11574. {
  11575. front: {
  11576. height: math.unit(6 + 4/12, "feet"),
  11577. weight: math.unit(190, "lb"),
  11578. name: "Front",
  11579. image: {
  11580. source: "./media/characters/bmc/front.svg",
  11581. extra: 1626/1472,
  11582. bottom: 79/1705
  11583. }
  11584. },
  11585. back: {
  11586. height: math.unit(6 + 4/12, "feet"),
  11587. weight: math.unit(190, "lb"),
  11588. name: "Back",
  11589. image: {
  11590. source: "./media/characters/bmc/back.svg",
  11591. extra: 1640/1479,
  11592. bottom: 45/1685
  11593. }
  11594. },
  11595. frontArmor: {
  11596. height: math.unit(6 + 4/12, "feet"),
  11597. weight: math.unit(190, "lb"),
  11598. name: "Front-armor",
  11599. image: {
  11600. source: "./media/characters/bmc/front-armor.svg",
  11601. extra: 1538/1468,
  11602. bottom: 79/1617
  11603. }
  11604. },
  11605. },
  11606. [
  11607. {
  11608. name: "Human-sized",
  11609. height: math.unit(6 + 4 / 12, "feet")
  11610. },
  11611. {
  11612. name: "Interactive Size",
  11613. height: math.unit(25, "feet")
  11614. },
  11615. {
  11616. name: "Small",
  11617. height: math.unit(250, "feet")
  11618. },
  11619. {
  11620. name: "Normal",
  11621. height: math.unit(1250, "feet"),
  11622. default: true
  11623. },
  11624. {
  11625. name: "Good Day",
  11626. height: math.unit(88, "miles")
  11627. },
  11628. {
  11629. name: "Largest Measured Size",
  11630. height: math.unit(105.960, "galaxies")
  11631. },
  11632. ]
  11633. ))
  11634. characterMakers.push(() => makeCharacter(
  11635. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11636. {
  11637. front: {
  11638. height: math.unit(20, "feet"),
  11639. weight: math.unit(2016, "kg"),
  11640. name: "Front",
  11641. image: {
  11642. source: "./media/characters/sven-the-kaiju/front.svg",
  11643. extra: 1277/1250,
  11644. bottom: 35/1312
  11645. }
  11646. },
  11647. mouth: {
  11648. height: math.unit(1.85, "feet"),
  11649. name: "Mouth",
  11650. image: {
  11651. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11652. }
  11653. },
  11654. },
  11655. [
  11656. {
  11657. name: "Fairy",
  11658. height: math.unit(6, "inches")
  11659. },
  11660. {
  11661. name: "Normal",
  11662. height: math.unit(20, "feet"),
  11663. default: true
  11664. },
  11665. {
  11666. name: "Rampage",
  11667. height: math.unit(200, "feet")
  11668. },
  11669. {
  11670. name: "Archfey Forest Guardian",
  11671. height: math.unit(1, "mile")
  11672. },
  11673. ]
  11674. ))
  11675. characterMakers.push(() => makeCharacter(
  11676. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11677. {
  11678. front: {
  11679. height: math.unit(4, "meters"),
  11680. weight: math.unit(2, "tons"),
  11681. name: "Front",
  11682. image: {
  11683. source: "./media/characters/marik/front.svg",
  11684. extra: 1057 / 1003,
  11685. bottom: 0.08
  11686. }
  11687. },
  11688. },
  11689. [
  11690. {
  11691. name: "Normal",
  11692. height: math.unit(4, "meters"),
  11693. default: true
  11694. },
  11695. {
  11696. name: "Macro",
  11697. height: math.unit(20, "meters")
  11698. },
  11699. {
  11700. name: "Megamacro",
  11701. height: math.unit(50, "km")
  11702. },
  11703. {
  11704. name: "Gigamacro",
  11705. height: math.unit(100, "km")
  11706. },
  11707. {
  11708. name: "Alpha Macro",
  11709. height: math.unit(7.88e7, "yottameters")
  11710. },
  11711. ]
  11712. ))
  11713. characterMakers.push(() => makeCharacter(
  11714. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11715. {
  11716. front: {
  11717. height: math.unit(6, "feet"),
  11718. weight: math.unit(110, "lb"),
  11719. name: "Front",
  11720. image: {
  11721. source: "./media/characters/mel/front.svg",
  11722. extra: 736 / 617,
  11723. bottom: 0.017
  11724. }
  11725. },
  11726. },
  11727. [
  11728. {
  11729. name: "Pico",
  11730. height: math.unit(3, "pm")
  11731. },
  11732. {
  11733. name: "Nano",
  11734. height: math.unit(3, "nm")
  11735. },
  11736. {
  11737. name: "Micro",
  11738. height: math.unit(0.3, "mm"),
  11739. default: true
  11740. },
  11741. {
  11742. name: "Micro+",
  11743. height: math.unit(3, "mm")
  11744. },
  11745. {
  11746. name: "Normal",
  11747. height: math.unit(5 + 10.5 / 12, "feet")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11753. {
  11754. kaiju: {
  11755. height: math.unit(1.75, "meters"),
  11756. weight: math.unit(55, "kg"),
  11757. name: "Kaiju",
  11758. image: {
  11759. source: "./media/characters/lykonous/kaiju.svg",
  11760. extra: 1055 / 946,
  11761. bottom: 0.135
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Normal",
  11768. height: math.unit(2.5, "meters"),
  11769. default: true
  11770. },
  11771. {
  11772. name: "Kaiju Dragon",
  11773. height: math.unit(60, "meters")
  11774. },
  11775. {
  11776. name: "Mega Kaiju",
  11777. height: math.unit(120, "km")
  11778. },
  11779. {
  11780. name: "Giga Kaiju",
  11781. height: math.unit(200, "megameters")
  11782. },
  11783. {
  11784. name: "Terra Kaiju",
  11785. height: math.unit(400, "gigameters")
  11786. },
  11787. {
  11788. name: "Kaiju Dragon God",
  11789. height: math.unit(13000, "exaparsecs")
  11790. },
  11791. ]
  11792. ))
  11793. characterMakers.push(() => makeCharacter(
  11794. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11795. {
  11796. front: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Front",
  11800. image: {
  11801. source: "./media/characters/blü/front.svg",
  11802. extra: 1883 / 1564,
  11803. bottom: 0.031
  11804. }
  11805. },
  11806. },
  11807. [
  11808. {
  11809. name: "Normal",
  11810. height: math.unit(13, "feet"),
  11811. default: true
  11812. },
  11813. {
  11814. name: "Big Boi",
  11815. height: math.unit(150, "meters")
  11816. },
  11817. {
  11818. name: "Mini Stomper",
  11819. height: math.unit(300, "meters")
  11820. },
  11821. {
  11822. name: "Macro",
  11823. height: math.unit(1000, "meters")
  11824. },
  11825. {
  11826. name: "Megamacro",
  11827. height: math.unit(11000, "meters")
  11828. },
  11829. {
  11830. name: "Gigamacro",
  11831. height: math.unit(11000, "km")
  11832. },
  11833. {
  11834. name: "Teramacro",
  11835. height: math.unit(420000, "km")
  11836. },
  11837. {
  11838. name: "Examacro",
  11839. height: math.unit(120, "parsecs")
  11840. },
  11841. {
  11842. name: "God Tho",
  11843. height: math.unit(98000000000, "parsecs")
  11844. },
  11845. ]
  11846. ))
  11847. characterMakers.push(() => makeCharacter(
  11848. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11849. {
  11850. taurFront: {
  11851. height: math.unit(6, "feet"),
  11852. weight: math.unit(200, "lb"),
  11853. name: "Taur (Front)",
  11854. image: {
  11855. source: "./media/characters/scales/taur-front.svg",
  11856. extra: 1,
  11857. bottom: 0.05
  11858. }
  11859. },
  11860. taurBack: {
  11861. height: math.unit(6, "feet"),
  11862. weight: math.unit(200, "lb"),
  11863. name: "Taur (Back)",
  11864. image: {
  11865. source: "./media/characters/scales/taur-back.svg",
  11866. extra: 1,
  11867. bottom: 0.08
  11868. }
  11869. },
  11870. anthro: {
  11871. height: math.unit(6 * 7 / 12, "feet"),
  11872. weight: math.unit(100, "lb"),
  11873. name: "Anthro",
  11874. image: {
  11875. source: "./media/characters/scales/anthro.svg",
  11876. extra: 1,
  11877. bottom: 0.06
  11878. }
  11879. },
  11880. },
  11881. [
  11882. {
  11883. name: "Normal",
  11884. height: math.unit(12, "feet"),
  11885. default: true
  11886. },
  11887. ]
  11888. ))
  11889. characterMakers.push(() => makeCharacter(
  11890. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11891. {
  11892. front: {
  11893. height: math.unit(6, "feet"),
  11894. weight: math.unit(150, "lb"),
  11895. name: "Front",
  11896. image: {
  11897. source: "./media/characters/koragos/front.svg",
  11898. extra: 841 / 794,
  11899. bottom: 0.035
  11900. }
  11901. },
  11902. back: {
  11903. height: math.unit(6, "feet"),
  11904. weight: math.unit(150, "lb"),
  11905. name: "Back",
  11906. image: {
  11907. source: "./media/characters/koragos/back.svg",
  11908. extra: 841 / 810,
  11909. bottom: 0.022
  11910. }
  11911. },
  11912. },
  11913. [
  11914. {
  11915. name: "Normal",
  11916. height: math.unit(6 + 11 / 12, "feet"),
  11917. default: true
  11918. },
  11919. {
  11920. name: "Macro",
  11921. height: math.unit(490, "feet")
  11922. },
  11923. {
  11924. name: "Megamacro",
  11925. height: math.unit(10, "miles")
  11926. },
  11927. {
  11928. name: "Gigamacro",
  11929. height: math.unit(50, "miles")
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(6, "feet"),
  11938. weight: math.unit(250, "lb"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/xylrem/front.svg",
  11942. extra: 3323 / 3050,
  11943. bottom: 0.065
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Micro",
  11950. height: math.unit(4, "feet")
  11951. },
  11952. {
  11953. name: "Normal",
  11954. height: math.unit(16, "feet"),
  11955. default: true
  11956. },
  11957. {
  11958. name: "Macro",
  11959. height: math.unit(2720, "feet")
  11960. },
  11961. {
  11962. name: "Megamacro",
  11963. height: math.unit(25000, "miles")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11969. {
  11970. front: {
  11971. height: math.unit(8, "feet"),
  11972. weight: math.unit(250, "kg"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/ikideru/front.svg",
  11976. extra: 930 / 870,
  11977. bottom: 0.087
  11978. }
  11979. },
  11980. back: {
  11981. height: math.unit(8, "feet"),
  11982. weight: math.unit(250, "kg"),
  11983. name: "Back",
  11984. image: {
  11985. source: "./media/characters/ikideru/back.svg",
  11986. extra: 919 / 852,
  11987. bottom: 0.055
  11988. }
  11989. },
  11990. },
  11991. [
  11992. {
  11993. name: "Rare",
  11994. height: math.unit(8, "feet"),
  11995. default: true
  11996. },
  11997. {
  11998. name: "Playful Loom",
  11999. height: math.unit(80, "feet")
  12000. },
  12001. {
  12002. name: "City Leaner",
  12003. height: math.unit(230, "feet")
  12004. },
  12005. {
  12006. name: "Megamacro",
  12007. height: math.unit(2500, "feet")
  12008. },
  12009. {
  12010. name: "Gigamacro",
  12011. height: math.unit(26400, "feet")
  12012. },
  12013. {
  12014. name: "Tectonic Shifter",
  12015. height: math.unit(1.7, "megameters")
  12016. },
  12017. {
  12018. name: "Planet Carer",
  12019. height: math.unit(21, "megameters")
  12020. },
  12021. {
  12022. name: "God",
  12023. height: math.unit(11157.22, "parsecs")
  12024. },
  12025. ]
  12026. ))
  12027. characterMakers.push(() => makeCharacter(
  12028. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12029. {
  12030. front: {
  12031. height: math.unit(6, "feet"),
  12032. weight: math.unit(120, "lb"),
  12033. name: "Front",
  12034. image: {
  12035. source: "./media/characters/neo/front.svg"
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Micro",
  12042. height: math.unit(2, "inches"),
  12043. default: true
  12044. },
  12045. {
  12046. name: "Human Size",
  12047. height: math.unit(5 + 8 / 12, "feet")
  12048. },
  12049. ]
  12050. ))
  12051. characterMakers.push(() => makeCharacter(
  12052. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12053. {
  12054. front: {
  12055. height: math.unit(13 + 10 / 12, "feet"),
  12056. weight: math.unit(5320, "lb"),
  12057. name: "Front",
  12058. image: {
  12059. source: "./media/characters/chauncey-chantz/front.svg",
  12060. extra: 1587 / 1435,
  12061. bottom: 0.02
  12062. }
  12063. },
  12064. },
  12065. [
  12066. {
  12067. name: "Normal",
  12068. height: math.unit(13 + 10 / 12, "feet"),
  12069. default: true
  12070. },
  12071. {
  12072. name: "Macro",
  12073. height: math.unit(45, "feet")
  12074. },
  12075. {
  12076. name: "Megamacro",
  12077. height: math.unit(250, "miles")
  12078. },
  12079. {
  12080. name: "Planetary",
  12081. height: math.unit(10000, "miles")
  12082. },
  12083. {
  12084. name: "Galactic",
  12085. height: math.unit(40000, "parsecs")
  12086. },
  12087. {
  12088. name: "Universal",
  12089. height: math.unit(1, "yottameter")
  12090. },
  12091. ]
  12092. ))
  12093. characterMakers.push(() => makeCharacter(
  12094. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12095. {
  12096. front: {
  12097. height: math.unit(6, "feet"),
  12098. weight: math.unit(150, "lb"),
  12099. name: "Front",
  12100. image: {
  12101. source: "./media/characters/epifox/front.svg",
  12102. extra: 1,
  12103. bottom: 0.075
  12104. }
  12105. },
  12106. },
  12107. [
  12108. {
  12109. name: "Micro",
  12110. height: math.unit(6, "inches")
  12111. },
  12112. {
  12113. name: "Normal",
  12114. height: math.unit(12, "feet"),
  12115. default: true
  12116. },
  12117. {
  12118. name: "Macro",
  12119. height: math.unit(3810, "feet")
  12120. },
  12121. {
  12122. name: "Megamacro",
  12123. height: math.unit(500, "miles")
  12124. },
  12125. ]
  12126. ))
  12127. characterMakers.push(() => makeCharacter(
  12128. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12129. {
  12130. front: {
  12131. height: math.unit(1.8796, "m"),
  12132. weight: math.unit(230, "lb"),
  12133. name: "Front",
  12134. image: {
  12135. source: "./media/characters/colin-t/front.svg",
  12136. extra: 1272 / 1193,
  12137. bottom: 0.07
  12138. }
  12139. },
  12140. },
  12141. [
  12142. {
  12143. name: "Micro",
  12144. height: math.unit(0.571, "meters")
  12145. },
  12146. {
  12147. name: "Normal",
  12148. height: math.unit(1.8796, "meters"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Tall",
  12153. height: math.unit(4, "meters")
  12154. },
  12155. {
  12156. name: "Macro",
  12157. height: math.unit(67.241, "meters")
  12158. },
  12159. {
  12160. name: "Megamacro",
  12161. height: math.unit(371.856, "meters")
  12162. },
  12163. {
  12164. name: "Planetary",
  12165. height: math.unit(12631.5689, "km")
  12166. },
  12167. ]
  12168. ))
  12169. characterMakers.push(() => makeCharacter(
  12170. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12171. {
  12172. front: {
  12173. height: math.unit(1.85, "meters"),
  12174. weight: math.unit(80, "kg"),
  12175. name: "Front",
  12176. image: {
  12177. source: "./media/characters/matvei/front.svg",
  12178. extra: 614 / 594,
  12179. bottom: 0.01
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Normal",
  12186. height: math.unit(1.85, "meters"),
  12187. default: true
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(5 + 9 / 12, "feet"),
  12196. weight: math.unit(70, "lb"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/quincy/front.svg",
  12200. extra: 3041 / 2751
  12201. }
  12202. },
  12203. back: {
  12204. height: math.unit(5 + 9 / 12, "feet"),
  12205. weight: math.unit(70, "lb"),
  12206. name: "Back",
  12207. image: {
  12208. source: "./media/characters/quincy/back.svg",
  12209. extra: 3041 / 2751
  12210. }
  12211. },
  12212. flying: {
  12213. height: math.unit(5 + 4 / 12, "feet"),
  12214. weight: math.unit(70, "lb"),
  12215. name: "Flying",
  12216. image: {
  12217. source: "./media/characters/quincy/flying.svg",
  12218. extra: 1044 / 930
  12219. }
  12220. },
  12221. },
  12222. [
  12223. {
  12224. name: "Micro",
  12225. height: math.unit(3, "cm")
  12226. },
  12227. {
  12228. name: "Normal",
  12229. height: math.unit(5 + 9 / 12, "feet")
  12230. },
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(200, "meters"),
  12234. default: true
  12235. },
  12236. {
  12237. name: "Megamacro",
  12238. height: math.unit(1000, "meters")
  12239. },
  12240. ]
  12241. ))
  12242. characterMakers.push(() => makeCharacter(
  12243. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12244. {
  12245. front: {
  12246. height: math.unit(3 + 11/12, "feet"),
  12247. weight: math.unit(50, "lb"),
  12248. name: "Front",
  12249. image: {
  12250. source: "./media/characters/vanrel/front.svg",
  12251. extra: 1104/949,
  12252. bottom: 52/1156
  12253. }
  12254. },
  12255. back: {
  12256. height: math.unit(3 + 11/12, "feet"),
  12257. weight: math.unit(50, "lb"),
  12258. name: "Back",
  12259. image: {
  12260. source: "./media/characters/vanrel/back.svg",
  12261. extra: 1119/976,
  12262. bottom: 37/1156
  12263. }
  12264. },
  12265. tome: {
  12266. height: math.unit(1.35, "feet"),
  12267. weight: math.unit(10, "lb"),
  12268. name: "Vanrel's Tome",
  12269. rename: true,
  12270. image: {
  12271. source: "./media/characters/vanrel/tome.svg"
  12272. }
  12273. },
  12274. beans: {
  12275. height: math.unit(0.89, "feet"),
  12276. name: "Beans",
  12277. image: {
  12278. source: "./media/characters/vanrel/beans.svg"
  12279. }
  12280. },
  12281. },
  12282. [
  12283. {
  12284. name: "Normal",
  12285. height: math.unit(3 + 11/12, "feet"),
  12286. default: true
  12287. },
  12288. ]
  12289. ))
  12290. characterMakers.push(() => makeCharacter(
  12291. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12292. {
  12293. front: {
  12294. height: math.unit(7 + 5 / 12, "feet"),
  12295. name: "Front",
  12296. image: {
  12297. source: "./media/characters/kuiper-vanrel/front.svg",
  12298. extra: 1219/1169,
  12299. bottom: 69/1288
  12300. }
  12301. },
  12302. back: {
  12303. height: math.unit(7 + 5 / 12, "feet"),
  12304. name: "Back",
  12305. image: {
  12306. source: "./media/characters/kuiper-vanrel/back.svg",
  12307. extra: 1236/1193,
  12308. bottom: 27/1263
  12309. }
  12310. },
  12311. foot: {
  12312. height: math.unit(0.55, "meters"),
  12313. name: "Foot",
  12314. image: {
  12315. source: "./media/characters/kuiper-vanrel/foot.svg",
  12316. }
  12317. },
  12318. battle: {
  12319. height: math.unit(6.824, "feet"),
  12320. name: "Battle",
  12321. image: {
  12322. source: "./media/characters/kuiper-vanrel/battle.svg",
  12323. extra: 1466 / 1327,
  12324. bottom: 29 / 1492.5
  12325. }
  12326. },
  12327. meerkui: {
  12328. height: math.unit(18, "inches"),
  12329. name: "Meerkui",
  12330. image: {
  12331. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12332. extra: 1354/1289,
  12333. bottom: 69/1423
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(7 + 5 / 12, "feet"),
  12341. default: true
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12347. {
  12348. front: {
  12349. height: math.unit(8 + 5 / 12, "feet"),
  12350. name: "Front",
  12351. image: {
  12352. source: "./media/characters/keset-vanrel/front.svg",
  12353. extra: 1231/1148,
  12354. bottom: 82/1313
  12355. }
  12356. },
  12357. back: {
  12358. height: math.unit(8 + 5 / 12, "feet"),
  12359. name: "Back",
  12360. image: {
  12361. source: "./media/characters/keset-vanrel/back.svg",
  12362. extra: 1240/1174,
  12363. bottom: 33/1273
  12364. }
  12365. },
  12366. hand: {
  12367. height: math.unit(0.6, "meters"),
  12368. name: "Hand",
  12369. image: {
  12370. source: "./media/characters/keset-vanrel/hand.svg"
  12371. }
  12372. },
  12373. foot: {
  12374. height: math.unit(0.94978, "meters"),
  12375. name: "Foot",
  12376. image: {
  12377. source: "./media/characters/keset-vanrel/foot.svg"
  12378. }
  12379. },
  12380. battle: {
  12381. height: math.unit(7.408, "feet"),
  12382. name: "Battle",
  12383. image: {
  12384. source: "./media/characters/keset-vanrel/battle.svg",
  12385. extra: 1890 / 1386,
  12386. bottom: 73.28 / 1970
  12387. }
  12388. },
  12389. },
  12390. [
  12391. {
  12392. name: "Normal",
  12393. height: math.unit(8 + 5 / 12, "feet"),
  12394. default: true
  12395. },
  12396. ]
  12397. ))
  12398. characterMakers.push(() => makeCharacter(
  12399. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12400. {
  12401. front: {
  12402. height: math.unit(6, "feet"),
  12403. weight: math.unit(150, "lb"),
  12404. name: "Front",
  12405. image: {
  12406. source: "./media/characters/neos/front.svg",
  12407. extra: 1696 / 992,
  12408. bottom: 0.14
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Normal",
  12415. height: math.unit(54, "cm"),
  12416. default: true
  12417. },
  12418. {
  12419. name: "Macro",
  12420. height: math.unit(100, "m")
  12421. },
  12422. {
  12423. name: "Megamacro",
  12424. height: math.unit(10, "km")
  12425. },
  12426. {
  12427. name: "Megamacro+",
  12428. height: math.unit(100, "km")
  12429. },
  12430. {
  12431. name: "Gigamacro",
  12432. height: math.unit(100, "Mm")
  12433. },
  12434. {
  12435. name: "Teramacro",
  12436. height: math.unit(100, "Gm")
  12437. },
  12438. {
  12439. name: "Examacro",
  12440. height: math.unit(100, "Em")
  12441. },
  12442. {
  12443. name: "Godly",
  12444. height: math.unit(10000, "Ym")
  12445. },
  12446. {
  12447. name: "Beyond Godly",
  12448. height: math.unit(25, "multiverses")
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12454. {
  12455. feminine: {
  12456. height: math.unit(5, "feet"),
  12457. weight: math.unit(100, "lb"),
  12458. name: "Feminine",
  12459. image: {
  12460. source: "./media/characters/sammy-mouse/feminine.svg",
  12461. extra: 2526 / 2425,
  12462. bottom: 0.123
  12463. }
  12464. },
  12465. masculine: {
  12466. height: math.unit(5, "feet"),
  12467. weight: math.unit(100, "lb"),
  12468. name: "Masculine",
  12469. image: {
  12470. source: "./media/characters/sammy-mouse/masculine.svg",
  12471. extra: 2526 / 2425,
  12472. bottom: 0.123
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Micro",
  12479. height: math.unit(5, "inches")
  12480. },
  12481. {
  12482. name: "Normal",
  12483. height: math.unit(5, "feet"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Macro",
  12488. height: math.unit(60, "feet")
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12494. {
  12495. front: {
  12496. height: math.unit(4, "feet"),
  12497. weight: math.unit(50, "lb"),
  12498. name: "Front",
  12499. image: {
  12500. source: "./media/characters/kole/front.svg",
  12501. extra: 1423 / 1303,
  12502. bottom: 0.025
  12503. }
  12504. },
  12505. back: {
  12506. height: math.unit(4, "feet"),
  12507. weight: math.unit(50, "lb"),
  12508. name: "Back",
  12509. image: {
  12510. source: "./media/characters/kole/back.svg",
  12511. extra: 1426 / 1280,
  12512. bottom: 0.02
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(4, "feet"),
  12520. default: true
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12526. {
  12527. front: {
  12528. height: math.unit(2.5, "feet"),
  12529. weight: math.unit(32, "lb"),
  12530. name: "Front",
  12531. image: {
  12532. source: "./media/characters/rufran/front.svg",
  12533. extra: 1313/885,
  12534. bottom: 94/1407
  12535. }
  12536. },
  12537. side: {
  12538. height: math.unit(2.5, "feet"),
  12539. weight: math.unit(32, "lb"),
  12540. name: "Side",
  12541. image: {
  12542. source: "./media/characters/rufran/side.svg",
  12543. extra: 1109/852,
  12544. bottom: 118/1227
  12545. }
  12546. },
  12547. back: {
  12548. height: math.unit(2.5, "feet"),
  12549. weight: math.unit(32, "lb"),
  12550. name: "Back",
  12551. image: {
  12552. source: "./media/characters/rufran/back.svg",
  12553. extra: 1280/878,
  12554. bottom: 131/1411
  12555. }
  12556. },
  12557. mouth: {
  12558. height: math.unit(1.13, "feet"),
  12559. name: "Mouth",
  12560. image: {
  12561. source: "./media/characters/rufran/mouth.svg"
  12562. }
  12563. },
  12564. foot: {
  12565. height: math.unit(1.33, "feet"),
  12566. name: "Foot",
  12567. image: {
  12568. source: "./media/characters/rufran/foot.svg"
  12569. }
  12570. },
  12571. koboldFront: {
  12572. height: math.unit(2 + 6 / 12, "feet"),
  12573. weight: math.unit(20, "lb"),
  12574. name: "Front (Kobold)",
  12575. image: {
  12576. source: "./media/characters/rufran/kobold-front.svg",
  12577. extra: 2041 / 1839,
  12578. bottom: 0.055
  12579. }
  12580. },
  12581. koboldBack: {
  12582. height: math.unit(2 + 6 / 12, "feet"),
  12583. weight: math.unit(20, "lb"),
  12584. name: "Back (Kobold)",
  12585. image: {
  12586. source: "./media/characters/rufran/kobold-back.svg",
  12587. extra: 2054 / 1839,
  12588. bottom: 0.01
  12589. }
  12590. },
  12591. koboldHand: {
  12592. height: math.unit(0.2166, "meters"),
  12593. name: "Hand (Kobold)",
  12594. image: {
  12595. source: "./media/characters/rufran/kobold-hand.svg"
  12596. }
  12597. },
  12598. koboldFoot: {
  12599. height: math.unit(0.185, "meters"),
  12600. name: "Foot (Kobold)",
  12601. image: {
  12602. source: "./media/characters/rufran/kobold-foot.svg"
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Micro",
  12609. height: math.unit(1, "inch")
  12610. },
  12611. {
  12612. name: "Normal",
  12613. height: math.unit(2 + 6 / 12, "feet"),
  12614. default: true
  12615. },
  12616. {
  12617. name: "Big",
  12618. height: math.unit(60, "feet")
  12619. },
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(325, "feet")
  12623. },
  12624. ]
  12625. ))
  12626. characterMakers.push(() => makeCharacter(
  12627. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12628. {
  12629. front: {
  12630. height: math.unit(0.3, "meters"),
  12631. weight: math.unit(3.5, "kg"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/chip/front.svg",
  12635. extra: 748 / 674
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Micro",
  12642. height: math.unit(1, "inch"),
  12643. default: true
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12649. {
  12650. side: {
  12651. height: math.unit(2.3, "meters"),
  12652. weight: math.unit(3500, "lb"),
  12653. name: "Side",
  12654. image: {
  12655. source: "./media/characters/torvid/side.svg",
  12656. extra: 1972 / 722,
  12657. bottom: 0.035
  12658. }
  12659. },
  12660. },
  12661. [
  12662. {
  12663. name: "Normal",
  12664. height: math.unit(2.3, "meters"),
  12665. default: true
  12666. },
  12667. ]
  12668. ))
  12669. characterMakers.push(() => makeCharacter(
  12670. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12671. {
  12672. front: {
  12673. height: math.unit(2, "meters"),
  12674. weight: math.unit(150.5, "kg"),
  12675. name: "Front",
  12676. image: {
  12677. source: "./media/characters/susan/front.svg",
  12678. extra: 693 / 635,
  12679. bottom: 0.05
  12680. }
  12681. },
  12682. },
  12683. [
  12684. {
  12685. name: "Megamacro",
  12686. height: math.unit(505, "miles"),
  12687. default: true
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12693. {
  12694. front: {
  12695. height: math.unit(6, "feet"),
  12696. weight: math.unit(150, "lb"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/raindrops/front.svg",
  12700. extra: 2655 / 2461,
  12701. bottom: 49 / 2705
  12702. }
  12703. },
  12704. back: {
  12705. height: math.unit(6, "feet"),
  12706. weight: math.unit(150, "lb"),
  12707. name: "Back",
  12708. image: {
  12709. source: "./media/characters/raindrops/back.svg",
  12710. extra: 2574 / 2400,
  12711. bottom: 65 / 2634
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Micro",
  12718. height: math.unit(6, "inches")
  12719. },
  12720. {
  12721. name: "Normal",
  12722. height: math.unit(6 + 2 / 12, "feet")
  12723. },
  12724. {
  12725. name: "Macro",
  12726. height: math.unit(131, "feet"),
  12727. default: true
  12728. },
  12729. {
  12730. name: "Megamacro",
  12731. height: math.unit(15, "miles")
  12732. },
  12733. {
  12734. name: "Gigamacro",
  12735. height: math.unit(4000, "miles")
  12736. },
  12737. {
  12738. name: "Teramacro",
  12739. height: math.unit(315000, "miles")
  12740. },
  12741. ]
  12742. ))
  12743. characterMakers.push(() => makeCharacter(
  12744. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12745. {
  12746. front: {
  12747. height: math.unit(2.794, "meters"),
  12748. weight: math.unit(325, "kg"),
  12749. name: "Front",
  12750. image: {
  12751. source: "./media/characters/tezwa/front.svg",
  12752. extra: 2083 / 1906,
  12753. bottom: 0.031
  12754. }
  12755. },
  12756. foot: {
  12757. height: math.unit(0.687, "meters"),
  12758. name: "Foot",
  12759. image: {
  12760. source: "./media/characters/tezwa/foot.svg"
  12761. }
  12762. },
  12763. },
  12764. [
  12765. {
  12766. name: "Normal",
  12767. height: math.unit(9 + 2 / 12, "feet"),
  12768. default: true
  12769. },
  12770. ]
  12771. ))
  12772. characterMakers.push(() => makeCharacter(
  12773. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12774. {
  12775. front: {
  12776. height: math.unit(58, "feet"),
  12777. weight: math.unit(89000, "lb"),
  12778. name: "Front",
  12779. image: {
  12780. source: "./media/characters/typhus/front.svg",
  12781. extra: 816 / 800,
  12782. bottom: 0.065
  12783. }
  12784. },
  12785. },
  12786. [
  12787. {
  12788. name: "Macro",
  12789. height: math.unit(58, "feet"),
  12790. default: true
  12791. },
  12792. ]
  12793. ))
  12794. characterMakers.push(() => makeCharacter(
  12795. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12796. {
  12797. front: {
  12798. height: math.unit(12, "feet"),
  12799. weight: math.unit(6, "tonnes"),
  12800. name: "Front",
  12801. image: {
  12802. source: "./media/characters/lyra-von-wulf/front.svg",
  12803. extra: 1,
  12804. bottom: 0.10
  12805. }
  12806. },
  12807. frontMecha: {
  12808. height: math.unit(12, "feet"),
  12809. weight: math.unit(12, "tonnes"),
  12810. name: "Front (Mecha)",
  12811. image: {
  12812. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12813. extra: 1,
  12814. bottom: 0.042
  12815. }
  12816. },
  12817. maw: {
  12818. height: math.unit(2.2, "feet"),
  12819. name: "Maw",
  12820. image: {
  12821. source: "./media/characters/lyra-von-wulf/maw.svg"
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Normal",
  12828. height: math.unit(12, "feet"),
  12829. default: true
  12830. },
  12831. {
  12832. name: "Classic",
  12833. height: math.unit(50, "feet")
  12834. },
  12835. {
  12836. name: "Macro",
  12837. height: math.unit(500, "feet")
  12838. },
  12839. {
  12840. name: "Megamacro",
  12841. height: math.unit(1, "mile")
  12842. },
  12843. {
  12844. name: "Gigamacro",
  12845. height: math.unit(400, "miles")
  12846. },
  12847. {
  12848. name: "Teramacro",
  12849. height: math.unit(22000, "miles")
  12850. },
  12851. {
  12852. name: "Solarmacro",
  12853. height: math.unit(8600000, "miles")
  12854. },
  12855. {
  12856. name: "Galactic",
  12857. height: math.unit(1057000, "lightyears")
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12863. {
  12864. front: {
  12865. height: math.unit(6 + 10 / 12, "feet"),
  12866. weight: math.unit(150, "lb"),
  12867. name: "Front",
  12868. image: {
  12869. source: "./media/characters/dixon/front.svg",
  12870. extra: 3361 / 3209,
  12871. bottom: 0.01
  12872. }
  12873. },
  12874. },
  12875. [
  12876. {
  12877. name: "Normal",
  12878. height: math.unit(6 + 10 / 12, "feet"),
  12879. default: true
  12880. },
  12881. {
  12882. name: "Big",
  12883. height: math.unit(12, "meters")
  12884. },
  12885. {
  12886. name: "Macro",
  12887. height: math.unit(500, "meters")
  12888. },
  12889. {
  12890. name: "Megamacro",
  12891. height: math.unit(2, "km")
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(185, "cm"),
  12900. weight: math.unit(68, "kg"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/kauko/front.svg",
  12904. extra: 1455 / 1421,
  12905. bottom: 0.03
  12906. }
  12907. },
  12908. back: {
  12909. height: math.unit(185, "cm"),
  12910. weight: math.unit(68, "kg"),
  12911. name: "Back",
  12912. image: {
  12913. source: "./media/characters/kauko/back.svg",
  12914. extra: 1455 / 1421,
  12915. bottom: 0.004
  12916. }
  12917. },
  12918. },
  12919. [
  12920. {
  12921. name: "Normal",
  12922. height: math.unit(185, "cm"),
  12923. default: true
  12924. },
  12925. ]
  12926. ))
  12927. characterMakers.push(() => makeCharacter(
  12928. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12929. {
  12930. front: {
  12931. height: math.unit(6, "feet"),
  12932. weight: math.unit(150, "kg"),
  12933. name: "Front",
  12934. image: {
  12935. source: "./media/characters/varg/front.svg",
  12936. extra: 1108 / 1018,
  12937. bottom: 0.0375
  12938. }
  12939. },
  12940. },
  12941. [
  12942. {
  12943. name: "Normal",
  12944. height: math.unit(5, "meters")
  12945. },
  12946. {
  12947. name: "Macro",
  12948. height: math.unit(200, "meters")
  12949. },
  12950. {
  12951. name: "Megamacro",
  12952. height: math.unit(20, "kilometers")
  12953. },
  12954. {
  12955. name: "True Size",
  12956. height: math.unit(211, "km"),
  12957. default: true
  12958. },
  12959. {
  12960. name: "Gigamacro",
  12961. height: math.unit(1000, "km")
  12962. },
  12963. {
  12964. name: "Gigamacro+",
  12965. height: math.unit(8000, "km")
  12966. },
  12967. {
  12968. name: "Teramacro",
  12969. height: math.unit(1000000, "km")
  12970. },
  12971. ]
  12972. ))
  12973. characterMakers.push(() => makeCharacter(
  12974. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12975. {
  12976. front: {
  12977. height: math.unit(7 + 7 / 12, "feet"),
  12978. weight: math.unit(267, "lb"),
  12979. name: "Front",
  12980. image: {
  12981. source: "./media/characters/dayza/front.svg",
  12982. extra: 1262 / 1200,
  12983. bottom: 0.035
  12984. }
  12985. },
  12986. side: {
  12987. height: math.unit(7 + 7 / 12, "feet"),
  12988. weight: math.unit(267, "lb"),
  12989. name: "Side",
  12990. image: {
  12991. source: "./media/characters/dayza/side.svg",
  12992. extra: 1295 / 1245,
  12993. bottom: 0.05
  12994. }
  12995. },
  12996. back: {
  12997. height: math.unit(7 + 7 / 12, "feet"),
  12998. weight: math.unit(267, "lb"),
  12999. name: "Back",
  13000. image: {
  13001. source: "./media/characters/dayza/back.svg",
  13002. extra: 1241 / 1170
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(7 + 7 / 12, "feet"),
  13010. default: true
  13011. },
  13012. {
  13013. name: "Macro",
  13014. height: math.unit(155, "feet")
  13015. },
  13016. ]
  13017. ))
  13018. characterMakers.push(() => makeCharacter(
  13019. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13020. {
  13021. front: {
  13022. height: math.unit(6 + 5 / 12, "feet"),
  13023. weight: math.unit(160, "lb"),
  13024. name: "Front",
  13025. image: {
  13026. source: "./media/characters/xanthos/front.svg",
  13027. extra: 1,
  13028. bottom: 0.04
  13029. }
  13030. },
  13031. back: {
  13032. height: math.unit(6 + 5 / 12, "feet"),
  13033. weight: math.unit(160, "lb"),
  13034. name: "Back",
  13035. image: {
  13036. source: "./media/characters/xanthos/back.svg",
  13037. extra: 1,
  13038. bottom: 0.03
  13039. }
  13040. },
  13041. hand: {
  13042. height: math.unit(0.928, "feet"),
  13043. name: "Hand",
  13044. image: {
  13045. source: "./media/characters/xanthos/hand.svg"
  13046. }
  13047. },
  13048. foot: {
  13049. height: math.unit(1.286, "feet"),
  13050. name: "Foot",
  13051. image: {
  13052. source: "./media/characters/xanthos/foot.svg"
  13053. }
  13054. },
  13055. },
  13056. [
  13057. {
  13058. name: "Normal",
  13059. height: math.unit(6 + 5 / 12, "feet"),
  13060. default: true
  13061. },
  13062. {
  13063. name: "Normal+",
  13064. height: math.unit(6, "meters")
  13065. },
  13066. {
  13067. name: "Macro",
  13068. height: math.unit(40, "feet")
  13069. },
  13070. {
  13071. name: "Macro+",
  13072. height: math.unit(200, "meters")
  13073. },
  13074. {
  13075. name: "Megamacro",
  13076. height: math.unit(20, "km")
  13077. },
  13078. {
  13079. name: "Megamacro+",
  13080. height: math.unit(100, "km")
  13081. },
  13082. {
  13083. name: "Gigamacro",
  13084. height: math.unit(200, "megameters")
  13085. },
  13086. {
  13087. name: "Gigamacro+",
  13088. height: math.unit(1.5, "gigameters")
  13089. },
  13090. ]
  13091. ))
  13092. characterMakers.push(() => makeCharacter(
  13093. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13094. {
  13095. front: {
  13096. height: math.unit(6 + 3 / 12, "feet"),
  13097. weight: math.unit(215, "lb"),
  13098. name: "Front",
  13099. image: {
  13100. source: "./media/characters/grynn/front.svg",
  13101. extra: 4627 / 4209,
  13102. bottom: 0.047
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Micro",
  13109. height: math.unit(6, "inches")
  13110. },
  13111. {
  13112. name: "Normal",
  13113. height: math.unit(6 + 3 / 12, "feet"),
  13114. default: true
  13115. },
  13116. {
  13117. name: "Big",
  13118. height: math.unit(104, "feet")
  13119. },
  13120. {
  13121. name: "Macro",
  13122. height: math.unit(944, "feet")
  13123. },
  13124. {
  13125. name: "Macro+",
  13126. height: math.unit(9480, "feet")
  13127. },
  13128. {
  13129. name: "Megamacro",
  13130. height: math.unit(78752, "feet")
  13131. },
  13132. {
  13133. name: "Megamacro+",
  13134. height: math.unit(630128, "feet")
  13135. },
  13136. {
  13137. name: "Megamacro++",
  13138. height: math.unit(3150695, "feet")
  13139. },
  13140. ]
  13141. ))
  13142. characterMakers.push(() => makeCharacter(
  13143. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13144. {
  13145. front: {
  13146. height: math.unit(7 + 5 / 12, "feet"),
  13147. weight: math.unit(450, "lb"),
  13148. name: "Front",
  13149. image: {
  13150. source: "./media/characters/mocha-aura/front.svg",
  13151. extra: 1907 / 1817,
  13152. bottom: 0.04
  13153. }
  13154. },
  13155. back: {
  13156. height: math.unit(7 + 5 / 12, "feet"),
  13157. weight: math.unit(450, "lb"),
  13158. name: "Back",
  13159. image: {
  13160. source: "./media/characters/mocha-aura/back.svg",
  13161. extra: 1900 / 1825,
  13162. bottom: 0.045
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Nano",
  13169. height: math.unit(1, "nm")
  13170. },
  13171. {
  13172. name: "Megamicro",
  13173. height: math.unit(1, "mm")
  13174. },
  13175. {
  13176. name: "Micro",
  13177. height: math.unit(3, "inches")
  13178. },
  13179. {
  13180. name: "Normal",
  13181. height: math.unit(7 + 5 / 12, "feet"),
  13182. default: true
  13183. },
  13184. {
  13185. name: "Macro",
  13186. height: math.unit(30, "feet")
  13187. },
  13188. {
  13189. name: "Megamacro",
  13190. height: math.unit(3500, "feet")
  13191. },
  13192. {
  13193. name: "Teramacro",
  13194. height: math.unit(500000, "miles")
  13195. },
  13196. {
  13197. name: "Petamacro",
  13198. height: math.unit(50000000000000000, "parsecs")
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13204. {
  13205. front: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(150, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/ilisha-devya/front.svg",
  13211. extra: 1053/1049,
  13212. bottom: 270/1323
  13213. }
  13214. },
  13215. back: {
  13216. height: math.unit(6, "feet"),
  13217. weight: math.unit(150, "lb"),
  13218. name: "Back",
  13219. image: {
  13220. source: "./media/characters/ilisha-devya/back.svg",
  13221. extra: 1131/1128,
  13222. bottom: 39/1170
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Macro",
  13229. height: math.unit(500, "feet"),
  13230. default: true
  13231. },
  13232. {
  13233. name: "Megamacro",
  13234. height: math.unit(10, "miles")
  13235. },
  13236. {
  13237. name: "Gigamacro",
  13238. height: math.unit(100000, "miles")
  13239. },
  13240. {
  13241. name: "Examacro",
  13242. height: math.unit(1e9, "lightyears")
  13243. },
  13244. {
  13245. name: "Omniversal",
  13246. height: math.unit(1e33, "lightyears")
  13247. },
  13248. {
  13249. name: "Beyond Infinite",
  13250. height: math.unit(1e100, "lightyears")
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13256. {
  13257. Side: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Side",
  13261. image: {
  13262. source: "./media/characters/mira/side.svg",
  13263. extra: 900 / 799,
  13264. bottom: 0.02
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Human Size",
  13271. height: math.unit(6, "feet")
  13272. },
  13273. {
  13274. name: "Macro",
  13275. height: math.unit(100, "feet"),
  13276. default: true
  13277. },
  13278. {
  13279. name: "Megamacro",
  13280. height: math.unit(10, "miles")
  13281. },
  13282. {
  13283. name: "Gigamacro",
  13284. height: math.unit(25000, "miles")
  13285. },
  13286. {
  13287. name: "Teramacro",
  13288. height: math.unit(300, "AU")
  13289. },
  13290. {
  13291. name: "Full Size",
  13292. height: math.unit(4.5e10, "lightyears")
  13293. },
  13294. ]
  13295. ))
  13296. characterMakers.push(() => makeCharacter(
  13297. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13298. {
  13299. front: {
  13300. height: math.unit(6, "feet"),
  13301. weight: math.unit(150, "lb"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/holly/front.svg",
  13305. extra: 639 / 606
  13306. }
  13307. },
  13308. back: {
  13309. height: math.unit(6, "feet"),
  13310. weight: math.unit(150, "lb"),
  13311. name: "Back",
  13312. image: {
  13313. source: "./media/characters/holly/back.svg",
  13314. extra: 623 / 598
  13315. }
  13316. },
  13317. frontWorking: {
  13318. height: math.unit(6, "feet"),
  13319. weight: math.unit(150, "lb"),
  13320. name: "Front (Working)",
  13321. image: {
  13322. source: "./media/characters/holly/front-working.svg",
  13323. extra: 607 / 577,
  13324. bottom: 0.048
  13325. }
  13326. },
  13327. },
  13328. [
  13329. {
  13330. name: "Normal",
  13331. height: math.unit(12 + 3 / 12, "feet"),
  13332. default: true
  13333. },
  13334. ]
  13335. ))
  13336. characterMakers.push(() => makeCharacter(
  13337. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13338. {
  13339. front: {
  13340. height: math.unit(6, "feet"),
  13341. weight: math.unit(150, "lb"),
  13342. name: "Front",
  13343. image: {
  13344. source: "./media/characters/porter/front.svg",
  13345. extra: 1,
  13346. bottom: 0.01
  13347. }
  13348. },
  13349. frontRobes: {
  13350. height: math.unit(6, "feet"),
  13351. weight: math.unit(150, "lb"),
  13352. name: "Front (Robes)",
  13353. image: {
  13354. source: "./media/characters/porter/front-robes.svg",
  13355. extra: 1.01,
  13356. bottom: 0.01
  13357. }
  13358. },
  13359. },
  13360. [
  13361. {
  13362. name: "Normal",
  13363. height: math.unit(11 + 9 / 12, "feet"),
  13364. default: true
  13365. },
  13366. ]
  13367. ))
  13368. characterMakers.push(() => makeCharacter(
  13369. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13370. {
  13371. legendary: {
  13372. height: math.unit(6, "feet"),
  13373. weight: math.unit(150, "lb"),
  13374. name: "Legendary",
  13375. image: {
  13376. source: "./media/characters/lucy/legendary.svg",
  13377. extra: 1355 / 1100,
  13378. bottom: 0.045
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Legendary",
  13385. height: math.unit(86882 * 2, "miles"),
  13386. default: true
  13387. },
  13388. ]
  13389. ))
  13390. characterMakers.push(() => makeCharacter(
  13391. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13392. {
  13393. front: {
  13394. height: math.unit(6, "feet"),
  13395. weight: math.unit(150, "lb"),
  13396. name: "Front",
  13397. image: {
  13398. source: "./media/characters/drusilla/front.svg",
  13399. extra: 678 / 635,
  13400. bottom: 0.03
  13401. }
  13402. },
  13403. back: {
  13404. height: math.unit(6, "feet"),
  13405. weight: math.unit(150, "lb"),
  13406. name: "Back",
  13407. image: {
  13408. source: "./media/characters/drusilla/back.svg",
  13409. extra: 678 / 635,
  13410. bottom: 0.005
  13411. }
  13412. },
  13413. },
  13414. [
  13415. {
  13416. name: "Macro",
  13417. height: math.unit(100, "feet")
  13418. },
  13419. {
  13420. name: "Canon Height",
  13421. height: math.unit(2000, "feet"),
  13422. default: true
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(6, "feet"),
  13431. weight: math.unit(180, "lb"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/renard-thatch/front.svg",
  13435. extra: 2411 / 2275,
  13436. bottom: 0.01
  13437. }
  13438. },
  13439. frontPosing: {
  13440. height: math.unit(6, "feet"),
  13441. weight: math.unit(180, "lb"),
  13442. name: "Front (Posing)",
  13443. image: {
  13444. source: "./media/characters/renard-thatch/front-posing.svg",
  13445. extra: 2381 / 2261,
  13446. bottom: 0.01
  13447. }
  13448. },
  13449. back: {
  13450. height: math.unit(6, "feet"),
  13451. weight: math.unit(180, "lb"),
  13452. name: "Back",
  13453. image: {
  13454. source: "./media/characters/renard-thatch/back.svg",
  13455. extra: 2428 / 2288
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Micro",
  13462. height: math.unit(3, "inches")
  13463. },
  13464. {
  13465. name: "Default",
  13466. height: math.unit(6, "feet"),
  13467. default: true
  13468. },
  13469. {
  13470. name: "Macro",
  13471. height: math.unit(75, "feet")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(1450, "feet"),
  13480. weight: math.unit(1.21e6, "tons"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/sekvra/front.svg",
  13484. extra: 1193/1190,
  13485. bottom: 78/1271
  13486. }
  13487. },
  13488. side: {
  13489. height: math.unit(1450, "feet"),
  13490. weight: math.unit(1.21e6, "tons"),
  13491. name: "Side",
  13492. image: {
  13493. source: "./media/characters/sekvra/side.svg",
  13494. extra: 1193/1190,
  13495. bottom: 52/1245
  13496. }
  13497. },
  13498. back: {
  13499. height: math.unit(1450, "feet"),
  13500. weight: math.unit(1.21e6, "tons"),
  13501. name: "Back",
  13502. image: {
  13503. source: "./media/characters/sekvra/back.svg",
  13504. extra: 1219/1216,
  13505. bottom: 21/1240
  13506. }
  13507. },
  13508. frontClothed: {
  13509. height: math.unit(1450, "feet"),
  13510. weight: math.unit(1.21e6, "tons"),
  13511. name: "Front (Clothed)",
  13512. image: {
  13513. source: "./media/characters/sekvra/front-clothed.svg",
  13514. extra: 1192/1189,
  13515. bottom: 79/1271
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Macro",
  13522. height: math.unit(1450, "feet"),
  13523. default: true
  13524. },
  13525. {
  13526. name: "Megamacro",
  13527. height: math.unit(15000, "feet")
  13528. },
  13529. ]
  13530. ))
  13531. characterMakers.push(() => makeCharacter(
  13532. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13533. {
  13534. front: {
  13535. height: math.unit(6, "feet"),
  13536. weight: math.unit(150, "lb"),
  13537. name: "Front",
  13538. image: {
  13539. source: "./media/characters/carmine/front.svg",
  13540. extra: 1,
  13541. bottom: 0.035
  13542. }
  13543. },
  13544. frontArmor: {
  13545. height: math.unit(6, "feet"),
  13546. weight: math.unit(150, "lb"),
  13547. name: "Front (Armor)",
  13548. image: {
  13549. source: "./media/characters/carmine/front-armor.svg",
  13550. extra: 1,
  13551. bottom: 0.035
  13552. }
  13553. },
  13554. },
  13555. [
  13556. {
  13557. name: "Large",
  13558. height: math.unit(1, "mile")
  13559. },
  13560. {
  13561. name: "Huge",
  13562. height: math.unit(40, "miles"),
  13563. default: true
  13564. },
  13565. {
  13566. name: "Colossal",
  13567. height: math.unit(2500, "miles")
  13568. },
  13569. ]
  13570. ))
  13571. characterMakers.push(() => makeCharacter(
  13572. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13573. {
  13574. front: {
  13575. height: math.unit(6, "feet"),
  13576. weight: math.unit(150, "lb"),
  13577. name: "Front",
  13578. image: {
  13579. source: "./media/characters/elyssia/front.svg",
  13580. extra: 2201 / 2035,
  13581. bottom: 0.05
  13582. }
  13583. },
  13584. frontClothed: {
  13585. height: math.unit(6, "feet"),
  13586. weight: math.unit(150, "lb"),
  13587. name: "Front (Clothed)",
  13588. image: {
  13589. source: "./media/characters/elyssia/front-clothed.svg",
  13590. extra: 2201 / 2035,
  13591. bottom: 0.05
  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/elyssia/back.svg",
  13600. extra: 2201 / 2035,
  13601. bottom: 0.013
  13602. }
  13603. },
  13604. },
  13605. [
  13606. {
  13607. name: "Smaller",
  13608. height: math.unit(150, "feet")
  13609. },
  13610. {
  13611. name: "Standard",
  13612. height: math.unit(1400, "feet"),
  13613. default: true
  13614. },
  13615. {
  13616. name: "Distracted",
  13617. height: math.unit(15000, "feet")
  13618. },
  13619. ]
  13620. ))
  13621. characterMakers.push(() => makeCharacter(
  13622. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13623. {
  13624. front: {
  13625. height: math.unit(7 + 4/12, "feet"),
  13626. weight: math.unit(690, "lb"),
  13627. name: "Front",
  13628. image: {
  13629. source: "./media/characters/geno-maxwell/front.svg",
  13630. extra: 984/856,
  13631. bottom: 87/1071
  13632. }
  13633. },
  13634. back: {
  13635. height: math.unit(7 + 4/12, "feet"),
  13636. weight: math.unit(690, "lb"),
  13637. name: "Back",
  13638. image: {
  13639. source: "./media/characters/geno-maxwell/back.svg",
  13640. extra: 981/854,
  13641. bottom: 57/1038
  13642. }
  13643. },
  13644. frontCostume: {
  13645. height: math.unit(7 + 4/12, "feet"),
  13646. weight: math.unit(690, "lb"),
  13647. name: "Front (Costume)",
  13648. image: {
  13649. source: "./media/characters/geno-maxwell/front-costume.svg",
  13650. extra: 984/856,
  13651. bottom: 87/1071
  13652. }
  13653. },
  13654. backcostume: {
  13655. height: math.unit(7 + 4/12, "feet"),
  13656. weight: math.unit(690, "lb"),
  13657. name: "Back (Costume)",
  13658. image: {
  13659. source: "./media/characters/geno-maxwell/back-costume.svg",
  13660. extra: 981/854,
  13661. bottom: 57/1038
  13662. }
  13663. },
  13664. },
  13665. [
  13666. {
  13667. name: "Micro",
  13668. height: math.unit(3, "inches")
  13669. },
  13670. {
  13671. name: "Normal",
  13672. height: math.unit(7 + 4 / 12, "feet"),
  13673. default: true
  13674. },
  13675. {
  13676. name: "Macro",
  13677. height: math.unit(220, "feet")
  13678. },
  13679. {
  13680. name: "Megamacro",
  13681. height: math.unit(11, "miles")
  13682. },
  13683. ]
  13684. ))
  13685. characterMakers.push(() => makeCharacter(
  13686. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13687. {
  13688. front: {
  13689. height: math.unit(7 + 4/12, "feet"),
  13690. weight: math.unit(750, "lb"),
  13691. name: "Front",
  13692. image: {
  13693. source: "./media/characters/regena-maxwell/front.svg",
  13694. extra: 984/856,
  13695. bottom: 87/1071
  13696. }
  13697. },
  13698. back: {
  13699. height: math.unit(7 + 4/12, "feet"),
  13700. weight: math.unit(750, "lb"),
  13701. name: "Back",
  13702. image: {
  13703. source: "./media/characters/regena-maxwell/back.svg",
  13704. extra: 981/854,
  13705. bottom: 57/1038
  13706. }
  13707. },
  13708. frontCostume: {
  13709. height: math.unit(7 + 4/12, "feet"),
  13710. weight: math.unit(750, "lb"),
  13711. name: "Front (Costume)",
  13712. image: {
  13713. source: "./media/characters/regena-maxwell/front-costume.svg",
  13714. extra: 984/856,
  13715. bottom: 87/1071
  13716. }
  13717. },
  13718. backcostume: {
  13719. height: math.unit(7 + 4/12, "feet"),
  13720. weight: math.unit(750, "lb"),
  13721. name: "Back (Costume)",
  13722. image: {
  13723. source: "./media/characters/regena-maxwell/back-costume.svg",
  13724. extra: 981/854,
  13725. bottom: 57/1038
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Normal",
  13732. height: math.unit(7 + 4 / 12, "feet"),
  13733. default: true
  13734. },
  13735. {
  13736. name: "Macro",
  13737. height: math.unit(220, "feet")
  13738. },
  13739. {
  13740. name: "Megamacro",
  13741. height: math.unit(11, "miles")
  13742. },
  13743. ]
  13744. ))
  13745. characterMakers.push(() => makeCharacter(
  13746. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13747. {
  13748. front: {
  13749. height: math.unit(6, "feet"),
  13750. weight: math.unit(150, "lb"),
  13751. name: "Front",
  13752. image: {
  13753. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13754. extra: 860 / 690,
  13755. bottom: 0.03
  13756. }
  13757. },
  13758. },
  13759. [
  13760. {
  13761. name: "Normal",
  13762. height: math.unit(1.7, "meters"),
  13763. default: true
  13764. },
  13765. ]
  13766. ))
  13767. characterMakers.push(() => makeCharacter(
  13768. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13769. {
  13770. front: {
  13771. height: math.unit(6, "feet"),
  13772. weight: math.unit(150, "lb"),
  13773. name: "Front",
  13774. image: {
  13775. source: "./media/characters/quilly/front.svg",
  13776. extra: 890 / 776
  13777. }
  13778. },
  13779. },
  13780. [
  13781. {
  13782. name: "Gigamacro",
  13783. height: math.unit(404090, "miles"),
  13784. default: true
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13790. {
  13791. front: {
  13792. height: math.unit(7 + 8 / 12, "feet"),
  13793. weight: math.unit(350, "lb"),
  13794. name: "Front",
  13795. image: {
  13796. source: "./media/characters/tempest/front.svg",
  13797. extra: 1175 / 1086,
  13798. bottom: 0.02
  13799. }
  13800. },
  13801. },
  13802. [
  13803. {
  13804. name: "Normal",
  13805. height: math.unit(7 + 8 / 12, "feet"),
  13806. default: true
  13807. },
  13808. ]
  13809. ))
  13810. characterMakers.push(() => makeCharacter(
  13811. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13812. {
  13813. side: {
  13814. height: math.unit(4 + 5 / 12, "feet"),
  13815. weight: math.unit(80, "lb"),
  13816. name: "Side",
  13817. image: {
  13818. source: "./media/characters/rodger/side.svg",
  13819. extra: 1235 / 1118
  13820. }
  13821. },
  13822. },
  13823. [
  13824. {
  13825. name: "Micro",
  13826. height: math.unit(1, "inch")
  13827. },
  13828. {
  13829. name: "Normal",
  13830. height: math.unit(4 + 5 / 12, "feet"),
  13831. default: true
  13832. },
  13833. {
  13834. name: "Macro",
  13835. height: math.unit(120, "feet")
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13841. {
  13842. front: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(150, "lb"),
  13845. name: "Front",
  13846. image: {
  13847. source: "./media/characters/danyel/front.svg",
  13848. extra: 1185 / 1123,
  13849. bottom: 0.05
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Shrunken",
  13856. height: math.unit(0.5, "mm")
  13857. },
  13858. {
  13859. name: "Micro",
  13860. height: math.unit(1, "mm"),
  13861. default: true
  13862. },
  13863. {
  13864. name: "Upsized",
  13865. height: math.unit(5 + 5 / 12, "feet")
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13871. {
  13872. front: {
  13873. height: math.unit(5 + 6 / 12, "feet"),
  13874. weight: math.unit(200, "lb"),
  13875. name: "Front",
  13876. image: {
  13877. source: "./media/characters/vivian-bijoux/front.svg",
  13878. extra: 1217/1209,
  13879. bottom: 76/1293
  13880. }
  13881. },
  13882. back: {
  13883. height: math.unit(5 + 6 / 12, "feet"),
  13884. weight: math.unit(200, "lb"),
  13885. name: "Back",
  13886. image: {
  13887. source: "./media/characters/vivian-bijoux/back.svg",
  13888. extra: 1214/1208,
  13889. bottom: 51/1265
  13890. }
  13891. },
  13892. dressed: {
  13893. height: math.unit(5 + 6 / 12, "feet"),
  13894. weight: math.unit(200, "lb"),
  13895. name: "Dressed",
  13896. image: {
  13897. source: "./media/characters/vivian-bijoux/dressed.svg",
  13898. extra: 1217/1209,
  13899. bottom: 76/1293
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Normal",
  13906. height: math.unit(5 + 6 / 12, "feet"),
  13907. default: true
  13908. },
  13909. {
  13910. name: "Bad Dream",
  13911. height: math.unit(500, "feet")
  13912. },
  13913. {
  13914. name: "Nightmare",
  13915. height: math.unit(500, "miles")
  13916. },
  13917. ]
  13918. ))
  13919. characterMakers.push(() => makeCharacter(
  13920. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13921. {
  13922. front: {
  13923. height: math.unit(6 + 1 / 12, "feet"),
  13924. weight: math.unit(260, "lb"),
  13925. name: "Front",
  13926. image: {
  13927. source: "./media/characters/zeta/front.svg",
  13928. extra: 1968 / 1889,
  13929. bottom: 0.06
  13930. }
  13931. },
  13932. back: {
  13933. height: math.unit(6 + 1 / 12, "feet"),
  13934. weight: math.unit(260, "lb"),
  13935. name: "Back",
  13936. image: {
  13937. source: "./media/characters/zeta/back.svg",
  13938. extra: 1944 / 1858,
  13939. bottom: 0.03
  13940. }
  13941. },
  13942. hand: {
  13943. height: math.unit(1.112, "feet"),
  13944. name: "Hand",
  13945. image: {
  13946. source: "./media/characters/zeta/hand.svg"
  13947. }
  13948. },
  13949. foot: {
  13950. height: math.unit(1.48, "feet"),
  13951. name: "Foot",
  13952. image: {
  13953. source: "./media/characters/zeta/foot.svg"
  13954. }
  13955. },
  13956. },
  13957. [
  13958. {
  13959. name: "Micro",
  13960. height: math.unit(6, "inches")
  13961. },
  13962. {
  13963. name: "Normal",
  13964. height: math.unit(6 + 1 / 12, "feet"),
  13965. default: true
  13966. },
  13967. {
  13968. name: "Macro",
  13969. height: math.unit(20, "feet")
  13970. },
  13971. ]
  13972. ))
  13973. characterMakers.push(() => makeCharacter(
  13974. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13975. {
  13976. front: {
  13977. height: math.unit(6, "feet"),
  13978. weight: math.unit(150, "lb"),
  13979. name: "Front",
  13980. image: {
  13981. source: "./media/characters/jamie-larsen/front.svg",
  13982. extra: 962 / 933,
  13983. bottom: 0.02
  13984. }
  13985. },
  13986. back: {
  13987. height: math.unit(6, "feet"),
  13988. weight: math.unit(150, "lb"),
  13989. name: "Back",
  13990. image: {
  13991. source: "./media/characters/jamie-larsen/back.svg",
  13992. extra: 997 / 946
  13993. }
  13994. },
  13995. },
  13996. [
  13997. {
  13998. name: "Macro",
  13999. height: math.unit(28 + 7 / 12, "feet"),
  14000. default: true
  14001. },
  14002. {
  14003. name: "Macro+",
  14004. height: math.unit(180, "feet")
  14005. },
  14006. {
  14007. name: "Megamacro",
  14008. height: math.unit(10, "miles")
  14009. },
  14010. {
  14011. name: "Gigamacro",
  14012. height: math.unit(200000, "miles")
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14018. {
  14019. front: {
  14020. height: math.unit(6, "feet"),
  14021. weight: math.unit(120, "lb"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/vance/front.svg",
  14025. extra: 1980 / 1890,
  14026. bottom: 0.09
  14027. }
  14028. },
  14029. back: {
  14030. height: math.unit(6, "feet"),
  14031. weight: math.unit(120, "lb"),
  14032. name: "Back",
  14033. image: {
  14034. source: "./media/characters/vance/back.svg",
  14035. extra: 2081 / 1994,
  14036. bottom: 0.014
  14037. }
  14038. },
  14039. hand: {
  14040. height: math.unit(0.88, "feet"),
  14041. name: "Hand",
  14042. image: {
  14043. source: "./media/characters/vance/hand.svg"
  14044. }
  14045. },
  14046. foot: {
  14047. height: math.unit(0.64, "feet"),
  14048. name: "Foot",
  14049. image: {
  14050. source: "./media/characters/vance/foot.svg"
  14051. }
  14052. },
  14053. },
  14054. [
  14055. {
  14056. name: "Small",
  14057. height: math.unit(90, "feet"),
  14058. default: true
  14059. },
  14060. {
  14061. name: "Macro",
  14062. height: math.unit(100, "meters")
  14063. },
  14064. {
  14065. name: "Megamacro",
  14066. height: math.unit(15, "miles")
  14067. },
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(6, "feet"),
  14075. weight: math.unit(180, "lb"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/xochitl/front.svg",
  14079. extra: 2297 / 2261,
  14080. bottom: 0.065
  14081. }
  14082. },
  14083. back: {
  14084. height: math.unit(6, "feet"),
  14085. weight: math.unit(180, "lb"),
  14086. name: "Back",
  14087. image: {
  14088. source: "./media/characters/xochitl/back.svg",
  14089. extra: 2386 / 2354,
  14090. bottom: 0.01
  14091. }
  14092. },
  14093. foot: {
  14094. height: math.unit(6 / 5 * 1.15, "feet"),
  14095. weight: math.unit(150, "lb"),
  14096. name: "Foot",
  14097. image: {
  14098. source: "./media/characters/xochitl/foot.svg"
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Macro",
  14105. height: math.unit(80, "feet")
  14106. },
  14107. {
  14108. name: "Macro+",
  14109. height: math.unit(400, "feet"),
  14110. default: true
  14111. },
  14112. {
  14113. name: "Gigamacro",
  14114. height: math.unit(80000, "miles")
  14115. },
  14116. {
  14117. name: "Gigamacro+",
  14118. height: math.unit(400000, "miles")
  14119. },
  14120. {
  14121. name: "Teramacro",
  14122. height: math.unit(300, "AU")
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14128. {
  14129. front: {
  14130. height: math.unit(6, "feet"),
  14131. weight: math.unit(150, "lb"),
  14132. name: "Front",
  14133. image: {
  14134. source: "./media/characters/vincent/front.svg",
  14135. extra: 1130 / 1080,
  14136. bottom: 0.055
  14137. }
  14138. },
  14139. beak: {
  14140. height: math.unit(6 * 0.1, "feet"),
  14141. name: "Beak",
  14142. image: {
  14143. source: "./media/characters/vincent/beak.svg"
  14144. }
  14145. },
  14146. hand: {
  14147. height: math.unit(6 * 0.85, "feet"),
  14148. weight: math.unit(150, "lb"),
  14149. name: "Hand",
  14150. image: {
  14151. source: "./media/characters/vincent/hand.svg"
  14152. }
  14153. },
  14154. foot: {
  14155. height: math.unit(6 * 0.19, "feet"),
  14156. weight: math.unit(150, "lb"),
  14157. name: "Foot",
  14158. image: {
  14159. source: "./media/characters/vincent/foot.svg"
  14160. }
  14161. },
  14162. },
  14163. [
  14164. {
  14165. name: "Base",
  14166. height: math.unit(6 + 5 / 12, "feet"),
  14167. default: true
  14168. },
  14169. {
  14170. name: "Macro",
  14171. height: math.unit(300, "feet")
  14172. },
  14173. {
  14174. name: "Megamacro",
  14175. height: math.unit(2, "miles")
  14176. },
  14177. {
  14178. name: "Gigamacro",
  14179. height: math.unit(1000, "miles")
  14180. },
  14181. ]
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14185. {
  14186. front: {
  14187. height: math.unit(2, "meters"),
  14188. weight: math.unit(500, "kg"),
  14189. name: "Front",
  14190. image: {
  14191. source: "./media/characters/coatl/front.svg",
  14192. extra: 3948 / 3500,
  14193. bottom: 0.082
  14194. }
  14195. },
  14196. },
  14197. [
  14198. {
  14199. name: "Normal",
  14200. height: math.unit(4, "meters")
  14201. },
  14202. {
  14203. name: "Macro",
  14204. height: math.unit(100, "meters"),
  14205. default: true
  14206. },
  14207. {
  14208. name: "Macro+",
  14209. height: math.unit(300, "meters")
  14210. },
  14211. {
  14212. name: "Megamacro",
  14213. height: math.unit(3, "gigameters")
  14214. },
  14215. {
  14216. name: "Megamacro+",
  14217. height: math.unit(300, "terameters")
  14218. },
  14219. {
  14220. name: "Megamacro++",
  14221. height: math.unit(3, "lightyears")
  14222. },
  14223. ]
  14224. ))
  14225. characterMakers.push(() => makeCharacter(
  14226. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14227. {
  14228. front: {
  14229. height: math.unit(6, "feet"),
  14230. weight: math.unit(50, "kg"),
  14231. name: "front",
  14232. image: {
  14233. source: "./media/characters/shiroryu/front.svg",
  14234. extra: 1990 / 1935
  14235. }
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Mortal Mingling",
  14241. height: math.unit(3, "meters")
  14242. },
  14243. {
  14244. name: "Kaiju-ish",
  14245. height: math.unit(250, "meters")
  14246. },
  14247. {
  14248. name: "Somewhat Godly",
  14249. height: math.unit(400, "km"),
  14250. default: true
  14251. },
  14252. {
  14253. name: "Planetary",
  14254. height: math.unit(300, "megameters")
  14255. },
  14256. {
  14257. name: "Galaxy-dwarfing",
  14258. height: math.unit(450, "kiloparsecs")
  14259. },
  14260. {
  14261. name: "Universe Eater",
  14262. height: math.unit(150, "gigaparsecs")
  14263. },
  14264. {
  14265. name: "Almost Immeasurable",
  14266. height: math.unit(1.3e266, "yottaparsecs")
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14272. {
  14273. front: {
  14274. height: math.unit(6, "feet"),
  14275. weight: math.unit(150, "lb"),
  14276. name: "Front",
  14277. image: {
  14278. source: "./media/characters/umeko/front.svg",
  14279. extra: 1,
  14280. bottom: 0.019
  14281. }
  14282. },
  14283. frontArmored: {
  14284. height: math.unit(6, "feet"),
  14285. weight: math.unit(150, "lb"),
  14286. name: "Front (Armored)",
  14287. image: {
  14288. source: "./media/characters/umeko/front-armored.svg",
  14289. extra: 1,
  14290. bottom: 0.021
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Macro",
  14297. height: math.unit(220, "feet"),
  14298. default: true
  14299. },
  14300. {
  14301. name: "Guardian Dragon",
  14302. height: math.unit(50, "miles")
  14303. },
  14304. {
  14305. name: "Cosmic",
  14306. height: math.unit(800000, "miles")
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14312. {
  14313. front: {
  14314. height: math.unit(6, "feet"),
  14315. weight: math.unit(150, "lb"),
  14316. name: "Front",
  14317. image: {
  14318. source: "./media/characters/cassidy/front.svg",
  14319. extra: 810/808,
  14320. bottom: 41/851
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Canon Height",
  14327. height: math.unit(120, "feet"),
  14328. default: true
  14329. },
  14330. {
  14331. name: "Macro+",
  14332. height: math.unit(400, "feet")
  14333. },
  14334. {
  14335. name: "Macro++",
  14336. height: math.unit(4000, "feet")
  14337. },
  14338. {
  14339. name: "Megamacro",
  14340. height: math.unit(3, "miles")
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14346. {
  14347. front: {
  14348. height: math.unit(6, "feet"),
  14349. weight: math.unit(150, "lb"),
  14350. name: "Front",
  14351. image: {
  14352. source: "./media/characters/isaac/front.svg",
  14353. extra: 896 / 815,
  14354. bottom: 0.11
  14355. }
  14356. },
  14357. },
  14358. [
  14359. {
  14360. name: "Human Size",
  14361. height: math.unit(8, "feet"),
  14362. default: true
  14363. },
  14364. {
  14365. name: "Macro",
  14366. height: math.unit(400, "feet")
  14367. },
  14368. {
  14369. name: "Megamacro",
  14370. height: math.unit(50, "miles")
  14371. },
  14372. {
  14373. name: "Canon Height",
  14374. height: math.unit(200, "AU")
  14375. },
  14376. ]
  14377. ))
  14378. characterMakers.push(() => makeCharacter(
  14379. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14380. {
  14381. front: {
  14382. height: math.unit(6, "feet"),
  14383. weight: math.unit(72, "kg"),
  14384. name: "Front",
  14385. image: {
  14386. source: "./media/characters/sleekit/front.svg",
  14387. extra: 4693 / 4487,
  14388. bottom: 0.012
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Minimum Height",
  14395. height: math.unit(10, "meters")
  14396. },
  14397. {
  14398. name: "Smaller",
  14399. height: math.unit(25, "meters")
  14400. },
  14401. {
  14402. name: "Larger",
  14403. height: math.unit(38, "meters"),
  14404. default: true
  14405. },
  14406. {
  14407. name: "Maximum height",
  14408. height: math.unit(100, "meters")
  14409. },
  14410. ]
  14411. ))
  14412. characterMakers.push(() => makeCharacter(
  14413. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14414. {
  14415. front: {
  14416. height: math.unit(6, "feet"),
  14417. weight: math.unit(150, "lb"),
  14418. name: "Front",
  14419. image: {
  14420. source: "./media/characters/nillia/front.svg",
  14421. extra: 2195 / 2037,
  14422. bottom: 0.005
  14423. }
  14424. },
  14425. back: {
  14426. height: math.unit(6, "feet"),
  14427. weight: math.unit(150, "lb"),
  14428. name: "Back",
  14429. image: {
  14430. source: "./media/characters/nillia/back.svg",
  14431. extra: 2195 / 2037,
  14432. bottom: 0.005
  14433. }
  14434. },
  14435. },
  14436. [
  14437. {
  14438. name: "Canon Height",
  14439. height: math.unit(489, "feet"),
  14440. default: true
  14441. }
  14442. ]
  14443. ))
  14444. characterMakers.push(() => makeCharacter(
  14445. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14446. {
  14447. front: {
  14448. height: math.unit(6, "feet"),
  14449. weight: math.unit(150, "lb"),
  14450. name: "Front",
  14451. image: {
  14452. source: "./media/characters/mesmyriza/front.svg",
  14453. extra: 2067 / 1784,
  14454. bottom: 0.035
  14455. }
  14456. },
  14457. foot: {
  14458. height: math.unit(6 / (250 / 35), "feet"),
  14459. name: "Foot",
  14460. image: {
  14461. source: "./media/characters/mesmyriza/foot.svg"
  14462. }
  14463. },
  14464. },
  14465. [
  14466. {
  14467. name: "Macro",
  14468. height: math.unit(457, "meters"),
  14469. default: true
  14470. },
  14471. {
  14472. name: "Megamacro",
  14473. height: math.unit(8, "megameters")
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14479. {
  14480. front: {
  14481. height: math.unit(6, "feet"),
  14482. weight: math.unit(250, "lb"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/saudade/front.svg",
  14486. extra: 1172 / 1139,
  14487. bottom: 0.035
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Micro",
  14494. height: math.unit(3, "inches")
  14495. },
  14496. {
  14497. name: "Normal",
  14498. height: math.unit(6, "feet"),
  14499. default: true
  14500. },
  14501. {
  14502. name: "Macro",
  14503. height: math.unit(50, "feet")
  14504. },
  14505. {
  14506. name: "Megamacro",
  14507. height: math.unit(2800, "feet")
  14508. },
  14509. ]
  14510. ))
  14511. characterMakers.push(() => makeCharacter(
  14512. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14513. {
  14514. front: {
  14515. height: math.unit(5 + 4 / 12, "feet"),
  14516. weight: math.unit(100, "lb"),
  14517. name: "Front",
  14518. image: {
  14519. source: "./media/characters/keireer/front.svg",
  14520. extra: 716 / 666,
  14521. bottom: 0.05
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(5 + 4 / 12, "feet"),
  14529. default: true
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14535. {
  14536. front: {
  14537. height: math.unit(6, "feet"),
  14538. weight: math.unit(90, "kg"),
  14539. name: "Front",
  14540. image: {
  14541. source: "./media/characters/mirja/front.svg",
  14542. extra: 1789 / 1683,
  14543. bottom: 0.05
  14544. }
  14545. },
  14546. frontDressed: {
  14547. height: math.unit(6, "feet"),
  14548. weight: math.unit(90, "lb"),
  14549. name: "Front (Dressed)",
  14550. image: {
  14551. source: "./media/characters/mirja/front-dressed.svg",
  14552. extra: 1789 / 1683,
  14553. bottom: 0.05
  14554. }
  14555. },
  14556. back: {
  14557. height: math.unit(6, "feet"),
  14558. weight: math.unit(90, "lb"),
  14559. name: "Back",
  14560. image: {
  14561. source: "./media/characters/mirja/back.svg",
  14562. extra: 953 / 917,
  14563. bottom: 0.017
  14564. }
  14565. },
  14566. },
  14567. [
  14568. {
  14569. name: "\"Incognito\"",
  14570. height: math.unit(3, "meters")
  14571. },
  14572. {
  14573. name: "Strolling Size",
  14574. height: math.unit(15, "km")
  14575. },
  14576. {
  14577. name: "Larger Strolling Size",
  14578. height: math.unit(400, "km")
  14579. },
  14580. {
  14581. name: "Preferred Size",
  14582. height: math.unit(5000, "km")
  14583. },
  14584. {
  14585. name: "True Size",
  14586. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14587. default: true
  14588. },
  14589. ]
  14590. ))
  14591. characterMakers.push(() => makeCharacter(
  14592. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14593. {
  14594. front: {
  14595. height: math.unit(15, "feet"),
  14596. weight: math.unit(880, "kg"),
  14597. name: "Front",
  14598. image: {
  14599. source: "./media/characters/nightraver/front.svg",
  14600. extra: 2444 / 2160,
  14601. bottom: 0.027
  14602. }
  14603. },
  14604. back: {
  14605. height: math.unit(15, "feet"),
  14606. weight: math.unit(880, "kg"),
  14607. name: "Back",
  14608. image: {
  14609. source: "./media/characters/nightraver/back.svg",
  14610. extra: 2309 / 2180,
  14611. bottom: 0.005
  14612. }
  14613. },
  14614. sole: {
  14615. height: math.unit(2.878, "feet"),
  14616. name: "Sole",
  14617. image: {
  14618. source: "./media/characters/nightraver/sole.svg"
  14619. }
  14620. },
  14621. foot: {
  14622. height: math.unit(2.285, "feet"),
  14623. name: "Foot",
  14624. image: {
  14625. source: "./media/characters/nightraver/foot.svg"
  14626. }
  14627. },
  14628. maw: {
  14629. height: math.unit(2.67, "feet"),
  14630. name: "Maw",
  14631. image: {
  14632. source: "./media/characters/nightraver/maw.svg"
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Micro",
  14639. height: math.unit(1, "cm")
  14640. },
  14641. {
  14642. name: "Normal",
  14643. height: math.unit(15, "feet"),
  14644. default: true
  14645. },
  14646. {
  14647. name: "Macro",
  14648. height: math.unit(300, "feet")
  14649. },
  14650. {
  14651. name: "Megamacro",
  14652. height: math.unit(300, "miles")
  14653. },
  14654. {
  14655. name: "Gigamacro",
  14656. height: math.unit(10000, "miles")
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14662. {
  14663. side: {
  14664. height: math.unit(2, "inches"),
  14665. weight: math.unit(5, "grams"),
  14666. name: "Side",
  14667. image: {
  14668. source: "./media/characters/arc/side.svg"
  14669. }
  14670. },
  14671. },
  14672. [
  14673. {
  14674. name: "Micro",
  14675. height: math.unit(2, "inches"),
  14676. default: true
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14682. {
  14683. front: {
  14684. height: math.unit(1.1938, "meters"),
  14685. weight: math.unit(54, "kg"),
  14686. name: "Front",
  14687. image: {
  14688. source: "./media/characters/nebula-shahar/front.svg",
  14689. extra: 1642 / 1436,
  14690. bottom: 0.06
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Megamicro",
  14697. height: math.unit(0.3, "mm")
  14698. },
  14699. {
  14700. name: "Micro",
  14701. height: math.unit(3, "cm")
  14702. },
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(138, "cm"),
  14706. default: true
  14707. },
  14708. {
  14709. name: "Macro",
  14710. height: math.unit(30, "m")
  14711. },
  14712. ]
  14713. ))
  14714. characterMakers.push(() => makeCharacter(
  14715. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14716. {
  14717. front: {
  14718. height: math.unit(5.24, "feet"),
  14719. weight: math.unit(150, "lb"),
  14720. name: "Front",
  14721. image: {
  14722. source: "./media/characters/shayla/front.svg",
  14723. extra: 1512 / 1414,
  14724. bottom: 0.01
  14725. }
  14726. },
  14727. back: {
  14728. height: math.unit(5.24, "feet"),
  14729. weight: math.unit(150, "lb"),
  14730. name: "Back",
  14731. image: {
  14732. source: "./media/characters/shayla/back.svg",
  14733. extra: 1512 / 1414
  14734. }
  14735. },
  14736. hand: {
  14737. height: math.unit(0.7781496062992126, "feet"),
  14738. name: "Hand",
  14739. image: {
  14740. source: "./media/characters/shayla/hand.svg"
  14741. }
  14742. },
  14743. foot: {
  14744. height: math.unit(1.4206036745406823, "feet"),
  14745. name: "Foot",
  14746. image: {
  14747. source: "./media/characters/shayla/foot.svg"
  14748. }
  14749. },
  14750. },
  14751. [
  14752. {
  14753. name: "Micro",
  14754. height: math.unit(0.32, "feet")
  14755. },
  14756. {
  14757. name: "Normal",
  14758. height: math.unit(5.24, "feet"),
  14759. default: true
  14760. },
  14761. {
  14762. name: "Macro",
  14763. height: math.unit(492.12, "feet")
  14764. },
  14765. {
  14766. name: "Megamacro",
  14767. height: math.unit(186.41, "miles")
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14773. {
  14774. front: {
  14775. height: math.unit(2.2, "m"),
  14776. weight: math.unit(120, "kg"),
  14777. name: "Front",
  14778. image: {
  14779. source: "./media/characters/pia-jr/front.svg",
  14780. extra: 1000 / 970,
  14781. bottom: 0.035
  14782. }
  14783. },
  14784. hand: {
  14785. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14786. name: "Hand",
  14787. image: {
  14788. source: "./media/characters/pia-jr/hand.svg"
  14789. }
  14790. },
  14791. paw: {
  14792. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14793. name: "Paw",
  14794. image: {
  14795. source: "./media/characters/pia-jr/paw.svg"
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Micro",
  14802. height: math.unit(1.2, "cm")
  14803. },
  14804. {
  14805. name: "Normal",
  14806. height: math.unit(2.2, "m"),
  14807. default: true
  14808. },
  14809. {
  14810. name: "Macro",
  14811. height: math.unit(180, "m")
  14812. },
  14813. {
  14814. name: "Megamacro",
  14815. height: math.unit(420, "km")
  14816. },
  14817. ]
  14818. ))
  14819. characterMakers.push(() => makeCharacter(
  14820. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14821. {
  14822. front: {
  14823. height: math.unit(2, "m"),
  14824. weight: math.unit(115, "kg"),
  14825. name: "Front",
  14826. image: {
  14827. source: "./media/characters/pia-sr/front.svg",
  14828. extra: 760 / 730,
  14829. bottom: 0.015
  14830. }
  14831. },
  14832. back: {
  14833. height: math.unit(2, "m"),
  14834. weight: math.unit(115, "kg"),
  14835. name: "Back",
  14836. image: {
  14837. source: "./media/characters/pia-sr/back.svg",
  14838. extra: 760 / 730,
  14839. bottom: 0.01
  14840. }
  14841. },
  14842. hand: {
  14843. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14844. name: "Hand",
  14845. image: {
  14846. source: "./media/characters/pia-sr/hand.svg"
  14847. }
  14848. },
  14849. foot: {
  14850. height: math.unit(1.83, "feet"),
  14851. name: "Foot",
  14852. image: {
  14853. source: "./media/characters/pia-sr/foot.svg"
  14854. }
  14855. },
  14856. },
  14857. [
  14858. {
  14859. name: "Micro",
  14860. height: math.unit(88, "mm")
  14861. },
  14862. {
  14863. name: "Normal",
  14864. height: math.unit(2, "m"),
  14865. default: true
  14866. },
  14867. {
  14868. name: "Macro",
  14869. height: math.unit(200, "m")
  14870. },
  14871. {
  14872. name: "Megamacro",
  14873. height: math.unit(420, "km")
  14874. },
  14875. ]
  14876. ))
  14877. characterMakers.push(() => makeCharacter(
  14878. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14879. {
  14880. front: {
  14881. height: math.unit(8 + 2 / 12, "feet"),
  14882. weight: math.unit(300, "lb"),
  14883. name: "Front",
  14884. image: {
  14885. source: "./media/characters/kibibyte/front.svg",
  14886. extra: 2221 / 2098,
  14887. bottom: 0.04
  14888. }
  14889. },
  14890. },
  14891. [
  14892. {
  14893. name: "Normal",
  14894. height: math.unit(8 + 2 / 12, "feet"),
  14895. default: true
  14896. },
  14897. {
  14898. name: "Socialable Macro",
  14899. height: math.unit(50, "feet")
  14900. },
  14901. {
  14902. name: "Macro",
  14903. height: math.unit(300, "feet")
  14904. },
  14905. {
  14906. name: "Megamacro",
  14907. height: math.unit(500, "miles")
  14908. },
  14909. ]
  14910. ))
  14911. characterMakers.push(() => makeCharacter(
  14912. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14913. {
  14914. front: {
  14915. height: math.unit(6, "feet"),
  14916. weight: math.unit(150, "lb"),
  14917. name: "Front",
  14918. image: {
  14919. source: "./media/characters/felix/front.svg",
  14920. extra: 762 / 722,
  14921. bottom: 0.02
  14922. }
  14923. },
  14924. frontClothed: {
  14925. height: math.unit(6, "feet"),
  14926. weight: math.unit(150, "lb"),
  14927. name: "Front (Clothed)",
  14928. image: {
  14929. source: "./media/characters/felix/front-clothed.svg",
  14930. extra: 762 / 722,
  14931. bottom: 0.02
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Normal",
  14938. height: math.unit(6 + 8 / 12, "feet"),
  14939. default: true
  14940. },
  14941. {
  14942. name: "Macro",
  14943. height: math.unit(2600, "feet")
  14944. },
  14945. {
  14946. name: "Megamacro",
  14947. height: math.unit(450, "miles")
  14948. },
  14949. ]
  14950. ))
  14951. characterMakers.push(() => makeCharacter(
  14952. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14953. {
  14954. front: {
  14955. height: math.unit(6 + 1 / 12, "feet"),
  14956. weight: math.unit(250, "lb"),
  14957. name: "Front",
  14958. image: {
  14959. source: "./media/characters/tobo/front.svg",
  14960. extra: 608 / 586,
  14961. bottom: 0.023
  14962. }
  14963. },
  14964. back: {
  14965. height: math.unit(6 + 1 / 12, "feet"),
  14966. weight: math.unit(250, "lb"),
  14967. name: "Back",
  14968. image: {
  14969. source: "./media/characters/tobo/back.svg",
  14970. extra: 608 / 586
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Nano",
  14977. height: math.unit(2, "nm")
  14978. },
  14979. {
  14980. name: "Megamicro",
  14981. height: math.unit(0.1, "mm")
  14982. },
  14983. {
  14984. name: "Micro",
  14985. height: math.unit(1, "inch"),
  14986. default: true
  14987. },
  14988. {
  14989. name: "Human-sized",
  14990. height: math.unit(6 + 1 / 12, "feet")
  14991. },
  14992. {
  14993. name: "Macro",
  14994. height: math.unit(250, "feet")
  14995. },
  14996. {
  14997. name: "Megamacro",
  14998. height: math.unit(75, "miles")
  14999. },
  15000. {
  15001. name: "Texas-sized",
  15002. height: math.unit(750, "miles")
  15003. },
  15004. {
  15005. name: "Teramacro",
  15006. height: math.unit(50000, "miles")
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15012. {
  15013. front: {
  15014. height: math.unit(6, "feet"),
  15015. weight: math.unit(269, "lb"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/danny-kapowsky/front.svg",
  15019. extra: 766 / 736,
  15020. bottom: 0.044
  15021. }
  15022. },
  15023. back: {
  15024. height: math.unit(6, "feet"),
  15025. weight: math.unit(269, "lb"),
  15026. name: "Back",
  15027. image: {
  15028. source: "./media/characters/danny-kapowsky/back.svg",
  15029. extra: 797 / 760,
  15030. bottom: 0.025
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Macro",
  15037. height: math.unit(150, "feet"),
  15038. default: true
  15039. },
  15040. {
  15041. name: "Macro+",
  15042. height: math.unit(200, "feet")
  15043. },
  15044. {
  15045. name: "Macro++",
  15046. height: math.unit(300, "feet")
  15047. },
  15048. {
  15049. name: "Macro+++",
  15050. height: math.unit(400, "feet")
  15051. },
  15052. ]
  15053. ))
  15054. characterMakers.push(() => makeCharacter(
  15055. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15056. {
  15057. side: {
  15058. height: math.unit(6, "feet"),
  15059. weight: math.unit(170, "lb"),
  15060. name: "Side",
  15061. image: {
  15062. source: "./media/characters/finn/side.svg",
  15063. extra: 1953 / 1807,
  15064. bottom: 0.057
  15065. }
  15066. },
  15067. },
  15068. [
  15069. {
  15070. name: "Megamacro",
  15071. height: math.unit(14445, "feet"),
  15072. default: true
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15078. {
  15079. front: {
  15080. height: math.unit(5 + 6 / 12, "feet"),
  15081. weight: math.unit(125, "lb"),
  15082. name: "Front",
  15083. image: {
  15084. source: "./media/characters/roy/front.svg",
  15085. extra: 1,
  15086. bottom: 0.11
  15087. }
  15088. },
  15089. },
  15090. [
  15091. {
  15092. name: "Micro",
  15093. height: math.unit(3, "inches"),
  15094. default: true
  15095. },
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(5 + 6 / 12, "feet")
  15099. },
  15100. {
  15101. name: "Lesser Macro",
  15102. height: math.unit(60, "feet")
  15103. },
  15104. {
  15105. name: "Greater Macro",
  15106. height: math.unit(120, "feet")
  15107. },
  15108. ]
  15109. ))
  15110. characterMakers.push(() => makeCharacter(
  15111. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15112. {
  15113. front: {
  15114. height: math.unit(6, "feet"),
  15115. weight: math.unit(100, "lb"),
  15116. name: "Front",
  15117. image: {
  15118. source: "./media/characters/aevsivs/front.svg",
  15119. extra: 1,
  15120. bottom: 0.03
  15121. }
  15122. },
  15123. back: {
  15124. height: math.unit(6, "feet"),
  15125. weight: math.unit(100, "lb"),
  15126. name: "Back",
  15127. image: {
  15128. source: "./media/characters/aevsivs/back.svg"
  15129. }
  15130. },
  15131. },
  15132. [
  15133. {
  15134. name: "Micro",
  15135. height: math.unit(2, "inches"),
  15136. default: true
  15137. },
  15138. {
  15139. name: "Normal",
  15140. height: math.unit(5, "feet")
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15146. {
  15147. front: {
  15148. height: math.unit(5 + 7 / 12, "feet"),
  15149. weight: math.unit(159, "lb"),
  15150. name: "Front",
  15151. image: {
  15152. source: "./media/characters/hildegard/front.svg",
  15153. extra: 289 / 269,
  15154. bottom: 7.63 / 297.8
  15155. }
  15156. },
  15157. back: {
  15158. height: math.unit(5 + 7 / 12, "feet"),
  15159. weight: math.unit(159, "lb"),
  15160. name: "Back",
  15161. image: {
  15162. source: "./media/characters/hildegard/back.svg",
  15163. extra: 280 / 260,
  15164. bottom: 2.3 / 282
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Normal",
  15171. height: math.unit(5 + 7 / 12, "feet"),
  15172. default: true
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15178. {
  15179. bernard: {
  15180. height: math.unit(2 + 7 / 12, "feet"),
  15181. weight: math.unit(66, "lb"),
  15182. name: "Bernard",
  15183. rename: true,
  15184. image: {
  15185. source: "./media/characters/bernard-wilder/bernard.svg",
  15186. extra: 192 / 128,
  15187. bottom: 0.05
  15188. }
  15189. },
  15190. wilder: {
  15191. height: math.unit(5 + 8 / 12, "feet"),
  15192. weight: math.unit(143, "lb"),
  15193. name: "Wilder",
  15194. rename: true,
  15195. image: {
  15196. source: "./media/characters/bernard-wilder/wilder.svg",
  15197. extra: 361 / 312,
  15198. bottom: 0.02
  15199. }
  15200. },
  15201. },
  15202. [
  15203. {
  15204. name: "Normal",
  15205. height: math.unit(2 + 7 / 12, "feet"),
  15206. default: true
  15207. },
  15208. ]
  15209. ))
  15210. characterMakers.push(() => makeCharacter(
  15211. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15212. {
  15213. anthro: {
  15214. height: math.unit(6 + 1 / 12, "feet"),
  15215. weight: math.unit(155, "lb"),
  15216. name: "Anthro",
  15217. image: {
  15218. source: "./media/characters/hearth/anthro.svg",
  15219. extra: 1178/1136,
  15220. bottom: 28/1206
  15221. }
  15222. },
  15223. feral: {
  15224. height: math.unit(3.78, "feet"),
  15225. weight: math.unit(35, "kg"),
  15226. name: "Feral",
  15227. image: {
  15228. source: "./media/characters/hearth/feral.svg",
  15229. extra: 153 / 135,
  15230. bottom: 0.03
  15231. }
  15232. },
  15233. },
  15234. [
  15235. {
  15236. name: "Normal",
  15237. height: math.unit(6 + 1 / 12, "feet"),
  15238. default: true
  15239. },
  15240. ]
  15241. ))
  15242. characterMakers.push(() => makeCharacter(
  15243. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15244. {
  15245. front: {
  15246. height: math.unit(6, "feet"),
  15247. weight: math.unit(182, "lb"),
  15248. name: "Front",
  15249. image: {
  15250. source: "./media/characters/ingrid/front.svg",
  15251. extra: 294 / 268,
  15252. bottom: 0.027
  15253. }
  15254. },
  15255. },
  15256. [
  15257. {
  15258. name: "Normal",
  15259. height: math.unit(6, "feet"),
  15260. default: true
  15261. },
  15262. ]
  15263. ))
  15264. characterMakers.push(() => makeCharacter(
  15265. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15266. {
  15267. eevee: {
  15268. height: math.unit(2 + 10 / 12, "feet"),
  15269. weight: math.unit(86, "lb"),
  15270. name: "Malgam",
  15271. image: {
  15272. source: "./media/characters/malgam/eevee.svg",
  15273. extra: 952/784,
  15274. bottom: 38/990
  15275. }
  15276. },
  15277. sylveon: {
  15278. height: math.unit(4, "feet"),
  15279. weight: math.unit(101, "lb"),
  15280. name: "Future Malgam",
  15281. rename: true,
  15282. image: {
  15283. source: "./media/characters/malgam/sylveon.svg",
  15284. extra: 371 / 325,
  15285. bottom: 0.015
  15286. }
  15287. },
  15288. gigantamax: {
  15289. height: math.unit(50, "feet"),
  15290. name: "Gigantamax Malgam",
  15291. rename: true,
  15292. image: {
  15293. source: "./media/characters/malgam/gigantamax.svg"
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Normal",
  15300. height: math.unit(2 + 10 / 12, "feet"),
  15301. default: true
  15302. },
  15303. ]
  15304. ))
  15305. characterMakers.push(() => makeCharacter(
  15306. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15307. {
  15308. front: {
  15309. height: math.unit(5 + 11 / 12, "feet"),
  15310. weight: math.unit(188, "lb"),
  15311. name: "Front",
  15312. image: {
  15313. source: "./media/characters/fleur/front.svg",
  15314. extra: 309 / 283,
  15315. bottom: 0.007
  15316. }
  15317. },
  15318. },
  15319. [
  15320. {
  15321. name: "Normal",
  15322. height: math.unit(5 + 11 / 12, "feet"),
  15323. default: true
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15329. {
  15330. front: {
  15331. height: math.unit(5 + 4 / 12, "feet"),
  15332. weight: math.unit(122, "lb"),
  15333. name: "Front",
  15334. image: {
  15335. source: "./media/characters/jude/front.svg",
  15336. extra: 288 / 273,
  15337. bottom: 0.03
  15338. }
  15339. },
  15340. },
  15341. [
  15342. {
  15343. name: "Normal",
  15344. height: math.unit(5 + 4 / 12, "feet"),
  15345. default: true
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(5 + 11 / 12, "feet"),
  15354. weight: math.unit(190, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/seara/front.svg",
  15358. extra: 1,
  15359. bottom: 0.05
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Normal",
  15366. height: math.unit(5 + 11 / 12, "feet"),
  15367. default: true
  15368. },
  15369. ]
  15370. ))
  15371. characterMakers.push(() => makeCharacter(
  15372. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15373. {
  15374. front: {
  15375. height: math.unit(16 + 5 / 12, "feet"),
  15376. weight: math.unit(524, "lb"),
  15377. name: "Front",
  15378. image: {
  15379. source: "./media/characters/caspian/front.svg",
  15380. extra: 1,
  15381. bottom: 0.04
  15382. }
  15383. },
  15384. },
  15385. [
  15386. {
  15387. name: "Normal",
  15388. height: math.unit(16 + 5 / 12, "feet"),
  15389. default: true
  15390. },
  15391. ]
  15392. ))
  15393. characterMakers.push(() => makeCharacter(
  15394. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15395. {
  15396. front: {
  15397. height: math.unit(5 + 7 / 12, "feet"),
  15398. weight: math.unit(170, "lb"),
  15399. name: "Front",
  15400. image: {
  15401. source: "./media/characters/mika/front.svg",
  15402. extra: 1,
  15403. bottom: 0.016
  15404. }
  15405. },
  15406. },
  15407. [
  15408. {
  15409. name: "Normal",
  15410. height: math.unit(5 + 7 / 12, "feet"),
  15411. default: true
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15417. {
  15418. front: {
  15419. height: math.unit(6 + 2 / 12, "feet"),
  15420. weight: math.unit(268, "lb"),
  15421. name: "Front",
  15422. image: {
  15423. source: "./media/characters/sol/front.svg",
  15424. extra: 247 / 231,
  15425. bottom: 0.05
  15426. }
  15427. },
  15428. },
  15429. [
  15430. {
  15431. name: "Normal",
  15432. height: math.unit(6 + 2 / 12, "feet"),
  15433. default: true
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15439. {
  15440. buizel: {
  15441. height: math.unit(2 + 5 / 12, "feet"),
  15442. weight: math.unit(87, "lb"),
  15443. name: "Front",
  15444. image: {
  15445. source: "./media/characters/umiko/buizel.svg",
  15446. extra: 172 / 157,
  15447. bottom: 0.01
  15448. },
  15449. form: "buizel",
  15450. default: true
  15451. },
  15452. floatzel: {
  15453. height: math.unit(5 + 9 / 12, "feet"),
  15454. weight: math.unit(250, "lb"),
  15455. name: "Front",
  15456. image: {
  15457. source: "./media/characters/umiko/floatzel.svg",
  15458. extra: 1076/1006,
  15459. bottom: 15/1091
  15460. },
  15461. form: "floatzel",
  15462. default: true
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Normal",
  15468. height: math.unit(2 + 5 / 12, "feet"),
  15469. form: "buizel",
  15470. default: true
  15471. },
  15472. {
  15473. name: "Normal",
  15474. height: math.unit(5 + 9 / 12, "feet"),
  15475. form: "floatzel",
  15476. default: true
  15477. },
  15478. ],
  15479. {
  15480. "buizel": {
  15481. name: "Buizel"
  15482. },
  15483. "floatzel": {
  15484. name: "Floatzel",
  15485. default: true
  15486. }
  15487. }
  15488. ))
  15489. characterMakers.push(() => makeCharacter(
  15490. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15491. {
  15492. front: {
  15493. height: math.unit(6 + 2 / 12, "feet"),
  15494. weight: math.unit(146, "lb"),
  15495. name: "Front",
  15496. image: {
  15497. source: "./media/characters/iliac/front.svg",
  15498. extra: 389 / 365,
  15499. bottom: 0.035
  15500. }
  15501. },
  15502. },
  15503. [
  15504. {
  15505. name: "Normal",
  15506. height: math.unit(6 + 2 / 12, "feet"),
  15507. default: true
  15508. },
  15509. ]
  15510. ))
  15511. characterMakers.push(() => makeCharacter(
  15512. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15513. {
  15514. front: {
  15515. height: math.unit(6, "feet"),
  15516. weight: math.unit(170, "lb"),
  15517. name: "Front",
  15518. image: {
  15519. source: "./media/characters/topaz/front.svg",
  15520. extra: 317 / 303,
  15521. bottom: 0.055
  15522. }
  15523. },
  15524. },
  15525. [
  15526. {
  15527. name: "Normal",
  15528. height: math.unit(6, "feet"),
  15529. default: true
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15535. {
  15536. front: {
  15537. height: math.unit(5 + 11 / 12, "feet"),
  15538. weight: math.unit(144, "lb"),
  15539. name: "Front",
  15540. image: {
  15541. source: "./media/characters/gabriel/front.svg",
  15542. extra: 285 / 262,
  15543. bottom: 0.004
  15544. }
  15545. },
  15546. },
  15547. [
  15548. {
  15549. name: "Normal",
  15550. height: math.unit(5 + 11 / 12, "feet"),
  15551. default: true
  15552. },
  15553. ]
  15554. ))
  15555. characterMakers.push(() => makeCharacter(
  15556. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15557. {
  15558. side: {
  15559. height: math.unit(6 + 5 / 12, "feet"),
  15560. weight: math.unit(300, "lb"),
  15561. name: "Side",
  15562. image: {
  15563. source: "./media/characters/tempest-suicune/side.svg",
  15564. extra: 195 / 154,
  15565. bottom: 0.04
  15566. }
  15567. },
  15568. },
  15569. [
  15570. {
  15571. name: "Normal",
  15572. height: math.unit(6 + 5 / 12, "feet"),
  15573. default: true
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15579. {
  15580. front: {
  15581. height: math.unit(7 + 2 / 12, "feet"),
  15582. weight: math.unit(322, "lb"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/vulcan/front.svg",
  15586. extra: 154 / 147,
  15587. bottom: 0.04
  15588. }
  15589. },
  15590. },
  15591. [
  15592. {
  15593. name: "Normal",
  15594. height: math.unit(7 + 2 / 12, "feet"),
  15595. default: true
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15601. {
  15602. front: {
  15603. height: math.unit(5 + 10 / 12, "feet"),
  15604. weight: math.unit(264, "lb"),
  15605. name: "Front",
  15606. image: {
  15607. source: "./media/characters/gault/front.svg",
  15608. extra: 161 / 140,
  15609. bottom: 0.028
  15610. }
  15611. },
  15612. },
  15613. [
  15614. {
  15615. name: "Normal",
  15616. height: math.unit(5 + 10 / 12, "feet"),
  15617. default: true
  15618. },
  15619. ]
  15620. ))
  15621. characterMakers.push(() => makeCharacter(
  15622. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15623. {
  15624. front: {
  15625. height: math.unit(6, "feet"),
  15626. weight: math.unit(150, "lb"),
  15627. name: "Front",
  15628. image: {
  15629. source: "./media/characters/shard/front.svg",
  15630. extra: 273 / 238,
  15631. bottom: 0.02
  15632. }
  15633. },
  15634. },
  15635. [
  15636. {
  15637. name: "Normal",
  15638. height: math.unit(3 + 6 / 12, "feet"),
  15639. default: true
  15640. },
  15641. ]
  15642. ))
  15643. characterMakers.push(() => makeCharacter(
  15644. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15645. {
  15646. front: {
  15647. height: math.unit(5 + 11 / 12, "feet"),
  15648. weight: math.unit(146, "lb"),
  15649. name: "Front",
  15650. image: {
  15651. source: "./media/characters/ashe/front.svg",
  15652. extra: 400 / 373,
  15653. bottom: 0.01
  15654. }
  15655. },
  15656. },
  15657. [
  15658. {
  15659. name: "Normal",
  15660. height: math.unit(5 + 11 / 12, "feet"),
  15661. default: true
  15662. },
  15663. ]
  15664. ))
  15665. characterMakers.push(() => makeCharacter(
  15666. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15667. {
  15668. front: {
  15669. height: math.unit(5 + 5 / 12, "feet"),
  15670. weight: math.unit(135, "lb"),
  15671. name: "Front",
  15672. image: {
  15673. source: "./media/characters/beatrix/front.svg",
  15674. extra: 392 / 379,
  15675. bottom: 0.01
  15676. }
  15677. },
  15678. },
  15679. [
  15680. {
  15681. name: "Normal",
  15682. height: math.unit(6, "feet"),
  15683. default: true
  15684. },
  15685. ]
  15686. ))
  15687. characterMakers.push(() => makeCharacter(
  15688. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15689. {
  15690. front: {
  15691. height: math.unit(6 + 2/12, "feet"),
  15692. weight: math.unit(135, "lb"),
  15693. name: "Front",
  15694. image: {
  15695. source: "./media/characters/ignatius/front.svg",
  15696. extra: 1380/1259,
  15697. bottom: 27/1407
  15698. }
  15699. },
  15700. },
  15701. [
  15702. {
  15703. name: "Normal",
  15704. height: math.unit(6 + 2/12, "feet"),
  15705. default: true
  15706. },
  15707. ]
  15708. ))
  15709. characterMakers.push(() => makeCharacter(
  15710. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15711. {
  15712. front: {
  15713. height: math.unit(6 + 2 / 12, "feet"),
  15714. weight: math.unit(138, "lb"),
  15715. name: "Front",
  15716. image: {
  15717. source: "./media/characters/mei-li/front.svg",
  15718. extra: 237 / 229,
  15719. bottom: 0.03
  15720. }
  15721. },
  15722. },
  15723. [
  15724. {
  15725. name: "Normal",
  15726. height: math.unit(6 + 2 / 12, "feet"),
  15727. default: true
  15728. },
  15729. ]
  15730. ))
  15731. characterMakers.push(() => makeCharacter(
  15732. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15733. {
  15734. front: {
  15735. height: math.unit(2 + 4 / 12, "feet"),
  15736. weight: math.unit(62, "lb"),
  15737. name: "Front",
  15738. image: {
  15739. source: "./media/characters/puru/front.svg",
  15740. extra: 206 / 149,
  15741. bottom: 0.06
  15742. }
  15743. },
  15744. },
  15745. [
  15746. {
  15747. name: "Normal",
  15748. height: math.unit(2 + 4 / 12, "feet"),
  15749. default: true
  15750. },
  15751. ]
  15752. ))
  15753. characterMakers.push(() => makeCharacter(
  15754. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15755. {
  15756. anthro: {
  15757. height: math.unit(5 + 8/12, "feet"),
  15758. weight: math.unit(200, "lb"),
  15759. energyNeed: math.unit(2000, "kcal"),
  15760. name: "Anthro",
  15761. image: {
  15762. source: "./media/characters/kee/anthro.svg",
  15763. extra: 3251/3184,
  15764. bottom: 250/3501
  15765. }
  15766. },
  15767. taur: {
  15768. height: math.unit(11, "feet"),
  15769. weight: math.unit(500, "lb"),
  15770. energyNeed: math.unit(5000, "kcal"),
  15771. name: "Taur",
  15772. image: {
  15773. source: "./media/characters/kee/taur.svg",
  15774. extra: 1362/1320,
  15775. bottom: 83/1445
  15776. }
  15777. },
  15778. },
  15779. [
  15780. {
  15781. name: "Normal",
  15782. height: math.unit(5 + 8/12, "feet"),
  15783. default: true
  15784. },
  15785. {
  15786. name: "Macro",
  15787. height: math.unit(35, "feet")
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15793. {
  15794. anthro: {
  15795. height: math.unit(7, "feet"),
  15796. weight: math.unit(190, "lb"),
  15797. name: "Anthro",
  15798. image: {
  15799. source: "./media/characters/cobalt-dracha/anthro.svg",
  15800. extra: 231 / 225,
  15801. bottom: 0.04
  15802. }
  15803. },
  15804. feral: {
  15805. height: math.unit(9 + 7 / 12, "feet"),
  15806. weight: math.unit(294, "lb"),
  15807. name: "Feral",
  15808. image: {
  15809. source: "./media/characters/cobalt-dracha/feral.svg",
  15810. extra: 692 / 633,
  15811. bottom: 0.05
  15812. }
  15813. },
  15814. },
  15815. [
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(7, "feet"),
  15819. default: true
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15825. {
  15826. fallen: {
  15827. height: math.unit(11 + 8 / 12, "feet"),
  15828. weight: math.unit(485, "lb"),
  15829. name: "Java (Fallen)",
  15830. rename: true,
  15831. image: {
  15832. source: "./media/characters/java/fallen.svg",
  15833. extra: 226 / 208,
  15834. bottom: 0.005
  15835. }
  15836. },
  15837. godkin: {
  15838. height: math.unit(10 + 6 / 12, "feet"),
  15839. weight: math.unit(328, "lb"),
  15840. name: "Java (Godkin)",
  15841. rename: true,
  15842. image: {
  15843. source: "./media/characters/java/godkin.svg",
  15844. extra: 1104/1068,
  15845. bottom: 36/1140
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Normal",
  15852. height: math.unit(11 + 8 / 12, "feet"),
  15853. default: true
  15854. },
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15859. {
  15860. front: {
  15861. height: math.unit(5 + 9 / 12, "feet"),
  15862. weight: math.unit(170, "lb"),
  15863. name: "Front",
  15864. image: {
  15865. source: "./media/characters/purna/front.svg",
  15866. extra: 239 / 229,
  15867. bottom: 0.01
  15868. }
  15869. },
  15870. },
  15871. [
  15872. {
  15873. name: "Normal",
  15874. height: math.unit(5 + 9 / 12, "feet"),
  15875. default: true
  15876. },
  15877. ]
  15878. ))
  15879. characterMakers.push(() => makeCharacter(
  15880. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15881. {
  15882. front: {
  15883. height: math.unit(5 + 9 / 12, "feet"),
  15884. weight: math.unit(142, "lb"),
  15885. name: "Front",
  15886. image: {
  15887. source: "./media/characters/kuva/front.svg",
  15888. extra: 281 / 271,
  15889. bottom: 0.006
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Normal",
  15896. height: math.unit(5 + 9 / 12, "feet"),
  15897. default: true
  15898. },
  15899. ]
  15900. ))
  15901. characterMakers.push(() => makeCharacter(
  15902. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15903. {
  15904. anthro: {
  15905. height: math.unit(9 + 2 / 12, "feet"),
  15906. weight: math.unit(270, "lb"),
  15907. name: "Anthro",
  15908. image: {
  15909. source: "./media/characters/embra/anthro.svg",
  15910. extra: 200 / 187,
  15911. bottom: 0.02
  15912. }
  15913. },
  15914. feral: {
  15915. height: math.unit(18 + 8 / 12, "feet"),
  15916. weight: math.unit(576, "lb"),
  15917. name: "Feral",
  15918. image: {
  15919. source: "./media/characters/embra/feral.svg",
  15920. extra: 152 / 137,
  15921. bottom: 0.037
  15922. }
  15923. },
  15924. },
  15925. [
  15926. {
  15927. name: "Normal",
  15928. height: math.unit(9 + 2 / 12, "feet"),
  15929. default: true
  15930. },
  15931. ]
  15932. ))
  15933. characterMakers.push(() => makeCharacter(
  15934. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15935. {
  15936. anthro: {
  15937. height: math.unit(10 + 9 / 12, "feet"),
  15938. weight: math.unit(224, "lb"),
  15939. name: "Anthro",
  15940. image: {
  15941. source: "./media/characters/grottos/anthro.svg",
  15942. extra: 350 / 332,
  15943. bottom: 0.045
  15944. }
  15945. },
  15946. feral: {
  15947. height: math.unit(20 + 7 / 12, "feet"),
  15948. weight: math.unit(629, "lb"),
  15949. name: "Feral",
  15950. image: {
  15951. source: "./media/characters/grottos/feral.svg",
  15952. extra: 207 / 190,
  15953. bottom: 0.05
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(10 + 9 / 12, "feet"),
  15961. default: true
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15967. {
  15968. anthro: {
  15969. height: math.unit(9 + 6 / 12, "feet"),
  15970. weight: math.unit(298, "lb"),
  15971. name: "Anthro",
  15972. image: {
  15973. source: "./media/characters/frifna/anthro.svg",
  15974. extra: 282 / 269,
  15975. bottom: 0.015
  15976. }
  15977. },
  15978. feral: {
  15979. height: math.unit(16 + 2 / 12, "feet"),
  15980. weight: math.unit(624, "lb"),
  15981. name: "Feral",
  15982. image: {
  15983. source: "./media/characters/frifna/feral.svg"
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(9 + 6 / 12, "feet"),
  15991. default: true
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(6 + 2 / 12, "feet"),
  16000. weight: math.unit(168, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/elise/front.svg",
  16004. extra: 276 / 271
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Normal",
  16011. height: math.unit(6 + 2 / 12, "feet"),
  16012. default: true
  16013. },
  16014. ]
  16015. ))
  16016. characterMakers.push(() => makeCharacter(
  16017. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16018. {
  16019. front: {
  16020. height: math.unit(5 + 10 / 12, "feet"),
  16021. weight: math.unit(210, "lb"),
  16022. name: "Front",
  16023. image: {
  16024. source: "./media/characters/glade/front.svg",
  16025. extra: 258 / 247,
  16026. bottom: 0.008
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(5 + 10 / 12, "feet"),
  16034. default: true
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(5 + 10 / 12, "feet"),
  16043. weight: math.unit(129, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/rina/front.svg",
  16047. extra: 266 / 255,
  16048. bottom: 0.005
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(5 + 10 / 12, "feet"),
  16056. default: true
  16057. },
  16058. ]
  16059. ))
  16060. characterMakers.push(() => makeCharacter(
  16061. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16062. {
  16063. front: {
  16064. height: math.unit(6 + 1 / 12, "feet"),
  16065. weight: math.unit(192, "lb"),
  16066. name: "Front",
  16067. image: {
  16068. source: "./media/characters/veronica/front.svg",
  16069. extra: 319 / 309,
  16070. bottom: 0.005
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Normal",
  16077. height: math.unit(6 + 1 / 12, "feet"),
  16078. default: true
  16079. },
  16080. ]
  16081. ))
  16082. characterMakers.push(() => makeCharacter(
  16083. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16084. {
  16085. front: {
  16086. height: math.unit(9 + 3 / 12, "feet"),
  16087. weight: math.unit(1100, "lb"),
  16088. name: "Front",
  16089. image: {
  16090. source: "./media/characters/braxton/front.svg",
  16091. extra: 1057 / 984,
  16092. bottom: 0.05
  16093. }
  16094. },
  16095. },
  16096. [
  16097. {
  16098. name: "Normal",
  16099. height: math.unit(9 + 3 / 12, "feet")
  16100. },
  16101. {
  16102. name: "Giant",
  16103. height: math.unit(300, "feet"),
  16104. default: true
  16105. },
  16106. {
  16107. name: "Macro",
  16108. height: math.unit(700, "feet")
  16109. },
  16110. {
  16111. name: "Megamacro",
  16112. height: math.unit(6000, "feet")
  16113. },
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16118. {
  16119. front: {
  16120. height: math.unit(6 + 7 / 12, "feet"),
  16121. weight: math.unit(150, "lb"),
  16122. name: "Front",
  16123. image: {
  16124. source: "./media/characters/blue-feyonics/front.svg",
  16125. extra: 1403 / 1306,
  16126. bottom: 0.047
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Normal",
  16133. height: math.unit(6 + 7 / 12, "feet"),
  16134. default: true
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(1.8, "meters"),
  16143. weight: math.unit(60, "kg"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/maxwell/front.svg",
  16147. extra: 2060 / 1873
  16148. }
  16149. },
  16150. },
  16151. [
  16152. {
  16153. name: "Micro",
  16154. height: math.unit(1, "mm")
  16155. },
  16156. {
  16157. name: "Normal",
  16158. height: math.unit(1.8, "meter"),
  16159. default: true
  16160. },
  16161. {
  16162. name: "Macro",
  16163. height: math.unit(30, "meters")
  16164. },
  16165. {
  16166. name: "Megamacro",
  16167. height: math.unit(10, "km")
  16168. },
  16169. ]
  16170. ))
  16171. characterMakers.push(() => makeCharacter(
  16172. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16173. {
  16174. front: {
  16175. height: math.unit(6, "feet"),
  16176. weight: math.unit(150, "lb"),
  16177. name: "Front",
  16178. image: {
  16179. source: "./media/characters/jack/front.svg",
  16180. extra: 1754 / 1640,
  16181. bottom: 0.01
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Normal",
  16188. height: math.unit(80000, "feet"),
  16189. default: true
  16190. },
  16191. {
  16192. name: "Max size",
  16193. height: math.unit(10, "lightyears")
  16194. },
  16195. ]
  16196. ))
  16197. characterMakers.push(() => makeCharacter(
  16198. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16199. {
  16200. urban: {
  16201. height: math.unit(5, "feet"),
  16202. weight: math.unit(240, "lb"),
  16203. name: "Urban",
  16204. image: {
  16205. source: "./media/characters/cafat/urban.svg",
  16206. extra: 1223/1126,
  16207. bottom: 205/1428
  16208. }
  16209. },
  16210. summer: {
  16211. height: math.unit(5, "feet"),
  16212. weight: math.unit(240, "lb"),
  16213. name: "Summer",
  16214. image: {
  16215. source: "./media/characters/cafat/summer.svg",
  16216. extra: 1223/1126,
  16217. bottom: 205/1428
  16218. }
  16219. },
  16220. winter: {
  16221. height: math.unit(5, "feet"),
  16222. weight: math.unit(240, "lb"),
  16223. name: "Winter",
  16224. image: {
  16225. source: "./media/characters/cafat/winter.svg",
  16226. extra: 1223/1126,
  16227. bottom: 205/1428
  16228. }
  16229. },
  16230. lingerie: {
  16231. height: math.unit(5, "feet"),
  16232. weight: math.unit(240, "lb"),
  16233. name: "Lingerie",
  16234. image: {
  16235. source: "./media/characters/cafat/lingerie.svg",
  16236. extra: 1223/1126,
  16237. bottom: 205/1428
  16238. }
  16239. },
  16240. upright: {
  16241. height: math.unit(6.3, "feet"),
  16242. weight: math.unit(240, "lb"),
  16243. name: "Upright",
  16244. image: {
  16245. source: "./media/characters/cafat/upright.svg",
  16246. bottom: 0.01
  16247. }
  16248. },
  16249. uprightFull: {
  16250. height: math.unit(6.3, "feet"),
  16251. weight: math.unit(240, "lb"),
  16252. name: "Upright (Full)",
  16253. image: {
  16254. source: "./media/characters/cafat/upright-full.svg",
  16255. bottom: 0.01
  16256. }
  16257. },
  16258. },
  16259. [
  16260. {
  16261. name: "Small",
  16262. height: math.unit(5, "feet"),
  16263. default: true
  16264. },
  16265. {
  16266. name: "Large",
  16267. height: math.unit(13, "feet")
  16268. },
  16269. ]
  16270. ))
  16271. characterMakers.push(() => makeCharacter(
  16272. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16273. {
  16274. front: {
  16275. height: math.unit(6, "feet"),
  16276. weight: math.unit(150, "lb"),
  16277. name: "Front",
  16278. image: {
  16279. source: "./media/characters/verin-raharra/front.svg",
  16280. extra: 5019 / 4835,
  16281. bottom: 0.023
  16282. }
  16283. },
  16284. },
  16285. [
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(7 + 5 / 12, "feet"),
  16289. default: true
  16290. },
  16291. {
  16292. name: "Upsized",
  16293. height: math.unit(20, "feet")
  16294. },
  16295. ]
  16296. ))
  16297. characterMakers.push(() => makeCharacter(
  16298. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16299. {
  16300. front: {
  16301. height: math.unit(7, "feet"),
  16302. weight: math.unit(230, "lb"),
  16303. name: "Front",
  16304. image: {
  16305. source: "./media/characters/nakata/front.svg",
  16306. extra: 1.005,
  16307. bottom: 0.01
  16308. }
  16309. },
  16310. },
  16311. [
  16312. {
  16313. name: "Normal",
  16314. height: math.unit(7, "feet"),
  16315. default: true
  16316. },
  16317. {
  16318. name: "Big",
  16319. height: math.unit(14, "feet")
  16320. },
  16321. {
  16322. name: "Macro",
  16323. height: math.unit(400, "feet")
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16329. {
  16330. front: {
  16331. height: math.unit(4.91, "feet"),
  16332. weight: math.unit(100, "lb"),
  16333. name: "Front",
  16334. image: {
  16335. source: "./media/characters/lily/front.svg",
  16336. extra: 1585 / 1415,
  16337. bottom: 0.02
  16338. }
  16339. },
  16340. },
  16341. [
  16342. {
  16343. name: "Normal",
  16344. height: math.unit(4.91, "feet"),
  16345. default: true
  16346. },
  16347. ]
  16348. ))
  16349. characterMakers.push(() => makeCharacter(
  16350. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16351. {
  16352. laying: {
  16353. height: math.unit(4 + 4 / 12, "feet"),
  16354. weight: math.unit(600, "lb"),
  16355. name: "Laying",
  16356. image: {
  16357. source: "./media/characters/sheila/laying.svg",
  16358. extra: 1333 / 1265,
  16359. bottom: 0.16
  16360. }
  16361. },
  16362. },
  16363. [
  16364. {
  16365. name: "Normal",
  16366. height: math.unit(4 + 4 / 12, "feet"),
  16367. default: true
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(6, "feet"),
  16376. weight: math.unit(190, "lb"),
  16377. name: "Front",
  16378. image: {
  16379. source: "./media/characters/sax/front.svg",
  16380. extra: 1187 / 973,
  16381. bottom: 0.042
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Micro",
  16388. height: math.unit(4, "inches"),
  16389. default: true
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16395. {
  16396. front: {
  16397. height: math.unit(6, "feet"),
  16398. weight: math.unit(150, "lb"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/pandora/front.svg",
  16402. extra: 2720 / 2556,
  16403. bottom: 0.015
  16404. }
  16405. },
  16406. back: {
  16407. height: math.unit(6, "feet"),
  16408. weight: math.unit(150, "lb"),
  16409. name: "Back",
  16410. image: {
  16411. source: "./media/characters/pandora/back.svg",
  16412. extra: 2720 / 2556,
  16413. bottom: 0.01
  16414. }
  16415. },
  16416. beans: {
  16417. height: math.unit(6 / 8, "feet"),
  16418. name: "Beans",
  16419. image: {
  16420. source: "./media/characters/pandora/beans.svg"
  16421. }
  16422. },
  16423. collar: {
  16424. height: math.unit(0.31, "feet"),
  16425. name: "Collar",
  16426. image: {
  16427. source: "./media/characters/pandora/collar.svg"
  16428. }
  16429. },
  16430. skirt: {
  16431. height: math.unit(6, "feet"),
  16432. weight: math.unit(150, "lb"),
  16433. name: "Skirt",
  16434. image: {
  16435. source: "./media/characters/pandora/skirt.svg",
  16436. extra: 1622 / 1525,
  16437. bottom: 0.015
  16438. }
  16439. },
  16440. hoodie: {
  16441. height: math.unit(6, "feet"),
  16442. weight: math.unit(150, "lb"),
  16443. name: "Hoodie",
  16444. image: {
  16445. source: "./media/characters/pandora/hoodie.svg",
  16446. extra: 1622 / 1525,
  16447. bottom: 0.015
  16448. }
  16449. },
  16450. casual: {
  16451. height: math.unit(6, "feet"),
  16452. weight: math.unit(150, "lb"),
  16453. name: "Casual",
  16454. image: {
  16455. source: "./media/characters/pandora/casual.svg",
  16456. extra: 1622 / 1525,
  16457. bottom: 0.015
  16458. }
  16459. },
  16460. },
  16461. [
  16462. {
  16463. name: "Normal",
  16464. height: math.unit(6, "feet")
  16465. },
  16466. {
  16467. name: "Big Steppy",
  16468. height: math.unit(1, "km"),
  16469. default: true
  16470. },
  16471. {
  16472. name: "Galactic Steppy",
  16473. height: math.unit(2, "gigameters")
  16474. },
  16475. ]
  16476. ))
  16477. characterMakers.push(() => makeCharacter(
  16478. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16479. {
  16480. side: {
  16481. height: math.unit(10, "feet"),
  16482. weight: math.unit(800, "kg"),
  16483. name: "Side",
  16484. image: {
  16485. source: "./media/characters/venio-darcony/side.svg",
  16486. extra: 1373 / 1003,
  16487. bottom: 0.037
  16488. }
  16489. },
  16490. front: {
  16491. height: math.unit(19, "feet"),
  16492. weight: math.unit(800, "kg"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/venio-darcony/front.svg"
  16496. }
  16497. },
  16498. back: {
  16499. height: math.unit(19, "feet"),
  16500. weight: math.unit(800, "kg"),
  16501. name: "Back",
  16502. image: {
  16503. source: "./media/characters/venio-darcony/back.svg"
  16504. }
  16505. },
  16506. sideNsfw: {
  16507. height: math.unit(10, "feet"),
  16508. weight: math.unit(800, "kg"),
  16509. name: "Side (NSFW)",
  16510. image: {
  16511. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16512. extra: 1373 / 1003,
  16513. bottom: 0.037
  16514. }
  16515. },
  16516. frontNsfw: {
  16517. height: math.unit(19, "feet"),
  16518. weight: math.unit(800, "kg"),
  16519. name: "Front (NSFW)",
  16520. image: {
  16521. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16522. }
  16523. },
  16524. backNsfw: {
  16525. height: math.unit(19, "feet"),
  16526. weight: math.unit(800, "kg"),
  16527. name: "Back (NSFW)",
  16528. image: {
  16529. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16530. }
  16531. },
  16532. sideArmored: {
  16533. height: math.unit(10, "feet"),
  16534. weight: math.unit(800, "kg"),
  16535. name: "Side (Armored)",
  16536. image: {
  16537. source: "./media/characters/venio-darcony/side-armored.svg",
  16538. extra: 1373 / 1003,
  16539. bottom: 0.037
  16540. }
  16541. },
  16542. frontArmored: {
  16543. height: math.unit(19, "feet"),
  16544. weight: math.unit(900, "kg"),
  16545. name: "Front (Armored)",
  16546. image: {
  16547. source: "./media/characters/venio-darcony/front-armored.svg"
  16548. }
  16549. },
  16550. backArmored: {
  16551. height: math.unit(19, "feet"),
  16552. weight: math.unit(900, "kg"),
  16553. name: "Back (Armored)",
  16554. image: {
  16555. source: "./media/characters/venio-darcony/back-armored.svg"
  16556. }
  16557. },
  16558. sword: {
  16559. height: math.unit(10, "feet"),
  16560. weight: math.unit(50, "lb"),
  16561. name: "Sword",
  16562. image: {
  16563. source: "./media/characters/venio-darcony/sword.svg"
  16564. }
  16565. },
  16566. },
  16567. [
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(10, "feet")
  16571. },
  16572. {
  16573. name: "Macro",
  16574. height: math.unit(130, "feet"),
  16575. default: true
  16576. },
  16577. {
  16578. name: "Macro+",
  16579. height: math.unit(240, "feet")
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16585. {
  16586. front: {
  16587. height: math.unit(6, "feet"),
  16588. weight: math.unit(150, "lb"),
  16589. name: "Front",
  16590. image: {
  16591. source: "./media/characters/veski/front.svg",
  16592. extra: 1299 / 1225,
  16593. bottom: 0.04
  16594. }
  16595. },
  16596. back: {
  16597. height: math.unit(6, "feet"),
  16598. weight: math.unit(150, "lb"),
  16599. name: "Back",
  16600. image: {
  16601. source: "./media/characters/veski/back.svg",
  16602. extra: 1299 / 1225,
  16603. bottom: 0.008
  16604. }
  16605. },
  16606. maw: {
  16607. height: math.unit(1.5 * 1.21, "feet"),
  16608. name: "Maw",
  16609. image: {
  16610. source: "./media/characters/veski/maw.svg"
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Macro",
  16617. height: math.unit(2, "km"),
  16618. default: true
  16619. },
  16620. ]
  16621. ))
  16622. characterMakers.push(() => makeCharacter(
  16623. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16624. {
  16625. front: {
  16626. height: math.unit(5 + 7 / 12, "feet"),
  16627. name: "Front",
  16628. image: {
  16629. source: "./media/characters/isabelle/front.svg",
  16630. extra: 2130 / 1976,
  16631. bottom: 0.05
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Supermicro",
  16638. height: math.unit(10, "micrometers")
  16639. },
  16640. {
  16641. name: "Micro",
  16642. height: math.unit(1, "inch")
  16643. },
  16644. {
  16645. name: "Tiny",
  16646. height: math.unit(5, "inches")
  16647. },
  16648. {
  16649. name: "Standard",
  16650. height: math.unit(5 + 7 / 12, "inches")
  16651. },
  16652. {
  16653. name: "Macro",
  16654. height: math.unit(80, "meters"),
  16655. default: true
  16656. },
  16657. {
  16658. name: "Megamacro",
  16659. height: math.unit(250, "meters")
  16660. },
  16661. {
  16662. name: "Gigamacro",
  16663. height: math.unit(5, "km")
  16664. },
  16665. {
  16666. name: "Cosmic",
  16667. height: math.unit(2.5e6, "miles")
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(6, "feet"),
  16676. weight: math.unit(150, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/hanzo/front.svg",
  16680. extra: 374 / 344,
  16681. bottom: 0.02
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(8, "feet"),
  16689. default: true
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(7, "feet"),
  16698. weight: math.unit(130, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/anna/front.svg",
  16702. extra: 169 / 145,
  16703. bottom: 0.06
  16704. }
  16705. },
  16706. full: {
  16707. height: math.unit(4.96, "feet"),
  16708. weight: math.unit(220, "lb"),
  16709. name: "Full",
  16710. image: {
  16711. source: "./media/characters/anna/full.svg",
  16712. extra: 138 / 114,
  16713. bottom: 0.15
  16714. }
  16715. },
  16716. tongue: {
  16717. height: math.unit(2.53, "feet"),
  16718. name: "Tongue",
  16719. image: {
  16720. source: "./media/characters/anna/tongue.svg"
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(7, "feet"),
  16728. default: true
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16734. {
  16735. front: {
  16736. height: math.unit(7, "feet"),
  16737. weight: math.unit(150, "lb"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/ian-corvid/front.svg",
  16741. extra: 150 / 142,
  16742. bottom: 0.02
  16743. }
  16744. },
  16745. back: {
  16746. height: math.unit(7, "feet"),
  16747. weight: math.unit(150, "lb"),
  16748. name: "Back",
  16749. image: {
  16750. source: "./media/characters/ian-corvid/back.svg",
  16751. extra: 150 / 143,
  16752. bottom: 0.01
  16753. }
  16754. },
  16755. stomping: {
  16756. height: math.unit(7, "feet"),
  16757. weight: math.unit(150, "lb"),
  16758. name: "Stomping",
  16759. image: {
  16760. source: "./media/characters/ian-corvid/stomping.svg",
  16761. extra: 76 / 72
  16762. }
  16763. },
  16764. sitting: {
  16765. height: math.unit(7 / 1.8, "feet"),
  16766. weight: math.unit(150, "lb"),
  16767. name: "Sitting",
  16768. image: {
  16769. source: "./media/characters/ian-corvid/sitting.svg",
  16770. extra: 1400 / 1269,
  16771. bottom: 0.15
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Tiny Microw",
  16778. height: math.unit(1, "inch")
  16779. },
  16780. {
  16781. name: "Microw",
  16782. height: math.unit(6, "inches")
  16783. },
  16784. {
  16785. name: "Crow",
  16786. height: math.unit(7 + 1 / 12, "feet"),
  16787. default: true
  16788. },
  16789. {
  16790. name: "Macrow",
  16791. height: math.unit(176, "feet")
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16797. {
  16798. front: {
  16799. height: math.unit(5 + 7 / 12, "feet"),
  16800. weight: math.unit(147, "lb"),
  16801. name: "Front",
  16802. image: {
  16803. source: "./media/characters/natalie-kellon/front.svg",
  16804. extra: 1214 / 1141,
  16805. bottom: 0.02
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Micro",
  16812. height: math.unit(1 / 16, "inch")
  16813. },
  16814. {
  16815. name: "Tiny",
  16816. height: math.unit(4, "inches")
  16817. },
  16818. {
  16819. name: "Normal",
  16820. height: math.unit(5 + 7 / 12, "feet"),
  16821. default: true
  16822. },
  16823. {
  16824. name: "Amazon",
  16825. height: math.unit(12, "feet")
  16826. },
  16827. {
  16828. name: "Giantess",
  16829. height: math.unit(160, "meters")
  16830. },
  16831. {
  16832. name: "Titaness",
  16833. height: math.unit(800, "meters")
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16839. {
  16840. front: {
  16841. height: math.unit(6, "feet"),
  16842. weight: math.unit(150, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/alluria/front.svg",
  16846. extra: 806 / 738,
  16847. bottom: 0.01
  16848. }
  16849. },
  16850. side: {
  16851. height: math.unit(6, "feet"),
  16852. weight: math.unit(150, "lb"),
  16853. name: "Side",
  16854. image: {
  16855. source: "./media/characters/alluria/side.svg",
  16856. extra: 800 / 750,
  16857. }
  16858. },
  16859. back: {
  16860. height: math.unit(6, "feet"),
  16861. weight: math.unit(150, "lb"),
  16862. name: "Back",
  16863. image: {
  16864. source: "./media/characters/alluria/back.svg",
  16865. extra: 806 / 738,
  16866. }
  16867. },
  16868. frontMaid: {
  16869. height: math.unit(6, "feet"),
  16870. weight: math.unit(150, "lb"),
  16871. name: "Front (Maid)",
  16872. image: {
  16873. source: "./media/characters/alluria/front-maid.svg",
  16874. extra: 806 / 738,
  16875. bottom: 0.01
  16876. }
  16877. },
  16878. sideMaid: {
  16879. height: math.unit(6, "feet"),
  16880. weight: math.unit(150, "lb"),
  16881. name: "Side (Maid)",
  16882. image: {
  16883. source: "./media/characters/alluria/side-maid.svg",
  16884. extra: 800 / 750,
  16885. bottom: 0.005
  16886. }
  16887. },
  16888. backMaid: {
  16889. height: math.unit(6, "feet"),
  16890. weight: math.unit(150, "lb"),
  16891. name: "Back (Maid)",
  16892. image: {
  16893. source: "./media/characters/alluria/back-maid.svg",
  16894. extra: 806 / 738,
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Micro",
  16901. height: math.unit(6, "inches"),
  16902. default: true
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(6, "feet"),
  16911. weight: math.unit(150, "lb"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/kyle/front.svg",
  16915. extra: 1069 / 962,
  16916. bottom: 77.228 / 1727.45
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Macro",
  16923. height: math.unit(150, "feet"),
  16924. default: true
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16930. {
  16931. front: {
  16932. height: math.unit(6, "feet"),
  16933. weight: math.unit(300, "lb"),
  16934. name: "Front",
  16935. image: {
  16936. source: "./media/characters/duncan/front.svg",
  16937. extra: 1650 / 1482,
  16938. bottom: 0.05
  16939. }
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Macro",
  16945. height: math.unit(100, "feet"),
  16946. default: true
  16947. },
  16948. ]
  16949. ))
  16950. characterMakers.push(() => makeCharacter(
  16951. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16952. {
  16953. front: {
  16954. height: math.unit(5 + 4 / 12, "feet"),
  16955. weight: math.unit(220, "lb"),
  16956. name: "Front",
  16957. image: {
  16958. source: "./media/characters/memory/front.svg",
  16959. extra: 3641 / 3545,
  16960. bottom: 0.03
  16961. }
  16962. },
  16963. back: {
  16964. height: math.unit(5 + 4 / 12, "feet"),
  16965. weight: math.unit(220, "lb"),
  16966. name: "Back",
  16967. image: {
  16968. source: "./media/characters/memory/back.svg",
  16969. extra: 3641 / 3545,
  16970. bottom: 0.025
  16971. }
  16972. },
  16973. frontSkirt: {
  16974. height: math.unit(5 + 4 / 12, "feet"),
  16975. weight: math.unit(220, "lb"),
  16976. name: "Front (Skirt)",
  16977. image: {
  16978. source: "./media/characters/memory/front-skirt.svg",
  16979. extra: 3641 / 3545,
  16980. bottom: 0.03
  16981. }
  16982. },
  16983. frontDress: {
  16984. height: math.unit(5 + 4 / 12, "feet"),
  16985. weight: math.unit(220, "lb"),
  16986. name: "Front (Dress)",
  16987. image: {
  16988. source: "./media/characters/memory/front-dress.svg",
  16989. extra: 3641 / 3545,
  16990. bottom: 0.03
  16991. }
  16992. },
  16993. },
  16994. [
  16995. {
  16996. name: "Micro",
  16997. height: math.unit(6, "inches"),
  16998. default: true
  16999. },
  17000. {
  17001. name: "Normal",
  17002. height: math.unit(5 + 4 / 12, "feet")
  17003. },
  17004. ]
  17005. ))
  17006. characterMakers.push(() => makeCharacter(
  17007. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17008. {
  17009. front: {
  17010. height: math.unit(4 + 11 / 12, "feet"),
  17011. weight: math.unit(100, "lb"),
  17012. name: "Front",
  17013. image: {
  17014. source: "./media/characters/luno/front.svg",
  17015. extra: 1535 / 1487,
  17016. bottom: 0.03
  17017. }
  17018. },
  17019. },
  17020. [
  17021. {
  17022. name: "Micro",
  17023. height: math.unit(3, "inches")
  17024. },
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(4 + 11 / 12, "feet"),
  17028. default: true
  17029. },
  17030. {
  17031. name: "Macro",
  17032. height: math.unit(300, "feet")
  17033. },
  17034. {
  17035. name: "Megamacro",
  17036. height: math.unit(700, "miles")
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17042. {
  17043. front: {
  17044. height: math.unit(6 + 2 / 12, "feet"),
  17045. weight: math.unit(170, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/jamesy/front.svg",
  17049. extra: 440 / 382,
  17050. bottom: 0.005
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Micro",
  17057. height: math.unit(3, "inches")
  17058. },
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(6 + 2 / 12, "feet"),
  17062. default: true
  17063. },
  17064. {
  17065. name: "Macro",
  17066. height: math.unit(300, "feet")
  17067. },
  17068. {
  17069. name: "Megamacro",
  17070. height: math.unit(700, "miles")
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17076. {
  17077. front: {
  17078. height: math.unit(6, "feet"),
  17079. weight: math.unit(160, "lb"),
  17080. name: "Front",
  17081. image: {
  17082. source: "./media/characters/mark/front.svg",
  17083. extra: 3300 / 3100,
  17084. bottom: 136.42 / 3440.47
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Macro",
  17091. height: math.unit(120, "meters")
  17092. },
  17093. {
  17094. name: "Bigger Macro",
  17095. height: math.unit(350, "meters")
  17096. },
  17097. {
  17098. name: "Megamacro",
  17099. height: math.unit(8, "km"),
  17100. default: true
  17101. },
  17102. {
  17103. name: "Continental",
  17104. height: math.unit(4550, "km")
  17105. },
  17106. {
  17107. name: "Planetary",
  17108. height: math.unit(65000, "km")
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17114. {
  17115. front: {
  17116. height: math.unit(6, "feet"),
  17117. weight: math.unit(400, "lb"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/mac/front.svg",
  17121. extra: 1048 / 987.7,
  17122. bottom: 60 / 1107.6,
  17123. }
  17124. },
  17125. },
  17126. [
  17127. {
  17128. name: "Macro",
  17129. height: math.unit(500, "feet"),
  17130. default: true
  17131. },
  17132. ]
  17133. ))
  17134. characterMakers.push(() => makeCharacter(
  17135. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17136. {
  17137. front: {
  17138. height: math.unit(5 + 2 / 12, "feet"),
  17139. weight: math.unit(190, "lb"),
  17140. name: "Front",
  17141. image: {
  17142. source: "./media/characters/bari/front.svg",
  17143. extra: 3156 / 2880,
  17144. bottom: 0.03
  17145. }
  17146. },
  17147. back: {
  17148. height: math.unit(5 + 2 / 12, "feet"),
  17149. weight: math.unit(190, "lb"),
  17150. name: "Back",
  17151. image: {
  17152. source: "./media/characters/bari/back.svg",
  17153. extra: 3260 / 2834,
  17154. bottom: 0.025
  17155. }
  17156. },
  17157. frontPlush: {
  17158. height: math.unit(5 + 2 / 12, "feet"),
  17159. weight: math.unit(190, "lb"),
  17160. name: "Front (Plush)",
  17161. image: {
  17162. source: "./media/characters/bari/front-plush.svg",
  17163. extra: 1112 / 1061,
  17164. bottom: 0.002
  17165. }
  17166. },
  17167. },
  17168. [
  17169. {
  17170. name: "Micro",
  17171. height: math.unit(3, "inches")
  17172. },
  17173. {
  17174. name: "Normal",
  17175. height: math.unit(5 + 2 / 12, "feet"),
  17176. default: true
  17177. },
  17178. {
  17179. name: "Macro",
  17180. height: math.unit(20, "feet")
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17186. {
  17187. front: {
  17188. height: math.unit(6 + 1 / 12, "feet"),
  17189. weight: math.unit(275, "lb"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/hunter-misha-raven/front.svg"
  17193. }
  17194. },
  17195. },
  17196. [
  17197. {
  17198. name: "Mortal",
  17199. height: math.unit(6 + 1 / 12, "feet")
  17200. },
  17201. {
  17202. name: "Divine",
  17203. height: math.unit(1.12134e34, "parsecs"),
  17204. default: true
  17205. },
  17206. ]
  17207. ))
  17208. characterMakers.push(() => makeCharacter(
  17209. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17210. {
  17211. front: {
  17212. height: math.unit(6 + 3 / 12, "feet"),
  17213. weight: math.unit(220, "lb"),
  17214. name: "Front",
  17215. image: {
  17216. source: "./media/characters/max-calore/front.svg",
  17217. extra: 1700 / 1648,
  17218. bottom: 0.01
  17219. }
  17220. },
  17221. back: {
  17222. height: math.unit(6 + 3 / 12, "feet"),
  17223. weight: math.unit(220, "lb"),
  17224. name: "Back",
  17225. image: {
  17226. source: "./media/characters/max-calore/back.svg",
  17227. extra: 1700 / 1648,
  17228. bottom: 0.01
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(6 + 3 / 12, "feet"),
  17236. default: true
  17237. },
  17238. ]
  17239. ))
  17240. characterMakers.push(() => makeCharacter(
  17241. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17242. {
  17243. side: {
  17244. height: math.unit(2 + 8 / 12, "feet"),
  17245. weight: math.unit(99, "lb"),
  17246. name: "Side",
  17247. image: {
  17248. source: "./media/characters/aspen/side.svg",
  17249. extra: 152 / 138,
  17250. bottom: 0.032
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(2 + 8 / 12, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17264. {
  17265. side: {
  17266. height: math.unit(3 + 2 / 12, "feet"),
  17267. weight: math.unit(224, "lb"),
  17268. name: "Side",
  17269. image: {
  17270. source: "./media/characters/sheila-feral-wolf/side.svg",
  17271. extra: 179 / 166,
  17272. bottom: 0.03
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(3 + 2 / 12, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17286. {
  17287. side: {
  17288. height: math.unit(1 + 9 / 12, "feet"),
  17289. weight: math.unit(38, "lb"),
  17290. name: "Side",
  17291. image: {
  17292. source: "./media/characters/michelle/side.svg",
  17293. extra: 147 / 136.7,
  17294. bottom: 0.03
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(1 + 9 / 12, "feet"),
  17302. default: true
  17303. },
  17304. ]
  17305. ))
  17306. characterMakers.push(() => makeCharacter(
  17307. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17308. {
  17309. front: {
  17310. height: math.unit(1.54, "feet"),
  17311. weight: math.unit(50, "lb"),
  17312. name: "Front",
  17313. image: {
  17314. source: "./media/characters/nino/front.svg"
  17315. }
  17316. },
  17317. },
  17318. [
  17319. {
  17320. name: "Normal",
  17321. height: math.unit(1.54, "feet"),
  17322. default: true
  17323. },
  17324. ]
  17325. ))
  17326. characterMakers.push(() => makeCharacter(
  17327. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17328. {
  17329. front: {
  17330. height: math.unit(1.49, "feet"),
  17331. weight: math.unit(45, "lb"),
  17332. name: "Front",
  17333. image: {
  17334. source: "./media/characters/viola/front.svg"
  17335. }
  17336. },
  17337. },
  17338. [
  17339. {
  17340. name: "Normal",
  17341. height: math.unit(1.49, "feet"),
  17342. default: true
  17343. },
  17344. ]
  17345. ))
  17346. characterMakers.push(() => makeCharacter(
  17347. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17348. {
  17349. front: {
  17350. height: math.unit(6 + 5 / 12, "feet"),
  17351. weight: math.unit(580, "lb"),
  17352. name: "Front",
  17353. image: {
  17354. source: "./media/characters/atlas/front.svg",
  17355. extra: 298.5 / 290,
  17356. bottom: 0.015
  17357. }
  17358. },
  17359. },
  17360. [
  17361. {
  17362. name: "Normal",
  17363. height: math.unit(6 + 5 / 12, "feet"),
  17364. default: true
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17370. {
  17371. side: {
  17372. height: math.unit(15.6, "inches"),
  17373. weight: math.unit(10, "lb"),
  17374. name: "Side",
  17375. image: {
  17376. source: "./media/characters/davy/side.svg",
  17377. extra: 200 / 170,
  17378. bottom: 0.01
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(15.6, "inches"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17392. {
  17393. side: {
  17394. height: math.unit(4 + 8 / 12, "feet"),
  17395. weight: math.unit(166, "lb"),
  17396. name: "Side",
  17397. image: {
  17398. source: "./media/characters/fiona/side.svg",
  17399. extra: 232 / 220,
  17400. bottom: 0.03
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(4 + 8 / 12, "feet"),
  17408. default: true
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17414. {
  17415. front: {
  17416. height: math.unit(26, "inches"),
  17417. weight: math.unit(35, "lb"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/lyla/front.svg",
  17421. bottom: 0.1
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(3, "feet"),
  17429. default: true
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17435. {
  17436. side: {
  17437. height: math.unit(1.8, "feet"),
  17438. weight: math.unit(44, "lb"),
  17439. name: "Side",
  17440. image: {
  17441. source: "./media/characters/perseus/side.svg",
  17442. bottom: 0.21
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(1.8, "feet"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17456. {
  17457. side: {
  17458. height: math.unit(4 + 2 / 12, "feet"),
  17459. weight: math.unit(20, "lb"),
  17460. name: "Side",
  17461. image: {
  17462. source: "./media/characters/remus/side.svg"
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(4 + 2 / 12, "feet"),
  17470. default: true
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17476. {
  17477. front: {
  17478. height: math.unit(4 + 11 / 12, "feet"),
  17479. weight: math.unit(114, "lb"),
  17480. name: "Front",
  17481. image: {
  17482. source: "./media/characters/raf/front.svg",
  17483. extra: 1504/1339,
  17484. bottom: 26/1530
  17485. }
  17486. },
  17487. side: {
  17488. height: math.unit(4 + 11 / 12, "feet"),
  17489. weight: math.unit(114, "lb"),
  17490. name: "Side",
  17491. image: {
  17492. source: "./media/characters/raf/side.svg",
  17493. extra: 1466/1316,
  17494. bottom: 29/1495
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Micro",
  17501. height: math.unit(2, "inches")
  17502. },
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(4 + 11 / 12, "feet"),
  17506. default: true
  17507. },
  17508. {
  17509. name: "Macro",
  17510. height: math.unit(70, "feet")
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17516. {
  17517. front: {
  17518. height: math.unit(1.5, "meters"),
  17519. weight: math.unit(68, "kg"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/liam-einarr/front.svg",
  17523. extra: 2822 / 2666
  17524. }
  17525. },
  17526. back: {
  17527. height: math.unit(1.5, "meters"),
  17528. weight: math.unit(68, "kg"),
  17529. name: "Back",
  17530. image: {
  17531. source: "./media/characters/liam-einarr/back.svg",
  17532. extra: 2822 / 2666,
  17533. bottom: 0.015
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(1.5, "meters"),
  17541. default: true
  17542. },
  17543. {
  17544. name: "Macro",
  17545. height: math.unit(150, "meters")
  17546. },
  17547. {
  17548. name: "Megamacro",
  17549. height: math.unit(35, "km")
  17550. },
  17551. ]
  17552. ))
  17553. characterMakers.push(() => makeCharacter(
  17554. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17555. {
  17556. front: {
  17557. height: math.unit(6, "feet"),
  17558. weight: math.unit(75, "kg"),
  17559. name: "Front",
  17560. image: {
  17561. source: "./media/characters/linda/front.svg",
  17562. extra: 930 / 874,
  17563. bottom: 0.004
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(6, "feet"),
  17571. default: true
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17577. {
  17578. front: {
  17579. height: math.unit(6 + 8 / 12, "feet"),
  17580. weight: math.unit(220, "lb"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/caylex/front.svg",
  17584. extra: 821 / 772,
  17585. bottom: 0.07
  17586. }
  17587. },
  17588. back: {
  17589. height: math.unit(6 + 8 / 12, "feet"),
  17590. weight: math.unit(220, "lb"),
  17591. name: "Back",
  17592. image: {
  17593. source: "./media/characters/caylex/back.svg",
  17594. extra: 821 / 772,
  17595. bottom: 0.022
  17596. }
  17597. },
  17598. hand: {
  17599. height: math.unit(1.25, "feet"),
  17600. name: "Hand",
  17601. image: {
  17602. source: "./media/characters/caylex/hand.svg"
  17603. }
  17604. },
  17605. foot: {
  17606. height: math.unit(1.6, "feet"),
  17607. name: "Foot",
  17608. image: {
  17609. source: "./media/characters/caylex/foot.svg"
  17610. }
  17611. },
  17612. armored: {
  17613. height: math.unit(6 + 8 / 12, "feet"),
  17614. weight: math.unit(250, "lb"),
  17615. name: "Armored",
  17616. image: {
  17617. source: "./media/characters/caylex/armored.svg",
  17618. extra: 1420 / 1310,
  17619. bottom: 0.045
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(6 + 8 / 12, "feet"),
  17627. default: true
  17628. },
  17629. {
  17630. name: "Normal+",
  17631. height: math.unit(12, "feet")
  17632. },
  17633. ]
  17634. ))
  17635. characterMakers.push(() => makeCharacter(
  17636. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17637. {
  17638. front: {
  17639. height: math.unit(7 + 6 / 12, "feet"),
  17640. weight: math.unit(288, "lb"),
  17641. name: "Front",
  17642. image: {
  17643. source: "./media/characters/alana/front.svg",
  17644. extra: 679 / 653,
  17645. bottom: 22.5 / 701
  17646. }
  17647. },
  17648. },
  17649. [
  17650. {
  17651. name: "Normal",
  17652. height: math.unit(7 + 6 / 12, "feet")
  17653. },
  17654. {
  17655. name: "Large",
  17656. height: math.unit(50, "feet")
  17657. },
  17658. {
  17659. name: "Macro",
  17660. height: math.unit(100, "feet"),
  17661. default: true
  17662. },
  17663. {
  17664. name: "Macro+",
  17665. height: math.unit(200, "feet")
  17666. },
  17667. ]
  17668. ))
  17669. characterMakers.push(() => makeCharacter(
  17670. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17671. {
  17672. front: {
  17673. height: math.unit(6 + 1 / 12, "feet"),
  17674. weight: math.unit(210, "lb"),
  17675. name: "Front",
  17676. image: {
  17677. source: "./media/characters/hasani/front.svg",
  17678. extra: 244 / 232,
  17679. bottom: 0.01
  17680. }
  17681. },
  17682. back: {
  17683. height: math.unit(6 + 1 / 12, "feet"),
  17684. weight: math.unit(210, "lb"),
  17685. name: "Back",
  17686. image: {
  17687. source: "./media/characters/hasani/back.svg",
  17688. extra: 244 / 232,
  17689. bottom: 0.01
  17690. }
  17691. },
  17692. },
  17693. [
  17694. {
  17695. name: "Normal",
  17696. height: math.unit(6 + 1 / 12, "feet")
  17697. },
  17698. {
  17699. name: "Macro",
  17700. height: math.unit(175, "feet"),
  17701. default: true
  17702. },
  17703. ]
  17704. ))
  17705. characterMakers.push(() => makeCharacter(
  17706. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17707. {
  17708. front: {
  17709. height: math.unit(1.82, "meters"),
  17710. weight: math.unit(140, "lb"),
  17711. name: "Front",
  17712. image: {
  17713. source: "./media/characters/nita/front.svg",
  17714. extra: 2473 / 2363,
  17715. bottom: 0.01
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Normal",
  17722. height: math.unit(1.82, "m")
  17723. },
  17724. {
  17725. name: "Macro",
  17726. height: math.unit(300, "m")
  17727. },
  17728. {
  17729. name: "Mistake Canon",
  17730. height: math.unit(0.5, "miles"),
  17731. default: true
  17732. },
  17733. {
  17734. name: "Big Mistake",
  17735. height: math.unit(13, "miles")
  17736. },
  17737. {
  17738. name: "Playing God",
  17739. height: math.unit(2450, "miles")
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(4, "feet"),
  17748. weight: math.unit(120, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/shiriko/front.svg",
  17752. extra: 970/934,
  17753. bottom: 5/975
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(4, "feet"),
  17761. default: true
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17767. {
  17768. front: {
  17769. height: math.unit(6, "feet"),
  17770. name: "front",
  17771. image: {
  17772. source: "./media/characters/deja/front.svg",
  17773. extra: 926 / 840,
  17774. bottom: 0.07
  17775. }
  17776. },
  17777. },
  17778. [
  17779. {
  17780. name: "Planck Length",
  17781. height: math.unit(1.6e-35, "meters")
  17782. },
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(30.48, "meters"),
  17786. default: true
  17787. },
  17788. {
  17789. name: "Universal",
  17790. height: math.unit(8.8e26, "meters")
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17796. {
  17797. side: {
  17798. height: math.unit(8, "feet"),
  17799. weight: math.unit(6300, "lb"),
  17800. name: "Side",
  17801. image: {
  17802. source: "./media/characters/anima/side.svg",
  17803. bottom: 0.035
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Normal",
  17810. height: math.unit(8, "feet"),
  17811. default: true
  17812. },
  17813. ]
  17814. ))
  17815. characterMakers.push(() => makeCharacter(
  17816. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17817. {
  17818. front: {
  17819. height: math.unit(8, "feet"),
  17820. weight: math.unit(350, "lb"),
  17821. name: "Front",
  17822. image: {
  17823. source: "./media/characters/bianca/front.svg",
  17824. extra: 234 / 225,
  17825. bottom: 0.03
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Normal",
  17832. height: math.unit(8, "feet"),
  17833. default: true
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17839. {
  17840. front: {
  17841. height: math.unit(6, "feet"),
  17842. weight: math.unit(150, "lb"),
  17843. name: "Front",
  17844. image: {
  17845. source: "./media/characters/adinia/front.svg",
  17846. extra: 1845 / 1672,
  17847. bottom: 0.02
  17848. }
  17849. },
  17850. back: {
  17851. height: math.unit(6, "feet"),
  17852. weight: math.unit(150, "lb"),
  17853. name: "Back",
  17854. image: {
  17855. source: "./media/characters/adinia/back.svg",
  17856. extra: 1845 / 1672,
  17857. bottom: 0.002
  17858. }
  17859. },
  17860. },
  17861. [
  17862. {
  17863. name: "Normal",
  17864. height: math.unit(11 + 5 / 12, "feet"),
  17865. default: true
  17866. },
  17867. ]
  17868. ))
  17869. characterMakers.push(() => makeCharacter(
  17870. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17871. {
  17872. front: {
  17873. height: math.unit(3, "meters"),
  17874. weight: math.unit(200, "kg"),
  17875. name: "Front",
  17876. image: {
  17877. source: "./media/characters/lykasa/front.svg",
  17878. extra: 1076 / 976,
  17879. bottom: 0.06
  17880. }
  17881. },
  17882. },
  17883. [
  17884. {
  17885. name: "Normal",
  17886. height: math.unit(3, "meters")
  17887. },
  17888. {
  17889. name: "Kaiju",
  17890. height: math.unit(120, "meters"),
  17891. default: true
  17892. },
  17893. {
  17894. name: "Mega Kaiju",
  17895. height: math.unit(240, "km")
  17896. },
  17897. {
  17898. name: "Giga Kaiju",
  17899. height: math.unit(400, "megameters")
  17900. },
  17901. {
  17902. name: "Tera Kaiju",
  17903. height: math.unit(800, "gigameters")
  17904. },
  17905. {
  17906. name: "Kaiju Dragon Goddess",
  17907. height: math.unit(26, "zettaparsecs")
  17908. },
  17909. ]
  17910. ))
  17911. characterMakers.push(() => makeCharacter(
  17912. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17913. {
  17914. side: {
  17915. height: math.unit(283 / 124 * 6, "feet"),
  17916. weight: math.unit(35000, "lb"),
  17917. name: "Side",
  17918. image: {
  17919. source: "./media/characters/malfaren/side.svg",
  17920. extra: 1310/529,
  17921. bottom: 24/1334
  17922. }
  17923. },
  17924. front: {
  17925. height: math.unit(22.36, "feet"),
  17926. weight: math.unit(35000, "lb"),
  17927. name: "Front",
  17928. image: {
  17929. source: "./media/characters/malfaren/front.svg",
  17930. extra: 1237/1115,
  17931. bottom: 32/1269
  17932. }
  17933. },
  17934. maw: {
  17935. height: math.unit(6.9, "feet"),
  17936. name: "Maw",
  17937. image: {
  17938. source: "./media/characters/malfaren/maw.svg"
  17939. }
  17940. },
  17941. dick: {
  17942. height: math.unit(6.19, "feet"),
  17943. name: "Dick",
  17944. image: {
  17945. source: "./media/characters/malfaren/dick.svg"
  17946. }
  17947. },
  17948. eye: {
  17949. height: math.unit(0.69, "feet"),
  17950. name: "Eye",
  17951. image: {
  17952. source: "./media/characters/malfaren/eye.svg"
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Big",
  17959. height: math.unit(283 / 162 * 6, "feet"),
  17960. },
  17961. {
  17962. name: "Bigger",
  17963. height: math.unit(283 / 124 * 6, "feet")
  17964. },
  17965. {
  17966. name: "Massive",
  17967. height: math.unit(283 / 92 * 6, "feet"),
  17968. default: true
  17969. },
  17970. {
  17971. name: "👀💦",
  17972. height: math.unit(283 / 73 * 6, "feet"),
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17978. {
  17979. front: {
  17980. height: math.unit(1.7, "m"),
  17981. weight: math.unit(70, "kg"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/kernel/front.svg",
  17985. extra: 222 / 210,
  17986. bottom: 0.007
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Nano",
  17993. height: math.unit(17, "micrometers")
  17994. },
  17995. {
  17996. name: "Micro",
  17997. height: math.unit(1.7, "mm")
  17998. },
  17999. {
  18000. name: "Small",
  18001. height: math.unit(1.7, "cm")
  18002. },
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(1.7, "m"),
  18006. default: true
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18012. {
  18013. front: {
  18014. height: math.unit(1.75, "meters"),
  18015. weight: math.unit(65, "kg"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/jayne-folest/front.svg",
  18019. extra: 2115 / 2007,
  18020. bottom: 0.02
  18021. }
  18022. },
  18023. back: {
  18024. height: math.unit(1.75, "meters"),
  18025. weight: math.unit(65, "kg"),
  18026. name: "Back",
  18027. image: {
  18028. source: "./media/characters/jayne-folest/back.svg",
  18029. extra: 2115 / 2007,
  18030. bottom: 0.005
  18031. }
  18032. },
  18033. frontClothed: {
  18034. height: math.unit(1.75, "meters"),
  18035. weight: math.unit(65, "kg"),
  18036. name: "Front (Clothed)",
  18037. image: {
  18038. source: "./media/characters/jayne-folest/front-clothed.svg",
  18039. extra: 2115 / 2007,
  18040. bottom: 0.035
  18041. }
  18042. },
  18043. hand: {
  18044. height: math.unit(1 / 1.260, "feet"),
  18045. name: "Hand",
  18046. image: {
  18047. source: "./media/characters/jayne-folest/hand.svg"
  18048. }
  18049. },
  18050. foot: {
  18051. height: math.unit(1 / 0.918, "feet"),
  18052. name: "Foot",
  18053. image: {
  18054. source: "./media/characters/jayne-folest/foot.svg"
  18055. }
  18056. },
  18057. },
  18058. [
  18059. {
  18060. name: "Micro",
  18061. height: math.unit(4, "cm")
  18062. },
  18063. {
  18064. name: "Normal",
  18065. height: math.unit(1.75, "meters")
  18066. },
  18067. {
  18068. name: "Macro",
  18069. height: math.unit(47.5, "meters"),
  18070. default: true
  18071. },
  18072. ]
  18073. ))
  18074. characterMakers.push(() => makeCharacter(
  18075. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18076. {
  18077. front: {
  18078. height: math.unit(180, "cm"),
  18079. weight: math.unit(70, "kg"),
  18080. name: "Front",
  18081. image: {
  18082. source: "./media/characters/algier/front.svg",
  18083. extra: 596 / 572,
  18084. bottom: 0.04
  18085. }
  18086. },
  18087. back: {
  18088. height: math.unit(180, "cm"),
  18089. weight: math.unit(70, "kg"),
  18090. name: "Back",
  18091. image: {
  18092. source: "./media/characters/algier/back.svg",
  18093. extra: 596 / 572,
  18094. bottom: 0.025
  18095. }
  18096. },
  18097. frontdressed: {
  18098. height: math.unit(180, "cm"),
  18099. weight: math.unit(150, "kg"),
  18100. name: "Front-dressed",
  18101. image: {
  18102. source: "./media/characters/algier/front-dressed.svg",
  18103. extra: 596 / 572,
  18104. bottom: 0.038
  18105. }
  18106. },
  18107. },
  18108. [
  18109. {
  18110. name: "Micro",
  18111. height: math.unit(5, "cm")
  18112. },
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(180, "cm"),
  18116. default: true
  18117. },
  18118. {
  18119. name: "Macro",
  18120. height: math.unit(64, "m")
  18121. },
  18122. ]
  18123. ))
  18124. characterMakers.push(() => makeCharacter(
  18125. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18126. {
  18127. upright: {
  18128. height: math.unit(7, "feet"),
  18129. weight: math.unit(300, "lb"),
  18130. name: "Upright",
  18131. image: {
  18132. source: "./media/characters/pretzel/upright.svg",
  18133. extra: 534 / 522,
  18134. bottom: 0.065
  18135. }
  18136. },
  18137. sprawling: {
  18138. height: math.unit(3.75, "feet"),
  18139. weight: math.unit(300, "lb"),
  18140. name: "Sprawling",
  18141. image: {
  18142. source: "./media/characters/pretzel/sprawling.svg",
  18143. extra: 314 / 281,
  18144. bottom: 0.1
  18145. }
  18146. },
  18147. tongue: {
  18148. height: math.unit(2, "feet"),
  18149. name: "Tongue",
  18150. image: {
  18151. source: "./media/characters/pretzel/tongue.svg"
  18152. }
  18153. },
  18154. },
  18155. [
  18156. {
  18157. name: "Normal",
  18158. height: math.unit(7, "feet"),
  18159. default: true
  18160. },
  18161. {
  18162. name: "Oversized",
  18163. height: math.unit(15, "feet")
  18164. },
  18165. {
  18166. name: "Huge",
  18167. height: math.unit(30, "feet")
  18168. },
  18169. {
  18170. name: "Macro",
  18171. height: math.unit(250, "feet")
  18172. },
  18173. ]
  18174. ))
  18175. characterMakers.push(() => makeCharacter(
  18176. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18177. {
  18178. sideFront: {
  18179. height: math.unit(5 + 2 / 12, "feet"),
  18180. weight: math.unit(120, "lb"),
  18181. name: "Front Side",
  18182. image: {
  18183. source: "./media/characters/roxi/side-front.svg",
  18184. extra: 2924 / 2717,
  18185. bottom: 0.08
  18186. }
  18187. },
  18188. sideBack: {
  18189. height: math.unit(5 + 2 / 12, "feet"),
  18190. weight: math.unit(120, "lb"),
  18191. name: "Back Side",
  18192. image: {
  18193. source: "./media/characters/roxi/side-back.svg",
  18194. extra: 2904 / 2693,
  18195. bottom: 0.06
  18196. }
  18197. },
  18198. front: {
  18199. height: math.unit(5 + 2 / 12, "feet"),
  18200. weight: math.unit(120, "lb"),
  18201. name: "Front",
  18202. image: {
  18203. source: "./media/characters/roxi/front.svg",
  18204. extra: 2028 / 1907,
  18205. bottom: 0.01
  18206. }
  18207. },
  18208. frontAlt: {
  18209. height: math.unit(5 + 2 / 12, "feet"),
  18210. weight: math.unit(120, "lb"),
  18211. name: "Front (Alt)",
  18212. image: {
  18213. source: "./media/characters/roxi/front-alt.svg",
  18214. extra: 1828 / 1798,
  18215. bottom: 0.01
  18216. }
  18217. },
  18218. sitting: {
  18219. height: math.unit(2.8, "feet"),
  18220. weight: math.unit(120, "lb"),
  18221. name: "Sitting",
  18222. image: {
  18223. source: "./media/characters/roxi/sitting.svg",
  18224. extra: 2660 / 2462,
  18225. bottom: 0.1
  18226. }
  18227. },
  18228. },
  18229. [
  18230. {
  18231. name: "Normal",
  18232. height: math.unit(5 + 2 / 12, "feet"),
  18233. default: true
  18234. },
  18235. ]
  18236. ))
  18237. characterMakers.push(() => makeCharacter(
  18238. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18239. {
  18240. side: {
  18241. height: math.unit(55, "feet"),
  18242. weight: math.unit(153, "tons"),
  18243. name: "Side",
  18244. image: {
  18245. source: "./media/characters/shadow/side.svg",
  18246. extra: 701 / 628,
  18247. bottom: 0.02
  18248. }
  18249. },
  18250. flying: {
  18251. height: math.unit(145, "feet"),
  18252. weight: math.unit(153, "tons"),
  18253. name: "Flying",
  18254. image: {
  18255. source: "./media/characters/shadow/flying.svg"
  18256. }
  18257. },
  18258. },
  18259. [
  18260. {
  18261. name: "Normal",
  18262. height: math.unit(55, "feet"),
  18263. default: true
  18264. },
  18265. ]
  18266. ))
  18267. characterMakers.push(() => makeCharacter(
  18268. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18269. {
  18270. front: {
  18271. height: math.unit(6, "feet"),
  18272. weight: math.unit(200, "lb"),
  18273. name: "Front",
  18274. image: {
  18275. source: "./media/characters/marcie/front.svg",
  18276. extra: 960 / 876,
  18277. bottom: 58 / 1017.87
  18278. }
  18279. },
  18280. },
  18281. [
  18282. {
  18283. name: "Macro",
  18284. height: math.unit(1, "mile"),
  18285. default: true
  18286. },
  18287. ]
  18288. ))
  18289. characterMakers.push(() => makeCharacter(
  18290. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18291. {
  18292. front: {
  18293. height: math.unit(7, "feet"),
  18294. weight: math.unit(200, "lb"),
  18295. name: "Front",
  18296. image: {
  18297. source: "./media/characters/kachina/front.svg",
  18298. extra: 1290.68 / 1119,
  18299. bottom: 36.5 / 1327.18
  18300. }
  18301. },
  18302. },
  18303. [
  18304. {
  18305. name: "Normal",
  18306. height: math.unit(7, "feet"),
  18307. default: true
  18308. },
  18309. ]
  18310. ))
  18311. characterMakers.push(() => makeCharacter(
  18312. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18313. {
  18314. looking: {
  18315. height: math.unit(2, "meters"),
  18316. weight: math.unit(300, "kg"),
  18317. name: "Looking",
  18318. image: {
  18319. source: "./media/characters/kash/looking.svg",
  18320. extra: 474 / 344,
  18321. bottom: 0.03
  18322. }
  18323. },
  18324. side: {
  18325. height: math.unit(2, "meters"),
  18326. weight: math.unit(300, "kg"),
  18327. name: "Side",
  18328. image: {
  18329. source: "./media/characters/kash/side.svg",
  18330. extra: 302 / 251,
  18331. bottom: 0.03
  18332. }
  18333. },
  18334. front: {
  18335. height: math.unit(2, "meters"),
  18336. weight: math.unit(300, "kg"),
  18337. name: "Front",
  18338. image: {
  18339. source: "./media/characters/kash/front.svg",
  18340. extra: 495 / 360,
  18341. bottom: 0.015
  18342. }
  18343. },
  18344. },
  18345. [
  18346. {
  18347. name: "Normal",
  18348. height: math.unit(2, "meters"),
  18349. default: true
  18350. },
  18351. {
  18352. name: "Big",
  18353. height: math.unit(3, "meters")
  18354. },
  18355. {
  18356. name: "Large",
  18357. height: math.unit(5, "meters")
  18358. },
  18359. ]
  18360. ))
  18361. characterMakers.push(() => makeCharacter(
  18362. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18363. {
  18364. feeding: {
  18365. height: math.unit(6.7, "feet"),
  18366. weight: math.unit(350, "lb"),
  18367. name: "Feeding",
  18368. image: {
  18369. source: "./media/characters/lalim/feeding.svg",
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Normal",
  18376. height: math.unit(6.7, "feet"),
  18377. default: true
  18378. },
  18379. ]
  18380. ))
  18381. characterMakers.push(() => makeCharacter(
  18382. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18383. {
  18384. front: {
  18385. height: math.unit(9.5, "feet"),
  18386. weight: math.unit(600, "lb"),
  18387. name: "Front",
  18388. image: {
  18389. source: "./media/characters/de'vout/front.svg",
  18390. extra: 1443 / 1328,
  18391. bottom: 0.025
  18392. }
  18393. },
  18394. back: {
  18395. height: math.unit(9.5, "feet"),
  18396. weight: math.unit(600, "lb"),
  18397. name: "Back",
  18398. image: {
  18399. source: "./media/characters/de'vout/back.svg",
  18400. extra: 1443 / 1328
  18401. }
  18402. },
  18403. frontDressed: {
  18404. height: math.unit(9.5, "feet"),
  18405. weight: math.unit(600, "lb"),
  18406. name: "Front (Dressed",
  18407. image: {
  18408. source: "./media/characters/de'vout/front-dressed.svg",
  18409. extra: 1443 / 1328,
  18410. bottom: 0.025
  18411. }
  18412. },
  18413. backDressed: {
  18414. height: math.unit(9.5, "feet"),
  18415. weight: math.unit(600, "lb"),
  18416. name: "Back (Dressed",
  18417. image: {
  18418. source: "./media/characters/de'vout/back-dressed.svg",
  18419. extra: 1443 / 1328
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Normal",
  18426. height: math.unit(9.5, "feet"),
  18427. default: true
  18428. },
  18429. ]
  18430. ))
  18431. characterMakers.push(() => makeCharacter(
  18432. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18433. {
  18434. front: {
  18435. height: math.unit(8, "feet"),
  18436. weight: math.unit(225, "lb"),
  18437. name: "Front",
  18438. image: {
  18439. source: "./media/characters/talana/front.svg",
  18440. extra: 1410 / 1300,
  18441. bottom: 0.015
  18442. }
  18443. },
  18444. frontDressed: {
  18445. height: math.unit(8, "feet"),
  18446. weight: math.unit(225, "lb"),
  18447. name: "Front (Dressed",
  18448. image: {
  18449. source: "./media/characters/talana/front-dressed.svg",
  18450. extra: 1410 / 1300,
  18451. bottom: 0.015
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(8, "feet"),
  18459. default: true
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18465. {
  18466. side: {
  18467. height: math.unit(7.2, "feet"),
  18468. weight: math.unit(150, "lb"),
  18469. name: "Side",
  18470. image: {
  18471. source: "./media/characters/xeauvok/side.svg",
  18472. extra: 1975 / 1523,
  18473. bottom: 0.07
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Normal",
  18480. height: math.unit(7.2, "feet"),
  18481. default: true
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18487. {
  18488. side: {
  18489. height: math.unit(10, "feet"),
  18490. weight: math.unit(900, "kg"),
  18491. name: "Side",
  18492. image: {
  18493. source: "./media/characters/zara/side.svg",
  18494. extra: 504 / 498
  18495. }
  18496. },
  18497. },
  18498. [
  18499. {
  18500. name: "Normal",
  18501. height: math.unit(10, "feet"),
  18502. default: true
  18503. },
  18504. ]
  18505. ))
  18506. characterMakers.push(() => makeCharacter(
  18507. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18508. {
  18509. side: {
  18510. height: math.unit(6, "feet"),
  18511. weight: math.unit(150, "lb"),
  18512. name: "Side",
  18513. image: {
  18514. source: "./media/characters/richard-dragon/side.svg",
  18515. extra: 845 / 340,
  18516. bottom: 0.017
  18517. }
  18518. },
  18519. maw: {
  18520. height: math.unit(2.97, "feet"),
  18521. name: "Maw",
  18522. image: {
  18523. source: "./media/characters/richard-dragon/maw.svg"
  18524. }
  18525. },
  18526. },
  18527. [
  18528. ]
  18529. ))
  18530. characterMakers.push(() => makeCharacter(
  18531. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18532. {
  18533. front: {
  18534. height: math.unit(4, "feet"),
  18535. weight: math.unit(100, "lb"),
  18536. name: "Front",
  18537. image: {
  18538. source: "./media/characters/richard-smeargle/front.svg",
  18539. extra: 2952 / 2820,
  18540. bottom: 0.028
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Normal",
  18547. height: math.unit(4, "feet"),
  18548. default: true
  18549. },
  18550. {
  18551. name: "Dynamax",
  18552. height: math.unit(20, "meters")
  18553. },
  18554. ]
  18555. ))
  18556. characterMakers.push(() => makeCharacter(
  18557. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18558. {
  18559. front: {
  18560. height: math.unit(6, "feet"),
  18561. weight: math.unit(110, "lb"),
  18562. name: "Front",
  18563. image: {
  18564. source: "./media/characters/klay/front.svg",
  18565. extra: 962 / 883,
  18566. bottom: 0.04
  18567. }
  18568. },
  18569. back: {
  18570. height: math.unit(6, "feet"),
  18571. weight: math.unit(110, "lb"),
  18572. name: "Back",
  18573. image: {
  18574. source: "./media/characters/klay/back.svg",
  18575. extra: 962 / 883
  18576. }
  18577. },
  18578. beans: {
  18579. height: math.unit(1.15, "feet"),
  18580. name: "Beans",
  18581. image: {
  18582. source: "./media/characters/klay/beans.svg"
  18583. }
  18584. },
  18585. },
  18586. [
  18587. {
  18588. name: "Micro",
  18589. height: math.unit(6, "inches")
  18590. },
  18591. {
  18592. name: "Mini",
  18593. height: math.unit(3, "feet")
  18594. },
  18595. {
  18596. name: "Normal",
  18597. height: math.unit(6, "feet"),
  18598. default: true
  18599. },
  18600. {
  18601. name: "Big",
  18602. height: math.unit(25, "feet")
  18603. },
  18604. {
  18605. name: "Macro",
  18606. height: math.unit(100, "feet")
  18607. },
  18608. {
  18609. name: "Megamacro",
  18610. height: math.unit(400, "feet")
  18611. },
  18612. ]
  18613. ))
  18614. characterMakers.push(() => makeCharacter(
  18615. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18616. {
  18617. front: {
  18618. height: math.unit(6, "feet"),
  18619. weight: math.unit(160, "lb"),
  18620. name: "Front",
  18621. image: {
  18622. source: "./media/characters/marcus/front.svg",
  18623. extra: 734 / 676,
  18624. bottom: 0.03
  18625. }
  18626. },
  18627. },
  18628. [
  18629. {
  18630. name: "Little",
  18631. height: math.unit(6, "feet")
  18632. },
  18633. {
  18634. name: "Normal",
  18635. height: math.unit(110, "feet"),
  18636. default: true
  18637. },
  18638. {
  18639. name: "Macro",
  18640. height: math.unit(250, "feet")
  18641. },
  18642. {
  18643. name: "Megamacro",
  18644. height: math.unit(1000, "feet")
  18645. },
  18646. ]
  18647. ))
  18648. characterMakers.push(() => makeCharacter(
  18649. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18650. {
  18651. front: {
  18652. height: math.unit(7, "feet"),
  18653. weight: math.unit(275, "lb"),
  18654. name: "Front",
  18655. image: {
  18656. source: "./media/characters/claude-delroute/front.svg",
  18657. extra: 902/827,
  18658. bottom: 26/928
  18659. }
  18660. },
  18661. side: {
  18662. height: math.unit(7, "feet"),
  18663. weight: math.unit(275, "lb"),
  18664. name: "Side",
  18665. image: {
  18666. source: "./media/characters/claude-delroute/side.svg",
  18667. extra: 908/853,
  18668. bottom: 16/924
  18669. }
  18670. },
  18671. back: {
  18672. height: math.unit(7, "feet"),
  18673. weight: math.unit(275, "lb"),
  18674. name: "Back",
  18675. image: {
  18676. source: "./media/characters/claude-delroute/back.svg",
  18677. extra: 911/829,
  18678. bottom: 18/929
  18679. }
  18680. },
  18681. maw: {
  18682. height: math.unit(0.6407, "meters"),
  18683. name: "Maw",
  18684. image: {
  18685. source: "./media/characters/claude-delroute/maw.svg"
  18686. }
  18687. },
  18688. },
  18689. [
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(7, "feet"),
  18693. default: true
  18694. },
  18695. {
  18696. name: "Lorge",
  18697. height: math.unit(20, "feet")
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(8 + 4 / 12, "feet"),
  18706. weight: math.unit(600, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/dragonien/front.svg",
  18710. extra: 100 / 94,
  18711. bottom: 3.3 / 103.3445
  18712. }
  18713. },
  18714. back: {
  18715. height: math.unit(8 + 4 / 12, "feet"),
  18716. weight: math.unit(600, "lb"),
  18717. name: "Back",
  18718. image: {
  18719. source: "./media/characters/dragonien/back.svg",
  18720. extra: 776 / 746,
  18721. bottom: 6.4 / 782.0616
  18722. }
  18723. },
  18724. foot: {
  18725. height: math.unit(1.54, "feet"),
  18726. name: "Foot",
  18727. image: {
  18728. source: "./media/characters/dragonien/foot.svg",
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Normal",
  18735. height: math.unit(8 + 4 / 12, "feet"),
  18736. default: true
  18737. },
  18738. {
  18739. name: "Macro",
  18740. height: math.unit(200, "feet")
  18741. },
  18742. {
  18743. name: "Megamacro",
  18744. height: math.unit(1, "mile")
  18745. },
  18746. {
  18747. name: "Gigamacro",
  18748. height: math.unit(1000, "miles")
  18749. },
  18750. ]
  18751. ))
  18752. characterMakers.push(() => makeCharacter(
  18753. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18754. {
  18755. front: {
  18756. height: math.unit(5 + 2 / 12, "feet"),
  18757. weight: math.unit(110, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/desta/front.svg",
  18761. extra: 767 / 726,
  18762. bottom: 11.7 / 779
  18763. }
  18764. },
  18765. back: {
  18766. height: math.unit(5 + 2 / 12, "feet"),
  18767. weight: math.unit(110, "lb"),
  18768. name: "Back",
  18769. image: {
  18770. source: "./media/characters/desta/back.svg",
  18771. extra: 777 / 728,
  18772. bottom: 6 / 784
  18773. }
  18774. },
  18775. frontAlt: {
  18776. height: math.unit(5 + 2 / 12, "feet"),
  18777. weight: math.unit(110, "lb"),
  18778. name: "Front",
  18779. image: {
  18780. source: "./media/characters/desta/front-alt.svg",
  18781. extra: 1482 / 1417
  18782. }
  18783. },
  18784. side: {
  18785. height: math.unit(5 + 2 / 12, "feet"),
  18786. weight: math.unit(110, "lb"),
  18787. name: "Side",
  18788. image: {
  18789. source: "./media/characters/desta/side.svg",
  18790. extra: 2579 / 2491,
  18791. bottom: 0.053
  18792. }
  18793. },
  18794. },
  18795. [
  18796. {
  18797. name: "Micro",
  18798. height: math.unit(6, "inches")
  18799. },
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(5 + 2 / 12, "feet"),
  18803. default: true
  18804. },
  18805. {
  18806. name: "Macro",
  18807. height: math.unit(62, "feet")
  18808. },
  18809. {
  18810. name: "Megamacro",
  18811. height: math.unit(1800, "feet")
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18817. {
  18818. front: {
  18819. height: math.unit(10, "feet"),
  18820. weight: math.unit(700, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/storm-alystar/front.svg",
  18824. extra: 2112 / 1898,
  18825. bottom: 0.034
  18826. }
  18827. },
  18828. },
  18829. [
  18830. {
  18831. name: "Micro",
  18832. height: math.unit(3.5, "inches")
  18833. },
  18834. {
  18835. name: "Normal",
  18836. height: math.unit(10, "feet"),
  18837. default: true
  18838. },
  18839. {
  18840. name: "Macro",
  18841. height: math.unit(400, "feet")
  18842. },
  18843. {
  18844. name: "Deific",
  18845. height: math.unit(60, "miles")
  18846. },
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18851. {
  18852. front: {
  18853. height: math.unit(2.35, "meters"),
  18854. weight: math.unit(119, "kg"),
  18855. name: "Front",
  18856. image: {
  18857. source: "./media/characters/ilia/front.svg",
  18858. extra: 1285 / 1255,
  18859. bottom: 0.06
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(2.35, "meters")
  18867. },
  18868. {
  18869. name: "Macro",
  18870. height: math.unit(140, "meters"),
  18871. default: true
  18872. },
  18873. {
  18874. name: "Megamacro",
  18875. height: math.unit(100, "miles")
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(6 + 5 / 12, "feet"),
  18884. weight: math.unit(190, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/kingdead/front.svg",
  18888. extra: 1228 / 1177
  18889. }
  18890. },
  18891. },
  18892. [
  18893. {
  18894. name: "Micro",
  18895. height: math.unit(7, "inches")
  18896. },
  18897. {
  18898. name: "Normal",
  18899. height: math.unit(6 + 5 / 12, "feet")
  18900. },
  18901. {
  18902. name: "Macro",
  18903. height: math.unit(150, "feet"),
  18904. default: true
  18905. },
  18906. {
  18907. name: "Megamacro",
  18908. height: math.unit(200, "miles")
  18909. },
  18910. ]
  18911. ))
  18912. characterMakers.push(() => makeCharacter(
  18913. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18914. {
  18915. front: {
  18916. height: math.unit(8, "feet"),
  18917. weight: math.unit(600, "lb"),
  18918. name: "Front",
  18919. image: {
  18920. source: "./media/characters/kyrehx/front.svg",
  18921. extra: 1195 / 1095,
  18922. bottom: 0.034
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Micro",
  18929. height: math.unit(2, "inches")
  18930. },
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(8, "feet"),
  18934. default: true
  18935. },
  18936. {
  18937. name: "Macro",
  18938. height: math.unit(255, "feet")
  18939. },
  18940. ]
  18941. ))
  18942. characterMakers.push(() => makeCharacter(
  18943. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18944. {
  18945. front: {
  18946. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18947. weight: math.unit(184, "lb"),
  18948. name: "Front",
  18949. image: {
  18950. source: "./media/characters/xang/front.svg",
  18951. extra: 845 / 755
  18952. }
  18953. },
  18954. },
  18955. [
  18956. {
  18957. name: "Normal",
  18958. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18959. default: true
  18960. },
  18961. {
  18962. name: "Macro",
  18963. height: math.unit(0.935 * 146, "feet")
  18964. },
  18965. {
  18966. name: "Megamacro",
  18967. height: math.unit(0.935 * 3, "miles")
  18968. },
  18969. ]
  18970. ))
  18971. characterMakers.push(() => makeCharacter(
  18972. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18973. {
  18974. frontDressed: {
  18975. height: math.unit(5 + 7 / 12, "feet"),
  18976. weight: math.unit(140, "lb"),
  18977. name: "Front (Dressed)",
  18978. image: {
  18979. source: "./media/characters/doc-weardno/front-dressed.svg",
  18980. extra: 263 / 234
  18981. }
  18982. },
  18983. backDressed: {
  18984. height: math.unit(5 + 7 / 12, "feet"),
  18985. weight: math.unit(140, "lb"),
  18986. name: "Back (Dressed)",
  18987. image: {
  18988. source: "./media/characters/doc-weardno/back-dressed.svg",
  18989. extra: 266 / 238
  18990. }
  18991. },
  18992. front: {
  18993. height: math.unit(5 + 7 / 12, "feet"),
  18994. weight: math.unit(140, "lb"),
  18995. name: "Front",
  18996. image: {
  18997. source: "./media/characters/doc-weardno/front.svg",
  18998. extra: 254 / 233
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Micro",
  19005. height: math.unit(3, "inches")
  19006. },
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(5 + 7 / 12, "feet"),
  19010. default: true
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(25, "feet")
  19015. },
  19016. {
  19017. name: "Megamacro",
  19018. height: math.unit(2, "miles")
  19019. },
  19020. ]
  19021. ))
  19022. characterMakers.push(() => makeCharacter(
  19023. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19024. {
  19025. front: {
  19026. height: math.unit(6 + 2 / 12, "feet"),
  19027. weight: math.unit(153, "lb"),
  19028. name: "Front",
  19029. image: {
  19030. source: "./media/characters/seth-whilst/front.svg",
  19031. bottom: 0.07
  19032. }
  19033. },
  19034. },
  19035. [
  19036. {
  19037. name: "Micro",
  19038. height: math.unit(5, "inches")
  19039. },
  19040. {
  19041. name: "Normal",
  19042. height: math.unit(6 + 2 / 12, "feet"),
  19043. default: true
  19044. },
  19045. ]
  19046. ))
  19047. characterMakers.push(() => makeCharacter(
  19048. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19049. {
  19050. front: {
  19051. height: math.unit(3, "inches"),
  19052. weight: math.unit(8, "grams"),
  19053. name: "Front",
  19054. image: {
  19055. source: "./media/characters/pocket-jabari/front.svg",
  19056. extra: 1024 / 974,
  19057. bottom: 0.039
  19058. }
  19059. },
  19060. },
  19061. [
  19062. {
  19063. name: "Minimicro",
  19064. height: math.unit(8, "mm")
  19065. },
  19066. {
  19067. name: "Micro",
  19068. height: math.unit(3, "inches"),
  19069. default: true
  19070. },
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(3, "feet")
  19074. },
  19075. ]
  19076. ))
  19077. characterMakers.push(() => makeCharacter(
  19078. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19079. {
  19080. front: {
  19081. height: math.unit(15, "feet"),
  19082. weight: math.unit(3280, "lb"),
  19083. name: "Front",
  19084. image: {
  19085. source: "./media/characters/sapphy/front.svg",
  19086. extra: 671 / 577,
  19087. bottom: 0.085
  19088. }
  19089. },
  19090. back: {
  19091. height: math.unit(15, "feet"),
  19092. weight: math.unit(3280, "lb"),
  19093. name: "Back",
  19094. image: {
  19095. source: "./media/characters/sapphy/back.svg",
  19096. extra: 631 / 607,
  19097. bottom: 0.045
  19098. }
  19099. },
  19100. },
  19101. [
  19102. {
  19103. name: "Normal",
  19104. height: math.unit(15, "feet")
  19105. },
  19106. {
  19107. name: "Casual Macro",
  19108. height: math.unit(120, "feet")
  19109. },
  19110. {
  19111. name: "Macro",
  19112. height: math.unit(2150, "feet"),
  19113. default: true
  19114. },
  19115. {
  19116. name: "Megamacro",
  19117. height: math.unit(8, "miles")
  19118. },
  19119. {
  19120. name: "Galaxy Mom",
  19121. height: math.unit(6, "megalightyears")
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19127. {
  19128. front: {
  19129. height: math.unit(6, "feet"),
  19130. weight: math.unit(170, "lb"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/kiro/front.svg",
  19134. extra: 1064 / 1012,
  19135. bottom: 0.052
  19136. }
  19137. },
  19138. },
  19139. [
  19140. {
  19141. name: "Micro",
  19142. height: math.unit(6, "inches")
  19143. },
  19144. {
  19145. name: "Normal",
  19146. height: math.unit(6, "feet"),
  19147. default: true
  19148. },
  19149. {
  19150. name: "Macro",
  19151. height: math.unit(72, "feet")
  19152. },
  19153. ]
  19154. ))
  19155. characterMakers.push(() => makeCharacter(
  19156. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19157. {
  19158. front: {
  19159. height: math.unit(5 + 9 / 12, "feet"),
  19160. weight: math.unit(175, "lb"),
  19161. name: "Front",
  19162. image: {
  19163. source: "./media/characters/irishfox/front.svg",
  19164. extra: 1912 / 1680,
  19165. bottom: 0.02
  19166. }
  19167. },
  19168. },
  19169. [
  19170. {
  19171. name: "Nano",
  19172. height: math.unit(1, "mm")
  19173. },
  19174. {
  19175. name: "Micro",
  19176. height: math.unit(2, "inches")
  19177. },
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(5 + 9 / 12, "feet"),
  19181. default: true
  19182. },
  19183. {
  19184. name: "Macro",
  19185. height: math.unit(45, "feet")
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19191. {
  19192. front: {
  19193. height: math.unit(6 + 1 / 12, "feet"),
  19194. weight: math.unit(75, "lb"),
  19195. name: "Front",
  19196. image: {
  19197. source: "./media/characters/aronai-sieyes/front.svg",
  19198. extra: 1532/1450,
  19199. bottom: 42/1574
  19200. }
  19201. },
  19202. side: {
  19203. height: math.unit(6 + 1 / 12, "feet"),
  19204. weight: math.unit(75, "lb"),
  19205. name: "Side",
  19206. image: {
  19207. source: "./media/characters/aronai-sieyes/side.svg",
  19208. extra: 1422/1365,
  19209. bottom: 148/1570
  19210. }
  19211. },
  19212. back: {
  19213. height: math.unit(6 + 1 / 12, "feet"),
  19214. weight: math.unit(75, "lb"),
  19215. name: "Back",
  19216. image: {
  19217. source: "./media/characters/aronai-sieyes/back.svg",
  19218. extra: 1526/1464,
  19219. bottom: 51/1577
  19220. }
  19221. },
  19222. dressed: {
  19223. height: math.unit(6 + 1 / 12, "feet"),
  19224. weight: math.unit(75, "lb"),
  19225. name: "Dressed",
  19226. image: {
  19227. source: "./media/characters/aronai-sieyes/dressed.svg",
  19228. extra: 1559/1483,
  19229. bottom: 39/1598
  19230. }
  19231. },
  19232. slit: {
  19233. height: math.unit(1.3, "feet"),
  19234. name: "Slit",
  19235. image: {
  19236. source: "./media/characters/aronai-sieyes/slit.svg"
  19237. }
  19238. },
  19239. slitSpread: {
  19240. height: math.unit(0.9, "feet"),
  19241. name: "Slit (Spread)",
  19242. image: {
  19243. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19244. }
  19245. },
  19246. rump: {
  19247. height: math.unit(1.3, "feet"),
  19248. name: "Rump",
  19249. image: {
  19250. source: "./media/characters/aronai-sieyes/rump.svg"
  19251. }
  19252. },
  19253. maw: {
  19254. height: math.unit(1.25, "feet"),
  19255. name: "Maw",
  19256. image: {
  19257. source: "./media/characters/aronai-sieyes/maw.svg"
  19258. }
  19259. },
  19260. feral: {
  19261. height: math.unit(18, "feet"),
  19262. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19263. name: "Feral",
  19264. image: {
  19265. source: "./media/characters/aronai-sieyes/feral.svg",
  19266. extra: 1530 / 1240,
  19267. bottom: 0.035
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Micro",
  19274. height: math.unit(2, "inches")
  19275. },
  19276. {
  19277. name: "Normal",
  19278. height: math.unit(6 + 1 / 12, "feet"),
  19279. default: true
  19280. }
  19281. ]
  19282. ))
  19283. characterMakers.push(() => makeCharacter(
  19284. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19285. {
  19286. front: {
  19287. height: math.unit(12, "feet"),
  19288. weight: math.unit(410, "kg"),
  19289. name: "Front",
  19290. image: {
  19291. source: "./media/characters/xuna/front.svg",
  19292. extra: 2184 / 1980
  19293. }
  19294. },
  19295. side: {
  19296. height: math.unit(12, "feet"),
  19297. weight: math.unit(410, "kg"),
  19298. name: "Side",
  19299. image: {
  19300. source: "./media/characters/xuna/side.svg",
  19301. extra: 2184 / 1980
  19302. }
  19303. },
  19304. back: {
  19305. height: math.unit(12, "feet"),
  19306. weight: math.unit(410, "kg"),
  19307. name: "Back",
  19308. image: {
  19309. source: "./media/characters/xuna/back.svg",
  19310. extra: 2184 / 1980
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Nano glow",
  19317. height: math.unit(10, "nm")
  19318. },
  19319. {
  19320. name: "Micro floof",
  19321. height: math.unit(0.3, "m")
  19322. },
  19323. {
  19324. name: "Huggable softy boi",
  19325. height: math.unit(3.6576, "m"),
  19326. default: true
  19327. },
  19328. {
  19329. name: "Admirable floof",
  19330. height: math.unit(80, "meters")
  19331. },
  19332. {
  19333. name: "Gentle macro",
  19334. height: math.unit(300, "meters")
  19335. },
  19336. {
  19337. name: "Very careful floof",
  19338. height: math.unit(3200, "meters")
  19339. },
  19340. {
  19341. name: "The mega floof",
  19342. height: math.unit(36000, "meters")
  19343. },
  19344. {
  19345. name: "Giga-fur-Wicker",
  19346. height: math.unit(4800000, "meters")
  19347. },
  19348. {
  19349. name: "Licky world",
  19350. height: math.unit(20000000, "meters")
  19351. },
  19352. {
  19353. name: "Floofy cyan sun",
  19354. height: math.unit(1500000000, "meters")
  19355. },
  19356. {
  19357. name: "Milky Wicker",
  19358. height: math.unit(1000000000000000000000, "meters")
  19359. },
  19360. {
  19361. name: "The observing Wicker",
  19362. height: math.unit(999999999999999999999999999, "meters")
  19363. },
  19364. ]
  19365. ))
  19366. characterMakers.push(() => makeCharacter(
  19367. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19368. {
  19369. front: {
  19370. height: math.unit(5 + 9 / 12, "feet"),
  19371. weight: math.unit(150, "lb"),
  19372. name: "Front",
  19373. image: {
  19374. source: "./media/characters/arokha-sieyes/front.svg",
  19375. extra: 1425 / 1284,
  19376. bottom: 0.05
  19377. }
  19378. },
  19379. },
  19380. [
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(5 + 9 / 12, "feet")
  19384. },
  19385. {
  19386. name: "Macro",
  19387. height: math.unit(30, "meters"),
  19388. default: true
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19394. {
  19395. front: {
  19396. height: math.unit(6, "feet"),
  19397. weight: math.unit(180, "lb"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/arokh-sieyes/front.svg",
  19401. extra: 1830 / 1769,
  19402. bottom: 0.01
  19403. }
  19404. },
  19405. },
  19406. [
  19407. {
  19408. name: "Normal",
  19409. height: math.unit(6, "feet")
  19410. },
  19411. {
  19412. name: "Macro",
  19413. height: math.unit(30, "meters"),
  19414. default: true
  19415. },
  19416. ]
  19417. ))
  19418. characterMakers.push(() => makeCharacter(
  19419. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19420. {
  19421. side: {
  19422. height: math.unit(13 + 1 / 12, "feet"),
  19423. weight: math.unit(8.5, "tonnes"),
  19424. name: "Side",
  19425. image: {
  19426. source: "./media/characters/goldeneye/side.svg",
  19427. extra: 1182 / 778,
  19428. bottom: 0.067
  19429. }
  19430. },
  19431. paw: {
  19432. height: math.unit(3.4, "feet"),
  19433. name: "Paw",
  19434. image: {
  19435. source: "./media/characters/goldeneye/paw.svg"
  19436. }
  19437. },
  19438. },
  19439. [
  19440. {
  19441. name: "Normal",
  19442. height: math.unit(13 + 1 / 12, "feet"),
  19443. default: true
  19444. },
  19445. ]
  19446. ))
  19447. characterMakers.push(() => makeCharacter(
  19448. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19449. {
  19450. front: {
  19451. height: math.unit(6 + 1 / 12, "feet"),
  19452. weight: math.unit(210, "lb"),
  19453. name: "Front",
  19454. image: {
  19455. source: "./media/characters/leonardo-lycheborne/front.svg",
  19456. extra: 776/723,
  19457. bottom: 34/810
  19458. }
  19459. },
  19460. side: {
  19461. height: math.unit(6 + 1 / 12, "feet"),
  19462. weight: math.unit(210, "lb"),
  19463. name: "Side",
  19464. image: {
  19465. source: "./media/characters/leonardo-lycheborne/side.svg",
  19466. extra: 780/728,
  19467. bottom: 12/792
  19468. }
  19469. },
  19470. back: {
  19471. height: math.unit(6 + 1 / 12, "feet"),
  19472. weight: math.unit(210, "lb"),
  19473. name: "Back",
  19474. image: {
  19475. source: "./media/characters/leonardo-lycheborne/back.svg",
  19476. extra: 775/721,
  19477. bottom: 17/792
  19478. }
  19479. },
  19480. hand: {
  19481. height: math.unit(1.08, "feet"),
  19482. name: "Hand",
  19483. image: {
  19484. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19485. }
  19486. },
  19487. foot: {
  19488. height: math.unit(1.32, "feet"),
  19489. name: "Foot",
  19490. image: {
  19491. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19492. }
  19493. },
  19494. maw: {
  19495. height: math.unit(1, "feet"),
  19496. name: "Maw",
  19497. image: {
  19498. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19499. }
  19500. },
  19501. were: {
  19502. height: math.unit(20, "feet"),
  19503. weight: math.unit(7800, "lb"),
  19504. name: "Were",
  19505. image: {
  19506. source: "./media/characters/leonardo-lycheborne/were.svg",
  19507. extra: 1224/1165,
  19508. bottom: 72/1296
  19509. }
  19510. },
  19511. feral: {
  19512. height: math.unit(7.5, "feet"),
  19513. weight: math.unit(600, "lb"),
  19514. name: "Feral",
  19515. image: {
  19516. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19517. extra: 797/702,
  19518. bottom: 139/936
  19519. }
  19520. },
  19521. taur: {
  19522. height: math.unit(11, "feet"),
  19523. weight: math.unit(3300, "lb"),
  19524. name: "Taur",
  19525. image: {
  19526. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19527. extra: 1271/1197,
  19528. bottom: 47/1318
  19529. }
  19530. },
  19531. barghest: {
  19532. height: math.unit(11, "feet"),
  19533. weight: math.unit(1300, "lb"),
  19534. name: "Barghest",
  19535. image: {
  19536. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19537. extra: 1291/1204,
  19538. bottom: 37/1328
  19539. }
  19540. },
  19541. dick: {
  19542. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19543. name: "Dick",
  19544. image: {
  19545. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19546. }
  19547. },
  19548. dickWere: {
  19549. height: math.unit((20) / 3.8, "feet"),
  19550. name: "Dick (Were)",
  19551. image: {
  19552. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(6 + 1 / 12, "feet"),
  19560. default: true
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19566. {
  19567. front: {
  19568. height: math.unit(10, "feet"),
  19569. weight: math.unit(350, "lb"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/jet/front.svg",
  19573. extra: 2050 / 1980,
  19574. bottom: 0.013
  19575. }
  19576. },
  19577. back: {
  19578. height: math.unit(10, "feet"),
  19579. weight: math.unit(350, "lb"),
  19580. name: "Back",
  19581. image: {
  19582. source: "./media/characters/jet/back.svg",
  19583. extra: 2050 / 1980,
  19584. bottom: 0.013
  19585. }
  19586. },
  19587. },
  19588. [
  19589. {
  19590. name: "Micro",
  19591. height: math.unit(6, "inches")
  19592. },
  19593. {
  19594. name: "Normal",
  19595. height: math.unit(10, "feet"),
  19596. default: true
  19597. },
  19598. {
  19599. name: "Macro",
  19600. height: math.unit(100, "feet")
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19606. {
  19607. front: {
  19608. height: math.unit(15, "feet"),
  19609. weight: math.unit(2800, "lb"),
  19610. name: "Front",
  19611. image: {
  19612. source: "./media/characters/tanarath/front.svg",
  19613. extra: 2392 / 2220,
  19614. bottom: 0.03
  19615. }
  19616. },
  19617. back: {
  19618. height: math.unit(15, "feet"),
  19619. weight: math.unit(2800, "lb"),
  19620. name: "Back",
  19621. image: {
  19622. source: "./media/characters/tanarath/back.svg",
  19623. extra: 2392 / 2220,
  19624. bottom: 0.03
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(15, "feet"),
  19632. default: true
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(7 + 1 / 12, "feet"),
  19641. weight: math.unit(175, "lb"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/patty-cattybatty/front.svg",
  19645. extra: 908 / 874,
  19646. bottom: 0.025
  19647. }
  19648. },
  19649. },
  19650. [
  19651. {
  19652. name: "Micro",
  19653. height: math.unit(1, "inch")
  19654. },
  19655. {
  19656. name: "Normal",
  19657. height: math.unit(7 + 1 / 12, "feet")
  19658. },
  19659. {
  19660. name: "Mini Macro",
  19661. height: math.unit(155, "feet")
  19662. },
  19663. {
  19664. name: "Macro",
  19665. height: math.unit(1077, "feet")
  19666. },
  19667. {
  19668. name: "Mega Macro",
  19669. height: math.unit(47650, "feet"),
  19670. default: true
  19671. },
  19672. {
  19673. name: "Giga Macro",
  19674. height: math.unit(440, "miles")
  19675. },
  19676. {
  19677. name: "Tera Macro",
  19678. height: math.unit(8700, "miles")
  19679. },
  19680. {
  19681. name: "Planetary Macro",
  19682. height: math.unit(32700, "miles")
  19683. },
  19684. {
  19685. name: "Solar Macro",
  19686. height: math.unit(550000, "miles")
  19687. },
  19688. {
  19689. name: "Celestial Macro",
  19690. height: math.unit(2.5, "AU")
  19691. },
  19692. ]
  19693. ))
  19694. characterMakers.push(() => makeCharacter(
  19695. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19696. {
  19697. front: {
  19698. height: math.unit(4 + 5 / 12, "feet"),
  19699. weight: math.unit(90, "lb"),
  19700. name: "Front",
  19701. image: {
  19702. source: "./media/characters/cappu/front.svg",
  19703. extra: 1247 / 1152,
  19704. bottom: 0.012
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(4 + 5 / 12, "feet"),
  19712. default: true
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19718. {
  19719. frontDressed: {
  19720. height: math.unit(70, "cm"),
  19721. weight: math.unit(6, "kg"),
  19722. name: "Front (Dressed)",
  19723. image: {
  19724. source: "./media/characters/sebi/front-dressed.svg",
  19725. extra: 713.5 / 686.5,
  19726. bottom: 0.003
  19727. }
  19728. },
  19729. front: {
  19730. height: math.unit(70, "cm"),
  19731. weight: math.unit(5, "kg"),
  19732. name: "Front",
  19733. image: {
  19734. source: "./media/characters/sebi/front.svg",
  19735. extra: 713.5 / 686.5,
  19736. bottom: 0.003
  19737. }
  19738. }
  19739. },
  19740. [
  19741. {
  19742. name: "Normal",
  19743. height: math.unit(70, "cm"),
  19744. default: true
  19745. },
  19746. {
  19747. name: "Macro",
  19748. height: math.unit(8, "meters")
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(6, "feet"),
  19757. weight: math.unit(150, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/typhek/front.svg",
  19761. extra: 1948 / 1929,
  19762. bottom: 0.025
  19763. }
  19764. },
  19765. side: {
  19766. height: math.unit(6, "feet"),
  19767. weight: math.unit(150, "lb"),
  19768. name: "Side",
  19769. image: {
  19770. source: "./media/characters/typhek/side.svg",
  19771. extra: 2034 / 2010,
  19772. bottom: 0.003
  19773. }
  19774. },
  19775. back: {
  19776. height: math.unit(6, "feet"),
  19777. weight: math.unit(150, "lb"),
  19778. name: "Back",
  19779. image: {
  19780. source: "./media/characters/typhek/back.svg",
  19781. extra: 2005 / 1978,
  19782. bottom: 0.004
  19783. }
  19784. },
  19785. palm: {
  19786. height: math.unit(1.2, "feet"),
  19787. name: "Palm",
  19788. image: {
  19789. source: "./media/characters/typhek/palm.svg"
  19790. }
  19791. },
  19792. fist: {
  19793. height: math.unit(1.1, "feet"),
  19794. name: "Fist",
  19795. image: {
  19796. source: "./media/characters/typhek/fist.svg"
  19797. }
  19798. },
  19799. foot: {
  19800. height: math.unit(1.57, "feet"),
  19801. name: "Foot",
  19802. image: {
  19803. source: "./media/characters/typhek/foot.svg"
  19804. }
  19805. },
  19806. sole: {
  19807. height: math.unit(2.05, "feet"),
  19808. name: "Sole",
  19809. image: {
  19810. source: "./media/characters/typhek/sole.svg"
  19811. }
  19812. },
  19813. },
  19814. [
  19815. {
  19816. name: "Macro",
  19817. height: math.unit(40, "stories"),
  19818. default: true
  19819. },
  19820. {
  19821. name: "Megamacro",
  19822. height: math.unit(1, "mile")
  19823. },
  19824. {
  19825. name: "Gigamacro",
  19826. height: math.unit(4000, "solarradii")
  19827. },
  19828. {
  19829. name: "Universal",
  19830. height: math.unit(1.1, "universes")
  19831. }
  19832. ]
  19833. ))
  19834. characterMakers.push(() => makeCharacter(
  19835. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19836. {
  19837. side: {
  19838. height: math.unit(5 + 7 / 12, "feet"),
  19839. weight: math.unit(150, "lb"),
  19840. name: "Side",
  19841. image: {
  19842. source: "./media/characters/kassy/side.svg",
  19843. extra: 1280 / 1225,
  19844. bottom: 0.002
  19845. }
  19846. },
  19847. front: {
  19848. height: math.unit(5 + 7 / 12, "feet"),
  19849. weight: math.unit(150, "lb"),
  19850. name: "Front",
  19851. image: {
  19852. source: "./media/characters/kassy/front.svg",
  19853. extra: 1280 / 1225,
  19854. bottom: 0.025
  19855. }
  19856. },
  19857. back: {
  19858. height: math.unit(5 + 7 / 12, "feet"),
  19859. weight: math.unit(150, "lb"),
  19860. name: "Back",
  19861. image: {
  19862. source: "./media/characters/kassy/back.svg",
  19863. extra: 1280 / 1225,
  19864. bottom: 0.002
  19865. }
  19866. },
  19867. foot: {
  19868. height: math.unit(1.266, "feet"),
  19869. name: "Foot",
  19870. image: {
  19871. source: "./media/characters/kassy/foot.svg"
  19872. }
  19873. },
  19874. },
  19875. [
  19876. {
  19877. name: "Normal",
  19878. height: math.unit(5 + 7 / 12, "feet")
  19879. },
  19880. {
  19881. name: "Macro",
  19882. height: math.unit(137, "feet"),
  19883. default: true
  19884. },
  19885. {
  19886. name: "Megamacro",
  19887. height: math.unit(1, "mile")
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19893. {
  19894. front: {
  19895. height: math.unit(6 + 1 / 12, "feet"),
  19896. weight: math.unit(200, "lb"),
  19897. name: "Front",
  19898. image: {
  19899. source: "./media/characters/neil/front.svg",
  19900. extra: 1326 / 1250,
  19901. bottom: 0.023
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Normal",
  19908. height: math.unit(6 + 1 / 12, "feet"),
  19909. default: true
  19910. },
  19911. {
  19912. name: "Macro",
  19913. height: math.unit(200, "feet")
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19919. {
  19920. front: {
  19921. height: math.unit(5 + 9 / 12, "feet"),
  19922. weight: math.unit(190, "lb"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/atticus/front.svg",
  19926. extra: 2934 / 2785,
  19927. bottom: 0.025
  19928. }
  19929. },
  19930. },
  19931. [
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(5 + 9 / 12, "feet"),
  19935. default: true
  19936. },
  19937. {
  19938. name: "Macro",
  19939. height: math.unit(180, "feet")
  19940. },
  19941. ]
  19942. ))
  19943. characterMakers.push(() => makeCharacter(
  19944. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19945. {
  19946. side: {
  19947. height: math.unit(9, "feet"),
  19948. weight: math.unit(650, "lb"),
  19949. name: "Side",
  19950. image: {
  19951. source: "./media/characters/milo/side.svg",
  19952. extra: 2644 / 2310,
  19953. bottom: 0.032
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Normal",
  19960. height: math.unit(9, "feet"),
  19961. default: true
  19962. },
  19963. {
  19964. name: "Macro",
  19965. height: math.unit(300, "feet")
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19971. {
  19972. side: {
  19973. height: math.unit(8, "meters"),
  19974. weight: math.unit(90000, "kg"),
  19975. name: "Side",
  19976. image: {
  19977. source: "./media/characters/ijzer/side.svg",
  19978. extra: 2756 / 1600,
  19979. bottom: 0.01
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Small",
  19986. height: math.unit(3, "meters")
  19987. },
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(8, "meters"),
  19991. default: true
  19992. },
  19993. {
  19994. name: "Normal+",
  19995. height: math.unit(10, "meters")
  19996. },
  19997. {
  19998. name: "Bigger",
  19999. height: math.unit(24, "meters")
  20000. },
  20001. {
  20002. name: "Huge",
  20003. height: math.unit(80, "meters")
  20004. },
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20009. {
  20010. front: {
  20011. height: math.unit(6 + 2 / 12, "feet"),
  20012. weight: math.unit(153, "lb"),
  20013. name: "Front",
  20014. image: {
  20015. source: "./media/characters/luca-cervicum/front.svg",
  20016. extra: 370 / 327,
  20017. bottom: 0.015
  20018. }
  20019. },
  20020. back: {
  20021. height: math.unit(6 + 2 / 12, "feet"),
  20022. weight: math.unit(153, "lb"),
  20023. name: "Back",
  20024. image: {
  20025. source: "./media/characters/luca-cervicum/back.svg",
  20026. extra: 367 / 333,
  20027. bottom: 0.005
  20028. }
  20029. },
  20030. frontGear: {
  20031. height: math.unit(6 + 2 / 12, "feet"),
  20032. weight: math.unit(173, "lb"),
  20033. name: "Front (Gear)",
  20034. image: {
  20035. source: "./media/characters/luca-cervicum/front-gear.svg",
  20036. extra: 377 / 333,
  20037. bottom: 0.006
  20038. }
  20039. },
  20040. },
  20041. [
  20042. {
  20043. name: "Normal",
  20044. height: math.unit(6 + 2 / 12, "feet"),
  20045. default: true
  20046. },
  20047. ]
  20048. ))
  20049. characterMakers.push(() => makeCharacter(
  20050. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20051. {
  20052. front: {
  20053. height: math.unit(6 + 1 / 12, "feet"),
  20054. weight: math.unit(304, "lb"),
  20055. name: "Front",
  20056. image: {
  20057. source: "./media/characters/oliver/front.svg",
  20058. extra: 157 / 143,
  20059. bottom: 0.08
  20060. }
  20061. },
  20062. },
  20063. [
  20064. {
  20065. name: "Normal",
  20066. height: math.unit(6 + 1 / 12, "feet"),
  20067. default: true
  20068. },
  20069. ]
  20070. ))
  20071. characterMakers.push(() => makeCharacter(
  20072. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20073. {
  20074. front: {
  20075. height: math.unit(5 + 7 / 12, "feet"),
  20076. weight: math.unit(140, "lb"),
  20077. name: "Front",
  20078. image: {
  20079. source: "./media/characters/shane/front.svg",
  20080. extra: 304 / 289,
  20081. bottom: 0.005
  20082. }
  20083. },
  20084. },
  20085. [
  20086. {
  20087. name: "Normal",
  20088. height: math.unit(5 + 7 / 12, "feet"),
  20089. default: true
  20090. },
  20091. ]
  20092. ))
  20093. characterMakers.push(() => makeCharacter(
  20094. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20095. {
  20096. front: {
  20097. height: math.unit(5 + 9 / 12, "feet"),
  20098. weight: math.unit(178, "lb"),
  20099. name: "Front",
  20100. image: {
  20101. source: "./media/characters/shin/front.svg",
  20102. extra: 159 / 151,
  20103. bottom: 0.015
  20104. }
  20105. },
  20106. },
  20107. [
  20108. {
  20109. name: "Normal",
  20110. height: math.unit(5 + 9 / 12, "feet"),
  20111. default: true
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20117. {
  20118. front: {
  20119. height: math.unit(5 + 10 / 12, "feet"),
  20120. weight: math.unit(168, "lb"),
  20121. name: "Front",
  20122. image: {
  20123. source: "./media/characters/xerxes/front.svg",
  20124. extra: 282 / 260,
  20125. bottom: 0.045
  20126. }
  20127. },
  20128. },
  20129. [
  20130. {
  20131. name: "Normal",
  20132. height: math.unit(5 + 10 / 12, "feet"),
  20133. default: true
  20134. },
  20135. ]
  20136. ))
  20137. characterMakers.push(() => makeCharacter(
  20138. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20139. {
  20140. front: {
  20141. height: math.unit(6 + 7 / 12, "feet"),
  20142. weight: math.unit(208, "lb"),
  20143. name: "Front",
  20144. image: {
  20145. source: "./media/characters/chaska/front.svg",
  20146. extra: 332 / 319,
  20147. bottom: 0.015
  20148. }
  20149. },
  20150. },
  20151. [
  20152. {
  20153. name: "Normal",
  20154. height: math.unit(6 + 7 / 12, "feet"),
  20155. default: true
  20156. },
  20157. ]
  20158. ))
  20159. characterMakers.push(() => makeCharacter(
  20160. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20161. {
  20162. front: {
  20163. height: math.unit(5 + 8 / 12, "feet"),
  20164. weight: math.unit(208, "lb"),
  20165. name: "Front",
  20166. image: {
  20167. source: "./media/characters/enuk/front.svg",
  20168. extra: 437 / 406,
  20169. bottom: 0.02
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(5 + 8 / 12, "feet"),
  20177. default: true
  20178. },
  20179. ]
  20180. ))
  20181. characterMakers.push(() => makeCharacter(
  20182. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20183. {
  20184. front: {
  20185. height: math.unit(5 + 10 / 12, "feet"),
  20186. weight: math.unit(252, "lb"),
  20187. name: "Front",
  20188. image: {
  20189. source: "./media/characters/bruun/front.svg",
  20190. extra: 197 / 187,
  20191. bottom: 0.012
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(5 + 10 / 12, "feet"),
  20199. default: true
  20200. },
  20201. ]
  20202. ))
  20203. characterMakers.push(() => makeCharacter(
  20204. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20205. {
  20206. front: {
  20207. height: math.unit(6 + 10 / 12, "feet"),
  20208. weight: math.unit(255, "lb"),
  20209. name: "Front",
  20210. image: {
  20211. source: "./media/characters/alexeev/front.svg",
  20212. extra: 213 / 200,
  20213. bottom: 0.05
  20214. }
  20215. },
  20216. },
  20217. [
  20218. {
  20219. name: "Normal",
  20220. height: math.unit(6 + 10 / 12, "feet"),
  20221. default: true
  20222. },
  20223. ]
  20224. ))
  20225. characterMakers.push(() => makeCharacter(
  20226. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20227. {
  20228. front: {
  20229. height: math.unit(2 + 8 / 12, "feet"),
  20230. weight: math.unit(22, "lb"),
  20231. name: "Front",
  20232. image: {
  20233. source: "./media/characters/evelyn/front.svg",
  20234. extra: 208 / 180
  20235. }
  20236. },
  20237. },
  20238. [
  20239. {
  20240. name: "Normal",
  20241. height: math.unit(2 + 8 / 12, "feet"),
  20242. default: true
  20243. },
  20244. ]
  20245. ))
  20246. characterMakers.push(() => makeCharacter(
  20247. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20248. {
  20249. front: {
  20250. height: math.unit(5 + 9 / 12, "feet"),
  20251. weight: math.unit(139, "lb"),
  20252. name: "Front",
  20253. image: {
  20254. source: "./media/characters/inca/front.svg",
  20255. extra: 294 / 291,
  20256. bottom: 0.03
  20257. }
  20258. },
  20259. },
  20260. [
  20261. {
  20262. name: "Normal",
  20263. height: math.unit(5 + 9 / 12, "feet"),
  20264. default: true
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20270. {
  20271. front: {
  20272. height: math.unit(6 + 3 / 12, "feet"),
  20273. weight: math.unit(185, "lb"),
  20274. name: "Front",
  20275. image: {
  20276. source: "./media/characters/mera/front.svg",
  20277. extra: 291 / 277,
  20278. bottom: 0.03
  20279. }
  20280. },
  20281. },
  20282. [
  20283. {
  20284. name: "Normal",
  20285. height: math.unit(6 + 3 / 12, "feet"),
  20286. default: true
  20287. },
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20292. {
  20293. front: {
  20294. height: math.unit(6 + 7 / 12, "feet"),
  20295. weight: math.unit(160, "lb"),
  20296. name: "Front",
  20297. image: {
  20298. source: "./media/characters/ceres/front.svg",
  20299. extra: 1023 / 950,
  20300. bottom: 0.027
  20301. }
  20302. },
  20303. back: {
  20304. height: math.unit(6 + 7 / 12, "feet"),
  20305. weight: math.unit(160, "lb"),
  20306. name: "Back",
  20307. image: {
  20308. source: "./media/characters/ceres/back.svg",
  20309. extra: 1023 / 950
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Normal",
  20316. height: math.unit(6 + 7 / 12, "feet"),
  20317. default: true
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(5 + 10 / 12, "feet"),
  20326. weight: math.unit(150, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/kris/front.svg",
  20330. extra: 885 / 803,
  20331. bottom: 0.03
  20332. }
  20333. },
  20334. },
  20335. [
  20336. {
  20337. name: "Normal",
  20338. height: math.unit(5 + 10 / 12, "feet"),
  20339. default: true
  20340. },
  20341. ]
  20342. ))
  20343. characterMakers.push(() => makeCharacter(
  20344. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20345. {
  20346. front: {
  20347. height: math.unit(7, "feet"),
  20348. weight: math.unit(120, "kg"),
  20349. name: "Front",
  20350. image: {
  20351. source: "./media/characters/taluthus/front.svg",
  20352. extra: 903 / 833,
  20353. bottom: 0.015
  20354. }
  20355. },
  20356. },
  20357. [
  20358. {
  20359. name: "Normal",
  20360. height: math.unit(7, "feet"),
  20361. default: true
  20362. },
  20363. {
  20364. name: "Macro",
  20365. height: math.unit(300, "feet")
  20366. },
  20367. ]
  20368. ))
  20369. characterMakers.push(() => makeCharacter(
  20370. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20371. {
  20372. front: {
  20373. height: math.unit(5 + 9 / 12, "feet"),
  20374. weight: math.unit(145, "lb"),
  20375. name: "Front",
  20376. image: {
  20377. source: "./media/characters/dawn/front.svg",
  20378. extra: 2094 / 2016,
  20379. bottom: 0.025
  20380. }
  20381. },
  20382. back: {
  20383. height: math.unit(5 + 9 / 12, "feet"),
  20384. weight: math.unit(160, "lb"),
  20385. name: "Back",
  20386. image: {
  20387. source: "./media/characters/dawn/back.svg",
  20388. extra: 2112 / 2080,
  20389. bottom: 0.005
  20390. }
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(6 + 7 / 12, "feet"),
  20397. default: true
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20403. {
  20404. anthro: {
  20405. height: math.unit(8 + 3 / 12, "feet"),
  20406. weight: math.unit(450, "lb"),
  20407. name: "Anthro",
  20408. image: {
  20409. source: "./media/characters/arador/anthro.svg",
  20410. extra: 1835 / 1718,
  20411. bottom: 0.025
  20412. }
  20413. },
  20414. feral: {
  20415. height: math.unit(4, "feet"),
  20416. weight: math.unit(200, "lb"),
  20417. name: "Feral",
  20418. image: {
  20419. source: "./media/characters/arador/feral.svg",
  20420. extra: 1683 / 1514,
  20421. bottom: 0.07
  20422. }
  20423. },
  20424. },
  20425. [
  20426. {
  20427. name: "Normal",
  20428. height: math.unit(8 + 3 / 12, "feet")
  20429. },
  20430. {
  20431. name: "Macro",
  20432. height: math.unit(82.5, "feet"),
  20433. default: true
  20434. },
  20435. ]
  20436. ))
  20437. characterMakers.push(() => makeCharacter(
  20438. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20439. {
  20440. front: {
  20441. height: math.unit(5 + 10 / 12, "feet"),
  20442. weight: math.unit(125, "lb"),
  20443. name: "Front",
  20444. image: {
  20445. source: "./media/characters/dharsi/front.svg",
  20446. extra: 716 / 630,
  20447. bottom: 0.035
  20448. }
  20449. },
  20450. },
  20451. [
  20452. {
  20453. name: "Nano",
  20454. height: math.unit(100, "nm")
  20455. },
  20456. {
  20457. name: "Micro",
  20458. height: math.unit(2, "inches")
  20459. },
  20460. {
  20461. name: "Normal",
  20462. height: math.unit(5 + 10 / 12, "feet"),
  20463. default: true
  20464. },
  20465. {
  20466. name: "Macro",
  20467. height: math.unit(1000, "feet")
  20468. },
  20469. {
  20470. name: "Megamacro",
  20471. height: math.unit(10, "miles")
  20472. },
  20473. {
  20474. name: "Gigamacro",
  20475. height: math.unit(3000, "miles")
  20476. },
  20477. {
  20478. name: "Teramacro",
  20479. height: math.unit(500000, "miles")
  20480. },
  20481. {
  20482. name: "Teramacro+",
  20483. height: math.unit(30, "galaxies")
  20484. },
  20485. ]
  20486. ))
  20487. characterMakers.push(() => makeCharacter(
  20488. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20489. {
  20490. front: {
  20491. height: math.unit(6, "feet"),
  20492. weight: math.unit(150, "lb"),
  20493. name: "Front",
  20494. image: {
  20495. source: "./media/characters/deathy/front.svg",
  20496. extra: 1552 / 1463,
  20497. bottom: 0.025
  20498. }
  20499. },
  20500. side: {
  20501. height: math.unit(6, "feet"),
  20502. weight: math.unit(150, "lb"),
  20503. name: "Side",
  20504. image: {
  20505. source: "./media/characters/deathy/side.svg",
  20506. extra: 1604 / 1455,
  20507. bottom: 0.025
  20508. }
  20509. },
  20510. back: {
  20511. height: math.unit(6, "feet"),
  20512. weight: math.unit(150, "lb"),
  20513. name: "Back",
  20514. image: {
  20515. source: "./media/characters/deathy/back.svg",
  20516. extra: 1580 / 1463,
  20517. bottom: 0.005
  20518. }
  20519. },
  20520. },
  20521. [
  20522. {
  20523. name: "Micro",
  20524. height: math.unit(5, "millimeters")
  20525. },
  20526. {
  20527. name: "Normal",
  20528. height: math.unit(6 + 5 / 12, "feet"),
  20529. default: true
  20530. },
  20531. ]
  20532. ))
  20533. characterMakers.push(() => makeCharacter(
  20534. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20535. {
  20536. front: {
  20537. height: math.unit(16, "feet"),
  20538. weight: math.unit(4000, "lb"),
  20539. name: "Front",
  20540. image: {
  20541. source: "./media/characters/juniper/front.svg",
  20542. bottom: 0.04
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Normal",
  20549. height: math.unit(16, "feet"),
  20550. default: true
  20551. },
  20552. ]
  20553. ))
  20554. characterMakers.push(() => makeCharacter(
  20555. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20556. {
  20557. front: {
  20558. height: math.unit(6, "feet"),
  20559. weight: math.unit(150, "lb"),
  20560. name: "Front",
  20561. image: {
  20562. source: "./media/characters/hipster/front.svg",
  20563. extra: 1312 / 1209,
  20564. bottom: 0.025
  20565. }
  20566. },
  20567. back: {
  20568. height: math.unit(6, "feet"),
  20569. weight: math.unit(150, "lb"),
  20570. name: "Back",
  20571. image: {
  20572. source: "./media/characters/hipster/back.svg",
  20573. extra: 1281 / 1196,
  20574. bottom: 0.01
  20575. }
  20576. },
  20577. },
  20578. [
  20579. {
  20580. name: "Micro",
  20581. height: math.unit(1, "mm")
  20582. },
  20583. {
  20584. name: "Normal",
  20585. height: math.unit(4, "inches"),
  20586. default: true
  20587. },
  20588. {
  20589. name: "Macro",
  20590. height: math.unit(500, "feet")
  20591. },
  20592. {
  20593. name: "Megamacro",
  20594. height: math.unit(1000, "miles")
  20595. },
  20596. ]
  20597. ))
  20598. characterMakers.push(() => makeCharacter(
  20599. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20600. {
  20601. front: {
  20602. height: math.unit(6, "feet"),
  20603. weight: math.unit(150, "lb"),
  20604. name: "Front",
  20605. image: {
  20606. source: "./media/characters/tendirmuldr/front.svg",
  20607. extra: 1878 / 1772,
  20608. bottom: 0.015
  20609. }
  20610. },
  20611. },
  20612. [
  20613. {
  20614. name: "Megamacro",
  20615. height: math.unit(1500, "miles"),
  20616. default: true
  20617. },
  20618. ]
  20619. ))
  20620. characterMakers.push(() => makeCharacter(
  20621. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20622. {
  20623. front: {
  20624. height: math.unit(14, "feet"),
  20625. weight: math.unit(12000, "lb"),
  20626. name: "Front",
  20627. image: {
  20628. source: "./media/characters/mort/front.svg",
  20629. extra: 365 / 318,
  20630. bottom: 0.01
  20631. }
  20632. },
  20633. side: {
  20634. height: math.unit(14, "feet"),
  20635. weight: math.unit(12000, "lb"),
  20636. name: "Side",
  20637. image: {
  20638. source: "./media/characters/mort/side.svg",
  20639. extra: 365 / 318,
  20640. bottom: 0.052
  20641. },
  20642. default: true
  20643. },
  20644. back: {
  20645. height: math.unit(14, "feet"),
  20646. weight: math.unit(12000, "lb"),
  20647. name: "Back",
  20648. image: {
  20649. source: "./media/characters/mort/back.svg",
  20650. extra: 371 / 332,
  20651. bottom: 0.18
  20652. }
  20653. },
  20654. },
  20655. [
  20656. {
  20657. name: "Normal",
  20658. height: math.unit(14, "feet"),
  20659. default: true
  20660. },
  20661. ]
  20662. ))
  20663. characterMakers.push(() => makeCharacter(
  20664. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20665. {
  20666. front: {
  20667. height: math.unit(8, "feet"),
  20668. weight: math.unit(1, "ton"),
  20669. name: "Front",
  20670. image: {
  20671. source: "./media/characters/lycoa/front.svg",
  20672. extra: 1836/1728,
  20673. bottom: 81/1917
  20674. }
  20675. },
  20676. back: {
  20677. height: math.unit(8, "feet"),
  20678. weight: math.unit(1, "ton"),
  20679. name: "Back",
  20680. image: {
  20681. source: "./media/characters/lycoa/back.svg",
  20682. extra: 1785/1720,
  20683. bottom: 91/1876
  20684. }
  20685. },
  20686. head: {
  20687. height: math.unit(1.6243, "feet"),
  20688. name: "Head",
  20689. image: {
  20690. source: "./media/characters/lycoa/head.svg",
  20691. extra: 1011/782,
  20692. bottom: 0/1011
  20693. }
  20694. },
  20695. tailmaw: {
  20696. height: math.unit(1.9, "feet"),
  20697. name: "Tailmaw",
  20698. image: {
  20699. source: "./media/characters/lycoa/tailmaw.svg"
  20700. }
  20701. },
  20702. tentacles: {
  20703. height: math.unit(2.1, "feet"),
  20704. name: "Tentacles",
  20705. image: {
  20706. source: "./media/characters/lycoa/tentacles.svg"
  20707. }
  20708. },
  20709. dick: {
  20710. height: math.unit(1.73, "feet"),
  20711. name: "Dick",
  20712. image: {
  20713. source: "./media/characters/lycoa/dick.svg"
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(8, "feet"),
  20721. default: true
  20722. },
  20723. {
  20724. name: "Macro",
  20725. height: math.unit(30, "feet")
  20726. },
  20727. ]
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20731. {
  20732. front: {
  20733. height: math.unit(4 + 2 / 12, "feet"),
  20734. weight: math.unit(70, "lb"),
  20735. name: "Front",
  20736. image: {
  20737. source: "./media/characters/naldara/front.svg",
  20738. extra: 1664/1387,
  20739. bottom: 81/1745
  20740. },
  20741. form: "anthro",
  20742. default: true
  20743. },
  20744. naga: {
  20745. height: math.unit(20, "feet"),
  20746. weight: math.unit(15000, "kg"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/naldara/naga.svg",
  20750. extra: 1590/1396,
  20751. bottom: 285/1875
  20752. },
  20753. form: "naga",
  20754. default: true
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "Normal",
  20760. height: math.unit(4 + 2 / 12, "feet"),
  20761. form: "anthro",
  20762. default: true
  20763. },
  20764. {
  20765. name: "Normal",
  20766. height: math.unit(20, "feet"),
  20767. form: "naga",
  20768. default: true
  20769. },
  20770. ],
  20771. {
  20772. "anthro": {
  20773. name: "Anthro"
  20774. },
  20775. "naga": {
  20776. name: "Naga"
  20777. }
  20778. }
  20779. ))
  20780. characterMakers.push(() => makeCharacter(
  20781. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20782. {
  20783. front: {
  20784. height: math.unit(13 + 7 / 12, "feet"),
  20785. weight: math.unit(1500, "lb"),
  20786. name: "Front",
  20787. image: {
  20788. source: "./media/characters/briar/front.svg",
  20789. extra: 1223/1157,
  20790. bottom: 123/1346
  20791. }
  20792. },
  20793. },
  20794. [
  20795. {
  20796. name: "Normal",
  20797. height: math.unit(13 + 7 / 12, "feet"),
  20798. default: true
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20804. {
  20805. side: {
  20806. height: math.unit(16, "feet"),
  20807. weight: math.unit(500, "lb"),
  20808. name: "Side",
  20809. image: {
  20810. source: "./media/characters/vanguard/side.svg",
  20811. extra: 1022/914,
  20812. bottom: 30/1052
  20813. }
  20814. },
  20815. sideAlt: {
  20816. height: math.unit(10, "feet"),
  20817. weight: math.unit(500, "lb"),
  20818. name: "Side (Alt)",
  20819. image: {
  20820. source: "./media/characters/vanguard/side-alt.svg",
  20821. extra: 502 / 425,
  20822. bottom: 0.087
  20823. }
  20824. },
  20825. },
  20826. [
  20827. {
  20828. name: "Normal",
  20829. height: math.unit(17.71, "feet"),
  20830. default: true
  20831. },
  20832. ]
  20833. ))
  20834. characterMakers.push(() => makeCharacter(
  20835. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20836. {
  20837. front: {
  20838. height: math.unit(7.5, "feet"),
  20839. weight: math.unit(2, "lb"),
  20840. name: "Front",
  20841. image: {
  20842. source: "./media/characters/artemis/front.svg",
  20843. extra: 1192 / 1075,
  20844. bottom: 0.07
  20845. }
  20846. },
  20847. frontNsfw: {
  20848. height: math.unit(7.5, "feet"),
  20849. weight: math.unit(2, "lb"),
  20850. name: "Front (NSFW)",
  20851. image: {
  20852. source: "./media/characters/artemis/front-nsfw.svg",
  20853. extra: 1192 / 1075,
  20854. bottom: 0.07
  20855. }
  20856. },
  20857. frontNsfwer: {
  20858. height: math.unit(7.5, "feet"),
  20859. weight: math.unit(2, "lb"),
  20860. name: "Front (NSFW-er)",
  20861. image: {
  20862. source: "./media/characters/artemis/front-nsfwer.svg",
  20863. extra: 1192 / 1075,
  20864. bottom: 0.07
  20865. }
  20866. },
  20867. side: {
  20868. height: math.unit(7.5, "feet"),
  20869. weight: math.unit(2, "lb"),
  20870. name: "Side",
  20871. image: {
  20872. source: "./media/characters/artemis/side.svg",
  20873. extra: 1192 / 1075,
  20874. bottom: 0.07
  20875. }
  20876. },
  20877. sideNsfw: {
  20878. height: math.unit(7.5, "feet"),
  20879. weight: math.unit(2, "lb"),
  20880. name: "Side (NSFW)",
  20881. image: {
  20882. source: "./media/characters/artemis/side-nsfw.svg",
  20883. extra: 1192 / 1075,
  20884. bottom: 0.07
  20885. }
  20886. },
  20887. sideNsfwer: {
  20888. height: math.unit(7.5, "feet"),
  20889. weight: math.unit(2, "lb"),
  20890. name: "Side (NSFW-er)",
  20891. image: {
  20892. source: "./media/characters/artemis/side-nsfwer.svg",
  20893. extra: 1192 / 1075,
  20894. bottom: 0.07
  20895. }
  20896. },
  20897. maw: {
  20898. height: math.unit(1.1, "feet"),
  20899. name: "Maw",
  20900. image: {
  20901. source: "./media/characters/artemis/maw.svg"
  20902. }
  20903. },
  20904. stomach: {
  20905. height: math.unit(0.95, "feet"),
  20906. name: "Stomach",
  20907. image: {
  20908. source: "./media/characters/artemis/stomach.svg"
  20909. }
  20910. },
  20911. dickCanine: {
  20912. height: math.unit(1, "feet"),
  20913. name: "Dick (Canine)",
  20914. image: {
  20915. source: "./media/characters/artemis/dick-canine.svg"
  20916. }
  20917. },
  20918. dickEquine: {
  20919. height: math.unit(0.85, "feet"),
  20920. name: "Dick (Equine)",
  20921. image: {
  20922. source: "./media/characters/artemis/dick-equine.svg"
  20923. }
  20924. },
  20925. dickExotic: {
  20926. height: math.unit(0.85, "feet"),
  20927. name: "Dick (Exotic)",
  20928. image: {
  20929. source: "./media/characters/artemis/dick-exotic.svg"
  20930. }
  20931. },
  20932. },
  20933. [
  20934. {
  20935. name: "Normal",
  20936. height: math.unit(7.5, "feet"),
  20937. default: true
  20938. },
  20939. {
  20940. name: "Enlarged",
  20941. height: math.unit(12, "feet")
  20942. },
  20943. ]
  20944. ))
  20945. characterMakers.push(() => makeCharacter(
  20946. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20947. {
  20948. front: {
  20949. height: math.unit(5 + 3 / 12, "feet"),
  20950. weight: math.unit(160, "lb"),
  20951. name: "Front",
  20952. image: {
  20953. source: "./media/characters/kira/front.svg",
  20954. extra: 906 / 786,
  20955. bottom: 0.01
  20956. }
  20957. },
  20958. back: {
  20959. height: math.unit(5 + 3 / 12, "feet"),
  20960. weight: math.unit(160, "lb"),
  20961. name: "Back",
  20962. image: {
  20963. source: "./media/characters/kira/back.svg",
  20964. extra: 882 / 757,
  20965. bottom: 0.005
  20966. }
  20967. },
  20968. frontDressed: {
  20969. height: math.unit(5 + 3 / 12, "feet"),
  20970. weight: math.unit(160, "lb"),
  20971. name: "Front (Dressed)",
  20972. image: {
  20973. source: "./media/characters/kira/front-dressed.svg",
  20974. extra: 906 / 786,
  20975. bottom: 0.01
  20976. }
  20977. },
  20978. beans: {
  20979. height: math.unit(0.92, "feet"),
  20980. name: "Beans",
  20981. image: {
  20982. source: "./media/characters/kira/beans.svg"
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(5 + 3 / 12, "feet"),
  20990. default: true
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20996. {
  20997. front: {
  20998. height: math.unit(5 + 4 / 12, "feet"),
  20999. weight: math.unit(145, "lb"),
  21000. name: "Front",
  21001. image: {
  21002. source: "./media/characters/scramble/front.svg",
  21003. extra: 763 / 727,
  21004. bottom: 0.05
  21005. }
  21006. },
  21007. back: {
  21008. height: math.unit(5 + 4 / 12, "feet"),
  21009. weight: math.unit(145, "lb"),
  21010. name: "Back",
  21011. image: {
  21012. source: "./media/characters/scramble/back.svg",
  21013. extra: 826 / 737,
  21014. bottom: 0.002
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Normal",
  21021. height: math.unit(5 + 4 / 12, "feet"),
  21022. default: true
  21023. },
  21024. ]
  21025. ))
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21028. {
  21029. side: {
  21030. height: math.unit(6 + 2 / 12, "feet"),
  21031. weight: math.unit(190, "lb"),
  21032. name: "Side",
  21033. image: {
  21034. source: "./media/characters/biscuit/side.svg",
  21035. extra: 858 / 791,
  21036. bottom: 0.044
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(6 + 2 / 12, "feet"),
  21044. default: true
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21050. {
  21051. front: {
  21052. height: math.unit(5 + 2 / 12, "feet"),
  21053. weight: math.unit(120, "lb"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/poffin/front.svg",
  21057. extra: 786 / 680,
  21058. bottom: 0.005
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(5 + 2 / 12, "feet"),
  21066. default: true
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21072. {
  21073. front: {
  21074. height: math.unit(6 + 3 / 12, "feet"),
  21075. weight: math.unit(519, "lb"),
  21076. name: "Front",
  21077. image: {
  21078. source: "./media/characters/dhari/front.svg",
  21079. extra: 1048 / 946,
  21080. bottom: 0.015
  21081. }
  21082. },
  21083. back: {
  21084. height: math.unit(6 + 3 / 12, "feet"),
  21085. weight: math.unit(519, "lb"),
  21086. name: "Back",
  21087. image: {
  21088. source: "./media/characters/dhari/back.svg",
  21089. extra: 1048 / 931,
  21090. bottom: 0.005
  21091. }
  21092. },
  21093. frontDressed: {
  21094. height: math.unit(6 + 3 / 12, "feet"),
  21095. weight: math.unit(519, "lb"),
  21096. name: "Front (Dressed)",
  21097. image: {
  21098. source: "./media/characters/dhari/front-dressed.svg",
  21099. extra: 1713 / 1546,
  21100. bottom: 0.02
  21101. }
  21102. },
  21103. backDressed: {
  21104. height: math.unit(6 + 3 / 12, "feet"),
  21105. weight: math.unit(519, "lb"),
  21106. name: "Back (Dressed)",
  21107. image: {
  21108. source: "./media/characters/dhari/back-dressed.svg",
  21109. extra: 1699 / 1537,
  21110. bottom: 0.01
  21111. }
  21112. },
  21113. maw: {
  21114. height: math.unit(0.95, "feet"),
  21115. name: "Maw",
  21116. image: {
  21117. source: "./media/characters/dhari/maw.svg"
  21118. }
  21119. },
  21120. wereFront: {
  21121. height: math.unit(12 + 8 / 12, "feet"),
  21122. weight: math.unit(4000, "lb"),
  21123. name: "Front (Were)",
  21124. image: {
  21125. source: "./media/characters/dhari/were-front.svg",
  21126. extra: 1065 / 969,
  21127. bottom: 0.015
  21128. }
  21129. },
  21130. wereBack: {
  21131. height: math.unit(12 + 8 / 12, "feet"),
  21132. weight: math.unit(4000, "lb"),
  21133. name: "Back (Were)",
  21134. image: {
  21135. source: "./media/characters/dhari/were-back.svg",
  21136. extra: 1065 / 969,
  21137. bottom: 0.012
  21138. }
  21139. },
  21140. wereMaw: {
  21141. height: math.unit(0.625, "meters"),
  21142. name: "Maw (Were)",
  21143. image: {
  21144. source: "./media/characters/dhari/were-maw.svg"
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(6 + 3 / 12, "feet"),
  21152. default: true
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21158. {
  21159. anthro: {
  21160. height: math.unit(5 + 7 / 12, "feet"),
  21161. weight: math.unit(175, "lb"),
  21162. name: "Anthro",
  21163. image: {
  21164. source: "./media/characters/rena-dyne/anthro.svg",
  21165. extra: 1849 / 1785,
  21166. bottom: 0.005
  21167. }
  21168. },
  21169. taur: {
  21170. height: math.unit(15 + 6 / 12, "feet"),
  21171. weight: math.unit(8000, "lb"),
  21172. name: "Taur",
  21173. image: {
  21174. source: "./media/characters/rena-dyne/taur.svg",
  21175. extra: 2315 / 2234,
  21176. bottom: 0.033
  21177. }
  21178. },
  21179. },
  21180. [
  21181. {
  21182. name: "Normal",
  21183. height: math.unit(5 + 7 / 12, "feet"),
  21184. default: true
  21185. },
  21186. ]
  21187. ))
  21188. characterMakers.push(() => makeCharacter(
  21189. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21190. {
  21191. front: {
  21192. height: math.unit(8, "feet"),
  21193. weight: math.unit(600, "lb"),
  21194. name: "Front",
  21195. image: {
  21196. source: "./media/characters/weremeep/front.svg",
  21197. extra: 967 / 862,
  21198. bottom: 0.01
  21199. }
  21200. },
  21201. },
  21202. [
  21203. {
  21204. name: "Normal",
  21205. height: math.unit(8, "feet"),
  21206. default: true
  21207. },
  21208. {
  21209. name: "Lorg",
  21210. height: math.unit(12, "feet")
  21211. },
  21212. {
  21213. name: "Oh Lawd She Comin'",
  21214. height: math.unit(20, "feet")
  21215. },
  21216. ]
  21217. ))
  21218. characterMakers.push(() => makeCharacter(
  21219. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21220. {
  21221. front: {
  21222. height: math.unit(4, "feet"),
  21223. weight: math.unit(90, "lb"),
  21224. name: "Front",
  21225. image: {
  21226. source: "./media/characters/reza/front.svg",
  21227. extra: 1183 / 1111,
  21228. bottom: 0.017
  21229. }
  21230. },
  21231. back: {
  21232. height: math.unit(4, "feet"),
  21233. weight: math.unit(90, "lb"),
  21234. name: "Back",
  21235. image: {
  21236. source: "./media/characters/reza/back.svg",
  21237. extra: 1183 / 1111,
  21238. bottom: 0.01
  21239. }
  21240. },
  21241. drake: {
  21242. height: math.unit(30, "feet"),
  21243. weight: math.unit(246960, "lb"),
  21244. name: "Drake",
  21245. image: {
  21246. source: "./media/characters/reza/drake.svg",
  21247. extra: 2350 / 2024,
  21248. bottom: 60.7 / 2403
  21249. }
  21250. },
  21251. },
  21252. [
  21253. {
  21254. name: "Normal",
  21255. height: math.unit(4, "feet"),
  21256. default: true
  21257. },
  21258. ]
  21259. ))
  21260. characterMakers.push(() => makeCharacter(
  21261. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21262. {
  21263. side: {
  21264. height: math.unit(15, "feet"),
  21265. weight: math.unit(14, "tons"),
  21266. name: "Side",
  21267. image: {
  21268. source: "./media/characters/athea/side.svg",
  21269. extra: 960 / 540,
  21270. bottom: 0.003
  21271. }
  21272. },
  21273. sitting: {
  21274. height: math.unit(6 * 2.85, "feet"),
  21275. weight: math.unit(14, "tons"),
  21276. name: "Sitting",
  21277. image: {
  21278. source: "./media/characters/athea/sitting.svg",
  21279. extra: 621 / 581,
  21280. bottom: 0.075
  21281. }
  21282. },
  21283. maw: {
  21284. height: math.unit(7.59498031496063, "feet"),
  21285. name: "Maw",
  21286. image: {
  21287. source: "./media/characters/athea/maw.svg"
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Lap Cat",
  21294. height: math.unit(2.5, "feet")
  21295. },
  21296. {
  21297. name: "Minimacro",
  21298. height: math.unit(15, "feet"),
  21299. default: true
  21300. },
  21301. {
  21302. name: "Macro",
  21303. height: math.unit(120, "feet")
  21304. },
  21305. {
  21306. name: "Macro+",
  21307. height: math.unit(640, "feet")
  21308. },
  21309. {
  21310. name: "Colossus",
  21311. height: math.unit(2.2, "miles")
  21312. },
  21313. ]
  21314. ))
  21315. characterMakers.push(() => makeCharacter(
  21316. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21317. {
  21318. front: {
  21319. height: math.unit(8 + 8 / 12, "feet"),
  21320. weight: math.unit(130, "kg"),
  21321. name: "Front",
  21322. image: {
  21323. source: "./media/characters/seroko/front.svg",
  21324. extra: 1385 / 1280,
  21325. bottom: 0.025
  21326. }
  21327. },
  21328. back: {
  21329. height: math.unit(8 + 8 / 12, "feet"),
  21330. weight: math.unit(130, "kg"),
  21331. name: "Back",
  21332. image: {
  21333. source: "./media/characters/seroko/back.svg",
  21334. extra: 1369 / 1238,
  21335. bottom: 0.018
  21336. }
  21337. },
  21338. frontDressed: {
  21339. height: math.unit(8 + 8 / 12, "feet"),
  21340. weight: math.unit(130, "kg"),
  21341. name: "Front (Dressed)",
  21342. image: {
  21343. source: "./media/characters/seroko/front-dressed.svg",
  21344. extra: 1366 / 1275,
  21345. bottom: 0.03
  21346. }
  21347. },
  21348. },
  21349. [
  21350. {
  21351. name: "Normal",
  21352. height: math.unit(8 + 8 / 12, "feet"),
  21353. default: true
  21354. },
  21355. ]
  21356. ))
  21357. characterMakers.push(() => makeCharacter(
  21358. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21359. {
  21360. front: {
  21361. height: math.unit(5.5, "feet"),
  21362. weight: math.unit(160, "lb"),
  21363. name: "Front",
  21364. image: {
  21365. source: "./media/characters/quatzi/front.svg",
  21366. extra: 2346 / 2242,
  21367. bottom: 0.015
  21368. }
  21369. },
  21370. },
  21371. [
  21372. {
  21373. name: "Normal",
  21374. height: math.unit(5.5, "feet"),
  21375. default: true
  21376. },
  21377. {
  21378. name: "Big",
  21379. height: math.unit(7.7, "feet")
  21380. },
  21381. ]
  21382. ))
  21383. characterMakers.push(() => makeCharacter(
  21384. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21385. {
  21386. front: {
  21387. height: math.unit(5 + 11 / 12, "feet"),
  21388. weight: math.unit(180, "lb"),
  21389. name: "Front",
  21390. image: {
  21391. source: "./media/characters/sen/front.svg",
  21392. extra: 1321 / 1254,
  21393. bottom: 0.015
  21394. }
  21395. },
  21396. side: {
  21397. height: math.unit(5 + 11 / 12, "feet"),
  21398. weight: math.unit(180, "lb"),
  21399. name: "Side",
  21400. image: {
  21401. source: "./media/characters/sen/side.svg",
  21402. extra: 1321 / 1254,
  21403. bottom: 0.007
  21404. }
  21405. },
  21406. back: {
  21407. height: math.unit(5 + 11 / 12, "feet"),
  21408. weight: math.unit(180, "lb"),
  21409. name: "Back",
  21410. image: {
  21411. source: "./media/characters/sen/back.svg",
  21412. extra: 1321 / 1254
  21413. }
  21414. },
  21415. },
  21416. [
  21417. {
  21418. name: "Normal",
  21419. height: math.unit(5 + 11 / 12, "feet"),
  21420. default: true
  21421. },
  21422. ]
  21423. ))
  21424. characterMakers.push(() => makeCharacter(
  21425. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21426. {
  21427. front: {
  21428. height: math.unit(166.6, "cm"),
  21429. weight: math.unit(66.6, "kg"),
  21430. name: "Front",
  21431. image: {
  21432. source: "./media/characters/fruity/front.svg",
  21433. extra: 1510 / 1386,
  21434. bottom: 0.04
  21435. }
  21436. },
  21437. back: {
  21438. height: math.unit(166.6, "cm"),
  21439. weight: math.unit(66.6, "lb"),
  21440. name: "Back",
  21441. image: {
  21442. source: "./media/characters/fruity/back.svg",
  21443. extra: 1563 / 1435,
  21444. bottom: 0.005
  21445. }
  21446. },
  21447. },
  21448. [
  21449. {
  21450. name: "Normal",
  21451. height: math.unit(166.6, "cm"),
  21452. default: true
  21453. },
  21454. {
  21455. name: "Demonic",
  21456. height: math.unit(166.6, "feet")
  21457. },
  21458. ]
  21459. ))
  21460. characterMakers.push(() => makeCharacter(
  21461. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21462. {
  21463. side: {
  21464. height: math.unit(10, "feet"),
  21465. weight: math.unit(500, "lb"),
  21466. name: "Side",
  21467. image: {
  21468. source: "./media/characters/zost/side.svg",
  21469. extra: 966 / 880,
  21470. bottom: 0.075
  21471. }
  21472. },
  21473. mawFront: {
  21474. height: math.unit(1.08, "meters"),
  21475. name: "Maw (Front)",
  21476. image: {
  21477. source: "./media/characters/zost/maw-front.svg"
  21478. }
  21479. },
  21480. mawSide: {
  21481. height: math.unit(2.66, "feet"),
  21482. name: "Maw (Side)",
  21483. image: {
  21484. source: "./media/characters/zost/maw-side.svg"
  21485. }
  21486. },
  21487. },
  21488. [
  21489. {
  21490. name: "Normal",
  21491. height: math.unit(10, "feet"),
  21492. default: true
  21493. },
  21494. ]
  21495. ))
  21496. characterMakers.push(() => makeCharacter(
  21497. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21498. {
  21499. front: {
  21500. height: math.unit(5 + 4 / 12, "feet"),
  21501. weight: math.unit(120, "lb"),
  21502. name: "Front",
  21503. image: {
  21504. source: "./media/characters/luci/front.svg",
  21505. extra: 1985 / 1884,
  21506. bottom: 0.04
  21507. }
  21508. },
  21509. back: {
  21510. height: math.unit(5 + 4 / 12, "feet"),
  21511. weight: math.unit(120, "lb"),
  21512. name: "Back",
  21513. image: {
  21514. source: "./media/characters/luci/back.svg",
  21515. extra: 1892 / 1791,
  21516. bottom: 0.002
  21517. }
  21518. },
  21519. },
  21520. [
  21521. {
  21522. name: "Normal",
  21523. height: math.unit(5 + 4 / 12, "feet"),
  21524. default: true
  21525. },
  21526. ]
  21527. ))
  21528. characterMakers.push(() => makeCharacter(
  21529. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21530. {
  21531. front: {
  21532. height: math.unit(1500, "feet"),
  21533. weight: math.unit(3.8e6, "tons"),
  21534. name: "Front",
  21535. image: {
  21536. source: "./media/characters/2th/front.svg",
  21537. extra: 3489 / 3350,
  21538. bottom: 0.1
  21539. }
  21540. },
  21541. foot: {
  21542. height: math.unit(461, "feet"),
  21543. name: "Foot",
  21544. image: {
  21545. source: "./media/characters/2th/foot.svg"
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "\"Micro\"",
  21552. height: math.unit(15 + 7 / 12, "feet")
  21553. },
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(1500, "feet"),
  21557. default: true
  21558. },
  21559. {
  21560. name: "Macro",
  21561. height: math.unit(5000, "feet")
  21562. },
  21563. {
  21564. name: "Megamacro",
  21565. height: math.unit(15, "miles")
  21566. },
  21567. {
  21568. name: "Gigamacro",
  21569. height: math.unit(4000, "miles")
  21570. },
  21571. {
  21572. name: "Galactic",
  21573. height: math.unit(50, "AU")
  21574. },
  21575. ]
  21576. ))
  21577. characterMakers.push(() => makeCharacter(
  21578. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21579. {
  21580. front: {
  21581. height: math.unit(5 + 6 / 12, "feet"),
  21582. weight: math.unit(220, "lb"),
  21583. name: "Front",
  21584. image: {
  21585. source: "./media/characters/amethyst/front.svg",
  21586. extra: 2078 / 2040,
  21587. bottom: 0.045
  21588. }
  21589. },
  21590. back: {
  21591. height: math.unit(5 + 6 / 12, "feet"),
  21592. weight: math.unit(220, "lb"),
  21593. name: "Back",
  21594. image: {
  21595. source: "./media/characters/amethyst/back.svg",
  21596. extra: 2021 / 1989,
  21597. bottom: 0.02
  21598. }
  21599. },
  21600. },
  21601. [
  21602. {
  21603. name: "Normal",
  21604. height: math.unit(5 + 6 / 12, "feet"),
  21605. default: true
  21606. },
  21607. ]
  21608. ))
  21609. characterMakers.push(() => makeCharacter(
  21610. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21611. {
  21612. front: {
  21613. height: math.unit(4 + 11 / 12, "feet"),
  21614. weight: math.unit(120, "lb"),
  21615. name: "Front",
  21616. image: {
  21617. source: "./media/characters/yumi-akiyama/front.svg",
  21618. extra: 1327 / 1235,
  21619. bottom: 0.02
  21620. }
  21621. },
  21622. back: {
  21623. height: math.unit(4 + 11 / 12, "feet"),
  21624. weight: math.unit(120, "lb"),
  21625. name: "Back",
  21626. image: {
  21627. source: "./media/characters/yumi-akiyama/back.svg",
  21628. extra: 1287 / 1245,
  21629. bottom: 0.002
  21630. }
  21631. },
  21632. },
  21633. [
  21634. {
  21635. name: "Galactic",
  21636. height: math.unit(50, "galaxies"),
  21637. default: true
  21638. },
  21639. {
  21640. name: "Universal",
  21641. height: math.unit(100, "universes")
  21642. },
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21647. {
  21648. front: {
  21649. height: math.unit(8, "feet"),
  21650. weight: math.unit(500, "lb"),
  21651. name: "Front",
  21652. image: {
  21653. source: "./media/characters/rifter-yrmori/front.svg",
  21654. extra: 1180 / 1125,
  21655. bottom: 0.02
  21656. }
  21657. },
  21658. back: {
  21659. height: math.unit(8, "feet"),
  21660. weight: math.unit(500, "lb"),
  21661. name: "Back",
  21662. image: {
  21663. source: "./media/characters/rifter-yrmori/back.svg",
  21664. extra: 1190 / 1145,
  21665. bottom: 0.001
  21666. }
  21667. },
  21668. wings: {
  21669. height: math.unit(7.75, "feet"),
  21670. weight: math.unit(500, "lb"),
  21671. name: "Wings",
  21672. image: {
  21673. source: "./media/characters/rifter-yrmori/wings.svg",
  21674. extra: 1357 / 1285
  21675. }
  21676. },
  21677. maw: {
  21678. height: math.unit(0.8, "feet"),
  21679. name: "Maw",
  21680. image: {
  21681. source: "./media/characters/rifter-yrmori/maw.svg"
  21682. }
  21683. },
  21684. mawfront: {
  21685. height: math.unit(1.45, "feet"),
  21686. name: "Maw (Front)",
  21687. image: {
  21688. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21689. }
  21690. },
  21691. },
  21692. [
  21693. {
  21694. name: "Normal",
  21695. height: math.unit(8, "feet"),
  21696. default: true
  21697. },
  21698. {
  21699. name: "Macro",
  21700. height: math.unit(42, "meters")
  21701. },
  21702. ]
  21703. ))
  21704. characterMakers.push(() => makeCharacter(
  21705. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21706. {
  21707. were: {
  21708. height: math.unit(25 + 6 / 12, "feet"),
  21709. weight: math.unit(10000, "lb"),
  21710. name: "Were",
  21711. image: {
  21712. source: "./media/characters/tahajin/were.svg",
  21713. extra: 801 / 770,
  21714. bottom: 0.042
  21715. }
  21716. },
  21717. aquatic: {
  21718. height: math.unit(6 + 4 / 12, "feet"),
  21719. weight: math.unit(160, "lb"),
  21720. name: "Aquatic",
  21721. image: {
  21722. source: "./media/characters/tahajin/aquatic.svg",
  21723. extra: 572 / 542,
  21724. bottom: 0.04
  21725. }
  21726. },
  21727. chow: {
  21728. height: math.unit(8 + 11 / 12, "feet"),
  21729. weight: math.unit(450, "lb"),
  21730. name: "Chow",
  21731. image: {
  21732. source: "./media/characters/tahajin/chow.svg",
  21733. extra: 660 / 640,
  21734. bottom: 0.015
  21735. }
  21736. },
  21737. demiNaga: {
  21738. height: math.unit(6 + 8 / 12, "feet"),
  21739. weight: math.unit(300, "lb"),
  21740. name: "Demi Naga",
  21741. image: {
  21742. source: "./media/characters/tahajin/demi-naga.svg",
  21743. extra: 643 / 615,
  21744. bottom: 0.1
  21745. }
  21746. },
  21747. data: {
  21748. height: math.unit(5, "inches"),
  21749. weight: math.unit(0.1, "lb"),
  21750. name: "Data",
  21751. image: {
  21752. source: "./media/characters/tahajin/data.svg"
  21753. }
  21754. },
  21755. fluu: {
  21756. height: math.unit(5 + 7 / 12, "feet"),
  21757. weight: math.unit(140, "lb"),
  21758. name: "Fluu",
  21759. image: {
  21760. source: "./media/characters/tahajin/fluu.svg",
  21761. extra: 628 / 592,
  21762. bottom: 0.02
  21763. }
  21764. },
  21765. starWarrior: {
  21766. height: math.unit(4 + 5 / 12, "feet"),
  21767. weight: math.unit(50, "lb"),
  21768. name: "Star Warrior",
  21769. image: {
  21770. source: "./media/characters/tahajin/star-warrior.svg"
  21771. }
  21772. },
  21773. },
  21774. [
  21775. {
  21776. name: "Normal",
  21777. height: math.unit(25 + 6 / 12, "feet"),
  21778. default: true
  21779. },
  21780. ]
  21781. ))
  21782. characterMakers.push(() => makeCharacter(
  21783. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21784. {
  21785. front: {
  21786. height: math.unit(8, "feet"),
  21787. weight: math.unit(350, "lb"),
  21788. name: "Front",
  21789. image: {
  21790. source: "./media/characters/gabira/front.svg",
  21791. extra: 608 / 580,
  21792. bottom: 0.03
  21793. }
  21794. },
  21795. back: {
  21796. height: math.unit(8, "feet"),
  21797. weight: math.unit(350, "lb"),
  21798. name: "Back",
  21799. image: {
  21800. source: "./media/characters/gabira/back.svg",
  21801. extra: 608 / 580,
  21802. bottom: 0.03
  21803. }
  21804. },
  21805. },
  21806. [
  21807. {
  21808. name: "Normal",
  21809. height: math.unit(8, "feet"),
  21810. default: true
  21811. },
  21812. ]
  21813. ))
  21814. characterMakers.push(() => makeCharacter(
  21815. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21816. {
  21817. front: {
  21818. height: math.unit(5 + 3 / 12, "feet"),
  21819. weight: math.unit(137, "lb"),
  21820. name: "Front",
  21821. image: {
  21822. source: "./media/characters/sasha-katraine/front.svg",
  21823. bottom: 0.045
  21824. }
  21825. },
  21826. },
  21827. [
  21828. {
  21829. name: "Micro",
  21830. height: math.unit(5, "inches")
  21831. },
  21832. {
  21833. name: "Normal",
  21834. height: math.unit(5 + 3 / 12, "feet"),
  21835. default: true
  21836. },
  21837. ]
  21838. ))
  21839. characterMakers.push(() => makeCharacter(
  21840. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21841. {
  21842. side: {
  21843. height: math.unit(4, "inches"),
  21844. weight: math.unit(200, "grams"),
  21845. name: "Side",
  21846. image: {
  21847. source: "./media/characters/der/side.svg",
  21848. extra: 719 / 400,
  21849. bottom: 30.6 / 749.9187
  21850. }
  21851. },
  21852. },
  21853. [
  21854. {
  21855. name: "Micro",
  21856. height: math.unit(4, "inches"),
  21857. default: true
  21858. },
  21859. ]
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21863. {
  21864. side: {
  21865. height: math.unit(30, "meters"),
  21866. weight: math.unit(700, "tonnes"),
  21867. name: "Side",
  21868. image: {
  21869. source: "./media/characters/fixerdragon/side.svg",
  21870. extra: (1293.0514 - 116.03) / 1106.86,
  21871. bottom: 116.03 / 1293.0514
  21872. }
  21873. },
  21874. },
  21875. [
  21876. {
  21877. name: "Planck",
  21878. height: math.unit(1.6e-35, "meters")
  21879. },
  21880. {
  21881. name: "Micro",
  21882. height: math.unit(0.4, "meters")
  21883. },
  21884. {
  21885. name: "Normal",
  21886. height: math.unit(30, "meters"),
  21887. default: true
  21888. },
  21889. {
  21890. name: "Megamacro",
  21891. height: math.unit(1.2, "megameters")
  21892. },
  21893. {
  21894. name: "Teramacro",
  21895. height: math.unit(130, "terameters")
  21896. },
  21897. {
  21898. name: "Yottamacro",
  21899. height: math.unit(6200, "yottameters")
  21900. },
  21901. ]
  21902. ));
  21903. characterMakers.push(() => makeCharacter(
  21904. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21905. {
  21906. front: {
  21907. height: math.unit(8, "feet"),
  21908. weight: math.unit(250, "lb"),
  21909. name: "Front",
  21910. image: {
  21911. source: "./media/characters/kite/front.svg",
  21912. extra: 2796 / 2659,
  21913. bottom: 0.002
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Normal",
  21920. height: math.unit(8, "feet"),
  21921. default: true
  21922. },
  21923. {
  21924. name: "Macro",
  21925. height: math.unit(360, "feet")
  21926. },
  21927. {
  21928. name: "Megamacro",
  21929. height: math.unit(1500, "feet")
  21930. },
  21931. ]
  21932. ))
  21933. characterMakers.push(() => makeCharacter(
  21934. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21935. {
  21936. front: {
  21937. height: math.unit(5 + 11/12, "feet"),
  21938. weight: math.unit(170, "lb"),
  21939. name: "Front",
  21940. image: {
  21941. source: "./media/characters/poojawa-vynar/front.svg",
  21942. extra: 1735/1585,
  21943. bottom: 96/1831
  21944. }
  21945. },
  21946. back: {
  21947. height: math.unit(5 + 11/12, "feet"),
  21948. weight: math.unit(170, "lb"),
  21949. name: "Back",
  21950. image: {
  21951. source: "./media/characters/poojawa-vynar/back.svg",
  21952. extra: 1749/1607,
  21953. bottom: 28/1777
  21954. }
  21955. },
  21956. male: {
  21957. height: math.unit(5 + 11/12, "feet"),
  21958. weight: math.unit(170, "lb"),
  21959. name: "Male",
  21960. image: {
  21961. source: "./media/characters/poojawa-vynar/male.svg",
  21962. extra: 1855/1713,
  21963. bottom: 63/1918
  21964. }
  21965. },
  21966. taur: {
  21967. height: math.unit(5 + 11/12, "feet"),
  21968. weight: math.unit(170, "lb"),
  21969. name: "Taur",
  21970. image: {
  21971. source: "./media/characters/poojawa-vynar/taur.svg",
  21972. extra: 1151/1059,
  21973. bottom: 356/1507
  21974. }
  21975. },
  21976. frontDressed: {
  21977. height: math.unit(5 + 11/12, "feet"),
  21978. weight: math.unit(170, "lb"),
  21979. name: "Front (Dressed)",
  21980. image: {
  21981. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21982. extra: 1735/1585,
  21983. bottom: 96/1831
  21984. }
  21985. },
  21986. backDressed: {
  21987. height: math.unit(5 + 11/12, "feet"),
  21988. weight: math.unit(170, "lb"),
  21989. name: "Back (Dressed)",
  21990. image: {
  21991. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21992. extra: 1749/1607,
  21993. bottom: 28/1777
  21994. }
  21995. },
  21996. maleDressed: {
  21997. height: math.unit(5 + 11/12, "feet"),
  21998. weight: math.unit(170, "lb"),
  21999. name: "Male (Dressed)",
  22000. image: {
  22001. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22002. extra: 1855/1713,
  22003. bottom: 63/1918
  22004. }
  22005. },
  22006. taurDressed: {
  22007. height: math.unit(5 + 11/12, "feet"),
  22008. weight: math.unit(170, "lb"),
  22009. name: "Taur (Dressed)",
  22010. image: {
  22011. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22012. extra: 1151/1059,
  22013. bottom: 356/1507
  22014. }
  22015. },
  22016. maw: {
  22017. height: math.unit(1.46, "feet"),
  22018. name: "Maw",
  22019. image: {
  22020. source: "./media/characters/poojawa-vynar/maw.svg"
  22021. }
  22022. },
  22023. head: {
  22024. height: math.unit(2.34, "feet"),
  22025. name: "Head",
  22026. image: {
  22027. source: "./media/characters/poojawa-vynar/head.svg"
  22028. }
  22029. },
  22030. paw: {
  22031. height: math.unit(1.61, "feet"),
  22032. name: "Paw",
  22033. image: {
  22034. source: "./media/characters/poojawa-vynar/paw.svg"
  22035. }
  22036. },
  22037. pawToering: {
  22038. height: math.unit(1.72, "feet"),
  22039. name: "Paw (Toering)",
  22040. image: {
  22041. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22042. }
  22043. },
  22044. toering: {
  22045. height: math.unit(2.9, "inches"),
  22046. name: "Toering",
  22047. image: {
  22048. source: "./media/characters/poojawa-vynar/toering.svg"
  22049. }
  22050. },
  22051. shaft: {
  22052. height: math.unit(0.625, "feet"),
  22053. name: "Shaft",
  22054. image: {
  22055. source: "./media/characters/poojawa-vynar/shaft.svg"
  22056. }
  22057. },
  22058. spade: {
  22059. height: math.unit(0.42, "feet"),
  22060. name: "Spade",
  22061. image: {
  22062. source: "./media/characters/poojawa-vynar/spade.svg"
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Shortstack",
  22069. height: math.unit(4, "feet")
  22070. },
  22071. {
  22072. name: "Normal",
  22073. height: math.unit(5 + 11 / 12, "feet"),
  22074. default: true
  22075. },
  22076. {
  22077. name: "Tauric",
  22078. height: math.unit(4, "meters")
  22079. },
  22080. ]
  22081. ))
  22082. characterMakers.push(() => makeCharacter(
  22083. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22084. {
  22085. front: {
  22086. height: math.unit(293, "meters"),
  22087. weight: math.unit(70400, "tons"),
  22088. name: "Front",
  22089. image: {
  22090. source: "./media/characters/violette/front.svg",
  22091. extra: 1227 / 1180,
  22092. bottom: 0.005
  22093. }
  22094. },
  22095. back: {
  22096. height: math.unit(293, "meters"),
  22097. weight: math.unit(70400, "tons"),
  22098. name: "Back",
  22099. image: {
  22100. source: "./media/characters/violette/back.svg",
  22101. extra: 1227 / 1180,
  22102. bottom: 0.005
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Macro",
  22109. height: math.unit(293, "meters"),
  22110. default: true
  22111. },
  22112. ]
  22113. ))
  22114. characterMakers.push(() => makeCharacter(
  22115. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22116. {
  22117. front: {
  22118. height: math.unit(1050, "feet"),
  22119. weight: math.unit(200000, "tons"),
  22120. name: "Front",
  22121. image: {
  22122. source: "./media/characters/alessandra/front.svg",
  22123. extra: 960 / 912,
  22124. bottom: 0.06
  22125. }
  22126. },
  22127. },
  22128. [
  22129. {
  22130. name: "Macro",
  22131. height: math.unit(1050, "feet")
  22132. },
  22133. {
  22134. name: "Macro+",
  22135. height: math.unit(900, "meters"),
  22136. default: true
  22137. },
  22138. ]
  22139. ))
  22140. characterMakers.push(() => makeCharacter(
  22141. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22142. {
  22143. front: {
  22144. height: math.unit(5, "feet"),
  22145. weight: math.unit(187, "lb"),
  22146. name: "Front",
  22147. image: {
  22148. source: "./media/characters/person/front.svg",
  22149. extra: 3087 / 2945,
  22150. bottom: 91 / 3181
  22151. }
  22152. },
  22153. },
  22154. [
  22155. {
  22156. name: "Micro",
  22157. height: math.unit(3, "inches")
  22158. },
  22159. {
  22160. name: "Normal",
  22161. height: math.unit(5, "feet"),
  22162. default: true
  22163. },
  22164. {
  22165. name: "Macro",
  22166. height: math.unit(90, "feet")
  22167. },
  22168. {
  22169. name: "Max Size",
  22170. height: math.unit(280, "feet")
  22171. },
  22172. ]
  22173. ))
  22174. characterMakers.push(() => makeCharacter(
  22175. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22176. {
  22177. front: {
  22178. height: math.unit(4.5, "meters"),
  22179. weight: math.unit(3200, "lb"),
  22180. name: "Front",
  22181. image: {
  22182. source: "./media/characters/ty/front.svg",
  22183. extra: 1038 / 960,
  22184. bottom: 31.156 / 1068
  22185. }
  22186. },
  22187. back: {
  22188. height: math.unit(4.5, "meters"),
  22189. weight: math.unit(3200, "lb"),
  22190. name: "Back",
  22191. image: {
  22192. source: "./media/characters/ty/back.svg",
  22193. extra: 1044 / 966,
  22194. bottom: 7.48 / 1049
  22195. }
  22196. },
  22197. },
  22198. [
  22199. {
  22200. name: "Normal",
  22201. height: math.unit(4.5, "meters"),
  22202. default: true
  22203. },
  22204. ]
  22205. ))
  22206. characterMakers.push(() => makeCharacter(
  22207. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22208. {
  22209. front: {
  22210. height: math.unit(5 + 4 / 12, "feet"),
  22211. weight: math.unit(115, "lb"),
  22212. name: "Front",
  22213. image: {
  22214. source: "./media/characters/rocky/front.svg",
  22215. extra: 1012 / 975,
  22216. bottom: 54 / 1066
  22217. }
  22218. },
  22219. },
  22220. [
  22221. {
  22222. name: "Normal",
  22223. height: math.unit(5 + 4 / 12, "feet"),
  22224. default: true
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22230. {
  22231. upright: {
  22232. height: math.unit(6, "meters"),
  22233. weight: math.unit(4000, "kg"),
  22234. name: "Upright",
  22235. image: {
  22236. source: "./media/characters/ruin/upright.svg",
  22237. extra: 668 / 661,
  22238. bottom: 42 / 799.8396
  22239. }
  22240. },
  22241. },
  22242. [
  22243. {
  22244. name: "Normal",
  22245. height: math.unit(6, "meters"),
  22246. default: true
  22247. },
  22248. ]
  22249. ))
  22250. characterMakers.push(() => makeCharacter(
  22251. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22252. {
  22253. front: {
  22254. height: math.unit(5, "feet"),
  22255. weight: math.unit(106, "lb"),
  22256. name: "Front",
  22257. image: {
  22258. source: "./media/characters/robin/front.svg",
  22259. extra: 862 / 799,
  22260. bottom: 42.4 / 914.8856
  22261. }
  22262. },
  22263. },
  22264. [
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(5, "feet"),
  22268. default: true
  22269. },
  22270. ]
  22271. ))
  22272. characterMakers.push(() => makeCharacter(
  22273. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22274. {
  22275. side: {
  22276. height: math.unit(3, "feet"),
  22277. weight: math.unit(225, "lb"),
  22278. name: "Side",
  22279. image: {
  22280. source: "./media/characters/saian/side.svg",
  22281. extra: 566 / 356,
  22282. bottom: 79.7 / 643
  22283. }
  22284. },
  22285. maw: {
  22286. height: math.unit(2.85, "feet"),
  22287. name: "Maw",
  22288. image: {
  22289. source: "./media/characters/saian/maw.svg"
  22290. }
  22291. },
  22292. },
  22293. [
  22294. {
  22295. name: "Normal",
  22296. height: math.unit(3, "feet"),
  22297. default: true
  22298. },
  22299. ]
  22300. ))
  22301. characterMakers.push(() => makeCharacter(
  22302. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22303. {
  22304. side: {
  22305. height: math.unit(8, "feet"),
  22306. weight: math.unit(300, "lb"),
  22307. name: "Side",
  22308. image: {
  22309. source: "./media/characters/equus-silvermane/side.svg",
  22310. extra: 2176 / 2050,
  22311. bottom: 65.7 / 2245
  22312. }
  22313. },
  22314. front: {
  22315. height: math.unit(8, "feet"),
  22316. weight: math.unit(300, "lb"),
  22317. name: "Front",
  22318. image: {
  22319. source: "./media/characters/equus-silvermane/front.svg",
  22320. extra: 4633 / 4400,
  22321. bottom: 71.3 / 4706.915
  22322. }
  22323. },
  22324. sideStepping: {
  22325. height: math.unit(8, "feet"),
  22326. weight: math.unit(300, "lb"),
  22327. name: "Side (Stepping)",
  22328. image: {
  22329. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22330. extra: 1968 / 1860,
  22331. bottom: 16.4 / 1989
  22332. }
  22333. },
  22334. },
  22335. [
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(8, "feet")
  22339. },
  22340. {
  22341. name: "Minimacro",
  22342. height: math.unit(75, "feet"),
  22343. default: true
  22344. },
  22345. {
  22346. name: "Macro",
  22347. height: math.unit(150, "feet")
  22348. },
  22349. {
  22350. name: "Macro+",
  22351. height: math.unit(1000, "feet")
  22352. },
  22353. {
  22354. name: "Megamacro",
  22355. height: math.unit(1, "mile")
  22356. },
  22357. ]
  22358. ))
  22359. characterMakers.push(() => makeCharacter(
  22360. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22361. {
  22362. side: {
  22363. height: math.unit(20, "feet"),
  22364. weight: math.unit(30000, "kg"),
  22365. name: "Side",
  22366. image: {
  22367. source: "./media/characters/windar/side.svg",
  22368. extra: 1491 / 1248,
  22369. bottom: 82.56 / 1568
  22370. }
  22371. },
  22372. },
  22373. [
  22374. {
  22375. name: "Normal",
  22376. height: math.unit(20, "feet"),
  22377. default: true
  22378. },
  22379. ]
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22383. {
  22384. side: {
  22385. height: math.unit(15.66, "feet"),
  22386. weight: math.unit(150, "lb"),
  22387. name: "Side",
  22388. image: {
  22389. source: "./media/characters/melody/side.svg",
  22390. extra: 1097 / 944,
  22391. bottom: 11.8 / 1109
  22392. }
  22393. },
  22394. sideOutfit: {
  22395. height: math.unit(15.66, "feet"),
  22396. weight: math.unit(150, "lb"),
  22397. name: "Side (Outfit)",
  22398. image: {
  22399. source: "./media/characters/melody/side-outfit.svg",
  22400. extra: 1097 / 944,
  22401. bottom: 11.8 / 1109
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Normal",
  22408. height: math.unit(15.66, "feet"),
  22409. default: true
  22410. },
  22411. ]
  22412. ))
  22413. characterMakers.push(() => makeCharacter(
  22414. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22415. {
  22416. front: {
  22417. height: math.unit(8, "feet"),
  22418. weight: math.unit(325, "lb"),
  22419. name: "Front",
  22420. image: {
  22421. source: "./media/characters/windera/front.svg",
  22422. extra: 3180 / 2845,
  22423. bottom: 178 / 3365
  22424. }
  22425. },
  22426. },
  22427. [
  22428. {
  22429. name: "Normal",
  22430. height: math.unit(8, "feet"),
  22431. default: true
  22432. },
  22433. ]
  22434. ))
  22435. characterMakers.push(() => makeCharacter(
  22436. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22437. {
  22438. front: {
  22439. height: math.unit(28.75, "feet"),
  22440. weight: math.unit(2000, "kg"),
  22441. name: "Front",
  22442. image: {
  22443. source: "./media/characters/sonear/front.svg",
  22444. extra: 1041.1 / 964.9,
  22445. bottom: 53.7 / 1096.6
  22446. }
  22447. },
  22448. },
  22449. [
  22450. {
  22451. name: "Normal",
  22452. height: math.unit(28.75, "feet"),
  22453. default: true
  22454. },
  22455. ]
  22456. ))
  22457. characterMakers.push(() => makeCharacter(
  22458. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22459. {
  22460. side: {
  22461. height: math.unit(25.5, "feet"),
  22462. weight: math.unit(23000, "kg"),
  22463. name: "Side",
  22464. image: {
  22465. source: "./media/characters/kanara/side.svg"
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(25.5, "feet"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22479. {
  22480. side: {
  22481. height: math.unit(10, "feet"),
  22482. weight: math.unit(1000, "kg"),
  22483. name: "Side",
  22484. image: {
  22485. source: "./media/characters/ereus/side.svg",
  22486. extra: 1157 / 959,
  22487. bottom: 153 / 1312.5
  22488. }
  22489. },
  22490. },
  22491. [
  22492. {
  22493. name: "Normal",
  22494. height: math.unit(10, "feet"),
  22495. default: true
  22496. },
  22497. ]
  22498. ))
  22499. characterMakers.push(() => makeCharacter(
  22500. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22501. {
  22502. side: {
  22503. height: math.unit(4.5, "feet"),
  22504. weight: math.unit(500, "lb"),
  22505. name: "Side",
  22506. image: {
  22507. source: "./media/characters/e-ter/side.svg",
  22508. extra: 1550 / 1248,
  22509. bottom: 146 / 1694
  22510. }
  22511. },
  22512. },
  22513. [
  22514. {
  22515. name: "Normal",
  22516. height: math.unit(4.5, "feet"),
  22517. default: true
  22518. },
  22519. ]
  22520. ))
  22521. characterMakers.push(() => makeCharacter(
  22522. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22523. {
  22524. side: {
  22525. height: math.unit(9.7, "feet"),
  22526. weight: math.unit(4000, "kg"),
  22527. name: "Side",
  22528. image: {
  22529. source: "./media/characters/yamie/side.svg"
  22530. }
  22531. },
  22532. },
  22533. [
  22534. {
  22535. name: "Normal",
  22536. height: math.unit(9.7, "feet"),
  22537. default: true
  22538. },
  22539. ]
  22540. ))
  22541. characterMakers.push(() => makeCharacter(
  22542. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22543. {
  22544. front: {
  22545. height: math.unit(50, "feet"),
  22546. weight: math.unit(50000, "kg"),
  22547. name: "Front",
  22548. image: {
  22549. source: "./media/characters/anders/front.svg",
  22550. extra: 570 / 539,
  22551. bottom: 14.7 / 586.7
  22552. }
  22553. },
  22554. },
  22555. [
  22556. {
  22557. name: "Large",
  22558. height: math.unit(50, "feet")
  22559. },
  22560. {
  22561. name: "Macro",
  22562. height: math.unit(2000, "feet"),
  22563. default: true
  22564. },
  22565. {
  22566. name: "Megamacro",
  22567. height: math.unit(12, "miles")
  22568. },
  22569. ]
  22570. ))
  22571. characterMakers.push(() => makeCharacter(
  22572. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22573. {
  22574. front: {
  22575. height: math.unit(7 + 2 / 12, "feet"),
  22576. weight: math.unit(300, "lb"),
  22577. name: "Front",
  22578. image: {
  22579. source: "./media/characters/reban/front.svg",
  22580. extra: 1287/1212,
  22581. bottom: 148/1435
  22582. }
  22583. },
  22584. head: {
  22585. height: math.unit(1.95, "feet"),
  22586. name: "Head",
  22587. image: {
  22588. source: "./media/characters/reban/head.svg"
  22589. }
  22590. },
  22591. maw: {
  22592. height: math.unit(0.95, "feet"),
  22593. name: "Maw",
  22594. image: {
  22595. source: "./media/characters/reban/maw.svg"
  22596. }
  22597. },
  22598. foot: {
  22599. height: math.unit(1.65, "feet"),
  22600. name: "Foot",
  22601. image: {
  22602. source: "./media/characters/reban/foot.svg"
  22603. }
  22604. },
  22605. dick: {
  22606. height: math.unit(7 / 5, "feet"),
  22607. name: "Dick",
  22608. image: {
  22609. source: "./media/characters/reban/dick.svg"
  22610. }
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Natural Height",
  22616. height: math.unit(7 + 2 / 12, "feet")
  22617. },
  22618. {
  22619. name: "Macro",
  22620. height: math.unit(500, "feet"),
  22621. default: true
  22622. },
  22623. {
  22624. name: "Canon Height",
  22625. height: math.unit(50, "AU")
  22626. },
  22627. ]
  22628. ))
  22629. characterMakers.push(() => makeCharacter(
  22630. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22631. {
  22632. front: {
  22633. height: math.unit(6, "feet"),
  22634. weight: math.unit(150, "lb"),
  22635. name: "Front",
  22636. image: {
  22637. source: "./media/characters/terrance-keayes/front.svg",
  22638. extra: 1.005,
  22639. bottom: 151 / 1615
  22640. }
  22641. },
  22642. side: {
  22643. height: math.unit(6, "feet"),
  22644. weight: math.unit(150, "lb"),
  22645. name: "Side",
  22646. image: {
  22647. source: "./media/characters/terrance-keayes/side.svg",
  22648. extra: 1.005,
  22649. bottom: 129.4 / 1544
  22650. }
  22651. },
  22652. back: {
  22653. height: math.unit(6, "feet"),
  22654. weight: math.unit(150, "lb"),
  22655. name: "Back",
  22656. image: {
  22657. source: "./media/characters/terrance-keayes/back.svg",
  22658. extra: 1.005,
  22659. bottom: 58.4 / 1557.3
  22660. }
  22661. },
  22662. dick: {
  22663. height: math.unit(6 * 0.208, "feet"),
  22664. name: "Dick",
  22665. image: {
  22666. source: "./media/characters/terrance-keayes/dick.svg"
  22667. }
  22668. },
  22669. },
  22670. [
  22671. {
  22672. name: "Canon Height",
  22673. height: math.unit(35, "miles"),
  22674. default: true
  22675. },
  22676. ]
  22677. ))
  22678. characterMakers.push(() => makeCharacter(
  22679. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22680. {
  22681. front: {
  22682. height: math.unit(6, "feet"),
  22683. weight: math.unit(150, "lb"),
  22684. name: "Front",
  22685. image: {
  22686. source: "./media/characters/ofelia/front.svg",
  22687. extra: 1130/1117,
  22688. bottom: 91/1221
  22689. }
  22690. },
  22691. back: {
  22692. height: math.unit(6, "feet"),
  22693. weight: math.unit(150, "lb"),
  22694. name: "Back",
  22695. image: {
  22696. source: "./media/characters/ofelia/back.svg",
  22697. extra: 1172/1159,
  22698. bottom: 28/1200
  22699. }
  22700. },
  22701. maw: {
  22702. height: math.unit(1, "feet"),
  22703. name: "Maw",
  22704. image: {
  22705. source: "./media/characters/ofelia/maw.svg"
  22706. }
  22707. },
  22708. foot: {
  22709. height: math.unit(1.949, "feet"),
  22710. name: "Foot",
  22711. image: {
  22712. source: "./media/characters/ofelia/foot.svg"
  22713. }
  22714. },
  22715. },
  22716. [
  22717. {
  22718. name: "Canon Height",
  22719. height: math.unit(2000, "miles"),
  22720. default: true
  22721. },
  22722. ]
  22723. ))
  22724. characterMakers.push(() => makeCharacter(
  22725. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22726. {
  22727. front: {
  22728. height: math.unit(6, "feet"),
  22729. weight: math.unit(150, "lb"),
  22730. name: "Front",
  22731. image: {
  22732. source: "./media/characters/samuel/front.svg",
  22733. extra: 265 / 258,
  22734. bottom: 2 / 266.1566
  22735. }
  22736. },
  22737. },
  22738. [
  22739. {
  22740. name: "Macro",
  22741. height: math.unit(100, "feet"),
  22742. default: true
  22743. },
  22744. {
  22745. name: "Full Size",
  22746. height: math.unit(1000, "miles")
  22747. },
  22748. ]
  22749. ))
  22750. characterMakers.push(() => makeCharacter(
  22751. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22752. {
  22753. front: {
  22754. height: math.unit(6, "feet"),
  22755. weight: math.unit(300, "lb"),
  22756. name: "Front",
  22757. image: {
  22758. source: "./media/characters/beishir-kiel/front.svg",
  22759. extra: 569 / 547,
  22760. bottom: 41.9 / 609
  22761. }
  22762. },
  22763. maw: {
  22764. height: math.unit(6 * 0.202, "feet"),
  22765. name: "Maw",
  22766. image: {
  22767. source: "./media/characters/beishir-kiel/maw.svg"
  22768. }
  22769. },
  22770. },
  22771. [
  22772. {
  22773. name: "Macro",
  22774. height: math.unit(300, "feet"),
  22775. default: true
  22776. },
  22777. ]
  22778. ))
  22779. characterMakers.push(() => makeCharacter(
  22780. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22781. {
  22782. front: {
  22783. height: math.unit(5 + 7/12, "feet"),
  22784. weight: math.unit(120, "lb"),
  22785. name: "Front",
  22786. image: {
  22787. source: "./media/characters/logan-grey/front.svg",
  22788. extra: 1836/1738,
  22789. bottom: 108/1944
  22790. }
  22791. },
  22792. back: {
  22793. height: math.unit(5 + 7/12, "feet"),
  22794. weight: math.unit(120, "lb"),
  22795. name: "Back",
  22796. image: {
  22797. source: "./media/characters/logan-grey/back.svg",
  22798. extra: 1880/1794,
  22799. bottom: 24/1904
  22800. }
  22801. },
  22802. frontSfw: {
  22803. height: math.unit(5 + 7/12, "feet"),
  22804. weight: math.unit(120, "lb"),
  22805. name: "Front (SFW)",
  22806. image: {
  22807. source: "./media/characters/logan-grey/front-sfw.svg",
  22808. extra: 1836/1738,
  22809. bottom: 108/1944
  22810. }
  22811. },
  22812. backSfw: {
  22813. height: math.unit(5 + 7/12, "feet"),
  22814. weight: math.unit(120, "lb"),
  22815. name: "Back (SFW)",
  22816. image: {
  22817. source: "./media/characters/logan-grey/back-sfw.svg",
  22818. extra: 1880/1794,
  22819. bottom: 24/1904
  22820. }
  22821. },
  22822. hands: {
  22823. height: math.unit(0.84, "feet"),
  22824. name: "Hands",
  22825. image: {
  22826. source: "./media/characters/logan-grey/hands.svg"
  22827. }
  22828. },
  22829. paws: {
  22830. height: math.unit(0.72, "feet"),
  22831. name: "Paws",
  22832. image: {
  22833. source: "./media/characters/logan-grey/paws.svg"
  22834. }
  22835. },
  22836. cock: {
  22837. height: math.unit(1.45, "feet"),
  22838. name: "Cock",
  22839. image: {
  22840. source: "./media/characters/logan-grey/cock.svg"
  22841. }
  22842. },
  22843. cockAlt: {
  22844. height: math.unit(1.437, "feet"),
  22845. name: "Cock (alt)",
  22846. image: {
  22847. source: "./media/characters/logan-grey/cock-alt.svg"
  22848. }
  22849. },
  22850. },
  22851. [
  22852. {
  22853. name: "Normal",
  22854. height: math.unit(5 + 8 / 12, "feet")
  22855. },
  22856. {
  22857. name: "The 500 Foot Femboy",
  22858. height: math.unit(500, "feet"),
  22859. default: true
  22860. },
  22861. {
  22862. name: "Megmacro",
  22863. height: math.unit(20, "miles")
  22864. },
  22865. ]
  22866. ))
  22867. characterMakers.push(() => makeCharacter(
  22868. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22869. {
  22870. front: {
  22871. height: math.unit(8 + 2 / 12, "feet"),
  22872. weight: math.unit(275, "lb"),
  22873. name: "Front",
  22874. image: {
  22875. source: "./media/characters/draganta/front.svg",
  22876. extra: 1177 / 1135,
  22877. bottom: 33.46 / 1212.1
  22878. }
  22879. },
  22880. },
  22881. [
  22882. {
  22883. name: "Normal",
  22884. height: math.unit(8 + 6 / 12, "feet"),
  22885. default: true
  22886. },
  22887. {
  22888. name: "Macro",
  22889. height: math.unit(150, "feet")
  22890. },
  22891. {
  22892. name: "Megamacro",
  22893. height: math.unit(1000, "miles")
  22894. },
  22895. ]
  22896. ))
  22897. characterMakers.push(() => makeCharacter(
  22898. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22899. {
  22900. front: {
  22901. height: math.unit(1.72, "m"),
  22902. weight: math.unit(80, "lb"),
  22903. name: "Front",
  22904. image: {
  22905. source: "./media/characters/voski/front.svg",
  22906. extra: 2076.22 / 2022.4,
  22907. bottom: 102.7 / 2177.3866
  22908. }
  22909. },
  22910. frontNsfw: {
  22911. height: math.unit(1.72, "m"),
  22912. weight: math.unit(80, "lb"),
  22913. name: "Front (NSFW)",
  22914. image: {
  22915. source: "./media/characters/voski/front-nsfw.svg",
  22916. extra: 2076.22 / 2022.4,
  22917. bottom: 102.7 / 2177.3866
  22918. }
  22919. },
  22920. back: {
  22921. height: math.unit(1.72, "m"),
  22922. weight: math.unit(80, "lb"),
  22923. name: "Back",
  22924. image: {
  22925. source: "./media/characters/voski/back.svg",
  22926. extra: 2104 / 2051,
  22927. bottom: 10.45 / 2113.63
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Normal",
  22934. height: math.unit(1.72, "m")
  22935. },
  22936. {
  22937. name: "Macro",
  22938. height: math.unit(55, "m"),
  22939. default: true
  22940. },
  22941. {
  22942. name: "Macro+",
  22943. height: math.unit(300, "m")
  22944. },
  22945. {
  22946. name: "Macro++",
  22947. height: math.unit(700, "m")
  22948. },
  22949. {
  22950. name: "Macro+++",
  22951. height: math.unit(4500, "m")
  22952. },
  22953. {
  22954. name: "Macro++++",
  22955. height: math.unit(45, "km")
  22956. },
  22957. {
  22958. name: "Macro+++++",
  22959. height: math.unit(1220, "km")
  22960. },
  22961. ]
  22962. ))
  22963. characterMakers.push(() => makeCharacter(
  22964. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22965. {
  22966. front: {
  22967. height: math.unit(2.3, "m"),
  22968. weight: math.unit(304, "kg"),
  22969. name: "Front",
  22970. image: {
  22971. source: "./media/characters/icowom-lee/front.svg",
  22972. extra: 985 / 955,
  22973. bottom: 25.4 / 1012
  22974. }
  22975. },
  22976. fronttentacles: {
  22977. height: math.unit(2.3, "m"),
  22978. weight: math.unit(304, "kg"),
  22979. name: "Front-tentacles",
  22980. image: {
  22981. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22982. extra: 985 / 955,
  22983. bottom: 25.4 / 1012
  22984. }
  22985. },
  22986. back: {
  22987. height: math.unit(2.3, "m"),
  22988. weight: math.unit(304, "kg"),
  22989. name: "Back",
  22990. image: {
  22991. source: "./media/characters/icowom-lee/back.svg",
  22992. extra: 975 / 954,
  22993. bottom: 9.5 / 985
  22994. }
  22995. },
  22996. backtentacles: {
  22997. height: math.unit(2.3, "m"),
  22998. weight: math.unit(304, "kg"),
  22999. name: "Back-tentacles",
  23000. image: {
  23001. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23002. extra: 975 / 954,
  23003. bottom: 9.5 / 985
  23004. }
  23005. },
  23006. frontDressed: {
  23007. height: math.unit(2.3, "m"),
  23008. weight: math.unit(304, "kg"),
  23009. name: "Front (Dressed)",
  23010. image: {
  23011. source: "./media/characters/icowom-lee/front-dressed.svg",
  23012. extra: 3076 / 2933,
  23013. bottom: 51.4 / 3125.1889
  23014. }
  23015. },
  23016. rump: {
  23017. height: math.unit(0.776, "meters"),
  23018. name: "Rump",
  23019. image: {
  23020. source: "./media/characters/icowom-lee/rump.svg"
  23021. }
  23022. },
  23023. genitals: {
  23024. height: math.unit(0.78, "meters"),
  23025. name: "Genitals",
  23026. image: {
  23027. source: "./media/characters/icowom-lee/genitals.svg"
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Normal",
  23034. height: math.unit(2.3, "meters"),
  23035. default: true
  23036. },
  23037. {
  23038. name: "Macro",
  23039. height: math.unit(94, "meters"),
  23040. default: true
  23041. },
  23042. ]
  23043. ))
  23044. characterMakers.push(() => makeCharacter(
  23045. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23046. {
  23047. front: {
  23048. height: math.unit(22, "meters"),
  23049. weight: math.unit(21000, "kg"),
  23050. name: "Front",
  23051. image: {
  23052. source: "./media/characters/shock-diamond/front.svg",
  23053. extra: 2204 / 2053,
  23054. bottom: 65 / 2239.47
  23055. }
  23056. },
  23057. frontNude: {
  23058. height: math.unit(22, "meters"),
  23059. weight: math.unit(21000, "kg"),
  23060. name: "Front (Nude)",
  23061. image: {
  23062. source: "./media/characters/shock-diamond/front-nude.svg",
  23063. extra: 2514 / 2285,
  23064. bottom: 13 / 2527.56
  23065. }
  23066. },
  23067. },
  23068. [
  23069. {
  23070. name: "Normal",
  23071. height: math.unit(3, "meters")
  23072. },
  23073. {
  23074. name: "Macro",
  23075. height: math.unit(22, "meters"),
  23076. default: true
  23077. },
  23078. ]
  23079. ))
  23080. characterMakers.push(() => makeCharacter(
  23081. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23082. {
  23083. front: {
  23084. height: math.unit(5 + 4 / 12, "feet"),
  23085. weight: math.unit(120, "lb"),
  23086. name: "Front",
  23087. image: {
  23088. source: "./media/characters/rory/front.svg",
  23089. extra: 1318/1241,
  23090. bottom: 42/1360
  23091. }
  23092. },
  23093. back: {
  23094. height: math.unit(5 + 4 / 12, "feet"),
  23095. weight: math.unit(120, "lb"),
  23096. name: "Back",
  23097. image: {
  23098. source: "./media/characters/rory/back.svg",
  23099. extra: 1318/1241,
  23100. bottom: 42/1360
  23101. }
  23102. },
  23103. butt: {
  23104. height: math.unit(1.74, "feet"),
  23105. name: "Butt",
  23106. image: {
  23107. source: "./media/characters/rory/butt.svg"
  23108. }
  23109. },
  23110. dick: {
  23111. height: math.unit(1.02, "feet"),
  23112. name: "Dick",
  23113. image: {
  23114. source: "./media/characters/rory/dick.svg"
  23115. }
  23116. },
  23117. paws: {
  23118. height: math.unit(1, "feet"),
  23119. name: "Paws",
  23120. image: {
  23121. source: "./media/characters/rory/paws.svg"
  23122. }
  23123. },
  23124. frontAlt: {
  23125. height: math.unit(5 + 4 / 12, "feet"),
  23126. weight: math.unit(120, "lb"),
  23127. name: "Front (Alt)",
  23128. image: {
  23129. source: "./media/characters/rory/front-alt.svg",
  23130. extra: 589 / 556,
  23131. bottom: 45.7 / 635.76
  23132. }
  23133. },
  23134. frontAltNude: {
  23135. height: math.unit(5 + 4 / 12, "feet"),
  23136. weight: math.unit(120, "lb"),
  23137. name: "Front (Alt, Nude)",
  23138. image: {
  23139. source: "./media/characters/rory/front-alt-nude.svg",
  23140. extra: 589 / 556,
  23141. bottom: 45.7 / 635.76
  23142. }
  23143. },
  23144. side: {
  23145. height: math.unit(5 + 4 / 12, "feet"),
  23146. weight: math.unit(120, "lb"),
  23147. name: "Side",
  23148. image: {
  23149. source: "./media/characters/rory/side.svg",
  23150. extra: 597 / 564,
  23151. bottom: 55 / 653
  23152. }
  23153. },
  23154. backAlt: {
  23155. height: math.unit(5 + 4 / 12, "feet"),
  23156. weight: math.unit(120, "lb"),
  23157. name: "Back (Alt)",
  23158. image: {
  23159. source: "./media/characters/rory/back-alt.svg",
  23160. extra: 620 / 585,
  23161. bottom: 8.86 / 630.43
  23162. }
  23163. },
  23164. dickAlt: {
  23165. height: math.unit(0.86, "feet"),
  23166. name: "Dick (Alt)",
  23167. image: {
  23168. source: "./media/characters/rory/dick-alt.svg"
  23169. }
  23170. },
  23171. },
  23172. [
  23173. {
  23174. name: "Normal",
  23175. height: math.unit(5 + 4 / 12, "feet"),
  23176. default: true
  23177. },
  23178. {
  23179. name: "Macro",
  23180. height: math.unit(100, "feet")
  23181. },
  23182. {
  23183. name: "Macro+",
  23184. height: math.unit(140, "feet")
  23185. },
  23186. {
  23187. name: "Macro++",
  23188. height: math.unit(300, "feet")
  23189. },
  23190. ]
  23191. ))
  23192. characterMakers.push(() => makeCharacter(
  23193. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23194. {
  23195. front: {
  23196. height: math.unit(5 + 9 / 12, "feet"),
  23197. weight: math.unit(190, "lb"),
  23198. name: "Front",
  23199. image: {
  23200. source: "./media/characters/sprisk/front.svg",
  23201. extra: 1225 / 1180,
  23202. bottom: 42.7 / 1266.4
  23203. }
  23204. },
  23205. frontNsfw: {
  23206. height: math.unit(5 + 9 / 12, "feet"),
  23207. weight: math.unit(190, "lb"),
  23208. name: "Front (NSFW)",
  23209. image: {
  23210. source: "./media/characters/sprisk/front-nsfw.svg",
  23211. extra: 1225 / 1180,
  23212. bottom: 42.7 / 1266.4
  23213. }
  23214. },
  23215. back: {
  23216. height: math.unit(5 + 9 / 12, "feet"),
  23217. weight: math.unit(190, "lb"),
  23218. name: "Back",
  23219. image: {
  23220. source: "./media/characters/sprisk/back.svg",
  23221. extra: 1247 / 1200,
  23222. bottom: 5.6 / 1253.04
  23223. }
  23224. },
  23225. },
  23226. [
  23227. {
  23228. name: "Tiny",
  23229. height: math.unit(2, "inches")
  23230. },
  23231. {
  23232. name: "Normal",
  23233. height: math.unit(5 + 9 / 12, "feet"),
  23234. default: true
  23235. },
  23236. {
  23237. name: "Mini Macro",
  23238. height: math.unit(18, "feet")
  23239. },
  23240. {
  23241. name: "Macro",
  23242. height: math.unit(100, "feet")
  23243. },
  23244. {
  23245. name: "MACRO",
  23246. height: math.unit(50, "miles")
  23247. },
  23248. {
  23249. name: "M A C R O",
  23250. height: math.unit(300, "miles")
  23251. },
  23252. ]
  23253. ))
  23254. characterMakers.push(() => makeCharacter(
  23255. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23256. {
  23257. side: {
  23258. height: math.unit(15.6, "meters"),
  23259. weight: math.unit(700000, "kg"),
  23260. name: "Side",
  23261. image: {
  23262. source: "./media/characters/bunsen/side.svg",
  23263. extra: 1644 / 358
  23264. }
  23265. },
  23266. foot: {
  23267. height: math.unit(1.611 * 1644 / 358, "meter"),
  23268. name: "Foot",
  23269. image: {
  23270. source: "./media/characters/bunsen/foot.svg"
  23271. }
  23272. },
  23273. },
  23274. [
  23275. {
  23276. name: "Small",
  23277. height: math.unit(10, "feet")
  23278. },
  23279. {
  23280. name: "Normal",
  23281. height: math.unit(15.6, "meters"),
  23282. default: true
  23283. },
  23284. ]
  23285. ))
  23286. characterMakers.push(() => makeCharacter(
  23287. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23288. {
  23289. front: {
  23290. height: math.unit(4 + 11 / 12, "feet"),
  23291. weight: math.unit(140, "lb"),
  23292. name: "Front",
  23293. image: {
  23294. source: "./media/characters/sesh/front.svg",
  23295. extra: 3420 / 3231,
  23296. bottom: 72 / 3949.5
  23297. }
  23298. },
  23299. },
  23300. [
  23301. {
  23302. name: "Normal",
  23303. height: math.unit(4 + 11 / 12, "feet")
  23304. },
  23305. {
  23306. name: "Grown",
  23307. height: math.unit(15, "feet"),
  23308. default: true
  23309. },
  23310. {
  23311. name: "Macro",
  23312. height: math.unit(1500, "feet")
  23313. },
  23314. {
  23315. name: "Megamacro",
  23316. height: math.unit(30, "miles")
  23317. },
  23318. {
  23319. name: "Continental",
  23320. height: math.unit(3000, "miles")
  23321. },
  23322. {
  23323. name: "Gravity Mass",
  23324. height: math.unit(300000, "miles")
  23325. },
  23326. {
  23327. name: "Planet Buster",
  23328. height: math.unit(30000000, "miles")
  23329. },
  23330. {
  23331. name: "Big",
  23332. height: math.unit(3000000000, "miles")
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23338. {
  23339. front: {
  23340. height: math.unit(9, "feet"),
  23341. weight: math.unit(350, "lb"),
  23342. name: "Front",
  23343. image: {
  23344. source: "./media/characters/pepper/front.svg",
  23345. extra: 1448 / 1312,
  23346. bottom: 9.4 / 1457.88
  23347. }
  23348. },
  23349. back: {
  23350. height: math.unit(9, "feet"),
  23351. weight: math.unit(350, "lb"),
  23352. name: "Back",
  23353. image: {
  23354. source: "./media/characters/pepper/back.svg",
  23355. extra: 1423 / 1300,
  23356. bottom: 4.6 / 1429
  23357. }
  23358. },
  23359. maw: {
  23360. height: math.unit(0.932, "feet"),
  23361. name: "Maw",
  23362. image: {
  23363. source: "./media/characters/pepper/maw.svg"
  23364. }
  23365. },
  23366. },
  23367. [
  23368. {
  23369. name: "Normal",
  23370. height: math.unit(9, "feet"),
  23371. default: true
  23372. },
  23373. ]
  23374. ))
  23375. characterMakers.push(() => makeCharacter(
  23376. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23377. {
  23378. front: {
  23379. height: math.unit(6, "feet"),
  23380. weight: math.unit(150, "lb"),
  23381. name: "Front",
  23382. image: {
  23383. source: "./media/characters/maelstrom/front.svg",
  23384. extra: 2100 / 1883,
  23385. bottom: 94 / 2196.7
  23386. }
  23387. },
  23388. },
  23389. [
  23390. {
  23391. name: "Less Kaiju",
  23392. height: math.unit(200, "feet")
  23393. },
  23394. {
  23395. name: "Kaiju",
  23396. height: math.unit(400, "feet"),
  23397. default: true
  23398. },
  23399. {
  23400. name: "Kaiju-er",
  23401. height: math.unit(600, "feet")
  23402. },
  23403. ]
  23404. ))
  23405. characterMakers.push(() => makeCharacter(
  23406. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23407. {
  23408. front: {
  23409. height: math.unit(6 + 5 / 12, "feet"),
  23410. weight: math.unit(180, "lb"),
  23411. name: "Front",
  23412. image: {
  23413. source: "./media/characters/lexir/front.svg",
  23414. extra: 180 / 172,
  23415. bottom: 12 / 192
  23416. }
  23417. },
  23418. back: {
  23419. height: math.unit(6 + 5 / 12, "feet"),
  23420. weight: math.unit(180, "lb"),
  23421. name: "Back",
  23422. image: {
  23423. source: "./media/characters/lexir/back.svg",
  23424. extra: 183.84 / 175.5,
  23425. bottom: 3.1 / 187
  23426. }
  23427. },
  23428. },
  23429. [
  23430. {
  23431. name: "Very Smal",
  23432. height: math.unit(1, "nm")
  23433. },
  23434. {
  23435. name: "Normal",
  23436. height: math.unit(6 + 5 / 12, "feet"),
  23437. default: true
  23438. },
  23439. {
  23440. name: "Macro",
  23441. height: math.unit(1, "mile")
  23442. },
  23443. {
  23444. name: "Megamacro",
  23445. height: math.unit(50, "miles")
  23446. },
  23447. ]
  23448. ))
  23449. characterMakers.push(() => makeCharacter(
  23450. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23451. {
  23452. front: {
  23453. height: math.unit(1.5, "meters"),
  23454. weight: math.unit(100, "lb"),
  23455. name: "Front",
  23456. image: {
  23457. source: "./media/characters/maksio/front.svg",
  23458. extra: 1549 / 1531,
  23459. bottom: 123.7 / 1674.5429
  23460. }
  23461. },
  23462. back: {
  23463. height: math.unit(1.5, "meters"),
  23464. weight: math.unit(100, "lb"),
  23465. name: "Back",
  23466. image: {
  23467. source: "./media/characters/maksio/back.svg",
  23468. extra: 1541 / 1509,
  23469. bottom: 97 / 1639
  23470. }
  23471. },
  23472. hand: {
  23473. height: math.unit(0.621, "feet"),
  23474. name: "Hand",
  23475. image: {
  23476. source: "./media/characters/maksio/hand.svg"
  23477. }
  23478. },
  23479. foot: {
  23480. height: math.unit(1.611, "feet"),
  23481. name: "Foot",
  23482. image: {
  23483. source: "./media/characters/maksio/foot.svg"
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "Shrunken",
  23490. height: math.unit(10, "cm")
  23491. },
  23492. {
  23493. name: "Normal",
  23494. height: math.unit(150, "cm"),
  23495. default: true
  23496. },
  23497. ]
  23498. ))
  23499. characterMakers.push(() => makeCharacter(
  23500. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23501. {
  23502. front: {
  23503. height: math.unit(100, "feet"),
  23504. name: "Front",
  23505. image: {
  23506. source: "./media/characters/erza-bear/front.svg",
  23507. extra: 2449 / 2390,
  23508. bottom: 46 / 2494
  23509. }
  23510. },
  23511. back: {
  23512. height: math.unit(100, "feet"),
  23513. name: "Back",
  23514. image: {
  23515. source: "./media/characters/erza-bear/back.svg",
  23516. extra: 2489 / 2430,
  23517. bottom: 85.4 / 2480
  23518. }
  23519. },
  23520. tail: {
  23521. height: math.unit(42, "feet"),
  23522. name: "Tail",
  23523. image: {
  23524. source: "./media/characters/erza-bear/tail.svg"
  23525. }
  23526. },
  23527. tongue: {
  23528. height: math.unit(8, "feet"),
  23529. name: "Tongue",
  23530. image: {
  23531. source: "./media/characters/erza-bear/tongue.svg"
  23532. }
  23533. },
  23534. dick: {
  23535. height: math.unit(10.5, "feet"),
  23536. name: "Dick",
  23537. image: {
  23538. source: "./media/characters/erza-bear/dick.svg"
  23539. }
  23540. },
  23541. dickVertical: {
  23542. height: math.unit(16.9, "feet"),
  23543. name: "Dick (Vertical)",
  23544. image: {
  23545. source: "./media/characters/erza-bear/dick-vertical.svg"
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Macro",
  23552. height: math.unit(100, "feet"),
  23553. default: true
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23559. {
  23560. front: {
  23561. height: math.unit(172, "cm"),
  23562. weight: math.unit(73, "kg"),
  23563. name: "Front",
  23564. image: {
  23565. source: "./media/characters/violet-flor/front.svg",
  23566. extra: 1530 / 1442,
  23567. bottom: 61.9 / 1588.8
  23568. }
  23569. },
  23570. back: {
  23571. height: math.unit(180, "cm"),
  23572. weight: math.unit(73, "kg"),
  23573. name: "Back",
  23574. image: {
  23575. source: "./media/characters/violet-flor/back.svg",
  23576. extra: 1692 / 1630,
  23577. bottom: 20 / 1712
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Normal",
  23584. height: math.unit(172, "cm"),
  23585. default: true
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23591. {
  23592. front: {
  23593. height: math.unit(6, "feet"),
  23594. weight: math.unit(220, "lb"),
  23595. name: "Front",
  23596. image: {
  23597. source: "./media/characters/lynn-rhea/front.svg",
  23598. extra: 310 / 273
  23599. }
  23600. },
  23601. back: {
  23602. height: math.unit(6, "feet"),
  23603. weight: math.unit(220, "lb"),
  23604. name: "Back",
  23605. image: {
  23606. source: "./media/characters/lynn-rhea/back.svg",
  23607. extra: 310 / 273
  23608. }
  23609. },
  23610. dicks: {
  23611. height: math.unit(0.9, "feet"),
  23612. name: "Dicks",
  23613. image: {
  23614. source: "./media/characters/lynn-rhea/dicks.svg"
  23615. }
  23616. },
  23617. slit: {
  23618. height: math.unit(0.4, "feet"),
  23619. name: "Slit",
  23620. image: {
  23621. source: "./media/characters/lynn-rhea/slit.svg"
  23622. }
  23623. },
  23624. },
  23625. [
  23626. {
  23627. name: "Micro",
  23628. height: math.unit(1, "inch")
  23629. },
  23630. {
  23631. name: "Macro",
  23632. height: math.unit(60, "feet"),
  23633. default: true
  23634. },
  23635. {
  23636. name: "Megamacro",
  23637. height: math.unit(2, "miles")
  23638. },
  23639. {
  23640. name: "Gigamacro",
  23641. height: math.unit(3, "earths")
  23642. },
  23643. {
  23644. name: "Galactic",
  23645. height: math.unit(0.8, "galaxies")
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23651. {
  23652. front: {
  23653. height: math.unit(1600, "feet"),
  23654. weight: math.unit(85758785169, "kg"),
  23655. name: "Front",
  23656. image: {
  23657. source: "./media/characters/valathos/front.svg",
  23658. extra: 1451 / 1339
  23659. }
  23660. },
  23661. },
  23662. [
  23663. {
  23664. name: "Macro",
  23665. height: math.unit(1600, "feet"),
  23666. default: true
  23667. },
  23668. ]
  23669. ))
  23670. characterMakers.push(() => makeCharacter(
  23671. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23672. {
  23673. front: {
  23674. height: math.unit(7 + 5 / 12, "feet"),
  23675. weight: math.unit(300, "lb"),
  23676. name: "Front",
  23677. image: {
  23678. source: "./media/characters/azula/front.svg",
  23679. extra: 3208 / 2880,
  23680. bottom: 80.2 / 3277
  23681. }
  23682. },
  23683. back: {
  23684. height: math.unit(7 + 5 / 12, "feet"),
  23685. weight: math.unit(300, "lb"),
  23686. name: "Back",
  23687. image: {
  23688. source: "./media/characters/azula/back.svg",
  23689. extra: 3169 / 2822,
  23690. bottom: 150.6 / 3321
  23691. }
  23692. },
  23693. },
  23694. [
  23695. {
  23696. name: "Normal",
  23697. height: math.unit(7 + 5 / 12, "feet"),
  23698. default: true
  23699. },
  23700. {
  23701. name: "Big",
  23702. height: math.unit(20, "feet")
  23703. },
  23704. ]
  23705. ))
  23706. characterMakers.push(() => makeCharacter(
  23707. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23708. {
  23709. front: {
  23710. height: math.unit(5 + 1 / 12, "feet"),
  23711. weight: math.unit(110, "lb"),
  23712. name: "Front",
  23713. image: {
  23714. source: "./media/characters/rupert/front.svg",
  23715. extra: 1549 / 1495,
  23716. bottom: 54.2 / 1604.4
  23717. }
  23718. },
  23719. },
  23720. [
  23721. {
  23722. name: "Normal",
  23723. height: math.unit(5 + 1 / 12, "feet"),
  23724. default: true
  23725. },
  23726. ]
  23727. ))
  23728. characterMakers.push(() => makeCharacter(
  23729. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23730. {
  23731. front: {
  23732. height: math.unit(8 + 4 / 12, "feet"),
  23733. weight: math.unit(350, "lb"),
  23734. name: "Front",
  23735. image: {
  23736. source: "./media/characters/sheera-castellar/front.svg",
  23737. extra: 1957 / 1894,
  23738. bottom: 26.97 / 1975.017
  23739. }
  23740. },
  23741. side: {
  23742. height: math.unit(8 + 4 / 12, "feet"),
  23743. weight: math.unit(350, "lb"),
  23744. name: "Side",
  23745. image: {
  23746. source: "./media/characters/sheera-castellar/side.svg",
  23747. extra: 1957 / 1894
  23748. }
  23749. },
  23750. back: {
  23751. height: math.unit(8 + 4 / 12, "feet"),
  23752. weight: math.unit(350, "lb"),
  23753. name: "Back",
  23754. image: {
  23755. source: "./media/characters/sheera-castellar/back.svg",
  23756. extra: 1957 / 1894
  23757. }
  23758. },
  23759. angled: {
  23760. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23761. weight: math.unit(350, "lb"),
  23762. name: "Angled",
  23763. image: {
  23764. source: "./media/characters/sheera-castellar/angled.svg",
  23765. extra: 1807 / 1707,
  23766. bottom: 68 / 1875
  23767. }
  23768. },
  23769. genitals: {
  23770. height: math.unit(2.2, "feet"),
  23771. name: "Genitals",
  23772. image: {
  23773. source: "./media/characters/sheera-castellar/genitals.svg"
  23774. }
  23775. },
  23776. taur: {
  23777. height: math.unit(10 + 6/12, "feet"),
  23778. name: "Taur",
  23779. image: {
  23780. source: "./media/characters/sheera-castellar/taur.svg",
  23781. extra: 2017/1909,
  23782. bottom: 185/2202
  23783. }
  23784. },
  23785. },
  23786. [
  23787. {
  23788. name: "Normal",
  23789. height: math.unit(8 + 4 / 12, "feet")
  23790. },
  23791. {
  23792. name: "Macro",
  23793. height: math.unit(150, "feet"),
  23794. default: true
  23795. },
  23796. {
  23797. name: "Macro+",
  23798. height: math.unit(800, "feet")
  23799. },
  23800. ]
  23801. ))
  23802. characterMakers.push(() => makeCharacter(
  23803. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23804. {
  23805. front: {
  23806. height: math.unit(6, "feet"),
  23807. weight: math.unit(150, "lb"),
  23808. name: "Front",
  23809. image: {
  23810. source: "./media/characters/jaipur/front.svg",
  23811. extra: 3860 / 3731,
  23812. bottom: 287 / 4140
  23813. }
  23814. },
  23815. back: {
  23816. height: math.unit(6, "feet"),
  23817. weight: math.unit(150, "lb"),
  23818. name: "Back",
  23819. image: {
  23820. source: "./media/characters/jaipur/back.svg",
  23821. extra: 4060 / 3930,
  23822. bottom: 151 / 4200
  23823. }
  23824. },
  23825. },
  23826. [
  23827. {
  23828. name: "Normal",
  23829. height: math.unit(1.85, "meters"),
  23830. default: true
  23831. },
  23832. {
  23833. name: "Macro",
  23834. height: math.unit(150, "meters")
  23835. },
  23836. {
  23837. name: "Macro+",
  23838. height: math.unit(0.5, "miles")
  23839. },
  23840. {
  23841. name: "Macro++",
  23842. height: math.unit(2.5, "miles")
  23843. },
  23844. {
  23845. name: "Macro+++",
  23846. height: math.unit(12, "miles")
  23847. },
  23848. {
  23849. name: "Macro++++",
  23850. height: math.unit(120, "miles")
  23851. },
  23852. {
  23853. name: "Macro+++++",
  23854. height: math.unit(1200, "miles")
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23860. {
  23861. front: {
  23862. height: math.unit(6, "feet"),
  23863. weight: math.unit(150, "lb"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/sheila-wolf/front.svg",
  23867. extra: 1931 / 1808,
  23868. bottom: 29.5 / 1960
  23869. }
  23870. },
  23871. dick: {
  23872. height: math.unit(1.464, "feet"),
  23873. name: "Dick",
  23874. image: {
  23875. source: "./media/characters/sheila-wolf/dick.svg"
  23876. }
  23877. },
  23878. muzzle: {
  23879. height: math.unit(0.513, "feet"),
  23880. name: "Muzzle",
  23881. image: {
  23882. source: "./media/characters/sheila-wolf/muzzle.svg"
  23883. }
  23884. },
  23885. },
  23886. [
  23887. {
  23888. name: "Macro",
  23889. height: math.unit(70, "feet"),
  23890. default: true
  23891. },
  23892. ]
  23893. ))
  23894. characterMakers.push(() => makeCharacter(
  23895. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23896. {
  23897. front: {
  23898. height: math.unit(32, "meters"),
  23899. weight: math.unit(300000, "kg"),
  23900. name: "Front",
  23901. image: {
  23902. source: "./media/characters/almor/front.svg",
  23903. extra: 1408 / 1322,
  23904. bottom: 94.6 / 1506.5
  23905. }
  23906. },
  23907. },
  23908. [
  23909. {
  23910. name: "Macro",
  23911. height: math.unit(32, "meters"),
  23912. default: true
  23913. },
  23914. ]
  23915. ))
  23916. characterMakers.push(() => makeCharacter(
  23917. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23918. {
  23919. front: {
  23920. height: math.unit(7, "feet"),
  23921. weight: math.unit(200, "lb"),
  23922. name: "Front",
  23923. image: {
  23924. source: "./media/characters/silver/front.svg",
  23925. extra: 472.1 / 450.5,
  23926. bottom: 26.5 / 499.424
  23927. }
  23928. },
  23929. },
  23930. [
  23931. {
  23932. name: "Normal",
  23933. height: math.unit(7, "feet"),
  23934. default: true
  23935. },
  23936. {
  23937. name: "Macro",
  23938. height: math.unit(800, "feet")
  23939. },
  23940. {
  23941. name: "Megamacro",
  23942. height: math.unit(250, "miles")
  23943. },
  23944. ]
  23945. ))
  23946. characterMakers.push(() => makeCharacter(
  23947. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23948. {
  23949. front: {
  23950. height: math.unit(6, "feet"),
  23951. weight: math.unit(150, "lb"),
  23952. name: "Front",
  23953. image: {
  23954. source: "./media/characters/pliskin/front.svg",
  23955. extra: 1469 / 1359,
  23956. bottom: 70 / 1540
  23957. }
  23958. },
  23959. },
  23960. [
  23961. {
  23962. name: "Micro",
  23963. height: math.unit(3, "inches")
  23964. },
  23965. {
  23966. name: "Normal",
  23967. height: math.unit(5 + 11 / 12, "feet"),
  23968. default: true
  23969. },
  23970. {
  23971. name: "Macro",
  23972. height: math.unit(120, "feet")
  23973. },
  23974. ]
  23975. ))
  23976. characterMakers.push(() => makeCharacter(
  23977. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23978. {
  23979. front: {
  23980. height: math.unit(6, "feet"),
  23981. weight: math.unit(150, "lb"),
  23982. name: "Front",
  23983. image: {
  23984. source: "./media/characters/sammy/front.svg",
  23985. extra: 1193 / 1089,
  23986. bottom: 30.5 / 1226
  23987. }
  23988. },
  23989. },
  23990. [
  23991. {
  23992. name: "Macro",
  23993. height: math.unit(1700, "feet"),
  23994. default: true
  23995. },
  23996. {
  23997. name: "Examacro",
  23998. height: math.unit(2.5e9, "lightyears")
  23999. },
  24000. ]
  24001. ))
  24002. characterMakers.push(() => makeCharacter(
  24003. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24004. {
  24005. front: {
  24006. height: math.unit(21, "meters"),
  24007. weight: math.unit(12, "tonnes"),
  24008. name: "Front",
  24009. image: {
  24010. source: "./media/characters/kuru/front.svg",
  24011. extra: 4301 / 3785,
  24012. bottom: 371.3 / 4691
  24013. }
  24014. },
  24015. },
  24016. [
  24017. {
  24018. name: "Macro",
  24019. height: math.unit(21, "meters"),
  24020. default: true
  24021. },
  24022. ]
  24023. ))
  24024. characterMakers.push(() => makeCharacter(
  24025. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24026. {
  24027. front: {
  24028. height: math.unit(23, "meters"),
  24029. weight: math.unit(12.2, "tonnes"),
  24030. name: "Front",
  24031. image: {
  24032. source: "./media/characters/rakka/front.svg",
  24033. extra: 4670 / 4169,
  24034. bottom: 301 / 4968.7
  24035. }
  24036. },
  24037. },
  24038. [
  24039. {
  24040. name: "Macro",
  24041. height: math.unit(23, "meters"),
  24042. default: true
  24043. },
  24044. ]
  24045. ))
  24046. characterMakers.push(() => makeCharacter(
  24047. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24048. {
  24049. front: {
  24050. height: math.unit(6, "feet"),
  24051. weight: math.unit(150, "lb"),
  24052. name: "Front",
  24053. image: {
  24054. source: "./media/characters/rhys-feline/front.svg",
  24055. extra: 2488 / 2308,
  24056. bottom: 35.67 / 2519.19
  24057. }
  24058. },
  24059. },
  24060. [
  24061. {
  24062. name: "Really Small",
  24063. height: math.unit(1, "nm")
  24064. },
  24065. {
  24066. name: "Micro",
  24067. height: math.unit(4, "inches")
  24068. },
  24069. {
  24070. name: "Normal",
  24071. height: math.unit(4 + 10 / 12, "feet"),
  24072. default: true
  24073. },
  24074. {
  24075. name: "Macro",
  24076. height: math.unit(100, "feet")
  24077. },
  24078. {
  24079. name: "Megamacto",
  24080. height: math.unit(50, "miles")
  24081. },
  24082. ]
  24083. ))
  24084. characterMakers.push(() => makeCharacter(
  24085. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24086. {
  24087. side: {
  24088. height: math.unit(30, "feet"),
  24089. weight: math.unit(35000, "kg"),
  24090. name: "Side",
  24091. image: {
  24092. source: "./media/characters/alydar/side.svg",
  24093. extra: 234 / 222,
  24094. bottom: 6.5 / 241
  24095. }
  24096. },
  24097. front: {
  24098. height: math.unit(30, "feet"),
  24099. weight: math.unit(35000, "kg"),
  24100. name: "Front",
  24101. image: {
  24102. source: "./media/characters/alydar/front.svg",
  24103. extra: 223.37 / 210.2,
  24104. bottom: 22.3 / 246.76
  24105. }
  24106. },
  24107. top: {
  24108. height: math.unit(64.54, "feet"),
  24109. weight: math.unit(35000, "kg"),
  24110. name: "Top",
  24111. image: {
  24112. source: "./media/characters/alydar/top.svg"
  24113. }
  24114. },
  24115. anthro: {
  24116. height: math.unit(30, "feet"),
  24117. weight: math.unit(9000, "kg"),
  24118. name: "Anthro",
  24119. image: {
  24120. source: "./media/characters/alydar/anthro.svg",
  24121. extra: 432 / 421,
  24122. bottom: 7.18 / 440
  24123. }
  24124. },
  24125. maw: {
  24126. height: math.unit(11.693, "feet"),
  24127. name: "Maw",
  24128. image: {
  24129. source: "./media/characters/alydar/maw.svg"
  24130. }
  24131. },
  24132. head: {
  24133. height: math.unit(11.693, "feet"),
  24134. name: "Head",
  24135. image: {
  24136. source: "./media/characters/alydar/head.svg"
  24137. }
  24138. },
  24139. headAlt: {
  24140. height: math.unit(12.861, "feet"),
  24141. name: "Head (Alt)",
  24142. image: {
  24143. source: "./media/characters/alydar/head-alt.svg"
  24144. }
  24145. },
  24146. wing: {
  24147. height: math.unit(20.712, "feet"),
  24148. name: "Wing",
  24149. image: {
  24150. source: "./media/characters/alydar/wing.svg"
  24151. }
  24152. },
  24153. wingFeather: {
  24154. height: math.unit(9.662, "feet"),
  24155. name: "Wing Feather",
  24156. image: {
  24157. source: "./media/characters/alydar/wing-feather.svg"
  24158. }
  24159. },
  24160. countourFeather: {
  24161. height: math.unit(4.154, "feet"),
  24162. name: "Contour Feather",
  24163. image: {
  24164. source: "./media/characters/alydar/contour-feather.svg"
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Diplomatic",
  24171. height: math.unit(13, "feet"),
  24172. default: true
  24173. },
  24174. {
  24175. name: "Small",
  24176. height: math.unit(30, "feet")
  24177. },
  24178. {
  24179. name: "Normal",
  24180. height: math.unit(95, "feet"),
  24181. default: true
  24182. },
  24183. {
  24184. name: "Large",
  24185. height: math.unit(285, "feet")
  24186. },
  24187. {
  24188. name: "Incomprehensible",
  24189. height: math.unit(450, "megameters")
  24190. },
  24191. ]
  24192. ))
  24193. characterMakers.push(() => makeCharacter(
  24194. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24195. {
  24196. side: {
  24197. height: math.unit(11, "feet"),
  24198. weight: math.unit(1750, "kg"),
  24199. name: "Side",
  24200. image: {
  24201. source: "./media/characters/selicia/side.svg",
  24202. extra: 440 / 396,
  24203. bottom: 24.8 / 465.979
  24204. }
  24205. },
  24206. maw: {
  24207. height: math.unit(4.665, "feet"),
  24208. name: "Maw",
  24209. image: {
  24210. source: "./media/characters/selicia/maw.svg"
  24211. }
  24212. },
  24213. },
  24214. [
  24215. {
  24216. name: "Normal",
  24217. height: math.unit(11, "feet"),
  24218. default: true
  24219. },
  24220. ]
  24221. ))
  24222. characterMakers.push(() => makeCharacter(
  24223. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24224. {
  24225. side: {
  24226. height: math.unit(2 + 6 / 12, "feet"),
  24227. weight: math.unit(30, "lb"),
  24228. name: "Side",
  24229. image: {
  24230. source: "./media/characters/layla/side.svg",
  24231. extra: 244 / 188,
  24232. bottom: 18.2 / 262.1
  24233. }
  24234. },
  24235. back: {
  24236. height: math.unit(2 + 6 / 12, "feet"),
  24237. weight: math.unit(30, "lb"),
  24238. name: "Back",
  24239. image: {
  24240. source: "./media/characters/layla/back.svg",
  24241. extra: 308 / 241.5,
  24242. bottom: 8.9 / 316.8
  24243. }
  24244. },
  24245. cumming: {
  24246. height: math.unit(2 + 6 / 12, "feet"),
  24247. weight: math.unit(30, "lb"),
  24248. name: "Cumming",
  24249. image: {
  24250. source: "./media/characters/layla/cumming.svg",
  24251. extra: 342 / 279,
  24252. bottom: 595 / 938
  24253. }
  24254. },
  24255. dickFlaccid: {
  24256. height: math.unit(2.595, "feet"),
  24257. name: "Flaccid Genitals",
  24258. image: {
  24259. source: "./media/characters/layla/dick-flaccid.svg"
  24260. }
  24261. },
  24262. dickErect: {
  24263. height: math.unit(2.359, "feet"),
  24264. name: "Erect Genitals",
  24265. image: {
  24266. source: "./media/characters/layla/dick-erect.svg"
  24267. }
  24268. },
  24269. dragon: {
  24270. height: math.unit(40, "feet"),
  24271. name: "Dragon",
  24272. image: {
  24273. source: "./media/characters/layla/dragon.svg",
  24274. extra: 610/535,
  24275. bottom: 367/977
  24276. }
  24277. },
  24278. taur: {
  24279. height: math.unit(30, "feet"),
  24280. name: "Taur",
  24281. image: {
  24282. source: "./media/characters/layla/taur.svg",
  24283. extra: 1268/1199,
  24284. bottom: 112/1380
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Micro",
  24291. height: math.unit(1, "inch")
  24292. },
  24293. {
  24294. name: "Small",
  24295. height: math.unit(1, "foot")
  24296. },
  24297. {
  24298. name: "Normal",
  24299. height: math.unit(2 + 6 / 12, "feet"),
  24300. default: true
  24301. },
  24302. {
  24303. name: "Macro",
  24304. height: math.unit(200, "feet")
  24305. },
  24306. {
  24307. name: "Megamacro",
  24308. height: math.unit(1000, "miles")
  24309. },
  24310. {
  24311. name: "Planetary",
  24312. height: math.unit(8000, "miles")
  24313. },
  24314. {
  24315. name: "True Layla",
  24316. height: math.unit(200000 * 7, "multiverses")
  24317. },
  24318. ]
  24319. ))
  24320. characterMakers.push(() => makeCharacter(
  24321. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24322. {
  24323. back: {
  24324. height: math.unit(10.5, "feet"),
  24325. weight: math.unit(800, "lb"),
  24326. name: "Back",
  24327. image: {
  24328. source: "./media/characters/knox/back.svg",
  24329. extra: 1486 / 1089,
  24330. bottom: 107 / 1601.4
  24331. }
  24332. },
  24333. side: {
  24334. height: math.unit(10.5, "feet"),
  24335. weight: math.unit(800, "lb"),
  24336. name: "Side",
  24337. image: {
  24338. source: "./media/characters/knox/side.svg",
  24339. extra: 244 / 218,
  24340. bottom: 14 / 260
  24341. }
  24342. },
  24343. },
  24344. [
  24345. {
  24346. name: "Compact",
  24347. height: math.unit(10.5, "feet"),
  24348. default: true
  24349. },
  24350. {
  24351. name: "Dynamax",
  24352. height: math.unit(210, "feet")
  24353. },
  24354. {
  24355. name: "Full Macro",
  24356. height: math.unit(850, "feet")
  24357. },
  24358. ]
  24359. ))
  24360. characterMakers.push(() => makeCharacter(
  24361. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24362. {
  24363. front: {
  24364. height: math.unit(28, "feet"),
  24365. weight: math.unit(10500, "lb"),
  24366. name: "Front",
  24367. image: {
  24368. source: "./media/characters/kayda/front.svg",
  24369. extra: 1536 / 1428,
  24370. bottom: 68.7 / 1603
  24371. }
  24372. },
  24373. back: {
  24374. height: math.unit(28, "feet"),
  24375. weight: math.unit(10500, "lb"),
  24376. name: "Back",
  24377. image: {
  24378. source: "./media/characters/kayda/back.svg",
  24379. extra: 1557 / 1464,
  24380. bottom: 39.5 / 1597.49
  24381. }
  24382. },
  24383. dick: {
  24384. height: math.unit(3.858, "feet"),
  24385. name: "Dick",
  24386. image: {
  24387. source: "./media/characters/kayda/dick.svg"
  24388. }
  24389. },
  24390. },
  24391. [
  24392. {
  24393. name: "Macro",
  24394. height: math.unit(28, "feet"),
  24395. default: true
  24396. },
  24397. ]
  24398. ))
  24399. characterMakers.push(() => makeCharacter(
  24400. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24401. {
  24402. front: {
  24403. height: math.unit(10 + 11 / 12, "feet"),
  24404. weight: math.unit(1400, "lb"),
  24405. name: "Front",
  24406. image: {
  24407. source: "./media/characters/brian/front.svg",
  24408. extra: 737 / 692,
  24409. bottom: 55.4 / 785
  24410. }
  24411. },
  24412. },
  24413. [
  24414. {
  24415. name: "Normal",
  24416. height: math.unit(10 + 11 / 12, "feet"),
  24417. default: true
  24418. },
  24419. ]
  24420. ))
  24421. characterMakers.push(() => makeCharacter(
  24422. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24423. {
  24424. front: {
  24425. height: math.unit(5 + 8 / 12, "feet"),
  24426. weight: math.unit(140, "lb"),
  24427. name: "Front",
  24428. image: {
  24429. source: "./media/characters/khemri/front.svg",
  24430. extra: 4780 / 4059,
  24431. bottom: 80.1 / 4859.25
  24432. }
  24433. },
  24434. },
  24435. [
  24436. {
  24437. name: "Micro",
  24438. height: math.unit(6, "inches")
  24439. },
  24440. {
  24441. name: "Normal",
  24442. height: math.unit(5 + 8 / 12, "feet"),
  24443. default: true
  24444. },
  24445. ]
  24446. ))
  24447. characterMakers.push(() => makeCharacter(
  24448. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24449. {
  24450. front: {
  24451. height: math.unit(13, "feet"),
  24452. weight: math.unit(1700, "lb"),
  24453. name: "Front",
  24454. image: {
  24455. source: "./media/characters/felix-braveheart/front.svg",
  24456. extra: 1222 / 1157,
  24457. bottom: 53.2 / 1280
  24458. }
  24459. },
  24460. back: {
  24461. height: math.unit(13, "feet"),
  24462. weight: math.unit(1700, "lb"),
  24463. name: "Back",
  24464. image: {
  24465. source: "./media/characters/felix-braveheart/back.svg",
  24466. extra: 1277 / 1203,
  24467. bottom: 50.2 / 1327
  24468. }
  24469. },
  24470. feral: {
  24471. height: math.unit(6, "feet"),
  24472. weight: math.unit(400, "lb"),
  24473. name: "Feral",
  24474. image: {
  24475. source: "./media/characters/felix-braveheart/feral.svg",
  24476. extra: 682 / 625,
  24477. bottom: 6.9 / 688
  24478. }
  24479. },
  24480. },
  24481. [
  24482. {
  24483. name: "Normal",
  24484. height: math.unit(13, "feet"),
  24485. default: true
  24486. },
  24487. ]
  24488. ))
  24489. characterMakers.push(() => makeCharacter(
  24490. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24491. {
  24492. side: {
  24493. height: math.unit(5 + 11 / 12, "feet"),
  24494. weight: math.unit(1400, "lb"),
  24495. name: "Side",
  24496. image: {
  24497. source: "./media/characters/shadow-blade/side.svg",
  24498. extra: 1726 / 1267,
  24499. bottom: 58.4 / 1785
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Normal",
  24506. height: math.unit(5 + 11 / 12, "feet"),
  24507. default: true
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24513. {
  24514. front: {
  24515. height: math.unit(1 + 6 / 12, "feet"),
  24516. weight: math.unit(25, "lb"),
  24517. name: "Front",
  24518. image: {
  24519. source: "./media/characters/karla-halldor/front.svg",
  24520. extra: 1459 / 1383,
  24521. bottom: 12 / 1472
  24522. }
  24523. },
  24524. },
  24525. [
  24526. {
  24527. name: "Normal",
  24528. height: math.unit(1 + 6 / 12, "feet"),
  24529. default: true
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24535. {
  24536. front: {
  24537. height: math.unit(6 + 2 / 12, "feet"),
  24538. weight: math.unit(160, "lb"),
  24539. name: "Front",
  24540. image: {
  24541. source: "./media/characters/ariam/front.svg",
  24542. extra: 1073/976,
  24543. bottom: 52/1125
  24544. }
  24545. },
  24546. back: {
  24547. height: math.unit(6 + 2/12, "feet"),
  24548. weight: math.unit(160, "lb"),
  24549. name: "Back",
  24550. image: {
  24551. source: "./media/characters/ariam/back.svg",
  24552. extra: 1103/1023,
  24553. bottom: 9/1112
  24554. }
  24555. },
  24556. dressed: {
  24557. height: math.unit(6 + 2/12, "feet"),
  24558. weight: math.unit(160, "lb"),
  24559. name: "Dressed",
  24560. image: {
  24561. source: "./media/characters/ariam/dressed.svg",
  24562. extra: 1099/1009,
  24563. bottom: 25/1124
  24564. }
  24565. },
  24566. squatting: {
  24567. height: math.unit(4.1, "feet"),
  24568. weight: math.unit(160, "lb"),
  24569. name: "Squatting",
  24570. image: {
  24571. source: "./media/characters/ariam/squatting.svg",
  24572. extra: 2617 / 2112,
  24573. bottom: 61.2 / 2681,
  24574. }
  24575. },
  24576. },
  24577. [
  24578. {
  24579. name: "Normal",
  24580. height: math.unit(6 + 2 / 12, "feet"),
  24581. default: true
  24582. },
  24583. {
  24584. name: "Normal+",
  24585. height: math.unit(4, "meters")
  24586. },
  24587. {
  24588. name: "Macro",
  24589. height: math.unit(50, "meters")
  24590. },
  24591. {
  24592. name: "Macro+",
  24593. height: math.unit(100, "meters")
  24594. },
  24595. {
  24596. name: "Megamacro",
  24597. height: math.unit(20, "km")
  24598. },
  24599. {
  24600. name: "Caretaker",
  24601. height: math.unit(444, "megameters")
  24602. },
  24603. ]
  24604. ))
  24605. characterMakers.push(() => makeCharacter(
  24606. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24607. {
  24608. front: {
  24609. height: math.unit(1.67, "meters"),
  24610. weight: math.unit(140, "lb"),
  24611. name: "Front",
  24612. image: {
  24613. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24614. extra: 438 / 410,
  24615. bottom: 0.75 / 439
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Shrunken",
  24622. height: math.unit(7.6, "cm")
  24623. },
  24624. {
  24625. name: "Human Scale",
  24626. height: math.unit(1.67, "meters")
  24627. },
  24628. {
  24629. name: "Wolxi Scale",
  24630. height: math.unit(36.7, "meters"),
  24631. default: true
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24637. {
  24638. front: {
  24639. height: math.unit(1.73, "meters"),
  24640. weight: math.unit(240, "lb"),
  24641. name: "Front",
  24642. image: {
  24643. source: "./media/characters/izue-two-mothers/front.svg",
  24644. extra: 469 / 437,
  24645. bottom: 1.24 / 470.6
  24646. }
  24647. },
  24648. },
  24649. [
  24650. {
  24651. name: "Shrunken",
  24652. height: math.unit(7.86, "cm")
  24653. },
  24654. {
  24655. name: "Human Scale",
  24656. height: math.unit(1.73, "meters")
  24657. },
  24658. {
  24659. name: "Wolxi Scale",
  24660. height: math.unit(38, "meters"),
  24661. default: true
  24662. },
  24663. ]
  24664. ))
  24665. characterMakers.push(() => makeCharacter(
  24666. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24667. {
  24668. front: {
  24669. height: math.unit(1.55, "meters"),
  24670. weight: math.unit(120, "lb"),
  24671. name: "Front",
  24672. image: {
  24673. source: "./media/characters/teeku-love-shack/front.svg",
  24674. extra: 387 / 362,
  24675. bottom: 1.51 / 388
  24676. }
  24677. },
  24678. },
  24679. [
  24680. {
  24681. name: "Shrunken",
  24682. height: math.unit(7, "cm")
  24683. },
  24684. {
  24685. name: "Human Scale",
  24686. height: math.unit(1.55, "meters")
  24687. },
  24688. {
  24689. name: "Wolxi Scale",
  24690. height: math.unit(34.1, "meters"),
  24691. default: true
  24692. },
  24693. ]
  24694. ))
  24695. characterMakers.push(() => makeCharacter(
  24696. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24697. {
  24698. front: {
  24699. height: math.unit(1.83, "meters"),
  24700. weight: math.unit(135, "lb"),
  24701. name: "Front",
  24702. image: {
  24703. source: "./media/characters/dejma-the-red/front.svg",
  24704. extra: 480 / 458,
  24705. bottom: 1.8 / 482
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Shrunken",
  24712. height: math.unit(8.3, "cm")
  24713. },
  24714. {
  24715. name: "Human Scale",
  24716. height: math.unit(1.83, "meters")
  24717. },
  24718. {
  24719. name: "Wolxi Scale",
  24720. height: math.unit(40, "meters"),
  24721. default: true
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24727. {
  24728. front: {
  24729. height: math.unit(1.78, "meters"),
  24730. weight: math.unit(65, "kg"),
  24731. name: "Front",
  24732. image: {
  24733. source: "./media/characters/aki/front.svg",
  24734. extra: 452 / 415
  24735. }
  24736. },
  24737. frontNsfw: {
  24738. height: math.unit(1.78, "meters"),
  24739. weight: math.unit(65, "kg"),
  24740. name: "Front (NSFW)",
  24741. image: {
  24742. source: "./media/characters/aki/front-nsfw.svg",
  24743. extra: 452 / 415
  24744. }
  24745. },
  24746. back: {
  24747. height: math.unit(1.78, "meters"),
  24748. weight: math.unit(65, "kg"),
  24749. name: "Back",
  24750. image: {
  24751. source: "./media/characters/aki/back.svg",
  24752. extra: 452 / 415
  24753. }
  24754. },
  24755. rump: {
  24756. height: math.unit(2.05, "feet"),
  24757. name: "Rump",
  24758. image: {
  24759. source: "./media/characters/aki/rump.svg"
  24760. }
  24761. },
  24762. dick: {
  24763. height: math.unit(0.95, "feet"),
  24764. name: "Dick",
  24765. image: {
  24766. source: "./media/characters/aki/dick.svg"
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Micro",
  24773. height: math.unit(15, "cm")
  24774. },
  24775. {
  24776. name: "Normal",
  24777. height: math.unit(178, "cm"),
  24778. default: true
  24779. },
  24780. {
  24781. name: "Macro",
  24782. height: math.unit(214, "m")
  24783. },
  24784. {
  24785. name: "Macro+",
  24786. height: math.unit(534, "m")
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24792. {
  24793. front: {
  24794. height: math.unit(5 + 5 / 12, "feet"),
  24795. weight: math.unit(120, "lb"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/ari/front.svg",
  24799. extra: 714.5 / 682,
  24800. bottom: 8 / 722.5
  24801. }
  24802. },
  24803. },
  24804. [
  24805. {
  24806. name: "Normal",
  24807. height: math.unit(5 + 5 / 12, "feet")
  24808. },
  24809. {
  24810. name: "Macro",
  24811. height: math.unit(100, "feet"),
  24812. default: true
  24813. },
  24814. {
  24815. name: "Megamacro",
  24816. height: math.unit(100, "miles")
  24817. },
  24818. {
  24819. name: "Gigamacro",
  24820. height: math.unit(80000, "miles")
  24821. },
  24822. ]
  24823. ))
  24824. characterMakers.push(() => makeCharacter(
  24825. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24826. {
  24827. side: {
  24828. height: math.unit(9, "feet"),
  24829. weight: math.unit(400, "kg"),
  24830. name: "Side",
  24831. image: {
  24832. source: "./media/characters/bolt/side.svg",
  24833. extra: 1126 / 896,
  24834. bottom: 60 / 1187.3,
  24835. }
  24836. },
  24837. },
  24838. [
  24839. {
  24840. name: "Micro",
  24841. height: math.unit(5, "inches")
  24842. },
  24843. {
  24844. name: "Normal",
  24845. height: math.unit(9, "feet"),
  24846. default: true
  24847. },
  24848. {
  24849. name: "Macro",
  24850. height: math.unit(700, "feet")
  24851. },
  24852. {
  24853. name: "Max Size",
  24854. height: math.unit(1.52e22, "yottameters")
  24855. },
  24856. ]
  24857. ))
  24858. characterMakers.push(() => makeCharacter(
  24859. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24860. {
  24861. front: {
  24862. height: math.unit(4.53, "meters"),
  24863. weight: math.unit(3, "tons"),
  24864. name: "Front",
  24865. image: {
  24866. source: "./media/characters/draekon-sylviar/front.svg",
  24867. extra: 1228 / 1068,
  24868. bottom: 41 / 1270
  24869. }
  24870. },
  24871. tail: {
  24872. height: math.unit(1.772, "meter"),
  24873. name: "Tail",
  24874. image: {
  24875. source: "./media/characters/draekon-sylviar/tail.svg"
  24876. }
  24877. },
  24878. head: {
  24879. height: math.unit(1.331, "meter"),
  24880. name: "Head",
  24881. image: {
  24882. source: "./media/characters/draekon-sylviar/head.svg"
  24883. }
  24884. },
  24885. hand: {
  24886. height: math.unit(0.564, "meter"),
  24887. name: "Hand",
  24888. image: {
  24889. source: "./media/characters/draekon-sylviar/hand.svg"
  24890. }
  24891. },
  24892. foot: {
  24893. height: math.unit(0.621, "meter"),
  24894. name: "Foot",
  24895. image: {
  24896. source: "./media/characters/draekon-sylviar/foot.svg",
  24897. bottom: 32 / 324
  24898. }
  24899. },
  24900. dick: {
  24901. height: math.unit(61, "cm"),
  24902. name: "Dick",
  24903. image: {
  24904. source: "./media/characters/draekon-sylviar/dick.svg"
  24905. }
  24906. },
  24907. dickseparated: {
  24908. height: math.unit(61, "cm"),
  24909. name: "Dick-separated",
  24910. image: {
  24911. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24912. }
  24913. },
  24914. },
  24915. [
  24916. {
  24917. name: "Small",
  24918. height: math.unit(4.53 / 2, "meters"),
  24919. default: true
  24920. },
  24921. {
  24922. name: "Normal",
  24923. height: math.unit(4.53, "meters"),
  24924. default: true
  24925. },
  24926. {
  24927. name: "Large",
  24928. height: math.unit(4.53 * 2, "meters"),
  24929. },
  24930. ]
  24931. ))
  24932. characterMakers.push(() => makeCharacter(
  24933. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24934. {
  24935. front: {
  24936. height: math.unit(6 + 2 / 12, "feet"),
  24937. weight: math.unit(180, "lb"),
  24938. name: "Front",
  24939. image: {
  24940. source: "./media/characters/brawler/front.svg",
  24941. extra: 3301 / 3027,
  24942. bottom: 138 / 3439
  24943. }
  24944. },
  24945. },
  24946. [
  24947. {
  24948. name: "Normal",
  24949. height: math.unit(6 + 2 / 12, "feet"),
  24950. default: true
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(11, "feet"),
  24959. weight: math.unit(1000, "lb"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/alex/front.svg",
  24963. bottom: 44.5 / 620
  24964. }
  24965. },
  24966. },
  24967. [
  24968. {
  24969. name: "Micro",
  24970. height: math.unit(5, "inches")
  24971. },
  24972. {
  24973. name: "Normal",
  24974. height: math.unit(11, "feet"),
  24975. default: true
  24976. },
  24977. {
  24978. name: "Macro",
  24979. height: math.unit(9.5e9, "feet")
  24980. },
  24981. {
  24982. name: "Max Size",
  24983. height: math.unit(1.4e283, "yottameters")
  24984. },
  24985. ]
  24986. ))
  24987. characterMakers.push(() => makeCharacter(
  24988. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24989. {
  24990. female: {
  24991. height: math.unit(29.9, "m"),
  24992. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24993. name: "Female",
  24994. image: {
  24995. source: "./media/characters/zenari/female.svg",
  24996. extra: 3281.6 / 3217,
  24997. bottom: 72.2 / 3353
  24998. }
  24999. },
  25000. male: {
  25001. height: math.unit(27.7, "m"),
  25002. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25003. name: "Male",
  25004. image: {
  25005. source: "./media/characters/zenari/male.svg",
  25006. extra: 3008 / 2991,
  25007. bottom: 54.6 / 3069
  25008. }
  25009. },
  25010. },
  25011. [
  25012. {
  25013. name: "Macro",
  25014. height: math.unit(29.7, "meters"),
  25015. default: true
  25016. },
  25017. ]
  25018. ))
  25019. characterMakers.push(() => makeCharacter(
  25020. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25021. {
  25022. female: {
  25023. height: math.unit(23.8, "m"),
  25024. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25025. name: "Female",
  25026. image: {
  25027. source: "./media/characters/mactarian/female.svg",
  25028. extra: 2662 / 2569,
  25029. bottom: 73 / 2736
  25030. }
  25031. },
  25032. male: {
  25033. height: math.unit(23.8, "m"),
  25034. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25035. name: "Male",
  25036. image: {
  25037. source: "./media/characters/mactarian/male.svg",
  25038. extra: 2673 / 2600,
  25039. bottom: 76 / 2750
  25040. }
  25041. },
  25042. },
  25043. [
  25044. {
  25045. name: "Macro",
  25046. height: math.unit(23.8, "meters"),
  25047. default: true
  25048. },
  25049. ]
  25050. ))
  25051. characterMakers.push(() => makeCharacter(
  25052. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25053. {
  25054. female: {
  25055. height: math.unit(19.3, "m"),
  25056. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25057. name: "Female",
  25058. image: {
  25059. source: "./media/characters/umok/female.svg",
  25060. extra: 2186 / 2078,
  25061. bottom: 87 / 2277
  25062. }
  25063. },
  25064. male: {
  25065. height: math.unit(19.5, "m"),
  25066. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25067. name: "Male",
  25068. image: {
  25069. source: "./media/characters/umok/male.svg",
  25070. extra: 2233 / 2140,
  25071. bottom: 24.4 / 2258
  25072. }
  25073. },
  25074. },
  25075. [
  25076. {
  25077. name: "Macro",
  25078. height: math.unit(19.3, "meters"),
  25079. default: true
  25080. },
  25081. ]
  25082. ))
  25083. characterMakers.push(() => makeCharacter(
  25084. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25085. {
  25086. female: {
  25087. height: math.unit(26.15, "m"),
  25088. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25089. name: "Female",
  25090. image: {
  25091. source: "./media/characters/joraxian/female.svg",
  25092. extra: 2912 / 2824,
  25093. bottom: 36 / 2956
  25094. }
  25095. },
  25096. male: {
  25097. height: math.unit(25.4, "m"),
  25098. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25099. name: "Male",
  25100. image: {
  25101. source: "./media/characters/joraxian/male.svg",
  25102. extra: 2877 / 2721,
  25103. bottom: 82 / 2967
  25104. }
  25105. },
  25106. },
  25107. [
  25108. {
  25109. name: "Macro",
  25110. height: math.unit(26.15, "meters"),
  25111. default: true
  25112. },
  25113. ]
  25114. ))
  25115. characterMakers.push(() => makeCharacter(
  25116. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25117. {
  25118. female: {
  25119. height: math.unit(21.6, "m"),
  25120. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25121. name: "Female",
  25122. image: {
  25123. source: "./media/characters/sthara/female.svg",
  25124. extra: 2516 / 2347,
  25125. bottom: 21.5 / 2537
  25126. }
  25127. },
  25128. male: {
  25129. height: math.unit(24, "m"),
  25130. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25131. name: "Male",
  25132. image: {
  25133. source: "./media/characters/sthara/male.svg",
  25134. extra: 2732 / 2607,
  25135. bottom: 23 / 2732
  25136. }
  25137. },
  25138. },
  25139. [
  25140. {
  25141. name: "Macro",
  25142. height: math.unit(21.6, "meters"),
  25143. default: true
  25144. },
  25145. ]
  25146. ))
  25147. characterMakers.push(() => makeCharacter(
  25148. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25149. {
  25150. front: {
  25151. height: math.unit(6 + 4 / 12, "feet"),
  25152. weight: math.unit(175, "lb"),
  25153. name: "Front",
  25154. image: {
  25155. source: "./media/characters/luka-bryzant/front.svg",
  25156. extra: 311 / 289,
  25157. bottom: 4 / 315
  25158. }
  25159. },
  25160. back: {
  25161. height: math.unit(6 + 4 / 12, "feet"),
  25162. weight: math.unit(175, "lb"),
  25163. name: "Back",
  25164. image: {
  25165. source: "./media/characters/luka-bryzant/back.svg",
  25166. extra: 311 / 289,
  25167. bottom: 3.8 / 313.7
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Micro",
  25174. height: math.unit(10, "inches")
  25175. },
  25176. {
  25177. name: "Normal",
  25178. height: math.unit(6 + 4 / 12, "feet"),
  25179. default: true
  25180. },
  25181. {
  25182. name: "Large",
  25183. height: math.unit(12, "feet")
  25184. },
  25185. ]
  25186. ))
  25187. characterMakers.push(() => makeCharacter(
  25188. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25189. {
  25190. front: {
  25191. height: math.unit(5 + 7 / 12, "feet"),
  25192. weight: math.unit(185, "lb"),
  25193. name: "Front",
  25194. image: {
  25195. source: "./media/characters/aman-aquila/front.svg",
  25196. extra: 1013 / 976,
  25197. bottom: 45.6 / 1057
  25198. }
  25199. },
  25200. side: {
  25201. height: math.unit(5 + 7 / 12, "feet"),
  25202. weight: math.unit(185, "lb"),
  25203. name: "Side",
  25204. image: {
  25205. source: "./media/characters/aman-aquila/side.svg",
  25206. extra: 1054 / 1011,
  25207. bottom: 15 / 1070
  25208. }
  25209. },
  25210. back: {
  25211. height: math.unit(5 + 7 / 12, "feet"),
  25212. weight: math.unit(185, "lb"),
  25213. name: "Back",
  25214. image: {
  25215. source: "./media/characters/aman-aquila/back.svg",
  25216. extra: 1026 / 970,
  25217. bottom: 12 / 1039
  25218. }
  25219. },
  25220. head: {
  25221. height: math.unit(1.211, "feet"),
  25222. name: "Head",
  25223. image: {
  25224. source: "./media/characters/aman-aquila/head.svg",
  25225. }
  25226. },
  25227. },
  25228. [
  25229. {
  25230. name: "Minimicro",
  25231. height: math.unit(0.057, "inches")
  25232. },
  25233. {
  25234. name: "Micro",
  25235. height: math.unit(7, "inches")
  25236. },
  25237. {
  25238. name: "Mini",
  25239. height: math.unit(3 + 7 / 12, "feet")
  25240. },
  25241. {
  25242. name: "Normal",
  25243. height: math.unit(5 + 7 / 12, "feet"),
  25244. default: true
  25245. },
  25246. {
  25247. name: "Macro",
  25248. height: math.unit(157 + 7 / 12, "feet")
  25249. },
  25250. {
  25251. name: "Megamacro",
  25252. height: math.unit(1557 + 7 / 12, "feet")
  25253. },
  25254. {
  25255. name: "Gigamacro",
  25256. height: math.unit(15557 + 7 / 12, "feet")
  25257. },
  25258. ]
  25259. ))
  25260. characterMakers.push(() => makeCharacter(
  25261. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25262. {
  25263. front: {
  25264. height: math.unit(3 + 2 / 12, "inches"),
  25265. weight: math.unit(0.3, "ounces"),
  25266. name: "Front",
  25267. image: {
  25268. source: "./media/characters/hiphae/front.svg",
  25269. extra: 1931 / 1683,
  25270. bottom: 24 / 1955
  25271. }
  25272. },
  25273. },
  25274. [
  25275. {
  25276. name: "Normal",
  25277. height: math.unit(3 + 1 / 2, "inches"),
  25278. default: true
  25279. },
  25280. ]
  25281. ))
  25282. characterMakers.push(() => makeCharacter(
  25283. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25284. {
  25285. front: {
  25286. height: math.unit(5 + 10 / 12, "feet"),
  25287. weight: math.unit(165, "lb"),
  25288. name: "Front",
  25289. image: {
  25290. source: "./media/characters/nicky/front.svg",
  25291. extra: 3144 / 2886,
  25292. bottom: 45.6 / 3192
  25293. }
  25294. },
  25295. back: {
  25296. height: math.unit(5 + 10 / 12, "feet"),
  25297. weight: math.unit(165, "lb"),
  25298. name: "Back",
  25299. image: {
  25300. source: "./media/characters/nicky/back.svg",
  25301. extra: 3055 / 2804,
  25302. bottom: 28.4 / 3087
  25303. }
  25304. },
  25305. frontclothed: {
  25306. height: math.unit(5 + 10 / 12, "feet"),
  25307. weight: math.unit(165, "lb"),
  25308. name: "Front-clothed",
  25309. image: {
  25310. source: "./media/characters/nicky/front-clothed.svg",
  25311. extra: 3184.9 / 2926.9,
  25312. bottom: 86.5 / 3239.9
  25313. }
  25314. },
  25315. foot: {
  25316. height: math.unit(1.16, "feet"),
  25317. name: "Foot",
  25318. image: {
  25319. source: "./media/characters/nicky/foot.svg"
  25320. }
  25321. },
  25322. feet: {
  25323. height: math.unit(1.34, "feet"),
  25324. name: "Feet",
  25325. image: {
  25326. source: "./media/characters/nicky/feet.svg"
  25327. }
  25328. },
  25329. maw: {
  25330. height: math.unit(0.9, "feet"),
  25331. name: "Maw",
  25332. image: {
  25333. source: "./media/characters/nicky/maw.svg"
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Normal",
  25340. height: math.unit(5 + 10 / 12, "feet"),
  25341. default: true
  25342. },
  25343. {
  25344. name: "Macro",
  25345. height: math.unit(60, "feet")
  25346. },
  25347. {
  25348. name: "Megamacro",
  25349. height: math.unit(1, "mile")
  25350. },
  25351. ]
  25352. ))
  25353. characterMakers.push(() => makeCharacter(
  25354. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25355. {
  25356. side: {
  25357. height: math.unit(10, "feet"),
  25358. weight: math.unit(600, "lb"),
  25359. name: "Side",
  25360. image: {
  25361. source: "./media/characters/blair/side.svg",
  25362. bottom: 16.6 / 475,
  25363. extra: 458 / 431
  25364. }
  25365. },
  25366. },
  25367. [
  25368. {
  25369. name: "Micro",
  25370. height: math.unit(8, "inches")
  25371. },
  25372. {
  25373. name: "Normal",
  25374. height: math.unit(10, "feet"),
  25375. default: true
  25376. },
  25377. {
  25378. name: "Macro",
  25379. height: math.unit(180, "feet")
  25380. },
  25381. ]
  25382. ))
  25383. characterMakers.push(() => makeCharacter(
  25384. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25385. {
  25386. front: {
  25387. height: math.unit(5 + 4 / 12, "feet"),
  25388. weight: math.unit(125, "lb"),
  25389. name: "Front",
  25390. image: {
  25391. source: "./media/characters/fisher/front.svg",
  25392. extra: 444 / 390,
  25393. bottom: 2 / 444.8
  25394. }
  25395. },
  25396. },
  25397. [
  25398. {
  25399. name: "Micro",
  25400. height: math.unit(4, "inches")
  25401. },
  25402. {
  25403. name: "Normal",
  25404. height: math.unit(5 + 4 / 12, "feet"),
  25405. default: true
  25406. },
  25407. {
  25408. name: "Macro",
  25409. height: math.unit(100, "feet")
  25410. },
  25411. ]
  25412. ))
  25413. characterMakers.push(() => makeCharacter(
  25414. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25415. {
  25416. front: {
  25417. height: math.unit(6.71, "feet"),
  25418. weight: math.unit(200, "lb"),
  25419. capacity: math.unit(1000000, "people"),
  25420. name: "Front",
  25421. image: {
  25422. source: "./media/characters/gliss/front.svg",
  25423. extra: 2347 / 2231,
  25424. bottom: 113 / 2462
  25425. }
  25426. },
  25427. hammerspaceSize: {
  25428. height: math.unit(6.71 * 717, "feet"),
  25429. weight: math.unit(200, "lb"),
  25430. capacity: math.unit(1000000, "people"),
  25431. name: "Hammerspace Size",
  25432. image: {
  25433. source: "./media/characters/gliss/front.svg",
  25434. extra: 2347 / 2231,
  25435. bottom: 113 / 2462
  25436. }
  25437. },
  25438. },
  25439. [
  25440. {
  25441. name: "Normal",
  25442. height: math.unit(6.71, "feet"),
  25443. default: true
  25444. },
  25445. ]
  25446. ))
  25447. characterMakers.push(() => makeCharacter(
  25448. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25449. {
  25450. side: {
  25451. height: math.unit(1.44, "m"),
  25452. weight: math.unit(80, "kg"),
  25453. name: "Side",
  25454. image: {
  25455. source: "./media/characters/dune-anderson/side.svg",
  25456. bottom: 49 / 1426
  25457. }
  25458. },
  25459. },
  25460. [
  25461. {
  25462. name: "Wolf-sized",
  25463. height: math.unit(1.44, "meters")
  25464. },
  25465. {
  25466. name: "Normal",
  25467. height: math.unit(5.05, "meters"),
  25468. default: true
  25469. },
  25470. {
  25471. name: "Big",
  25472. height: math.unit(14.4, "meters")
  25473. },
  25474. {
  25475. name: "Huge",
  25476. height: math.unit(144, "meters")
  25477. },
  25478. ]
  25479. ))
  25480. characterMakers.push(() => makeCharacter(
  25481. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25482. {
  25483. front: {
  25484. height: math.unit(7, "feet"),
  25485. weight: math.unit(425, "lb"),
  25486. name: "Front",
  25487. image: {
  25488. source: "./media/characters/hind/front.svg",
  25489. extra: 2091 / 1860,
  25490. bottom: 129 / 2220
  25491. }
  25492. },
  25493. back: {
  25494. height: math.unit(7, "feet"),
  25495. weight: math.unit(425, "lb"),
  25496. name: "Back",
  25497. image: {
  25498. source: "./media/characters/hind/back.svg",
  25499. extra: 2091 / 1860,
  25500. bottom: 24.6 / 2309
  25501. }
  25502. },
  25503. tail: {
  25504. height: math.unit(2.8, "feet"),
  25505. name: "Tail",
  25506. image: {
  25507. source: "./media/characters/hind/tail.svg"
  25508. }
  25509. },
  25510. head: {
  25511. height: math.unit(2.55, "feet"),
  25512. name: "Head",
  25513. image: {
  25514. source: "./media/characters/hind/head.svg"
  25515. }
  25516. },
  25517. },
  25518. [
  25519. {
  25520. name: "XS",
  25521. height: math.unit(0.7, "feet")
  25522. },
  25523. {
  25524. name: "Normal",
  25525. height: math.unit(7, "feet"),
  25526. default: true
  25527. },
  25528. {
  25529. name: "XL",
  25530. height: math.unit(70, "feet")
  25531. },
  25532. ]
  25533. ))
  25534. characterMakers.push(() => makeCharacter(
  25535. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25536. {
  25537. front: {
  25538. height: math.unit(2.1, "meters"),
  25539. weight: math.unit(150, "lb"),
  25540. name: "Front",
  25541. image: {
  25542. source: "./media/characters/tharquench-sizestealer/front.svg",
  25543. extra: 1605/1470,
  25544. bottom: 36/1641
  25545. }
  25546. },
  25547. frontAlt: {
  25548. height: math.unit(2.1, "meters"),
  25549. weight: math.unit(150, "lb"),
  25550. name: "Front (Alt)",
  25551. image: {
  25552. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25553. extra: 2318 / 2063,
  25554. bottom: 93.4 / 2410
  25555. }
  25556. },
  25557. },
  25558. [
  25559. {
  25560. name: "Nano",
  25561. height: math.unit(1, "mm")
  25562. },
  25563. {
  25564. name: "Micro",
  25565. height: math.unit(1, "cm")
  25566. },
  25567. {
  25568. name: "Normal",
  25569. height: math.unit(2.1, "meters"),
  25570. default: true
  25571. },
  25572. ]
  25573. ))
  25574. characterMakers.push(() => makeCharacter(
  25575. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25576. {
  25577. front: {
  25578. height: math.unit(7 + 5 / 12, "feet"),
  25579. weight: math.unit(357, "lb"),
  25580. name: "Front",
  25581. image: {
  25582. source: "./media/characters/solex-draconov/front.svg",
  25583. extra: 1993 / 1865,
  25584. bottom: 117 / 2111
  25585. }
  25586. },
  25587. },
  25588. [
  25589. {
  25590. name: "Natural Height",
  25591. height: math.unit(7 + 5 / 12, "feet"),
  25592. default: true
  25593. },
  25594. {
  25595. name: "Macro",
  25596. height: math.unit(350, "feet")
  25597. },
  25598. {
  25599. name: "Macro+",
  25600. height: math.unit(1000, "feet")
  25601. },
  25602. {
  25603. name: "Megamacro",
  25604. height: math.unit(20, "km")
  25605. },
  25606. {
  25607. name: "Megamacro+",
  25608. height: math.unit(1000, "km")
  25609. },
  25610. {
  25611. name: "Gigamacro",
  25612. height: math.unit(2.5, "Gm")
  25613. },
  25614. {
  25615. name: "Teramacro",
  25616. height: math.unit(15, "Tm")
  25617. },
  25618. {
  25619. name: "Galactic",
  25620. height: math.unit(30, "Zm")
  25621. },
  25622. {
  25623. name: "Universal",
  25624. height: math.unit(21000, "Ym")
  25625. },
  25626. {
  25627. name: "Omniversal",
  25628. height: math.unit(9.861e50, "Ym")
  25629. },
  25630. {
  25631. name: "Existential",
  25632. height: math.unit(1e300, "meters")
  25633. },
  25634. ]
  25635. ))
  25636. characterMakers.push(() => makeCharacter(
  25637. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25638. {
  25639. side: {
  25640. height: math.unit(25, "feet"),
  25641. weight: math.unit(90000, "lb"),
  25642. name: "Side",
  25643. image: {
  25644. source: "./media/characters/mandarax/side.svg",
  25645. extra: 614 / 332,
  25646. bottom: 55 / 630
  25647. }
  25648. },
  25649. head: {
  25650. height: math.unit(11.4, "feet"),
  25651. name: "Head",
  25652. image: {
  25653. source: "./media/characters/mandarax/head.svg"
  25654. }
  25655. },
  25656. belly: {
  25657. height: math.unit(33, "feet"),
  25658. name: "Belly",
  25659. capacity: math.unit(500, "people"),
  25660. image: {
  25661. source: "./media/characters/mandarax/belly.svg"
  25662. }
  25663. },
  25664. dick: {
  25665. height: math.unit(8.46, "feet"),
  25666. name: "Dick",
  25667. image: {
  25668. source: "./media/characters/mandarax/dick.svg"
  25669. }
  25670. },
  25671. top: {
  25672. height: math.unit(28, "meters"),
  25673. name: "Top",
  25674. image: {
  25675. source: "./media/characters/mandarax/top.svg"
  25676. }
  25677. },
  25678. },
  25679. [
  25680. {
  25681. name: "Normal",
  25682. height: math.unit(25, "feet"),
  25683. default: true
  25684. },
  25685. ]
  25686. ))
  25687. characterMakers.push(() => makeCharacter(
  25688. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25689. {
  25690. front: {
  25691. height: math.unit(5, "feet"),
  25692. weight: math.unit(90, "lb"),
  25693. name: "Front",
  25694. image: {
  25695. source: "./media/characters/pixil/front.svg",
  25696. extra: 2000 / 1618,
  25697. bottom: 12.3 / 2011
  25698. }
  25699. },
  25700. },
  25701. [
  25702. {
  25703. name: "Normal",
  25704. height: math.unit(5, "feet"),
  25705. default: true
  25706. },
  25707. {
  25708. name: "Megamacro",
  25709. height: math.unit(10, "miles"),
  25710. },
  25711. ]
  25712. ))
  25713. characterMakers.push(() => makeCharacter(
  25714. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25715. {
  25716. front: {
  25717. height: math.unit(7 + 2 / 12, "feet"),
  25718. weight: math.unit(200, "lb"),
  25719. name: "Front",
  25720. image: {
  25721. source: "./media/characters/angel/front.svg",
  25722. extra: 1830 / 1737,
  25723. bottom: 22.6 / 1854,
  25724. }
  25725. },
  25726. },
  25727. [
  25728. {
  25729. name: "Normal",
  25730. height: math.unit(7 + 2 / 12, "feet"),
  25731. default: true
  25732. },
  25733. {
  25734. name: "Macro",
  25735. height: math.unit(1000, "feet")
  25736. },
  25737. {
  25738. name: "Megamacro",
  25739. height: math.unit(2, "miles")
  25740. },
  25741. {
  25742. name: "Gigamacro",
  25743. height: math.unit(20, "earths")
  25744. },
  25745. ]
  25746. ))
  25747. characterMakers.push(() => makeCharacter(
  25748. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25749. {
  25750. front: {
  25751. height: math.unit(5, "feet"),
  25752. weight: math.unit(180, "lb"),
  25753. name: "Front",
  25754. image: {
  25755. source: "./media/characters/mekana/front.svg",
  25756. extra: 1671 / 1605,
  25757. bottom: 3.5 / 1691
  25758. }
  25759. },
  25760. side: {
  25761. height: math.unit(5, "feet"),
  25762. weight: math.unit(180, "lb"),
  25763. name: "Side",
  25764. image: {
  25765. source: "./media/characters/mekana/side.svg",
  25766. extra: 1671 / 1605,
  25767. bottom: 3.5 / 1691
  25768. }
  25769. },
  25770. back: {
  25771. height: math.unit(5, "feet"),
  25772. weight: math.unit(180, "lb"),
  25773. name: "Back",
  25774. image: {
  25775. source: "./media/characters/mekana/back.svg",
  25776. extra: 1671 / 1605,
  25777. bottom: 3.5 / 1691
  25778. }
  25779. },
  25780. },
  25781. [
  25782. {
  25783. name: "Normal",
  25784. height: math.unit(5, "feet"),
  25785. default: true
  25786. },
  25787. ]
  25788. ))
  25789. characterMakers.push(() => makeCharacter(
  25790. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25791. {
  25792. front: {
  25793. height: math.unit(4 + 6 / 12, "feet"),
  25794. weight: math.unit(80, "lb"),
  25795. name: "Front",
  25796. image: {
  25797. source: "./media/characters/pixie/front.svg",
  25798. extra: 1924 / 1825,
  25799. bottom: 22.4 / 1946
  25800. }
  25801. },
  25802. },
  25803. [
  25804. {
  25805. name: "Normal",
  25806. height: math.unit(4 + 6 / 12, "feet"),
  25807. default: true
  25808. },
  25809. {
  25810. name: "Macro",
  25811. height: math.unit(40, "feet")
  25812. },
  25813. ]
  25814. ))
  25815. characterMakers.push(() => makeCharacter(
  25816. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25817. {
  25818. front: {
  25819. height: math.unit(2.1, "meters"),
  25820. weight: math.unit(200, "lb"),
  25821. name: "Front",
  25822. image: {
  25823. source: "./media/characters/the-lascivious/front.svg",
  25824. extra: 1 / 0.893,
  25825. bottom: 3.5 / 573.7
  25826. }
  25827. },
  25828. },
  25829. [
  25830. {
  25831. name: "Human Scale",
  25832. height: math.unit(2.1, "meters")
  25833. },
  25834. {
  25835. name: "Wolxi Scale",
  25836. height: math.unit(46.2, "m"),
  25837. default: true
  25838. },
  25839. {
  25840. name: "Boinker of Buildings",
  25841. height: math.unit(10, "km")
  25842. },
  25843. {
  25844. name: "Shagger of Skyscrapers",
  25845. height: math.unit(40, "km")
  25846. },
  25847. {
  25848. name: "Banger of Boroughs",
  25849. height: math.unit(4000, "km")
  25850. },
  25851. {
  25852. name: "Screwer of States",
  25853. height: math.unit(100000, "km")
  25854. },
  25855. {
  25856. name: "Pounder of Planets",
  25857. height: math.unit(2000000, "km")
  25858. },
  25859. ]
  25860. ))
  25861. characterMakers.push(() => makeCharacter(
  25862. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25863. {
  25864. front: {
  25865. height: math.unit(6, "feet"),
  25866. weight: math.unit(150, "lb"),
  25867. name: "Front",
  25868. image: {
  25869. source: "./media/characters/aj/front.svg",
  25870. extra: 2039 / 1562,
  25871. bottom: 40 / 2079
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Normal",
  25878. height: math.unit(11 + 6 / 12, "feet"),
  25879. default: true
  25880. },
  25881. {
  25882. name: "Megamacro",
  25883. height: math.unit(60, "megameters")
  25884. },
  25885. ]
  25886. ))
  25887. characterMakers.push(() => makeCharacter(
  25888. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25889. {
  25890. side: {
  25891. height: math.unit(31 + 8 / 12, "feet"),
  25892. weight: math.unit(75000, "kg"),
  25893. name: "Side",
  25894. image: {
  25895. source: "./media/characters/koros/side.svg",
  25896. extra: 1442 / 1297,
  25897. bottom: 122.7 / 1562
  25898. }
  25899. },
  25900. dicksKingsCrown: {
  25901. height: math.unit(6, "feet"),
  25902. name: "Dicks (King's Crown)",
  25903. image: {
  25904. source: "./media/characters/koros/dicks-kings-crown.svg"
  25905. }
  25906. },
  25907. dicksTailSet: {
  25908. height: math.unit(3, "feet"),
  25909. name: "Dicks (Tail Set)",
  25910. image: {
  25911. source: "./media/characters/koros/dicks-tail-set.svg"
  25912. }
  25913. },
  25914. dickCumming: {
  25915. height: math.unit(7.98, "feet"),
  25916. name: "Dick (Cumming)",
  25917. image: {
  25918. source: "./media/characters/koros/dick-cumming.svg"
  25919. }
  25920. },
  25921. dicksBack: {
  25922. height: math.unit(5.9, "feet"),
  25923. name: "Dicks (Back)",
  25924. image: {
  25925. source: "./media/characters/koros/dicks-back.svg"
  25926. }
  25927. },
  25928. dicksFront: {
  25929. height: math.unit(3.72, "feet"),
  25930. name: "Dicks (Front)",
  25931. image: {
  25932. source: "./media/characters/koros/dicks-front.svg"
  25933. }
  25934. },
  25935. dicksPeeking: {
  25936. height: math.unit(3.0, "feet"),
  25937. name: "Dicks (Peeking)",
  25938. image: {
  25939. source: "./media/characters/koros/dicks-peeking.svg"
  25940. }
  25941. },
  25942. eye: {
  25943. height: math.unit(1.7, "feet"),
  25944. name: "Eye",
  25945. image: {
  25946. source: "./media/characters/koros/eye.svg"
  25947. }
  25948. },
  25949. headFront: {
  25950. height: math.unit(11.69, "feet"),
  25951. name: "Head (Front)",
  25952. image: {
  25953. source: "./media/characters/koros/head-front.svg"
  25954. }
  25955. },
  25956. headSide: {
  25957. height: math.unit(14, "feet"),
  25958. name: "Head (Side)",
  25959. image: {
  25960. source: "./media/characters/koros/head-side.svg"
  25961. }
  25962. },
  25963. leg: {
  25964. height: math.unit(17, "feet"),
  25965. name: "Leg",
  25966. image: {
  25967. source: "./media/characters/koros/leg.svg"
  25968. }
  25969. },
  25970. mawSide: {
  25971. height: math.unit(12.8, "feet"),
  25972. name: "Maw (Side)",
  25973. image: {
  25974. source: "./media/characters/koros/maw-side.svg"
  25975. }
  25976. },
  25977. mawSpitting: {
  25978. height: math.unit(17, "feet"),
  25979. name: "Maw (Spitting)",
  25980. image: {
  25981. source: "./media/characters/koros/maw-spitting.svg"
  25982. }
  25983. },
  25984. slit: {
  25985. height: math.unit(2.8, "feet"),
  25986. name: "Slit",
  25987. image: {
  25988. source: "./media/characters/koros/slit.svg"
  25989. }
  25990. },
  25991. stomach: {
  25992. height: math.unit(6.8, "feet"),
  25993. capacity: math.unit(20, "people"),
  25994. name: "Stomach",
  25995. image: {
  25996. source: "./media/characters/koros/stomach.svg"
  25997. }
  25998. },
  25999. wingspanBottom: {
  26000. height: math.unit(114, "feet"),
  26001. name: "Wingspan (Bottom)",
  26002. image: {
  26003. source: "./media/characters/koros/wingspan-bottom.svg"
  26004. }
  26005. },
  26006. wingspanTop: {
  26007. height: math.unit(104, "feet"),
  26008. name: "Wingspan (Top)",
  26009. image: {
  26010. source: "./media/characters/koros/wingspan-top.svg"
  26011. }
  26012. },
  26013. },
  26014. [
  26015. {
  26016. name: "Normal",
  26017. height: math.unit(31 + 8 / 12, "feet"),
  26018. default: true
  26019. },
  26020. ]
  26021. ))
  26022. characterMakers.push(() => makeCharacter(
  26023. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26024. {
  26025. front: {
  26026. height: math.unit(18 + 5 / 12, "feet"),
  26027. weight: math.unit(3750, "kg"),
  26028. name: "Front",
  26029. image: {
  26030. source: "./media/characters/vexx/front.svg",
  26031. extra: 426 / 396,
  26032. bottom: 31.5 / 458
  26033. }
  26034. },
  26035. maw: {
  26036. height: math.unit(6, "feet"),
  26037. name: "Maw",
  26038. image: {
  26039. source: "./media/characters/vexx/maw.svg"
  26040. }
  26041. },
  26042. },
  26043. [
  26044. {
  26045. name: "Normal",
  26046. height: math.unit(18 + 5 / 12, "feet"),
  26047. default: true
  26048. },
  26049. ]
  26050. ))
  26051. characterMakers.push(() => makeCharacter(
  26052. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26053. {
  26054. front: {
  26055. height: math.unit(17 + 6 / 12, "feet"),
  26056. weight: math.unit(150, "lb"),
  26057. name: "Front",
  26058. image: {
  26059. source: "./media/characters/baadra/front.svg",
  26060. extra: 3137 / 2890,
  26061. bottom: 168.4 / 3305
  26062. }
  26063. },
  26064. back: {
  26065. height: math.unit(17 + 6 / 12, "feet"),
  26066. weight: math.unit(150, "lb"),
  26067. name: "Back",
  26068. image: {
  26069. source: "./media/characters/baadra/back.svg",
  26070. extra: 3142 / 2890,
  26071. bottom: 220 / 3371
  26072. }
  26073. },
  26074. head: {
  26075. height: math.unit(5.45, "feet"),
  26076. name: "Head",
  26077. image: {
  26078. source: "./media/characters/baadra/head.svg"
  26079. }
  26080. },
  26081. headAngry: {
  26082. height: math.unit(4.95, "feet"),
  26083. name: "Head (Angry)",
  26084. image: {
  26085. source: "./media/characters/baadra/head-angry.svg"
  26086. }
  26087. },
  26088. headOpen: {
  26089. height: math.unit(6, "feet"),
  26090. name: "Head (Open)",
  26091. image: {
  26092. source: "./media/characters/baadra/head-open.svg"
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "Normal",
  26099. height: math.unit(17 + 6 / 12, "feet"),
  26100. default: true
  26101. },
  26102. ]
  26103. ))
  26104. characterMakers.push(() => makeCharacter(
  26105. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26106. {
  26107. front: {
  26108. height: math.unit(7 + 3 / 12, "feet"),
  26109. weight: math.unit(180, "lb"),
  26110. name: "Front",
  26111. image: {
  26112. source: "./media/characters/juri/front.svg",
  26113. extra: 1401 / 1237,
  26114. bottom: 18.5 / 1418
  26115. }
  26116. },
  26117. side: {
  26118. height: math.unit(7 + 3 / 12, "feet"),
  26119. weight: math.unit(180, "lb"),
  26120. name: "Side",
  26121. image: {
  26122. source: "./media/characters/juri/side.svg",
  26123. extra: 1424 / 1242,
  26124. bottom: 18.5 / 1447
  26125. }
  26126. },
  26127. sitting: {
  26128. height: math.unit(6, "feet"),
  26129. weight: math.unit(180, "lb"),
  26130. name: "Sitting",
  26131. image: {
  26132. source: "./media/characters/juri/sitting.svg",
  26133. extra: 1270 / 1143,
  26134. bottom: 100 / 1343
  26135. }
  26136. },
  26137. back: {
  26138. height: math.unit(7 + 3 / 12, "feet"),
  26139. weight: math.unit(180, "lb"),
  26140. name: "Back",
  26141. image: {
  26142. source: "./media/characters/juri/back.svg",
  26143. extra: 1377 / 1240,
  26144. bottom: 23.7 / 1405
  26145. }
  26146. },
  26147. maw: {
  26148. height: math.unit(2.8, "feet"),
  26149. name: "Maw",
  26150. image: {
  26151. source: "./media/characters/juri/maw.svg"
  26152. }
  26153. },
  26154. stomach: {
  26155. height: math.unit(0.89, "feet"),
  26156. capacity: math.unit(4, "liters"),
  26157. name: "Stomach",
  26158. image: {
  26159. source: "./media/characters/juri/stomach.svg"
  26160. }
  26161. },
  26162. },
  26163. [
  26164. {
  26165. name: "Normal",
  26166. height: math.unit(7 + 3 / 12, "feet"),
  26167. default: true
  26168. },
  26169. ]
  26170. ))
  26171. characterMakers.push(() => makeCharacter(
  26172. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26173. {
  26174. fox: {
  26175. height: math.unit(5 + 6 / 12, "feet"),
  26176. weight: math.unit(140, "lb"),
  26177. name: "Fox",
  26178. image: {
  26179. source: "./media/characters/maxene-sita/fox.svg",
  26180. extra: 146 / 138,
  26181. bottom: 2.1 / 148.19
  26182. }
  26183. },
  26184. foxLaying: {
  26185. height: math.unit(1.70, "feet"),
  26186. weight: math.unit(140, "lb"),
  26187. name: "Fox (Laying)",
  26188. image: {
  26189. source: "./media/characters/maxene-sita/fox-laying.svg",
  26190. extra: 910 / 572,
  26191. bottom: 71 / 981
  26192. }
  26193. },
  26194. kitsune: {
  26195. height: math.unit(10, "feet"),
  26196. weight: math.unit(800, "lb"),
  26197. name: "Kitsune",
  26198. image: {
  26199. source: "./media/characters/maxene-sita/kitsune.svg",
  26200. extra: 185 / 176,
  26201. bottom: 4.7 / 189.9
  26202. }
  26203. },
  26204. hellhound: {
  26205. height: math.unit(10, "feet"),
  26206. weight: math.unit(700, "lb"),
  26207. name: "Hellhound",
  26208. image: {
  26209. source: "./media/characters/maxene-sita/hellhound.svg",
  26210. extra: 1600 / 1545,
  26211. bottom: 81 / 1681
  26212. }
  26213. },
  26214. },
  26215. [
  26216. {
  26217. name: "Normal",
  26218. height: math.unit(5 + 6 / 12, "feet"),
  26219. default: true
  26220. },
  26221. ]
  26222. ))
  26223. characterMakers.push(() => makeCharacter(
  26224. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26225. {
  26226. front: {
  26227. height: math.unit(3 + 4 / 12, "feet"),
  26228. weight: math.unit(70, "lb"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/maia/front.svg",
  26232. extra: 227 / 219.5,
  26233. bottom: 40 / 267
  26234. }
  26235. },
  26236. back: {
  26237. height: math.unit(3 + 4 / 12, "feet"),
  26238. weight: math.unit(70, "lb"),
  26239. name: "Back",
  26240. image: {
  26241. source: "./media/characters/maia/back.svg",
  26242. extra: 237 / 225
  26243. }
  26244. },
  26245. },
  26246. [
  26247. {
  26248. name: "Normal",
  26249. height: math.unit(3 + 4 / 12, "feet"),
  26250. default: true
  26251. },
  26252. ]
  26253. ))
  26254. characterMakers.push(() => makeCharacter(
  26255. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26256. {
  26257. front: {
  26258. height: math.unit(5 + 10 / 12, "feet"),
  26259. weight: math.unit(197, "lb"),
  26260. name: "Front",
  26261. image: {
  26262. source: "./media/characters/jabaro/front.svg",
  26263. extra: 225 / 216,
  26264. bottom: 5.06 / 230
  26265. }
  26266. },
  26267. back: {
  26268. height: math.unit(5 + 10 / 12, "feet"),
  26269. weight: math.unit(197, "lb"),
  26270. name: "Back",
  26271. image: {
  26272. source: "./media/characters/jabaro/back.svg",
  26273. extra: 225 / 219,
  26274. bottom: 1.9 / 227
  26275. }
  26276. },
  26277. },
  26278. [
  26279. {
  26280. name: "Normal",
  26281. height: math.unit(5 + 10 / 12, "feet"),
  26282. default: true
  26283. },
  26284. ]
  26285. ))
  26286. characterMakers.push(() => makeCharacter(
  26287. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26288. {
  26289. front: {
  26290. height: math.unit(5 + 8 / 12, "feet"),
  26291. weight: math.unit(139, "lb"),
  26292. name: "Front",
  26293. image: {
  26294. source: "./media/characters/risa/front.svg",
  26295. extra: 270 / 260,
  26296. bottom: 11.2 / 282
  26297. }
  26298. },
  26299. back: {
  26300. height: math.unit(5 + 8 / 12, "feet"),
  26301. weight: math.unit(139, "lb"),
  26302. name: "Back",
  26303. image: {
  26304. source: "./media/characters/risa/back.svg",
  26305. extra: 264 / 255,
  26306. bottom: 4 / 268
  26307. }
  26308. },
  26309. },
  26310. [
  26311. {
  26312. name: "Normal",
  26313. height: math.unit(5 + 8 / 12, "feet"),
  26314. default: true
  26315. },
  26316. ]
  26317. ))
  26318. characterMakers.push(() => makeCharacter(
  26319. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26320. {
  26321. front: {
  26322. height: math.unit(2 + 11 / 12, "feet"),
  26323. weight: math.unit(30, "lb"),
  26324. name: "Front",
  26325. image: {
  26326. source: "./media/characters/weatley/front.svg",
  26327. bottom: 10.7 / 414,
  26328. extra: 403.5 / 362
  26329. }
  26330. },
  26331. back: {
  26332. height: math.unit(2 + 11 / 12, "feet"),
  26333. weight: math.unit(30, "lb"),
  26334. name: "Back",
  26335. image: {
  26336. source: "./media/characters/weatley/back.svg",
  26337. bottom: 10.7 / 414,
  26338. extra: 403.5 / 362
  26339. }
  26340. },
  26341. },
  26342. [
  26343. {
  26344. name: "Normal",
  26345. height: math.unit(2 + 11 / 12, "feet"),
  26346. default: true
  26347. },
  26348. ]
  26349. ))
  26350. characterMakers.push(() => makeCharacter(
  26351. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26352. {
  26353. front: {
  26354. height: math.unit(5 + 2 / 12, "feet"),
  26355. weight: math.unit(50, "kg"),
  26356. name: "Front",
  26357. image: {
  26358. source: "./media/characters/mercury-crescent/front.svg",
  26359. extra: 1088 / 1033,
  26360. bottom: 18.9 / 1109
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "Normal",
  26367. height: math.unit(5 + 2 / 12, "feet"),
  26368. default: true
  26369. },
  26370. ]
  26371. ))
  26372. characterMakers.push(() => makeCharacter(
  26373. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26374. {
  26375. front: {
  26376. height: math.unit(2, "feet"),
  26377. weight: math.unit(15, "kg"),
  26378. name: "Front",
  26379. image: {
  26380. source: "./media/characters/diamond-jones/front.svg",
  26381. extra: 727/723,
  26382. bottom: 46/773
  26383. }
  26384. },
  26385. },
  26386. [
  26387. {
  26388. name: "Normal",
  26389. height: math.unit(2, "feet"),
  26390. default: true
  26391. },
  26392. ]
  26393. ))
  26394. characterMakers.push(() => makeCharacter(
  26395. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26396. {
  26397. front: {
  26398. height: math.unit(3, "feet"),
  26399. weight: math.unit(30, "kg"),
  26400. name: "Front",
  26401. image: {
  26402. source: "./media/characters/sweet-bit/front.svg",
  26403. extra: 675 / 567,
  26404. bottom: 27.7 / 703
  26405. }
  26406. },
  26407. },
  26408. [
  26409. {
  26410. name: "Normal",
  26411. height: math.unit(3, "feet"),
  26412. default: true
  26413. },
  26414. ]
  26415. ))
  26416. characterMakers.push(() => makeCharacter(
  26417. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26418. {
  26419. side: {
  26420. height: math.unit(9.178, "feet"),
  26421. weight: math.unit(500, "lb"),
  26422. name: "Side",
  26423. image: {
  26424. source: "./media/characters/umbrazen/side.svg",
  26425. extra: 1730 / 1473,
  26426. bottom: 34.6 / 1765
  26427. }
  26428. },
  26429. },
  26430. [
  26431. {
  26432. name: "Normal",
  26433. height: math.unit(9.178, "feet"),
  26434. default: true
  26435. },
  26436. ]
  26437. ))
  26438. characterMakers.push(() => makeCharacter(
  26439. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26440. {
  26441. front: {
  26442. height: math.unit(10, "feet"),
  26443. weight: math.unit(750, "lb"),
  26444. name: "Front",
  26445. image: {
  26446. source: "./media/characters/arlist/front.svg",
  26447. extra: 961 / 778,
  26448. bottom: 6.2 / 986
  26449. }
  26450. },
  26451. },
  26452. [
  26453. {
  26454. name: "Normal",
  26455. height: math.unit(10, "feet"),
  26456. default: true
  26457. },
  26458. ]
  26459. ))
  26460. characterMakers.push(() => makeCharacter(
  26461. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26462. {
  26463. front: {
  26464. height: math.unit(5 + 1 / 12, "feet"),
  26465. weight: math.unit(110, "lb"),
  26466. name: "Front",
  26467. image: {
  26468. source: "./media/characters/aradel/front.svg",
  26469. extra: 324 / 303,
  26470. bottom: 3.6 / 329.4
  26471. }
  26472. },
  26473. },
  26474. [
  26475. {
  26476. name: "Normal",
  26477. height: math.unit(5 + 1 / 12, "feet"),
  26478. default: true
  26479. },
  26480. ]
  26481. ))
  26482. characterMakers.push(() => makeCharacter(
  26483. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26484. {
  26485. front: {
  26486. height: math.unit(3 + 8 / 12, "feet"),
  26487. weight: math.unit(50, "lb"),
  26488. name: "Front",
  26489. image: {
  26490. source: "./media/characters/serryn/front.svg",
  26491. extra: 1792 / 1656,
  26492. bottom: 43.5 / 1840
  26493. }
  26494. },
  26495. },
  26496. [
  26497. {
  26498. name: "Normal",
  26499. height: math.unit(3 + 8 / 12, "feet"),
  26500. default: true
  26501. },
  26502. ]
  26503. ))
  26504. characterMakers.push(() => makeCharacter(
  26505. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26506. {
  26507. front: {
  26508. height: math.unit(7 + 10 / 12, "feet"),
  26509. weight: math.unit(255, "lb"),
  26510. name: "Front",
  26511. image: {
  26512. source: "./media/characters/xavier-thyme/front.svg",
  26513. extra: 3733 / 3642,
  26514. bottom: 131 / 3869
  26515. }
  26516. },
  26517. frontRaven: {
  26518. height: math.unit(7 + 10 / 12, "feet"),
  26519. weight: math.unit(255, "lb"),
  26520. name: "Front (Raven)",
  26521. image: {
  26522. source: "./media/characters/xavier-thyme/front-raven.svg",
  26523. extra: 4385 / 3642,
  26524. bottom: 131 / 4517
  26525. }
  26526. },
  26527. },
  26528. [
  26529. {
  26530. name: "Normal",
  26531. height: math.unit(7 + 10 / 12, "feet"),
  26532. default: true
  26533. },
  26534. ]
  26535. ))
  26536. characterMakers.push(() => makeCharacter(
  26537. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26538. {
  26539. front: {
  26540. height: math.unit(1.6, "m"),
  26541. weight: math.unit(50, "kg"),
  26542. name: "Front",
  26543. image: {
  26544. source: "./media/characters/kiki/front.svg",
  26545. extra: 4682 / 3610,
  26546. bottom: 115 / 4777
  26547. }
  26548. },
  26549. },
  26550. [
  26551. {
  26552. name: "Normal",
  26553. height: math.unit(1.6, "meters"),
  26554. default: true
  26555. },
  26556. ]
  26557. ))
  26558. characterMakers.push(() => makeCharacter(
  26559. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26560. {
  26561. front: {
  26562. height: math.unit(50, "m"),
  26563. weight: math.unit(500, "tonnes"),
  26564. name: "Front",
  26565. image: {
  26566. source: "./media/characters/ryoko/front.svg",
  26567. extra: 4632 / 3926,
  26568. bottom: 193 / 4823
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Normal",
  26575. height: math.unit(50, "meters"),
  26576. default: true
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26582. {
  26583. front: {
  26584. height: math.unit(30, "m"),
  26585. weight: math.unit(22, "tonnes"),
  26586. name: "Front",
  26587. image: {
  26588. source: "./media/characters/elio/front.svg",
  26589. extra: 4582 / 3720,
  26590. bottom: 236 / 4828
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Normal",
  26597. height: math.unit(30, "meters"),
  26598. default: true
  26599. },
  26600. ]
  26601. ))
  26602. characterMakers.push(() => makeCharacter(
  26603. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26604. {
  26605. front: {
  26606. height: math.unit(6 + 3 / 12, "feet"),
  26607. weight: math.unit(120, "lb"),
  26608. name: "Front",
  26609. image: {
  26610. source: "./media/characters/azura/front.svg",
  26611. extra: 1149 / 1135,
  26612. bottom: 45 / 1194
  26613. }
  26614. },
  26615. frontClothed: {
  26616. height: math.unit(6 + 3 / 12, "feet"),
  26617. weight: math.unit(120, "lb"),
  26618. name: "Front (Clothed)",
  26619. image: {
  26620. source: "./media/characters/azura/front-clothed.svg",
  26621. extra: 1149 / 1135,
  26622. bottom: 45 / 1194
  26623. }
  26624. },
  26625. },
  26626. [
  26627. {
  26628. name: "Normal",
  26629. height: math.unit(6 + 3 / 12, "feet"),
  26630. default: true
  26631. },
  26632. {
  26633. name: "Macro",
  26634. height: math.unit(20 + 6 / 12, "feet")
  26635. },
  26636. {
  26637. name: "Megamacro",
  26638. height: math.unit(12, "miles")
  26639. },
  26640. {
  26641. name: "Gigamacro",
  26642. height: math.unit(10000, "miles")
  26643. },
  26644. {
  26645. name: "Teramacro",
  26646. height: math.unit(900000, "miles")
  26647. },
  26648. ]
  26649. ))
  26650. characterMakers.push(() => makeCharacter(
  26651. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26652. {
  26653. front: {
  26654. height: math.unit(12, "feet"),
  26655. weight: math.unit(1, "ton"),
  26656. capacity: math.unit(660000, "gallons"),
  26657. name: "Front",
  26658. image: {
  26659. source: "./media/characters/zeus/front.svg",
  26660. extra: 5005 / 4717,
  26661. bottom: 363 / 5388
  26662. }
  26663. },
  26664. },
  26665. [
  26666. {
  26667. name: "Normal",
  26668. height: math.unit(12, "feet")
  26669. },
  26670. {
  26671. name: "Preferred Size",
  26672. height: math.unit(0.5, "miles"),
  26673. default: true
  26674. },
  26675. {
  26676. name: "Giga Horse",
  26677. height: math.unit(300, "miles")
  26678. },
  26679. {
  26680. name: "Riding Planets",
  26681. height: math.unit(30, "megameters")
  26682. },
  26683. {
  26684. name: "Cosmic Giant",
  26685. height: math.unit(3, "zettameters")
  26686. },
  26687. {
  26688. name: "Breeding God",
  26689. height: math.unit(9.92e22, "yottameters")
  26690. },
  26691. ]
  26692. ))
  26693. characterMakers.push(() => makeCharacter(
  26694. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26695. {
  26696. side: {
  26697. height: math.unit(9, "feet"),
  26698. weight: math.unit(1500, "kg"),
  26699. name: "Side",
  26700. image: {
  26701. source: "./media/characters/fang/side.svg",
  26702. extra: 924 / 866,
  26703. bottom: 47.5 / 972.3
  26704. }
  26705. },
  26706. },
  26707. [
  26708. {
  26709. name: "Normal",
  26710. height: math.unit(9, "feet"),
  26711. default: true
  26712. },
  26713. {
  26714. name: "Macro",
  26715. height: math.unit(75 + 6 / 12, "feet")
  26716. },
  26717. {
  26718. name: "Teramacro",
  26719. height: math.unit(50000, "miles")
  26720. },
  26721. ]
  26722. ))
  26723. characterMakers.push(() => makeCharacter(
  26724. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26725. {
  26726. front: {
  26727. height: math.unit(10, "feet"),
  26728. weight: math.unit(2, "tons"),
  26729. name: "Front",
  26730. image: {
  26731. source: "./media/characters/rekhit/front.svg",
  26732. extra: 2796 / 2590,
  26733. bottom: 225 / 3022
  26734. }
  26735. },
  26736. },
  26737. [
  26738. {
  26739. name: "Normal",
  26740. height: math.unit(10, "feet"),
  26741. default: true
  26742. },
  26743. {
  26744. name: "Macro",
  26745. height: math.unit(500, "feet")
  26746. },
  26747. ]
  26748. ))
  26749. characterMakers.push(() => makeCharacter(
  26750. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26751. {
  26752. front: {
  26753. height: math.unit(7 + 6.451 / 12, "feet"),
  26754. weight: math.unit(310, "lb"),
  26755. name: "Front",
  26756. image: {
  26757. source: "./media/characters/dahlia-verrick/front.svg",
  26758. extra: 1488 / 1365,
  26759. bottom: 6.2 / 1495
  26760. }
  26761. },
  26762. back: {
  26763. height: math.unit(7 + 6.451 / 12, "feet"),
  26764. weight: math.unit(310, "lb"),
  26765. name: "Back",
  26766. image: {
  26767. source: "./media/characters/dahlia-verrick/back.svg",
  26768. extra: 1472 / 1351,
  26769. bottom: 5.28 / 1477
  26770. }
  26771. },
  26772. frontBusiness: {
  26773. height: math.unit(7 + 6.451 / 12, "feet"),
  26774. weight: math.unit(200, "lb"),
  26775. name: "Front (Business)",
  26776. image: {
  26777. source: "./media/characters/dahlia-verrick/front-business.svg",
  26778. extra: 1478 / 1381,
  26779. bottom: 5.5 / 1484
  26780. }
  26781. },
  26782. frontCasual: {
  26783. height: math.unit(7 + 6.451 / 12, "feet"),
  26784. weight: math.unit(200, "lb"),
  26785. name: "Front (Casual)",
  26786. image: {
  26787. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26788. extra: 1478 / 1381,
  26789. bottom: 5.5 / 1484
  26790. }
  26791. },
  26792. },
  26793. [
  26794. {
  26795. name: "Travel-Sized",
  26796. height: math.unit(7.45, "inches")
  26797. },
  26798. {
  26799. name: "Normal",
  26800. height: math.unit(7 + 6.451 / 12, "feet"),
  26801. default: true
  26802. },
  26803. {
  26804. name: "Hitting the Town",
  26805. height: math.unit(37 + 8 / 12, "feet")
  26806. },
  26807. {
  26808. name: "Stomp in the Suburbs",
  26809. height: math.unit(964 + 9.728 / 12, "feet")
  26810. },
  26811. {
  26812. name: "Sit on the City",
  26813. height: math.unit(61747 + 10.592 / 12, "feet")
  26814. },
  26815. {
  26816. name: "Glomp the Globe",
  26817. height: math.unit(252919327 + 4.832 / 12, "feet")
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26823. {
  26824. front: {
  26825. height: math.unit(6 + 4 / 12, "feet"),
  26826. weight: math.unit(320, "lb"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/balina-mahigan/front.svg",
  26830. extra: 447 / 428,
  26831. bottom: 18 / 466
  26832. }
  26833. },
  26834. back: {
  26835. height: math.unit(6 + 4 / 12, "feet"),
  26836. weight: math.unit(320, "lb"),
  26837. name: "Back",
  26838. image: {
  26839. source: "./media/characters/balina-mahigan/back.svg",
  26840. extra: 445 / 428,
  26841. bottom: 4.07 / 448
  26842. }
  26843. },
  26844. arm: {
  26845. height: math.unit(1.88, "feet"),
  26846. name: "Arm",
  26847. image: {
  26848. source: "./media/characters/balina-mahigan/arm.svg"
  26849. }
  26850. },
  26851. backPort: {
  26852. height: math.unit(0.685, "feet"),
  26853. name: "Back Port",
  26854. image: {
  26855. source: "./media/characters/balina-mahigan/back-port.svg"
  26856. }
  26857. },
  26858. hoofpaw: {
  26859. height: math.unit(1.41, "feet"),
  26860. name: "Hoofpaw",
  26861. image: {
  26862. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26863. }
  26864. },
  26865. leftHandBack: {
  26866. height: math.unit(0.938, "feet"),
  26867. name: "Left Hand (Back)",
  26868. image: {
  26869. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26870. }
  26871. },
  26872. leftHandFront: {
  26873. height: math.unit(0.938, "feet"),
  26874. name: "Left Hand (Front)",
  26875. image: {
  26876. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26877. }
  26878. },
  26879. rightHandBack: {
  26880. height: math.unit(0.95, "feet"),
  26881. name: "Right Hand (Back)",
  26882. image: {
  26883. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26884. }
  26885. },
  26886. rightHandFront: {
  26887. height: math.unit(0.95, "feet"),
  26888. name: "Right Hand (Front)",
  26889. image: {
  26890. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26891. }
  26892. },
  26893. },
  26894. [
  26895. {
  26896. name: "Normal",
  26897. height: math.unit(6 + 4 / 12, "feet"),
  26898. default: true
  26899. },
  26900. ]
  26901. ))
  26902. characterMakers.push(() => makeCharacter(
  26903. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26904. {
  26905. front: {
  26906. height: math.unit(6, "feet"),
  26907. weight: math.unit(320, "lb"),
  26908. name: "Front",
  26909. image: {
  26910. source: "./media/characters/balina-mejeri/front.svg",
  26911. extra: 517 / 488,
  26912. bottom: 44.2 / 561
  26913. }
  26914. },
  26915. },
  26916. [
  26917. {
  26918. name: "Normal",
  26919. height: math.unit(6 + 4 / 12, "feet")
  26920. },
  26921. {
  26922. name: "Business",
  26923. height: math.unit(155, "feet"),
  26924. default: true
  26925. },
  26926. ]
  26927. ))
  26928. characterMakers.push(() => makeCharacter(
  26929. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26930. {
  26931. kneeling: {
  26932. height: math.unit(6 + 4 / 12, "feet"),
  26933. weight: math.unit(300 * 20, "lb"),
  26934. name: "Kneeling",
  26935. image: {
  26936. source: "./media/characters/balbarian/kneeling.svg",
  26937. extra: 922 / 862,
  26938. bottom: 42.4 / 965
  26939. }
  26940. },
  26941. },
  26942. [
  26943. {
  26944. name: "Normal",
  26945. height: math.unit(6 + 4 / 12, "feet")
  26946. },
  26947. {
  26948. name: "Treasured",
  26949. height: math.unit(18 + 9 / 12, "feet"),
  26950. default: true
  26951. },
  26952. {
  26953. name: "Macro",
  26954. height: math.unit(900, "feet")
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26960. {
  26961. front: {
  26962. height: math.unit(6 + 4 / 12, "feet"),
  26963. weight: math.unit(325, "lb"),
  26964. name: "Front",
  26965. image: {
  26966. source: "./media/characters/balina-amarini/front.svg",
  26967. extra: 415 / 403,
  26968. bottom: 19 / 433.4
  26969. }
  26970. },
  26971. back: {
  26972. height: math.unit(6 + 4 / 12, "feet"),
  26973. weight: math.unit(325, "lb"),
  26974. name: "Back",
  26975. image: {
  26976. source: "./media/characters/balina-amarini/back.svg",
  26977. extra: 415 / 403,
  26978. bottom: 13.5 / 432
  26979. }
  26980. },
  26981. overdrive: {
  26982. height: math.unit(6 + 4 / 12, "feet"),
  26983. weight: math.unit(400, "lb"),
  26984. name: "Overdrive",
  26985. image: {
  26986. source: "./media/characters/balina-amarini/overdrive.svg",
  26987. extra: 269 / 259,
  26988. bottom: 12 / 282
  26989. }
  26990. },
  26991. },
  26992. [
  26993. {
  26994. name: "Boom",
  26995. height: math.unit(9 + 10 / 12, "feet"),
  26996. default: true
  26997. },
  26998. {
  26999. name: "Macro",
  27000. height: math.unit(280, "feet")
  27001. },
  27002. ]
  27003. ))
  27004. characterMakers.push(() => makeCharacter(
  27005. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27006. {
  27007. goddess: {
  27008. height: math.unit(600, "feet"),
  27009. weight: math.unit(2000000, "tons"),
  27010. name: "Goddess",
  27011. image: {
  27012. source: "./media/characters/lady-kubwa/goddess.svg",
  27013. extra: 1240.5 / 1223,
  27014. bottom: 22 / 1263
  27015. }
  27016. },
  27017. goddesser: {
  27018. height: math.unit(900, "feet"),
  27019. weight: math.unit(20000000, "lb"),
  27020. name: "Goddess-er",
  27021. image: {
  27022. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27023. extra: 899 / 888,
  27024. bottom: 12.6 / 912
  27025. }
  27026. },
  27027. },
  27028. [
  27029. {
  27030. name: "Macro",
  27031. height: math.unit(600, "feet"),
  27032. default: true
  27033. },
  27034. {
  27035. name: "Megamacro",
  27036. height: math.unit(250, "miles")
  27037. },
  27038. ]
  27039. ))
  27040. characterMakers.push(() => makeCharacter(
  27041. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27042. {
  27043. front: {
  27044. height: math.unit(7 + 7 / 12, "feet"),
  27045. weight: math.unit(250, "lb"),
  27046. name: "Front",
  27047. image: {
  27048. source: "./media/characters/tala-grovehorn/front.svg",
  27049. extra: 2636 / 2525,
  27050. bottom: 147 / 2781
  27051. }
  27052. },
  27053. back: {
  27054. height: math.unit(7 + 7 / 12, "feet"),
  27055. weight: math.unit(250, "lb"),
  27056. name: "Back",
  27057. image: {
  27058. source: "./media/characters/tala-grovehorn/back.svg",
  27059. extra: 2635 / 2539,
  27060. bottom: 100 / 2732.8
  27061. }
  27062. },
  27063. mouth: {
  27064. height: math.unit(1.15, "feet"),
  27065. name: "Mouth",
  27066. image: {
  27067. source: "./media/characters/tala-grovehorn/mouth.svg"
  27068. }
  27069. },
  27070. dick: {
  27071. height: math.unit(2.36, "feet"),
  27072. name: "Dick",
  27073. image: {
  27074. source: "./media/characters/tala-grovehorn/dick.svg"
  27075. }
  27076. },
  27077. slit: {
  27078. height: math.unit(0.61, "feet"),
  27079. name: "Slit",
  27080. image: {
  27081. source: "./media/characters/tala-grovehorn/slit.svg"
  27082. }
  27083. },
  27084. },
  27085. [
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27090. {
  27091. front: {
  27092. height: math.unit(7 + 7 / 12, "feet"),
  27093. weight: math.unit(225, "lb"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/epona/front.svg",
  27097. extra: 2445 / 2290,
  27098. bottom: 251 / 2696
  27099. }
  27100. },
  27101. back: {
  27102. height: math.unit(7 + 7 / 12, "feet"),
  27103. weight: math.unit(225, "lb"),
  27104. name: "Back",
  27105. image: {
  27106. source: "./media/characters/epona/back.svg",
  27107. extra: 2546 / 2408,
  27108. bottom: 44 / 2589
  27109. }
  27110. },
  27111. genitals: {
  27112. height: math.unit(1.5, "feet"),
  27113. name: "Genitals",
  27114. image: {
  27115. source: "./media/characters/epona/genitals.svg"
  27116. }
  27117. },
  27118. },
  27119. [
  27120. {
  27121. name: "Normal",
  27122. height: math.unit(7 + 7 / 12, "feet"),
  27123. default: true
  27124. },
  27125. ]
  27126. ))
  27127. characterMakers.push(() => makeCharacter(
  27128. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27129. {
  27130. front: {
  27131. height: math.unit(7, "feet"),
  27132. weight: math.unit(518, "lb"),
  27133. name: "Front",
  27134. image: {
  27135. source: "./media/characters/avia-bloodbourn/front.svg",
  27136. extra: 1466 / 1350,
  27137. bottom: 65 / 1527
  27138. }
  27139. },
  27140. },
  27141. [
  27142. ]
  27143. ))
  27144. characterMakers.push(() => makeCharacter(
  27145. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27146. {
  27147. front: {
  27148. height: math.unit(9.35, "feet"),
  27149. weight: math.unit(600, "lb"),
  27150. name: "Front",
  27151. image: {
  27152. source: "./media/characters/amera/front.svg",
  27153. extra: 891 / 818,
  27154. bottom: 30 / 922.7
  27155. }
  27156. },
  27157. back: {
  27158. height: math.unit(9.35, "feet"),
  27159. weight: math.unit(600, "lb"),
  27160. name: "Back",
  27161. image: {
  27162. source: "./media/characters/amera/back.svg",
  27163. extra: 876 / 824,
  27164. bottom: 6.8 / 884
  27165. }
  27166. },
  27167. dick: {
  27168. height: math.unit(2.14, "feet"),
  27169. name: "Dick",
  27170. image: {
  27171. source: "./media/characters/amera/dick.svg"
  27172. }
  27173. },
  27174. },
  27175. [
  27176. {
  27177. name: "Normal",
  27178. height: math.unit(9.35, "feet"),
  27179. default: true
  27180. },
  27181. ]
  27182. ))
  27183. characterMakers.push(() => makeCharacter(
  27184. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27185. {
  27186. kneeling: {
  27187. height: math.unit(3 + 4 / 12, "feet"),
  27188. weight: math.unit(90, "lb"),
  27189. name: "Kneeling",
  27190. image: {
  27191. source: "./media/characters/rosewen/kneeling.svg",
  27192. extra: 1835 / 1571,
  27193. bottom: 27.7 / 1862
  27194. }
  27195. },
  27196. },
  27197. [
  27198. {
  27199. name: "Normal",
  27200. height: math.unit(3 + 4 / 12, "feet"),
  27201. default: true
  27202. },
  27203. ]
  27204. ))
  27205. characterMakers.push(() => makeCharacter(
  27206. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27207. {
  27208. front: {
  27209. height: math.unit(5 + 10 / 12, "feet"),
  27210. weight: math.unit(200, "lb"),
  27211. name: "Front",
  27212. image: {
  27213. source: "./media/characters/sabah/front.svg",
  27214. extra: 849 / 763,
  27215. bottom: 33.9 / 881
  27216. }
  27217. },
  27218. },
  27219. [
  27220. {
  27221. name: "Normal",
  27222. height: math.unit(5 + 10 / 12, "feet"),
  27223. default: true
  27224. },
  27225. ]
  27226. ))
  27227. characterMakers.push(() => makeCharacter(
  27228. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27229. {
  27230. front: {
  27231. height: math.unit(3 + 5 / 12, "feet"),
  27232. weight: math.unit(40, "kg"),
  27233. name: "Front",
  27234. image: {
  27235. source: "./media/characters/purple-flame/front.svg",
  27236. extra: 1577 / 1412,
  27237. bottom: 97 / 1694
  27238. }
  27239. },
  27240. frontDressed: {
  27241. height: math.unit(3 + 5 / 12, "feet"),
  27242. weight: math.unit(40, "kg"),
  27243. name: "Front (Dressed)",
  27244. image: {
  27245. source: "./media/characters/purple-flame/front-dressed.svg",
  27246. extra: 1577 / 1412,
  27247. bottom: 97 / 1694
  27248. }
  27249. },
  27250. headphones: {
  27251. height: math.unit(0.85, "feet"),
  27252. name: "Headphones",
  27253. image: {
  27254. source: "./media/characters/purple-flame/headphones.svg"
  27255. }
  27256. },
  27257. },
  27258. [
  27259. {
  27260. name: "Really Small",
  27261. height: math.unit(5, "cm")
  27262. },
  27263. {
  27264. name: "Micro",
  27265. height: math.unit(1 + 5 / 12, "feet")
  27266. },
  27267. {
  27268. name: "Normal",
  27269. height: math.unit(3 + 5 / 12, "feet"),
  27270. default: true
  27271. },
  27272. {
  27273. name: "Minimacro",
  27274. height: math.unit(125, "feet")
  27275. },
  27276. {
  27277. name: "Macro",
  27278. height: math.unit(0.5, "miles")
  27279. },
  27280. {
  27281. name: "Megamacro",
  27282. height: math.unit(50, "miles")
  27283. },
  27284. {
  27285. name: "Gigantic",
  27286. height: math.unit(750, "miles")
  27287. },
  27288. {
  27289. name: "Planetary",
  27290. height: math.unit(15000, "miles")
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27296. {
  27297. front: {
  27298. height: math.unit(14, "feet"),
  27299. weight: math.unit(959, "lb"),
  27300. name: "Front",
  27301. image: {
  27302. source: "./media/characters/arsenal/front.svg",
  27303. extra: 2357 / 2157,
  27304. bottom: 93 / 2458
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Normal",
  27311. height: math.unit(14, "feet"),
  27312. default: true
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27318. {
  27319. front: {
  27320. height: math.unit(6, "feet"),
  27321. weight: math.unit(150, "lb"),
  27322. name: "Front",
  27323. image: {
  27324. source: "./media/characters/adira/front.svg",
  27325. extra: 1078 / 1029,
  27326. bottom: 87 / 1166
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Micro",
  27333. height: math.unit(4, "inches"),
  27334. default: true
  27335. },
  27336. {
  27337. name: "Macro",
  27338. height: math.unit(50, "feet")
  27339. },
  27340. ]
  27341. ))
  27342. characterMakers.push(() => makeCharacter(
  27343. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27344. {
  27345. front: {
  27346. height: math.unit(16, "feet"),
  27347. weight: math.unit(1000, "lb"),
  27348. name: "Front",
  27349. image: {
  27350. source: "./media/characters/grim/front.svg",
  27351. extra: 622 / 614,
  27352. bottom: 18.1 / 642
  27353. }
  27354. },
  27355. back: {
  27356. height: math.unit(16, "feet"),
  27357. weight: math.unit(1000, "lb"),
  27358. name: "Back",
  27359. image: {
  27360. source: "./media/characters/grim/back.svg",
  27361. extra: 610.6 / 602,
  27362. bottom: 40.8 / 652
  27363. }
  27364. },
  27365. hunched: {
  27366. height: math.unit(9.75, "feet"),
  27367. weight: math.unit(1000, "lb"),
  27368. name: "Hunched",
  27369. image: {
  27370. source: "./media/characters/grim/hunched.svg",
  27371. extra: 304 / 297,
  27372. bottom: 35.4 / 394
  27373. }
  27374. },
  27375. },
  27376. [
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(16, "feet"),
  27380. default: true
  27381. },
  27382. ]
  27383. ))
  27384. characterMakers.push(() => makeCharacter(
  27385. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27386. {
  27387. front: {
  27388. height: math.unit(2.3, "meters"),
  27389. weight: math.unit(300, "lb"),
  27390. name: "Front",
  27391. image: {
  27392. source: "./media/characters/sinja/front-sfw.svg",
  27393. extra: 1393 / 1294,
  27394. bottom: 70 / 1463
  27395. }
  27396. },
  27397. frontNsfw: {
  27398. height: math.unit(2.3, "meters"),
  27399. weight: math.unit(300, "lb"),
  27400. name: "Front (NSFW)",
  27401. image: {
  27402. source: "./media/characters/sinja/front-nsfw.svg",
  27403. extra: 1393 / 1294,
  27404. bottom: 70 / 1463
  27405. }
  27406. },
  27407. back: {
  27408. height: math.unit(2.3, "meters"),
  27409. weight: math.unit(300, "lb"),
  27410. name: "Back",
  27411. image: {
  27412. source: "./media/characters/sinja/back.svg",
  27413. extra: 1393 / 1294,
  27414. bottom: 70 / 1463
  27415. }
  27416. },
  27417. head: {
  27418. height: math.unit(1.771, "feet"),
  27419. name: "Head",
  27420. image: {
  27421. source: "./media/characters/sinja/head.svg"
  27422. }
  27423. },
  27424. slit: {
  27425. height: math.unit(0.8, "feet"),
  27426. name: "Slit",
  27427. image: {
  27428. source: "./media/characters/sinja/slit.svg"
  27429. }
  27430. },
  27431. },
  27432. [
  27433. {
  27434. name: "Normal",
  27435. height: math.unit(2.3, "meters")
  27436. },
  27437. {
  27438. name: "Macro",
  27439. height: math.unit(91, "meters"),
  27440. default: true
  27441. },
  27442. {
  27443. name: "Megamacro",
  27444. height: math.unit(91440, "meters")
  27445. },
  27446. {
  27447. name: "Gigamacro",
  27448. height: math.unit(60960000, "meters")
  27449. },
  27450. {
  27451. name: "Teramacro",
  27452. height: math.unit(9144000000, "meters")
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27458. {
  27459. front: {
  27460. height: math.unit(1.7, "meters"),
  27461. weight: math.unit(130, "lb"),
  27462. name: "Front",
  27463. image: {
  27464. source: "./media/characters/kyu/front.svg",
  27465. extra: 415 / 395,
  27466. bottom: 5 / 420
  27467. }
  27468. },
  27469. head: {
  27470. height: math.unit(1.75, "feet"),
  27471. name: "Head",
  27472. image: {
  27473. source: "./media/characters/kyu/head.svg"
  27474. }
  27475. },
  27476. foot: {
  27477. height: math.unit(0.81, "feet"),
  27478. name: "Foot",
  27479. image: {
  27480. source: "./media/characters/kyu/foot.svg"
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Normal",
  27487. height: math.unit(1.7, "meters")
  27488. },
  27489. {
  27490. name: "Macro",
  27491. height: math.unit(131, "feet"),
  27492. default: true
  27493. },
  27494. {
  27495. name: "Megamacro",
  27496. height: math.unit(91440, "meters")
  27497. },
  27498. {
  27499. name: "Gigamacro",
  27500. height: math.unit(60960000, "meters")
  27501. },
  27502. {
  27503. name: "Teramacro",
  27504. height: math.unit(9144000000, "meters")
  27505. },
  27506. ]
  27507. ))
  27508. characterMakers.push(() => makeCharacter(
  27509. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27510. {
  27511. front: {
  27512. height: math.unit(7 + 1 / 12, "feet"),
  27513. weight: math.unit(250, "lb"),
  27514. name: "Front",
  27515. image: {
  27516. source: "./media/characters/joey/front.svg",
  27517. extra: 1791 / 1537,
  27518. bottom: 28 / 1816
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Micro",
  27525. height: math.unit(3, "inches")
  27526. },
  27527. {
  27528. name: "Normal",
  27529. height: math.unit(7 + 1 / 12, "feet"),
  27530. default: true
  27531. },
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27536. {
  27537. front: {
  27538. height: math.unit(165, "cm"),
  27539. weight: math.unit(140, "lb"),
  27540. name: "Front",
  27541. image: {
  27542. source: "./media/characters/sam-evans/front.svg",
  27543. extra: 3417 / 3230,
  27544. bottom: 41.3 / 3417
  27545. }
  27546. },
  27547. frontSixTails: {
  27548. height: math.unit(165, "cm"),
  27549. weight: math.unit(140, "lb"),
  27550. name: "Front-six-tails",
  27551. image: {
  27552. source: "./media/characters/sam-evans/front-six-tails.svg",
  27553. extra: 3417 / 3230,
  27554. bottom: 41.3 / 3417
  27555. }
  27556. },
  27557. back: {
  27558. height: math.unit(165, "cm"),
  27559. weight: math.unit(140, "lb"),
  27560. name: "Back",
  27561. image: {
  27562. source: "./media/characters/sam-evans/back.svg",
  27563. extra: 3227 / 3032,
  27564. bottom: 6.8 / 3234
  27565. }
  27566. },
  27567. face: {
  27568. height: math.unit(0.68, "feet"),
  27569. name: "Face",
  27570. image: {
  27571. source: "./media/characters/sam-evans/face.svg"
  27572. }
  27573. },
  27574. },
  27575. [
  27576. {
  27577. name: "Normal",
  27578. height: math.unit(165, "cm"),
  27579. default: true
  27580. },
  27581. {
  27582. name: "Macro",
  27583. height: math.unit(100, "meters")
  27584. },
  27585. {
  27586. name: "Macro+",
  27587. height: math.unit(800, "meters")
  27588. },
  27589. {
  27590. name: "Macro++",
  27591. height: math.unit(3, "km")
  27592. },
  27593. {
  27594. name: "Macro+++",
  27595. height: math.unit(30, "km")
  27596. },
  27597. ]
  27598. ))
  27599. characterMakers.push(() => makeCharacter(
  27600. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27601. {
  27602. front: {
  27603. height: math.unit(10, "feet"),
  27604. weight: math.unit(750, "lb"),
  27605. name: "Front",
  27606. image: {
  27607. source: "./media/characters/juliet-a/front.svg",
  27608. extra: 1766 / 1720,
  27609. bottom: 43 / 1809
  27610. }
  27611. },
  27612. back: {
  27613. height: math.unit(10, "feet"),
  27614. weight: math.unit(750, "lb"),
  27615. name: "Back",
  27616. image: {
  27617. source: "./media/characters/juliet-a/back.svg",
  27618. extra: 1781 / 1734,
  27619. bottom: 35 / 1810,
  27620. }
  27621. },
  27622. },
  27623. [
  27624. {
  27625. name: "Normal",
  27626. height: math.unit(10, "feet"),
  27627. default: true
  27628. },
  27629. {
  27630. name: "Dragon Form",
  27631. height: math.unit(250, "feet")
  27632. },
  27633. {
  27634. name: "Macro",
  27635. height: math.unit(1000, "feet")
  27636. },
  27637. {
  27638. name: "Megamacro",
  27639. height: math.unit(10000, "feet")
  27640. }
  27641. ]
  27642. ))
  27643. characterMakers.push(() => makeCharacter(
  27644. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27645. {
  27646. regular: {
  27647. height: math.unit(7 + 3 / 12, "feet"),
  27648. weight: math.unit(260, "lb"),
  27649. name: "Regular",
  27650. image: {
  27651. source: "./media/characters/wild/regular.svg",
  27652. extra: 97.45 / 92,
  27653. bottom: 6.8 / 104.3
  27654. }
  27655. },
  27656. biggums: {
  27657. height: math.unit(8 + 6 / 12, "feet"),
  27658. weight: math.unit(425, "lb"),
  27659. name: "Biggums",
  27660. image: {
  27661. source: "./media/characters/wild/biggums.svg",
  27662. extra: 97.45 / 92,
  27663. bottom: 7.5 / 132.34
  27664. }
  27665. },
  27666. mawRegular: {
  27667. height: math.unit(1.24, "feet"),
  27668. name: "Maw (Regular)",
  27669. image: {
  27670. source: "./media/characters/wild/maw.svg"
  27671. }
  27672. },
  27673. mawBiggums: {
  27674. height: math.unit(1.47, "feet"),
  27675. name: "Maw (Biggums)",
  27676. image: {
  27677. source: "./media/characters/wild/maw.svg"
  27678. }
  27679. },
  27680. },
  27681. [
  27682. {
  27683. name: "Normal",
  27684. height: math.unit(7 + 3 / 12, "feet"),
  27685. default: true
  27686. },
  27687. ]
  27688. ))
  27689. characterMakers.push(() => makeCharacter(
  27690. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27691. {
  27692. front: {
  27693. height: math.unit(2.5, "meters"),
  27694. weight: math.unit(200, "kg"),
  27695. name: "Front",
  27696. image: {
  27697. source: "./media/characters/vidar/front.svg",
  27698. extra: 2994 / 2795,
  27699. bottom: 56 / 3061
  27700. }
  27701. },
  27702. back: {
  27703. height: math.unit(2.5, "meters"),
  27704. weight: math.unit(200, "kg"),
  27705. name: "Back",
  27706. image: {
  27707. source: "./media/characters/vidar/back.svg",
  27708. extra: 3131 / 2928,
  27709. bottom: 13.5 / 3141.5
  27710. }
  27711. },
  27712. feral: {
  27713. height: math.unit(2.5, "meters"),
  27714. weight: math.unit(2000, "kg"),
  27715. name: "Feral",
  27716. image: {
  27717. source: "./media/characters/vidar/feral.svg",
  27718. extra: 2790 / 1765,
  27719. bottom: 6 / 2796
  27720. }
  27721. },
  27722. },
  27723. [
  27724. {
  27725. name: "Normal",
  27726. height: math.unit(2.5, "meters"),
  27727. default: true
  27728. },
  27729. {
  27730. name: "Macro",
  27731. height: math.unit(100, "meters")
  27732. },
  27733. ]
  27734. ))
  27735. characterMakers.push(() => makeCharacter(
  27736. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27737. {
  27738. front: {
  27739. height: math.unit(5 + 9 / 12, "feet"),
  27740. weight: math.unit(120, "lb"),
  27741. name: "Front",
  27742. image: {
  27743. source: "./media/characters/ash/front.svg",
  27744. extra: 2189 / 1961,
  27745. bottom: 5.2 / 2194
  27746. }
  27747. },
  27748. },
  27749. [
  27750. {
  27751. name: "Normal",
  27752. height: math.unit(5 + 9 / 12, "feet"),
  27753. default: true
  27754. },
  27755. ]
  27756. ))
  27757. characterMakers.push(() => makeCharacter(
  27758. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27759. {
  27760. front: {
  27761. height: math.unit(9, "feet"),
  27762. weight: math.unit(10000, "lb"),
  27763. name: "Front",
  27764. image: {
  27765. source: "./media/characters/gygabite/front.svg",
  27766. bottom: 31.7 / 537.8,
  27767. extra: 505 / 370
  27768. }
  27769. },
  27770. },
  27771. [
  27772. {
  27773. name: "Normal",
  27774. height: math.unit(9, "feet"),
  27775. default: true
  27776. },
  27777. ]
  27778. ))
  27779. characterMakers.push(() => makeCharacter(
  27780. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27781. {
  27782. front: {
  27783. height: math.unit(12, "feet"),
  27784. weight: math.unit(35000, "lb"),
  27785. name: "Front",
  27786. image: {
  27787. source: "./media/characters/p0tat0/front.svg",
  27788. extra: 1065 / 921,
  27789. bottom: 55.7 / 1121.25
  27790. }
  27791. },
  27792. },
  27793. [
  27794. {
  27795. name: "Normal",
  27796. height: math.unit(12, "feet"),
  27797. default: true
  27798. },
  27799. ]
  27800. ))
  27801. characterMakers.push(() => makeCharacter(
  27802. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27803. {
  27804. side: {
  27805. height: math.unit(6.5, "feet"),
  27806. weight: math.unit(800, "lb"),
  27807. name: "Side",
  27808. image: {
  27809. source: "./media/characters/dusk/side.svg",
  27810. extra: 615 / 373,
  27811. bottom: 53 / 664
  27812. }
  27813. },
  27814. sitting: {
  27815. height: math.unit(7, "feet"),
  27816. weight: math.unit(800, "lb"),
  27817. name: "Sitting",
  27818. image: {
  27819. source: "./media/characters/dusk/sitting.svg",
  27820. extra: 753 / 425,
  27821. bottom: 33 / 774
  27822. }
  27823. },
  27824. head: {
  27825. height: math.unit(6.1, "feet"),
  27826. name: "Head",
  27827. image: {
  27828. source: "./media/characters/dusk/head.svg"
  27829. }
  27830. },
  27831. },
  27832. [
  27833. {
  27834. name: "Normal",
  27835. height: math.unit(7, "feet"),
  27836. default: true
  27837. },
  27838. ]
  27839. ))
  27840. characterMakers.push(() => makeCharacter(
  27841. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27842. {
  27843. front: {
  27844. height: math.unit(15, "feet"),
  27845. weight: math.unit(7000, "lb"),
  27846. name: "Front",
  27847. image: {
  27848. source: "./media/characters/jay-direwolf/front.svg",
  27849. extra: 1810 / 1732,
  27850. bottom: 66 / 1892
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Normal",
  27857. height: math.unit(15, "feet"),
  27858. default: true
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27864. {
  27865. front: {
  27866. height: math.unit(4 + 9 / 12, "feet"),
  27867. weight: math.unit(130, "lb"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/anchovie/front.svg",
  27871. extra: 382 / 350,
  27872. bottom: 25 / 409
  27873. }
  27874. },
  27875. back: {
  27876. height: math.unit(4 + 9 / 12, "feet"),
  27877. weight: math.unit(130, "lb"),
  27878. name: "Back",
  27879. image: {
  27880. source: "./media/characters/anchovie/back.svg",
  27881. extra: 385 / 352,
  27882. bottom: 16.6 / 402
  27883. }
  27884. },
  27885. frontDressed: {
  27886. height: math.unit(4 + 9 / 12, "feet"),
  27887. weight: math.unit(130, "lb"),
  27888. name: "Front (Dressed)",
  27889. image: {
  27890. source: "./media/characters/anchovie/front-dressed.svg",
  27891. extra: 382 / 350,
  27892. bottom: 25 / 409
  27893. }
  27894. },
  27895. backDressed: {
  27896. height: math.unit(4 + 9 / 12, "feet"),
  27897. weight: math.unit(130, "lb"),
  27898. name: "Back (Dressed)",
  27899. image: {
  27900. source: "./media/characters/anchovie/back-dressed.svg",
  27901. extra: 385 / 352,
  27902. bottom: 16.6 / 402
  27903. }
  27904. },
  27905. },
  27906. [
  27907. {
  27908. name: "Micro",
  27909. height: math.unit(6.4, "inches")
  27910. },
  27911. {
  27912. name: "Normal",
  27913. height: math.unit(4 + 9 / 12, "feet"),
  27914. default: true
  27915. },
  27916. ]
  27917. ))
  27918. characterMakers.push(() => makeCharacter(
  27919. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27920. {
  27921. front: {
  27922. height: math.unit(2, "meters"),
  27923. weight: math.unit(180, "lb"),
  27924. name: "Front",
  27925. image: {
  27926. source: "./media/characters/acidrenamon/front.svg",
  27927. extra: 987 / 890,
  27928. bottom: 22.8 / 1009
  27929. }
  27930. },
  27931. back: {
  27932. height: math.unit(2, "meters"),
  27933. weight: math.unit(180, "lb"),
  27934. name: "Back",
  27935. image: {
  27936. source: "./media/characters/acidrenamon/back.svg",
  27937. extra: 983 / 891,
  27938. bottom: 8.4 / 992
  27939. }
  27940. },
  27941. head: {
  27942. height: math.unit(1.92, "feet"),
  27943. name: "Head",
  27944. image: {
  27945. source: "./media/characters/acidrenamon/head.svg"
  27946. }
  27947. },
  27948. rump: {
  27949. height: math.unit(1.72, "feet"),
  27950. name: "Rump",
  27951. image: {
  27952. source: "./media/characters/acidrenamon/rump.svg"
  27953. }
  27954. },
  27955. tail: {
  27956. height: math.unit(4.2, "feet"),
  27957. name: "Tail",
  27958. image: {
  27959. source: "./media/characters/acidrenamon/tail.svg"
  27960. }
  27961. },
  27962. },
  27963. [
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(2, "meters"),
  27967. default: true
  27968. },
  27969. {
  27970. name: "Minimacro",
  27971. height: math.unit(7, "meters")
  27972. },
  27973. {
  27974. name: "Macro",
  27975. height: math.unit(200, "meters")
  27976. },
  27977. {
  27978. name: "Gigamacro",
  27979. height: math.unit(0.2, "earths")
  27980. },
  27981. ]
  27982. ))
  27983. characterMakers.push(() => makeCharacter(
  27984. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27985. {
  27986. front: {
  27987. height: math.unit(152, "feet"),
  27988. name: "Front",
  27989. image: {
  27990. source: "./media/characters/kenzie-lee/front.svg",
  27991. extra: 1869/1774,
  27992. bottom: 128/1997
  27993. }
  27994. },
  27995. side: {
  27996. height: math.unit(86, "feet"),
  27997. name: "Side",
  27998. image: {
  27999. source: "./media/characters/kenzie-lee/side.svg",
  28000. extra: 930/815,
  28001. bottom: 177/1107
  28002. }
  28003. },
  28004. paw: {
  28005. height: math.unit(15, "feet"),
  28006. name: "Paw",
  28007. image: {
  28008. source: "./media/characters/kenzie-lee/paw.svg"
  28009. }
  28010. },
  28011. },
  28012. [
  28013. {
  28014. name: "Micro",
  28015. height: math.unit(1.5, "inches")
  28016. },
  28017. {
  28018. name: "Normal",
  28019. height: math.unit(152, "feet"),
  28020. default: true
  28021. },
  28022. {
  28023. name: "Megamacro",
  28024. height: math.unit(7, "miles")
  28025. },
  28026. {
  28027. name: "Gigamacro",
  28028. height: math.unit(8000, "miles")
  28029. },
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28034. {
  28035. side: {
  28036. height: math.unit(6, "feet"),
  28037. weight: math.unit(150, "lb"),
  28038. name: "Side",
  28039. image: {
  28040. source: "./media/characters/withers/side.svg",
  28041. extra: 1830 / 1728,
  28042. bottom: 96 / 1927
  28043. }
  28044. },
  28045. front: {
  28046. height: math.unit(6, "feet"),
  28047. weight: math.unit(150, "lb"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/withers/front.svg",
  28051. extra: 1514 / 1438,
  28052. bottom: 118 / 1632
  28053. }
  28054. },
  28055. },
  28056. [
  28057. {
  28058. name: "Macro",
  28059. height: math.unit(168, "feet"),
  28060. default: true
  28061. },
  28062. {
  28063. name: "Megamacro",
  28064. height: math.unit(15, "miles")
  28065. }
  28066. ]
  28067. ))
  28068. characterMakers.push(() => makeCharacter(
  28069. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28070. {
  28071. front: {
  28072. height: math.unit(6 + 7 / 12, "feet"),
  28073. weight: math.unit(250, "lb"),
  28074. name: "Front",
  28075. image: {
  28076. source: "./media/characters/nemoskii/front.svg",
  28077. extra: 2270 / 1734,
  28078. bottom: 86 / 2354
  28079. }
  28080. },
  28081. back: {
  28082. height: math.unit(6 + 7 / 12, "feet"),
  28083. weight: math.unit(250, "lb"),
  28084. name: "Back",
  28085. image: {
  28086. source: "./media/characters/nemoskii/back.svg",
  28087. extra: 1845 / 1788,
  28088. bottom: 10.5 / 1852
  28089. }
  28090. },
  28091. head: {
  28092. height: math.unit(1.31, "feet"),
  28093. name: "Head",
  28094. image: {
  28095. source: "./media/characters/nemoskii/head.svg"
  28096. }
  28097. },
  28098. },
  28099. [
  28100. {
  28101. name: "Micro",
  28102. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28103. },
  28104. {
  28105. name: "Normal",
  28106. height: math.unit(6 + 7 / 12, "feet"),
  28107. default: true
  28108. },
  28109. {
  28110. name: "Macro",
  28111. height: math.unit((6 + 7 / 12) * 150, "feet")
  28112. },
  28113. {
  28114. name: "Macro+",
  28115. height: math.unit((6 + 7 / 12) * 500, "feet")
  28116. },
  28117. {
  28118. name: "Megamacro",
  28119. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28120. },
  28121. ]
  28122. ))
  28123. characterMakers.push(() => makeCharacter(
  28124. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28125. {
  28126. front: {
  28127. height: math.unit(1, "mile"),
  28128. weight: math.unit(265261.9, "lb"),
  28129. name: "Front",
  28130. image: {
  28131. source: "./media/characters/shui/front.svg",
  28132. extra: 1633 / 1564,
  28133. bottom: 91.5 / 1726
  28134. }
  28135. },
  28136. },
  28137. [
  28138. {
  28139. name: "Macro",
  28140. height: math.unit(1, "mile"),
  28141. default: true
  28142. },
  28143. ]
  28144. ))
  28145. characterMakers.push(() => makeCharacter(
  28146. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28147. {
  28148. front: {
  28149. height: math.unit(12 + 6 / 12, "feet"),
  28150. weight: math.unit(1342, "lb"),
  28151. name: "Front",
  28152. image: {
  28153. source: "./media/characters/arokh-takakura/front.svg",
  28154. extra: 1089 / 1043,
  28155. bottom: 77.4 / 1176.7
  28156. }
  28157. },
  28158. back: {
  28159. height: math.unit(12 + 6 / 12, "feet"),
  28160. weight: math.unit(1342, "lb"),
  28161. name: "Back",
  28162. image: {
  28163. source: "./media/characters/arokh-takakura/back.svg",
  28164. extra: 1046 / 1019,
  28165. bottom: 102 / 1150
  28166. }
  28167. },
  28168. },
  28169. [
  28170. {
  28171. name: "Big",
  28172. height: math.unit(12 + 6 / 12, "feet"),
  28173. default: true
  28174. },
  28175. ]
  28176. ))
  28177. characterMakers.push(() => makeCharacter(
  28178. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28179. {
  28180. front: {
  28181. height: math.unit(5 + 6 / 12, "feet"),
  28182. weight: math.unit(150, "lb"),
  28183. name: "Front",
  28184. image: {
  28185. source: "./media/characters/theo/front.svg",
  28186. extra: 1184 / 1131,
  28187. bottom: 7.4 / 1191
  28188. }
  28189. },
  28190. },
  28191. [
  28192. {
  28193. name: "Micro",
  28194. height: math.unit(5, "inches")
  28195. },
  28196. {
  28197. name: "Normal",
  28198. height: math.unit(5 + 6 / 12, "feet"),
  28199. default: true
  28200. },
  28201. ]
  28202. ))
  28203. characterMakers.push(() => makeCharacter(
  28204. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28205. {
  28206. front: {
  28207. height: math.unit(5 + 9 / 12, "feet"),
  28208. weight: math.unit(130, "lb"),
  28209. name: "Front",
  28210. image: {
  28211. source: "./media/characters/cecelia-swift/front.svg",
  28212. extra: 502 / 484,
  28213. bottom: 23 / 523
  28214. }
  28215. },
  28216. back: {
  28217. height: math.unit(5 + 9 / 12, "feet"),
  28218. weight: math.unit(130, "lb"),
  28219. name: "Back",
  28220. image: {
  28221. source: "./media/characters/cecelia-swift/back.svg",
  28222. extra: 499 / 485,
  28223. bottom: 12 / 511
  28224. }
  28225. },
  28226. head: {
  28227. height: math.unit(0.90, "feet"),
  28228. name: "Head",
  28229. image: {
  28230. source: "./media/characters/cecelia-swift/head.svg"
  28231. }
  28232. },
  28233. rump: {
  28234. height: math.unit(1.75, "feet"),
  28235. name: "Rump",
  28236. image: {
  28237. source: "./media/characters/cecelia-swift/rump.svg"
  28238. }
  28239. },
  28240. },
  28241. [
  28242. {
  28243. name: "Normal",
  28244. height: math.unit(5 + 9 / 12, "feet"),
  28245. default: true
  28246. },
  28247. {
  28248. name: "Big",
  28249. height: math.unit(50, "feet")
  28250. },
  28251. {
  28252. name: "Macro",
  28253. height: math.unit(100, "feet")
  28254. },
  28255. {
  28256. name: "Macro+",
  28257. height: math.unit(500, "feet")
  28258. },
  28259. {
  28260. name: "Macro++",
  28261. height: math.unit(1000, "feet")
  28262. },
  28263. ]
  28264. ))
  28265. characterMakers.push(() => makeCharacter(
  28266. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28267. {
  28268. front: {
  28269. height: math.unit(6, "feet"),
  28270. weight: math.unit(150, "lb"),
  28271. name: "Front",
  28272. image: {
  28273. source: "./media/characters/kaunan/front.svg",
  28274. extra: 2890 / 2523,
  28275. bottom: 49 / 2939
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Macro",
  28282. height: math.unit(150, "feet"),
  28283. default: true
  28284. },
  28285. ]
  28286. ))
  28287. characterMakers.push(() => makeCharacter(
  28288. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28289. {
  28290. front: {
  28291. height: math.unit(175, "cm"),
  28292. weight: math.unit(60, "kg"),
  28293. name: "Front",
  28294. image: {
  28295. source: "./media/characters/fei/front.svg",
  28296. extra: 1873/1723,
  28297. bottom: 53/1926
  28298. }
  28299. },
  28300. },
  28301. [
  28302. {
  28303. name: "Mortal",
  28304. height: math.unit(175, "cm")
  28305. },
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(3500, "m"),
  28309. default: true
  28310. },
  28311. {
  28312. name: "Stroll",
  28313. height: math.unit(17.5, "km")
  28314. },
  28315. {
  28316. name: "Showoff",
  28317. height: math.unit(175, "km")
  28318. },
  28319. ]
  28320. ))
  28321. characterMakers.push(() => makeCharacter(
  28322. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28323. {
  28324. front: {
  28325. height: math.unit(7, "feet"),
  28326. weight: math.unit(1000, "kg"),
  28327. name: "Front",
  28328. image: {
  28329. source: "./media/characters/edrax/front.svg",
  28330. extra: 2838 / 2550,
  28331. bottom: 130 / 2968
  28332. }
  28333. },
  28334. },
  28335. [
  28336. {
  28337. name: "Small",
  28338. height: math.unit(7, "feet")
  28339. },
  28340. {
  28341. name: "Normal",
  28342. height: math.unit(1500, "meters")
  28343. },
  28344. {
  28345. name: "Mega",
  28346. height: math.unit(12000000, "km"),
  28347. default: true
  28348. },
  28349. {
  28350. name: "Megamacro",
  28351. height: math.unit(10600000, "lightyears")
  28352. },
  28353. {
  28354. name: "Hypermacro",
  28355. height: math.unit(256, "yottameters")
  28356. },
  28357. ]
  28358. ))
  28359. characterMakers.push(() => makeCharacter(
  28360. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28361. {
  28362. front: {
  28363. height: math.unit(10, "feet"),
  28364. weight: math.unit(750, "lb"),
  28365. name: "Front",
  28366. image: {
  28367. source: "./media/characters/clove/front.svg",
  28368. extra: 1918/1751,
  28369. bottom: 52/1970
  28370. }
  28371. },
  28372. back: {
  28373. height: math.unit(10, "feet"),
  28374. weight: math.unit(750, "lb"),
  28375. name: "Back",
  28376. image: {
  28377. source: "./media/characters/clove/back.svg",
  28378. extra: 1912/1747,
  28379. bottom: 50/1962
  28380. }
  28381. },
  28382. },
  28383. [
  28384. {
  28385. name: "Normal",
  28386. height: math.unit(10, "feet"),
  28387. default: true
  28388. },
  28389. ]
  28390. ))
  28391. characterMakers.push(() => makeCharacter(
  28392. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28393. {
  28394. front: {
  28395. height: math.unit(4, "feet"),
  28396. weight: math.unit(50, "lb"),
  28397. name: "Front",
  28398. image: {
  28399. source: "./media/characters/alex-rabbit/front.svg",
  28400. extra: 507 / 458,
  28401. bottom: 18.5 / 527
  28402. }
  28403. },
  28404. back: {
  28405. height: math.unit(4, "feet"),
  28406. weight: math.unit(50, "lb"),
  28407. name: "Back",
  28408. image: {
  28409. source: "./media/characters/alex-rabbit/back.svg",
  28410. extra: 502 / 460,
  28411. bottom: 18.9 / 521
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Normal",
  28418. height: math.unit(4, "feet"),
  28419. default: true
  28420. },
  28421. ]
  28422. ))
  28423. characterMakers.push(() => makeCharacter(
  28424. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28425. {
  28426. front: {
  28427. height: math.unit(1 + 3 / 12, "feet"),
  28428. weight: math.unit(80, "lb"),
  28429. name: "Front",
  28430. image: {
  28431. source: "./media/characters/zander-rose/front.svg",
  28432. extra: 916 / 797,
  28433. bottom: 17 / 933
  28434. }
  28435. },
  28436. back: {
  28437. height: math.unit(1 + 3 / 12, "feet"),
  28438. weight: math.unit(80, "lb"),
  28439. name: "Back",
  28440. image: {
  28441. source: "./media/characters/zander-rose/back.svg",
  28442. extra: 903 / 779,
  28443. bottom: 31 / 934
  28444. }
  28445. },
  28446. },
  28447. [
  28448. {
  28449. name: "Normal",
  28450. height: math.unit(1 + 3 / 12, "feet"),
  28451. default: true
  28452. },
  28453. ]
  28454. ))
  28455. characterMakers.push(() => makeCharacter(
  28456. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28457. {
  28458. anthro: {
  28459. height: math.unit(6, "feet"),
  28460. weight: math.unit(150, "lb"),
  28461. name: "Anthro",
  28462. image: {
  28463. source: "./media/characters/razz/anthro.svg",
  28464. extra: 1437 / 1343,
  28465. bottom: 48 / 1485
  28466. }
  28467. },
  28468. feral: {
  28469. height: math.unit(6, "feet"),
  28470. weight: math.unit(150, "lb"),
  28471. name: "Feral",
  28472. image: {
  28473. source: "./media/characters/razz/feral.svg",
  28474. extra: 2569 / 1385,
  28475. bottom: 95 / 2664
  28476. }
  28477. },
  28478. },
  28479. [
  28480. {
  28481. name: "Normal",
  28482. height: math.unit(6, "feet"),
  28483. default: true
  28484. },
  28485. ]
  28486. ))
  28487. characterMakers.push(() => makeCharacter(
  28488. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28489. {
  28490. front: {
  28491. height: math.unit(9 + 4 / 12, "feet"),
  28492. weight: math.unit(500, "lb"),
  28493. name: "Front",
  28494. image: {
  28495. source: "./media/characters/morrigan/front.svg",
  28496. extra: 2707 / 2579,
  28497. bottom: 156 / 2863
  28498. }
  28499. },
  28500. },
  28501. [
  28502. {
  28503. name: "Normal",
  28504. height: math.unit(9 + 4 / 12, "feet"),
  28505. default: true
  28506. },
  28507. ]
  28508. ))
  28509. characterMakers.push(() => makeCharacter(
  28510. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28511. {
  28512. front: {
  28513. height: math.unit(5, "stories"),
  28514. weight: math.unit(4000, "lb"),
  28515. name: "Front",
  28516. image: {
  28517. source: "./media/characters/jenene/front.svg",
  28518. extra: 1780 / 1710,
  28519. bottom: 57 / 1837
  28520. }
  28521. },
  28522. },
  28523. [
  28524. {
  28525. name: "Normal",
  28526. height: math.unit(5, "stories"),
  28527. default: true
  28528. },
  28529. ]
  28530. ))
  28531. characterMakers.push(() => makeCharacter(
  28532. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28533. {
  28534. taurSfw: {
  28535. height: math.unit(10, "meters"),
  28536. weight: math.unit(17500, "kg"),
  28537. name: "Taur",
  28538. image: {
  28539. source: "./media/characters/faey/taur-sfw.svg",
  28540. extra: 1200 / 968,
  28541. bottom: 41 / 1241
  28542. }
  28543. },
  28544. chestmaw: {
  28545. height: math.unit(2.01, "meters"),
  28546. name: "Chestmaw",
  28547. image: {
  28548. source: "./media/characters/faey/chestmaw.svg"
  28549. }
  28550. },
  28551. foot: {
  28552. height: math.unit(2.43, "meters"),
  28553. name: "Foot",
  28554. image: {
  28555. source: "./media/characters/faey/foot.svg"
  28556. }
  28557. },
  28558. jaws: {
  28559. height: math.unit(1.66, "meters"),
  28560. name: "Jaws",
  28561. image: {
  28562. source: "./media/characters/faey/jaws.svg"
  28563. }
  28564. },
  28565. tongues: {
  28566. height: math.unit(2.01, "meters"),
  28567. name: "Tongues",
  28568. image: {
  28569. source: "./media/characters/faey/tongues.svg"
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Small",
  28576. height: math.unit(10, "meters"),
  28577. default: true
  28578. },
  28579. {
  28580. name: "Big",
  28581. height: math.unit(500000, "km")
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28587. {
  28588. front: {
  28589. height: math.unit(7, "feet"),
  28590. weight: math.unit(275, "lb"),
  28591. name: "Front",
  28592. image: {
  28593. source: "./media/characters/roku/front.svg",
  28594. extra: 903 / 878,
  28595. bottom: 37 / 940
  28596. }
  28597. },
  28598. },
  28599. [
  28600. {
  28601. name: "Normal",
  28602. height: math.unit(7, "feet"),
  28603. default: true
  28604. },
  28605. {
  28606. name: "Macro",
  28607. height: math.unit(500, "feet")
  28608. },
  28609. {
  28610. name: "Megamacro",
  28611. height: math.unit(200, "miles")
  28612. },
  28613. ]
  28614. ))
  28615. characterMakers.push(() => makeCharacter(
  28616. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28617. {
  28618. front: {
  28619. height: math.unit(6 + 2 / 12, "feet"),
  28620. weight: math.unit(150, "lb"),
  28621. name: "Front",
  28622. image: {
  28623. source: "./media/characters/lira/front.svg",
  28624. extra: 1727 / 1605,
  28625. bottom: 26 / 1753
  28626. }
  28627. },
  28628. back: {
  28629. height: math.unit(6 + 2 / 12, "feet"),
  28630. weight: math.unit(150, "lb"),
  28631. name: "Back",
  28632. image: {
  28633. source: "./media/characters/lira/back.svg",
  28634. extra: 1713/1621,
  28635. bottom: 20/1733
  28636. }
  28637. },
  28638. hand: {
  28639. height: math.unit(0.75, "feet"),
  28640. name: "Hand",
  28641. image: {
  28642. source: "./media/characters/lira/hand.svg"
  28643. }
  28644. },
  28645. maw: {
  28646. height: math.unit(0.65, "feet"),
  28647. name: "Maw",
  28648. image: {
  28649. source: "./media/characters/lira/maw.svg"
  28650. }
  28651. },
  28652. pawDigi: {
  28653. height: math.unit(1.6, "feet"),
  28654. name: "Paw Digi",
  28655. image: {
  28656. source: "./media/characters/lira/paw-digi.svg"
  28657. }
  28658. },
  28659. pawPlanti: {
  28660. height: math.unit(1.4, "feet"),
  28661. name: "Paw Planti",
  28662. image: {
  28663. source: "./media/characters/lira/paw-planti.svg"
  28664. }
  28665. },
  28666. },
  28667. [
  28668. {
  28669. name: "Normal",
  28670. height: math.unit(6 + 2 / 12, "feet"),
  28671. default: true
  28672. },
  28673. {
  28674. name: "Macro",
  28675. height: math.unit(100, "feet")
  28676. },
  28677. {
  28678. name: "Macro²",
  28679. height: math.unit(1600, "feet")
  28680. },
  28681. {
  28682. name: "Planetary",
  28683. height: math.unit(20, "earths")
  28684. },
  28685. ]
  28686. ))
  28687. characterMakers.push(() => makeCharacter(
  28688. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28689. {
  28690. front: {
  28691. height: math.unit(6, "feet"),
  28692. weight: math.unit(150, "lb"),
  28693. name: "Front",
  28694. image: {
  28695. source: "./media/characters/hadjet/front.svg",
  28696. extra: 1480 / 1346,
  28697. bottom: 26 / 1506
  28698. }
  28699. },
  28700. frontNsfw: {
  28701. height: math.unit(6, "feet"),
  28702. weight: math.unit(150, "lb"),
  28703. name: "Front (NSFW)",
  28704. image: {
  28705. source: "./media/characters/hadjet/front-nsfw.svg",
  28706. extra: 1440 / 1358,
  28707. bottom: 52 / 1492
  28708. }
  28709. },
  28710. },
  28711. [
  28712. {
  28713. name: "Macro",
  28714. height: math.unit(10, "stories"),
  28715. default: true
  28716. },
  28717. {
  28718. name: "Megamacro",
  28719. height: math.unit(1.5, "miles")
  28720. },
  28721. {
  28722. name: "Megamacro+",
  28723. height: math.unit(5, "miles")
  28724. },
  28725. ]
  28726. ))
  28727. characterMakers.push(() => makeCharacter(
  28728. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28729. {
  28730. side: {
  28731. height: math.unit(106, "feet"),
  28732. weight: math.unit(500, "tonnes"),
  28733. name: "Side",
  28734. image: {
  28735. source: "./media/characters/kodran/side.svg",
  28736. extra: 553 / 480,
  28737. bottom: 33 / 586
  28738. }
  28739. },
  28740. front: {
  28741. height: math.unit(132, "feet"),
  28742. weight: math.unit(500, "tonnes"),
  28743. name: "Front",
  28744. image: {
  28745. source: "./media/characters/kodran/front.svg",
  28746. extra: 667 / 643,
  28747. bottom: 42 / 709
  28748. }
  28749. },
  28750. flying: {
  28751. height: math.unit(350, "feet"),
  28752. weight: math.unit(500, "tonnes"),
  28753. name: "Flying",
  28754. image: {
  28755. source: "./media/characters/kodran/flying.svg"
  28756. }
  28757. },
  28758. foot: {
  28759. height: math.unit(33, "feet"),
  28760. name: "Foot",
  28761. image: {
  28762. source: "./media/characters/kodran/foot.svg"
  28763. }
  28764. },
  28765. footFront: {
  28766. height: math.unit(19, "feet"),
  28767. name: "Foot (Front)",
  28768. image: {
  28769. source: "./media/characters/kodran/foot-front.svg",
  28770. extra: 261 / 261,
  28771. bottom: 91 / 352
  28772. }
  28773. },
  28774. headFront: {
  28775. height: math.unit(53, "feet"),
  28776. name: "Head (Front)",
  28777. image: {
  28778. source: "./media/characters/kodran/head-front.svg"
  28779. }
  28780. },
  28781. headSide: {
  28782. height: math.unit(65, "feet"),
  28783. name: "Head (Side)",
  28784. image: {
  28785. source: "./media/characters/kodran/head-side.svg"
  28786. }
  28787. },
  28788. throat: {
  28789. height: math.unit(79, "feet"),
  28790. name: "Throat",
  28791. image: {
  28792. source: "./media/characters/kodran/throat.svg"
  28793. }
  28794. },
  28795. },
  28796. [
  28797. {
  28798. name: "Large",
  28799. height: math.unit(106, "feet"),
  28800. default: true
  28801. },
  28802. ]
  28803. ))
  28804. characterMakers.push(() => makeCharacter(
  28805. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28806. {
  28807. side: {
  28808. height: math.unit(11, "feet"),
  28809. weight: math.unit(150, "lb"),
  28810. name: "Side",
  28811. image: {
  28812. source: "./media/characters/pyxaron/side.svg",
  28813. extra: 305 / 195,
  28814. bottom: 17 / 322
  28815. }
  28816. },
  28817. },
  28818. [
  28819. {
  28820. name: "Normal",
  28821. height: math.unit(11, "feet"),
  28822. default: true
  28823. },
  28824. ]
  28825. ))
  28826. characterMakers.push(() => makeCharacter(
  28827. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28828. {
  28829. front: {
  28830. height: math.unit(6, "feet"),
  28831. weight: math.unit(150, "lb"),
  28832. name: "Front",
  28833. image: {
  28834. source: "./media/characters/meep/front.svg",
  28835. extra: 88 / 80,
  28836. bottom: 6 / 94
  28837. }
  28838. },
  28839. },
  28840. [
  28841. {
  28842. name: "Fun Sized",
  28843. height: math.unit(2, "inches"),
  28844. default: true
  28845. },
  28846. {
  28847. name: "Friend Sized",
  28848. height: math.unit(8, "inches")
  28849. },
  28850. ]
  28851. ))
  28852. characterMakers.push(() => makeCharacter(
  28853. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28854. {
  28855. front: {
  28856. height: math.unit(15, "feet"),
  28857. weight: math.unit(2500, "lb"),
  28858. name: "Front",
  28859. image: {
  28860. source: "./media/characters/holly-rabbit/front.svg",
  28861. extra: 1433 / 1233,
  28862. bottom: 125 / 1558
  28863. }
  28864. },
  28865. dick: {
  28866. height: math.unit(4.6, "feet"),
  28867. name: "Dick",
  28868. image: {
  28869. source: "./media/characters/holly-rabbit/dick.svg"
  28870. }
  28871. },
  28872. },
  28873. [
  28874. {
  28875. name: "Normal",
  28876. height: math.unit(15, "feet"),
  28877. default: true
  28878. },
  28879. {
  28880. name: "Macro",
  28881. height: math.unit(250, "feet")
  28882. },
  28883. {
  28884. name: "Macro+",
  28885. height: math.unit(2500, "feet")
  28886. },
  28887. ]
  28888. ))
  28889. characterMakers.push(() => makeCharacter(
  28890. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28891. {
  28892. front: {
  28893. height: math.unit(3.02, "meters"),
  28894. weight: math.unit(500, "kg"),
  28895. name: "Front",
  28896. image: {
  28897. source: "./media/characters/drena/front.svg",
  28898. extra: 282 / 243,
  28899. bottom: 8 / 290
  28900. }
  28901. },
  28902. side: {
  28903. height: math.unit(3.02, "meters"),
  28904. weight: math.unit(500, "kg"),
  28905. name: "Side",
  28906. image: {
  28907. source: "./media/characters/drena/side.svg",
  28908. extra: 280 / 245,
  28909. bottom: 10 / 290
  28910. }
  28911. },
  28912. back: {
  28913. height: math.unit(3.02, "meters"),
  28914. weight: math.unit(500, "kg"),
  28915. name: "Back",
  28916. image: {
  28917. source: "./media/characters/drena/back.svg",
  28918. extra: 278 / 243,
  28919. bottom: 2 / 280
  28920. }
  28921. },
  28922. foot: {
  28923. height: math.unit(0.75, "meters"),
  28924. name: "Foot",
  28925. image: {
  28926. source: "./media/characters/drena/foot.svg"
  28927. }
  28928. },
  28929. maw: {
  28930. height: math.unit(0.82, "meters"),
  28931. name: "Maw",
  28932. image: {
  28933. source: "./media/characters/drena/maw.svg"
  28934. }
  28935. },
  28936. rump: {
  28937. height: math.unit(0.93, "meters"),
  28938. name: "Rump",
  28939. image: {
  28940. source: "./media/characters/drena/rump.svg"
  28941. }
  28942. },
  28943. },
  28944. [
  28945. {
  28946. name: "Normal",
  28947. height: math.unit(3.02, "meters"),
  28948. default: true
  28949. },
  28950. ]
  28951. ))
  28952. characterMakers.push(() => makeCharacter(
  28953. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28954. {
  28955. front: {
  28956. height: math.unit(6 + 4 / 12, "feet"),
  28957. weight: math.unit(250, "lb"),
  28958. name: "Front",
  28959. image: {
  28960. source: "./media/characters/remmyzilla/front.svg",
  28961. extra: 4033 / 3588,
  28962. bottom: 123 / 4156
  28963. }
  28964. },
  28965. back: {
  28966. height: math.unit(6 + 4 / 12, "feet"),
  28967. weight: math.unit(250, "lb"),
  28968. name: "Back",
  28969. image: {
  28970. source: "./media/characters/remmyzilla/back.svg",
  28971. extra: 2687 / 2555,
  28972. bottom: 48 / 2735
  28973. }
  28974. },
  28975. paw: {
  28976. height: math.unit(1.73, "feet"),
  28977. name: "Paw",
  28978. image: {
  28979. source: "./media/characters/remmyzilla/paw.svg"
  28980. }
  28981. },
  28982. maw: {
  28983. height: math.unit(1.73, "feet"),
  28984. name: "Maw",
  28985. image: {
  28986. source: "./media/characters/remmyzilla/maw.svg"
  28987. }
  28988. },
  28989. },
  28990. [
  28991. {
  28992. name: "Normal",
  28993. height: math.unit(6 + 4 / 12, "feet")
  28994. },
  28995. {
  28996. name: "Minimacro",
  28997. height: math.unit(12 + 8 / 12, "feet")
  28998. },
  28999. {
  29000. name: "Normal",
  29001. height: math.unit(640, "feet"),
  29002. default: true
  29003. },
  29004. {
  29005. name: "Megamacro",
  29006. height: math.unit(6400, "feet")
  29007. },
  29008. {
  29009. name: "Gigamacro",
  29010. height: math.unit(64000, "miles")
  29011. },
  29012. ]
  29013. ))
  29014. characterMakers.push(() => makeCharacter(
  29015. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29016. {
  29017. front: {
  29018. height: math.unit(2.5, "meters"),
  29019. weight: math.unit(300, "lb"),
  29020. name: "Front",
  29021. image: {
  29022. source: "./media/characters/lawrence/front.svg",
  29023. extra: 357 / 335,
  29024. bottom: 30 / 387
  29025. }
  29026. },
  29027. back: {
  29028. height: math.unit(2.5, "meters"),
  29029. weight: math.unit(300, "lb"),
  29030. name: "Back",
  29031. image: {
  29032. source: "./media/characters/lawrence/back.svg",
  29033. extra: 357 / 338,
  29034. bottom: 16 / 373
  29035. }
  29036. },
  29037. head: {
  29038. height: math.unit(0.9, "meter"),
  29039. name: "Head",
  29040. image: {
  29041. source: "./media/characters/lawrence/head.svg"
  29042. }
  29043. },
  29044. maw: {
  29045. height: math.unit(0.7, "meter"),
  29046. name: "Maw",
  29047. image: {
  29048. source: "./media/characters/lawrence/maw.svg"
  29049. }
  29050. },
  29051. footBottom: {
  29052. height: math.unit(0.5, "meter"),
  29053. name: "Foot (Bottom)",
  29054. image: {
  29055. source: "./media/characters/lawrence/foot-bottom.svg"
  29056. }
  29057. },
  29058. footTop: {
  29059. height: math.unit(0.5, "meter"),
  29060. name: "Foot (Top)",
  29061. image: {
  29062. source: "./media/characters/lawrence/foot-top.svg"
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Normal",
  29069. height: math.unit(2.5, "meters"),
  29070. default: true
  29071. },
  29072. {
  29073. name: "Macro",
  29074. height: math.unit(95, "meters")
  29075. },
  29076. {
  29077. name: "Megamacro",
  29078. height: math.unit(150, "km")
  29079. },
  29080. ]
  29081. ))
  29082. characterMakers.push(() => makeCharacter(
  29083. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29084. {
  29085. front: {
  29086. height: math.unit(4.2, "meters"),
  29087. name: "Front",
  29088. image: {
  29089. source: "./media/characters/sydney/front.svg",
  29090. extra: 1323 / 1277,
  29091. bottom: 111 / 1434
  29092. }
  29093. },
  29094. },
  29095. [
  29096. {
  29097. name: "Normal",
  29098. height: math.unit(4.2, "meters"),
  29099. default: true
  29100. },
  29101. ]
  29102. ))
  29103. characterMakers.push(() => makeCharacter(
  29104. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29105. {
  29106. back: {
  29107. height: math.unit(201, "feet"),
  29108. name: "Back",
  29109. image: {
  29110. source: "./media/characters/jessica/back.svg",
  29111. extra: 273 / 259,
  29112. bottom: 7 / 280
  29113. }
  29114. },
  29115. },
  29116. [
  29117. {
  29118. name: "Normal",
  29119. height: math.unit(201, "feet"),
  29120. default: true
  29121. },
  29122. {
  29123. name: "Megamacro",
  29124. height: math.unit(8, "miles")
  29125. },
  29126. ]
  29127. ))
  29128. characterMakers.push(() => makeCharacter(
  29129. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29130. {
  29131. side: {
  29132. height: math.unit(5.6, "m"),
  29133. weight: math.unit(8000, "kg"),
  29134. name: "Side",
  29135. image: {
  29136. source: "./media/characters/victoria/side.svg",
  29137. extra: 1542/1229,
  29138. bottom: 124/1666
  29139. }
  29140. },
  29141. maw: {
  29142. height: math.unit(7.14, "feet"),
  29143. name: "Maw",
  29144. image: {
  29145. source: "./media/characters/victoria/maw.svg"
  29146. }
  29147. },
  29148. },
  29149. [
  29150. {
  29151. name: "Normal",
  29152. height: math.unit(5.6, "m"),
  29153. default: true
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29159. {
  29160. front: {
  29161. height: math.unit(5 + 6 / 12, "feet"),
  29162. name: "Front",
  29163. image: {
  29164. source: "./media/characters/cat/front.svg",
  29165. extra: 1449/1295,
  29166. bottom: 34/1483
  29167. },
  29168. form: "cat",
  29169. default: true
  29170. },
  29171. back: {
  29172. height: math.unit(5 + 6 / 12, "feet"),
  29173. name: "Back",
  29174. image: {
  29175. source: "./media/characters/cat/back.svg",
  29176. extra: 1466/1301,
  29177. bottom: 19/1485
  29178. },
  29179. form: "cat"
  29180. },
  29181. taur: {
  29182. height: math.unit(7, "feet"),
  29183. name: "Taur",
  29184. image: {
  29185. source: "./media/characters/cat/taur.svg",
  29186. extra: 1389/1233,
  29187. bottom: 83/1472
  29188. },
  29189. form: "taur",
  29190. default: true
  29191. },
  29192. lucarioFront: {
  29193. height: math.unit(4, "feet"),
  29194. name: "Lucario (Front)",
  29195. image: {
  29196. source: "./media/characters/cat/lucario-front.svg",
  29197. extra: 1149/1019,
  29198. bottom: 84/1233
  29199. },
  29200. form: "lucario",
  29201. default: true
  29202. },
  29203. lucarioBack: {
  29204. height: math.unit(4, "feet"),
  29205. name: "Lucario (Back)",
  29206. image: {
  29207. source: "./media/characters/cat/lucario-back.svg",
  29208. extra: 1190/1059,
  29209. bottom: 33/1223
  29210. },
  29211. form: "lucario"
  29212. },
  29213. megaLucario: {
  29214. height: math.unit(4, "feet"),
  29215. name: "Mega Lucario",
  29216. image: {
  29217. source: "./media/characters/cat/mega-lucario.svg",
  29218. extra: 1515 / 1319,
  29219. bottom: 63 / 1578
  29220. },
  29221. form: "lucario"
  29222. },
  29223. nickit: {
  29224. height: math.unit(2, "feet"),
  29225. name: "Nickit",
  29226. image: {
  29227. source: "./media/characters/cat/nickit.svg",
  29228. extra: 1980 / 1585,
  29229. bottom: 102 / 2082
  29230. },
  29231. form: "nickit",
  29232. default: true
  29233. },
  29234. lopunnyFront: {
  29235. height: math.unit(5, "feet"),
  29236. name: "Lopunny (Front)",
  29237. image: {
  29238. source: "./media/characters/cat/lopunny-front.svg",
  29239. extra: 1782 / 1469,
  29240. bottom: 38 / 1820
  29241. },
  29242. form: "lopunny",
  29243. default: true
  29244. },
  29245. lopunnyBack: {
  29246. height: math.unit(5, "feet"),
  29247. name: "Lopunny (Back)",
  29248. image: {
  29249. source: "./media/characters/cat/lopunny-back.svg",
  29250. extra: 1660 / 1490,
  29251. bottom: 25 / 1685
  29252. },
  29253. form: "lopunny"
  29254. },
  29255. },
  29256. [
  29257. {
  29258. name: "Really small",
  29259. height: math.unit(1, "nm")
  29260. },
  29261. {
  29262. name: "Micro",
  29263. height: math.unit(5, "inches")
  29264. },
  29265. {
  29266. name: "Normal",
  29267. height: math.unit(5 + 6 / 12, "feet"),
  29268. default: true
  29269. },
  29270. {
  29271. name: "Macro",
  29272. height: math.unit(50, "feet")
  29273. },
  29274. {
  29275. name: "Macro+",
  29276. height: math.unit(150, "feet")
  29277. },
  29278. {
  29279. name: "Megamacro",
  29280. height: math.unit(100, "miles")
  29281. },
  29282. ]
  29283. ))
  29284. characterMakers.push(() => makeCharacter(
  29285. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29286. {
  29287. front: {
  29288. height: math.unit(63.4, "meters"),
  29289. weight: math.unit(3.28349e+6, "kilograms"),
  29290. name: "Front",
  29291. image: {
  29292. source: "./media/characters/kirina-violet/front.svg",
  29293. extra: 2812 / 2725,
  29294. bottom: 0 / 2812
  29295. }
  29296. },
  29297. back: {
  29298. height: math.unit(63.4, "meters"),
  29299. weight: math.unit(3.28349e+6, "kilograms"),
  29300. name: "Back",
  29301. image: {
  29302. source: "./media/characters/kirina-violet/back.svg",
  29303. extra: 2812 / 2725,
  29304. bottom: 0 / 2812
  29305. }
  29306. },
  29307. mouth: {
  29308. height: math.unit(4.35, "meters"),
  29309. name: "Mouth",
  29310. image: {
  29311. source: "./media/characters/kirina-violet/mouth.svg"
  29312. }
  29313. },
  29314. paw: {
  29315. height: math.unit(5.6, "meters"),
  29316. name: "Paw",
  29317. image: {
  29318. source: "./media/characters/kirina-violet/paw.svg"
  29319. }
  29320. },
  29321. tail: {
  29322. height: math.unit(18, "meters"),
  29323. name: "Tail",
  29324. image: {
  29325. source: "./media/characters/kirina-violet/tail.svg"
  29326. }
  29327. },
  29328. },
  29329. [
  29330. {
  29331. name: "Macro",
  29332. height: math.unit(63.4, "meters"),
  29333. default: true
  29334. },
  29335. ]
  29336. ))
  29337. characterMakers.push(() => makeCharacter(
  29338. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29339. {
  29340. front: {
  29341. height: math.unit(75, "feet"),
  29342. name: "Front",
  29343. image: {
  29344. source: "./media/characters/cat-gigachu/front.svg",
  29345. extra: 1239/1027,
  29346. bottom: 32/1271
  29347. }
  29348. },
  29349. back: {
  29350. height: math.unit(75, "feet"),
  29351. name: "Back",
  29352. image: {
  29353. source: "./media/characters/cat-gigachu/back.svg",
  29354. extra: 1229/1030,
  29355. bottom: 9/1238
  29356. }
  29357. },
  29358. },
  29359. [
  29360. {
  29361. name: "Dynamax",
  29362. height: math.unit(75, "feet"),
  29363. default: true
  29364. },
  29365. ]
  29366. ))
  29367. characterMakers.push(() => makeCharacter(
  29368. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29369. {
  29370. front: {
  29371. height: math.unit(6, "feet"),
  29372. weight: math.unit(150, "lb"),
  29373. name: "Front",
  29374. image: {
  29375. source: "./media/characters/sfaiyan/front.svg",
  29376. extra: 999 / 978,
  29377. bottom: 5 / 1004
  29378. }
  29379. },
  29380. },
  29381. [
  29382. {
  29383. name: "Normal",
  29384. height: math.unit(1.82, "meters")
  29385. },
  29386. {
  29387. name: "Giant",
  29388. height: math.unit(2.27, "km"),
  29389. default: true
  29390. },
  29391. ]
  29392. ))
  29393. characterMakers.push(() => makeCharacter(
  29394. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29395. {
  29396. front: {
  29397. height: math.unit(179, "cm"),
  29398. weight: math.unit(100, "kg"),
  29399. name: "Front",
  29400. image: {
  29401. source: "./media/characters/raunehkeli/front.svg",
  29402. extra: 1934 / 1926,
  29403. bottom: 0 / 1934
  29404. }
  29405. },
  29406. },
  29407. [
  29408. {
  29409. name: "Normal",
  29410. height: math.unit(179, "cm")
  29411. },
  29412. {
  29413. name: "Maximum",
  29414. height: math.unit(575, "meters"),
  29415. default: true
  29416. },
  29417. ]
  29418. ))
  29419. characterMakers.push(() => makeCharacter(
  29420. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29421. {
  29422. front: {
  29423. height: math.unit(6, "feet"),
  29424. weight: math.unit(150, "lb"),
  29425. name: "Front",
  29426. image: {
  29427. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29428. extra: 2625 / 2518,
  29429. bottom: 60 / 2685
  29430. }
  29431. },
  29432. },
  29433. [
  29434. {
  29435. name: "Normal",
  29436. height: math.unit(6 + 2 / 12, "feet")
  29437. },
  29438. {
  29439. name: "Macro",
  29440. height: math.unit(1180, "feet"),
  29441. default: true
  29442. },
  29443. ]
  29444. ))
  29445. characterMakers.push(() => makeCharacter(
  29446. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29447. {
  29448. front: {
  29449. height: math.unit(5 + 6 / 12, "feet"),
  29450. weight: math.unit(108, "lb"),
  29451. name: "Front",
  29452. image: {
  29453. source: "./media/characters/lilith-zott/front.svg",
  29454. extra: 2510 / 2238,
  29455. bottom: 100 / 2610
  29456. }
  29457. },
  29458. frontDressed: {
  29459. height: math.unit(5 + 6 / 12, "feet"),
  29460. weight: math.unit(108, "lb"),
  29461. name: "Front (Dressed)",
  29462. image: {
  29463. source: "./media/characters/lilith-zott/front-dressed.svg",
  29464. extra: 2510 / 2238,
  29465. bottom: 100 / 2610
  29466. }
  29467. },
  29468. },
  29469. [
  29470. {
  29471. name: "Normal",
  29472. height: math.unit(5 + 6 / 12, "feet")
  29473. },
  29474. {
  29475. name: "Macro",
  29476. height: math.unit(1030, "feet"),
  29477. default: true
  29478. },
  29479. ]
  29480. ))
  29481. characterMakers.push(() => makeCharacter(
  29482. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29483. {
  29484. front: {
  29485. height: math.unit(6, "feet"),
  29486. weight: math.unit(150, "lb"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29490. extra: 2567 / 2435,
  29491. bottom: 39 / 2606
  29492. }
  29493. },
  29494. frontSuper: {
  29495. height: math.unit(6, "feet"),
  29496. name: "Front (Super)",
  29497. image: {
  29498. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29499. extra: 2567 / 2435,
  29500. bottom: 39 / 2606
  29501. }
  29502. },
  29503. },
  29504. [
  29505. {
  29506. name: "Normal",
  29507. height: math.unit(5 + 10 / 12, "feet")
  29508. },
  29509. {
  29510. name: "Macro",
  29511. height: math.unit(1100, "feet"),
  29512. default: true
  29513. },
  29514. ]
  29515. ))
  29516. characterMakers.push(() => makeCharacter(
  29517. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29518. {
  29519. front: {
  29520. height: math.unit(100, "miles"),
  29521. name: "Front",
  29522. image: {
  29523. source: "./media/characters/sona/front.svg",
  29524. extra: 2433 / 2201,
  29525. bottom: 53 / 2486
  29526. }
  29527. },
  29528. foot: {
  29529. height: math.unit(16.1, "miles"),
  29530. name: "Foot",
  29531. image: {
  29532. source: "./media/characters/sona/foot.svg"
  29533. }
  29534. },
  29535. },
  29536. [
  29537. {
  29538. name: "Macro",
  29539. height: math.unit(100, "miles"),
  29540. default: true
  29541. },
  29542. ]
  29543. ))
  29544. characterMakers.push(() => makeCharacter(
  29545. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29546. {
  29547. front: {
  29548. height: math.unit(6, "feet"),
  29549. weight: math.unit(150, "lb"),
  29550. name: "Front",
  29551. image: {
  29552. source: "./media/characters/bailey/front.svg",
  29553. extra: 1778 / 1724,
  29554. bottom: 30 / 1808
  29555. }
  29556. },
  29557. },
  29558. [
  29559. {
  29560. name: "Micro",
  29561. height: math.unit(4, "inches")
  29562. },
  29563. {
  29564. name: "Normal",
  29565. height: math.unit(5 + 5 / 12, "feet"),
  29566. default: true
  29567. },
  29568. {
  29569. name: "Macro",
  29570. height: math.unit(250, "feet")
  29571. },
  29572. {
  29573. name: "Megamacro",
  29574. height: math.unit(100, "miles")
  29575. },
  29576. ]
  29577. ))
  29578. characterMakers.push(() => makeCharacter(
  29579. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29580. {
  29581. front: {
  29582. height: math.unit(5 + 2 / 12, "feet"),
  29583. weight: math.unit(120, "lb"),
  29584. name: "Front",
  29585. image: {
  29586. source: "./media/characters/snaps/front.svg",
  29587. extra: 2370 / 2177,
  29588. bottom: 48 / 2418
  29589. }
  29590. },
  29591. back: {
  29592. height: math.unit(5 + 2 / 12, "feet"),
  29593. weight: math.unit(120, "lb"),
  29594. name: "Back",
  29595. image: {
  29596. source: "./media/characters/snaps/back.svg",
  29597. extra: 2408 / 2258,
  29598. bottom: 15 / 2423
  29599. }
  29600. },
  29601. },
  29602. [
  29603. {
  29604. name: "Micro",
  29605. height: math.unit(9, "inches")
  29606. },
  29607. {
  29608. name: "Normal",
  29609. height: math.unit(5 + 2 / 12, "feet"),
  29610. default: true
  29611. },
  29612. {
  29613. name: "Mini Macro",
  29614. height: math.unit(10, "feet")
  29615. },
  29616. ]
  29617. ))
  29618. characterMakers.push(() => makeCharacter(
  29619. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29620. {
  29621. front: {
  29622. height: math.unit(1.8, "meters"),
  29623. weight: math.unit(85, "kg"),
  29624. name: "Front",
  29625. image: {
  29626. source: "./media/characters/azteck/front.svg",
  29627. extra: 2815 / 2625,
  29628. bottom: 89 / 2904
  29629. }
  29630. },
  29631. back: {
  29632. height: math.unit(1.8, "meters"),
  29633. weight: math.unit(85, "kg"),
  29634. name: "Back",
  29635. image: {
  29636. source: "./media/characters/azteck/back.svg",
  29637. extra: 2856 / 2648,
  29638. bottom: 85 / 2941
  29639. }
  29640. },
  29641. frontDressed: {
  29642. height: math.unit(1.8, "meters"),
  29643. weight: math.unit(85, "kg"),
  29644. name: "Front (Dressed)",
  29645. image: {
  29646. source: "./media/characters/azteck/front-dressed.svg",
  29647. extra: 2147 / 2003,
  29648. bottom: 68 / 2215
  29649. }
  29650. },
  29651. head: {
  29652. height: math.unit(0.47, "meters"),
  29653. weight: math.unit(85, "kg"),
  29654. name: "Head",
  29655. image: {
  29656. source: "./media/characters/azteck/head.svg"
  29657. }
  29658. },
  29659. },
  29660. [
  29661. {
  29662. name: "Bite sized",
  29663. height: math.unit(16, "cm")
  29664. },
  29665. {
  29666. name: "Normal",
  29667. height: math.unit(1.8, "meters"),
  29668. default: true
  29669. },
  29670. ]
  29671. ))
  29672. characterMakers.push(() => makeCharacter(
  29673. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29674. {
  29675. front: {
  29676. height: math.unit(6, "feet"),
  29677. weight: math.unit(150, "lb"),
  29678. name: "Front",
  29679. image: {
  29680. source: "./media/characters/pidge/front.svg",
  29681. extra: 620 / 588,
  29682. bottom: 9 / 629
  29683. }
  29684. },
  29685. back: {
  29686. height: math.unit(6, "feet"),
  29687. weight: math.unit(150, "lb"),
  29688. name: "Back",
  29689. image: {
  29690. source: "./media/characters/pidge/back.svg",
  29691. extra: 620 / 588,
  29692. bottom: 9 / 629
  29693. }
  29694. },
  29695. },
  29696. [
  29697. {
  29698. name: "Macro",
  29699. height: math.unit(1, "mile"),
  29700. default: true
  29701. },
  29702. ]
  29703. ))
  29704. characterMakers.push(() => makeCharacter(
  29705. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29706. {
  29707. front: {
  29708. height: math.unit(6, "feet"),
  29709. weight: math.unit(150, "lb"),
  29710. name: "Front",
  29711. image: {
  29712. source: "./media/characters/en/front.svg",
  29713. extra: 1697 / 1563,
  29714. bottom: 103 / 1800
  29715. }
  29716. },
  29717. back: {
  29718. height: math.unit(6, "feet"),
  29719. weight: math.unit(150, "lb"),
  29720. name: "Back",
  29721. image: {
  29722. source: "./media/characters/en/back.svg",
  29723. extra: 1700 / 1570,
  29724. bottom: 51 / 1751
  29725. }
  29726. },
  29727. frontDressed: {
  29728. height: math.unit(6, "feet"),
  29729. weight: math.unit(150, "lb"),
  29730. name: "Front (Dressed)",
  29731. image: {
  29732. source: "./media/characters/en/front-dressed.svg",
  29733. extra: 1697 / 1563,
  29734. bottom: 103 / 1800
  29735. }
  29736. },
  29737. backDressed: {
  29738. height: math.unit(6, "feet"),
  29739. weight: math.unit(150, "lb"),
  29740. name: "Back (Dressed)",
  29741. image: {
  29742. source: "./media/characters/en/back-dressed.svg",
  29743. extra: 1700 / 1570,
  29744. bottom: 51 / 1751
  29745. }
  29746. },
  29747. },
  29748. [
  29749. {
  29750. name: "Macro",
  29751. height: math.unit(210, "feet"),
  29752. default: true
  29753. },
  29754. ]
  29755. ))
  29756. characterMakers.push(() => makeCharacter(
  29757. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29758. {
  29759. front: {
  29760. height: math.unit(6, "feet"),
  29761. weight: math.unit(150, "lb"),
  29762. name: "Front",
  29763. image: {
  29764. source: "./media/characters/haze-orris/front.svg",
  29765. extra: 3975 / 3525,
  29766. bottom: 137 / 4112
  29767. }
  29768. },
  29769. },
  29770. [
  29771. {
  29772. name: "Micro",
  29773. height: math.unit(150, "mm"),
  29774. default: true
  29775. },
  29776. ]
  29777. ))
  29778. characterMakers.push(() => makeCharacter(
  29779. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29780. {
  29781. front: {
  29782. height: math.unit(6, "feet"),
  29783. weight: math.unit(150, "lb"),
  29784. name: "Front",
  29785. image: {
  29786. source: "./media/characters/casselene-yaro/front.svg",
  29787. extra: 4721 / 4541,
  29788. bottom: 82 / 4803
  29789. }
  29790. },
  29791. back: {
  29792. height: math.unit(6, "feet"),
  29793. weight: math.unit(150, "lb"),
  29794. name: "Back",
  29795. image: {
  29796. source: "./media/characters/casselene-yaro/back.svg",
  29797. extra: 4569 / 4377,
  29798. bottom: 69 / 4638
  29799. }
  29800. },
  29801. frontDressed: {
  29802. height: math.unit(6, "feet"),
  29803. weight: math.unit(150, "lb"),
  29804. name: "Front-dressed",
  29805. image: {
  29806. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29807. extra: 4721 / 4541,
  29808. bottom: 82 / 4803
  29809. }
  29810. },
  29811. },
  29812. [
  29813. {
  29814. name: "Macro",
  29815. height: math.unit(190, "feet"),
  29816. default: true
  29817. },
  29818. ]
  29819. ))
  29820. characterMakers.push(() => makeCharacter(
  29821. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29822. {
  29823. front: {
  29824. height: math.unit(6, "feet"),
  29825. weight: math.unit(150, "lb"),
  29826. name: "Front",
  29827. image: {
  29828. source: "./media/characters/myra-rue-delore/front.svg",
  29829. extra: 1340 / 1308,
  29830. bottom: 67 / 1407
  29831. }
  29832. },
  29833. back: {
  29834. height: math.unit(6, "feet"),
  29835. weight: math.unit(150, "lb"),
  29836. name: "Back",
  29837. image: {
  29838. source: "./media/characters/myra-rue-delore/back.svg",
  29839. extra: 1341 / 1310,
  29840. bottom: 40 / 1381
  29841. }
  29842. },
  29843. frontDressed: {
  29844. height: math.unit(6, "feet"),
  29845. weight: math.unit(150, "lb"),
  29846. name: "Front (Dressed)",
  29847. image: {
  29848. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29849. extra: 1340 / 1308,
  29850. bottom: 67 / 1407
  29851. }
  29852. },
  29853. },
  29854. [
  29855. {
  29856. name: "Macro",
  29857. height: math.unit(150, "feet"),
  29858. default: true
  29859. },
  29860. ]
  29861. ))
  29862. characterMakers.push(() => makeCharacter(
  29863. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29864. {
  29865. front: {
  29866. height: math.unit(10, "feet"),
  29867. weight: math.unit(15015, "lb"),
  29868. name: "Front",
  29869. image: {
  29870. source: "./media/characters/fem!plat/front.svg",
  29871. extra: 2799 / 2604,
  29872. bottom: 149 / 2948
  29873. }
  29874. },
  29875. },
  29876. [
  29877. {
  29878. name: "Normal",
  29879. height: math.unit(10, "feet"),
  29880. default: true
  29881. },
  29882. {
  29883. name: "Macro",
  29884. height: math.unit(100, "feet")
  29885. },
  29886. {
  29887. name: "Megamacro",
  29888. height: math.unit(1000, "feet")
  29889. },
  29890. ]
  29891. ))
  29892. characterMakers.push(() => makeCharacter(
  29893. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29894. {
  29895. front: {
  29896. height: math.unit(15 + 5 / 12, "feet"),
  29897. weight: math.unit(4600, "lb"),
  29898. name: "Front",
  29899. image: {
  29900. source: "./media/characters/neapolitan-ananassa/front.svg",
  29901. extra: 2903 / 2736,
  29902. bottom: 0 / 2903
  29903. }
  29904. },
  29905. side: {
  29906. height: math.unit(15 + 5 / 12, "feet"),
  29907. weight: math.unit(4600, "lb"),
  29908. name: "Side",
  29909. image: {
  29910. source: "./media/characters/neapolitan-ananassa/side.svg",
  29911. extra: 2925 / 2719,
  29912. bottom: 0 / 2925
  29913. }
  29914. },
  29915. back: {
  29916. height: math.unit(15 + 5 / 12, "feet"),
  29917. weight: math.unit(4600, "lb"),
  29918. name: "Back",
  29919. image: {
  29920. source: "./media/characters/neapolitan-ananassa/back.svg",
  29921. extra: 2903 / 2736,
  29922. bottom: 0 / 2903
  29923. }
  29924. },
  29925. },
  29926. [
  29927. {
  29928. name: "Normal",
  29929. height: math.unit(15 + 5 / 12, "feet"),
  29930. default: true
  29931. },
  29932. {
  29933. name: "Post-Millenium",
  29934. height: math.unit(35 + 5 / 12, "feet")
  29935. },
  29936. {
  29937. name: "Post-Era",
  29938. height: math.unit(450 + 5 / 12, "feet")
  29939. },
  29940. ]
  29941. ))
  29942. characterMakers.push(() => makeCharacter(
  29943. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29944. {
  29945. front: {
  29946. height: math.unit(300, "meters"),
  29947. weight: math.unit(125000, "tonnes"),
  29948. name: "Front",
  29949. image: {
  29950. source: "./media/characters/pazuzu/front.svg",
  29951. extra: 877 / 794,
  29952. bottom: 47 / 924
  29953. }
  29954. },
  29955. },
  29956. [
  29957. {
  29958. name: "Macro",
  29959. height: math.unit(300, "meters"),
  29960. default: true
  29961. },
  29962. ]
  29963. ))
  29964. characterMakers.push(() => makeCharacter(
  29965. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29966. {
  29967. side: {
  29968. height: math.unit(10 + 7 / 12, "feet"),
  29969. weight: math.unit(2.5, "tons"),
  29970. name: "Side",
  29971. image: {
  29972. source: "./media/characters/aasha/side.svg",
  29973. extra: 1345 / 1245,
  29974. bottom: 111 / 1456
  29975. }
  29976. },
  29977. back: {
  29978. height: math.unit(10 + 7 / 12, "feet"),
  29979. weight: math.unit(2.5, "tons"),
  29980. name: "Back",
  29981. image: {
  29982. source: "./media/characters/aasha/back.svg",
  29983. extra: 1133 / 1057,
  29984. bottom: 257 / 1390
  29985. }
  29986. },
  29987. },
  29988. [
  29989. {
  29990. name: "Normal",
  29991. height: math.unit(10 + 7 / 12, "feet"),
  29992. default: true
  29993. },
  29994. ]
  29995. ))
  29996. characterMakers.push(() => makeCharacter(
  29997. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29998. {
  29999. front: {
  30000. height: math.unit(6 + 3 / 12, "feet"),
  30001. name: "Front",
  30002. image: {
  30003. source: "./media/characters/nevan/front.svg",
  30004. extra: 704 / 704,
  30005. bottom: 28 / 732
  30006. }
  30007. },
  30008. back: {
  30009. height: math.unit(6 + 3 / 12, "feet"),
  30010. name: "Back",
  30011. image: {
  30012. source: "./media/characters/nevan/back.svg",
  30013. extra: 714 / 714,
  30014. bottom: 21 / 735
  30015. }
  30016. },
  30017. frontFlaccid: {
  30018. height: math.unit(6 + 3 / 12, "feet"),
  30019. name: "Front (Flaccid)",
  30020. image: {
  30021. source: "./media/characters/nevan/front-flaccid.svg",
  30022. extra: 704 / 704,
  30023. bottom: 28 / 732
  30024. }
  30025. },
  30026. frontErect: {
  30027. height: math.unit(6 + 3 / 12, "feet"),
  30028. name: "Front (Erect)",
  30029. image: {
  30030. source: "./media/characters/nevan/front-erect.svg",
  30031. extra: 704 / 704,
  30032. bottom: 28 / 732
  30033. }
  30034. },
  30035. backFlaccid: {
  30036. height: math.unit(6 + 3 / 12, "feet"),
  30037. name: "Back (Flaccid)",
  30038. image: {
  30039. source: "./media/characters/nevan/back-flaccid.svg",
  30040. extra: 714 / 714,
  30041. bottom: 21 / 735
  30042. }
  30043. },
  30044. },
  30045. [
  30046. {
  30047. name: "Normal",
  30048. height: math.unit(6 + 3 / 12, "feet"),
  30049. default: true
  30050. },
  30051. ]
  30052. ))
  30053. characterMakers.push(() => makeCharacter(
  30054. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30055. {
  30056. front: {
  30057. height: math.unit(4, "feet"),
  30058. name: "Front",
  30059. image: {
  30060. source: "./media/characters/arhan/front.svg",
  30061. extra: 3368 / 3133,
  30062. bottom: 0 / 3368
  30063. }
  30064. },
  30065. side: {
  30066. height: math.unit(4, "feet"),
  30067. name: "Side",
  30068. image: {
  30069. source: "./media/characters/arhan/side.svg",
  30070. extra: 3347 / 3105,
  30071. bottom: 0 / 3347
  30072. }
  30073. },
  30074. tongue: {
  30075. height: math.unit(1.42, "feet"),
  30076. name: "Tongue",
  30077. image: {
  30078. source: "./media/characters/arhan/tongue.svg"
  30079. }
  30080. },
  30081. head: {
  30082. height: math.unit(0.85, "feet"),
  30083. name: "Head",
  30084. image: {
  30085. source: "./media/characters/arhan/head.svg"
  30086. }
  30087. },
  30088. },
  30089. [
  30090. {
  30091. name: "Normal",
  30092. height: math.unit(4, "feet"),
  30093. default: true
  30094. },
  30095. ]
  30096. ))
  30097. characterMakers.push(() => makeCharacter(
  30098. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30099. {
  30100. front: {
  30101. height: math.unit(5 + 7.5 / 12, "feet"),
  30102. weight: math.unit(120, "lb"),
  30103. name: "Front",
  30104. image: {
  30105. source: "./media/characters/digi-duncan/front.svg",
  30106. extra: 330 / 326,
  30107. bottom: 16 / 346
  30108. }
  30109. },
  30110. side: {
  30111. height: math.unit(5 + 7.5 / 12, "feet"),
  30112. weight: math.unit(120, "lb"),
  30113. name: "Side",
  30114. image: {
  30115. source: "./media/characters/digi-duncan/side.svg",
  30116. extra: 341 / 337,
  30117. bottom: 1 / 342
  30118. }
  30119. },
  30120. back: {
  30121. height: math.unit(5 + 7.5 / 12, "feet"),
  30122. weight: math.unit(120, "lb"),
  30123. name: "Back",
  30124. image: {
  30125. source: "./media/characters/digi-duncan/back.svg",
  30126. extra: 330 / 326,
  30127. bottom: 12 / 342
  30128. }
  30129. },
  30130. },
  30131. [
  30132. {
  30133. name: "Speck",
  30134. height: math.unit(0.25, "mm")
  30135. },
  30136. {
  30137. name: "Micro",
  30138. height: math.unit(5, "mm")
  30139. },
  30140. {
  30141. name: "Tiny",
  30142. height: math.unit(0.5, "inches"),
  30143. default: true
  30144. },
  30145. {
  30146. name: "Human",
  30147. height: math.unit(5 + 7.5 / 12, "feet")
  30148. },
  30149. {
  30150. name: "Minigiant",
  30151. height: math.unit(8 + 5.25, "feet")
  30152. },
  30153. {
  30154. name: "Giant",
  30155. height: math.unit(2000, "feet")
  30156. },
  30157. {
  30158. name: "Mega",
  30159. height: math.unit(371.1, "miles")
  30160. },
  30161. ]
  30162. ))
  30163. characterMakers.push(() => makeCharacter(
  30164. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30165. {
  30166. front: {
  30167. height: math.unit(2, "meters"),
  30168. weight: math.unit(350, "kg"),
  30169. name: "Front",
  30170. image: {
  30171. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30172. extra: 898 / 838,
  30173. bottom: 9 / 907
  30174. }
  30175. },
  30176. },
  30177. [
  30178. {
  30179. name: "Micro",
  30180. height: math.unit(8, "meters")
  30181. },
  30182. {
  30183. name: "Normal",
  30184. height: math.unit(50, "meters"),
  30185. default: true
  30186. },
  30187. {
  30188. name: "Macro",
  30189. height: math.unit(500, "meters")
  30190. },
  30191. ]
  30192. ))
  30193. characterMakers.push(() => makeCharacter(
  30194. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30195. {
  30196. front: {
  30197. height: math.unit(6 + 6 / 12, "feet"),
  30198. name: "Front",
  30199. image: {
  30200. source: "./media/characters/khardesh/front.svg",
  30201. extra: 1788/1596,
  30202. bottom: 66/1854
  30203. }
  30204. },
  30205. back: {
  30206. height: math.unit(6 + 6 / 12, "feet"),
  30207. name: "Back",
  30208. image: {
  30209. source: "./media/characters/khardesh/back.svg",
  30210. extra: 1781/1584,
  30211. bottom: 68/1849
  30212. }
  30213. },
  30214. },
  30215. [
  30216. {
  30217. name: "Normal",
  30218. height: math.unit(6 + 6 / 12, "feet"),
  30219. default: true
  30220. },
  30221. {
  30222. name: "Normal+",
  30223. height: math.unit(4, "meters")
  30224. },
  30225. {
  30226. name: "Macro",
  30227. height: math.unit(50, "meters")
  30228. },
  30229. {
  30230. name: "Macro+",
  30231. height: math.unit(100, "meters")
  30232. },
  30233. {
  30234. name: "Megamacro",
  30235. height: math.unit(20, "km")
  30236. },
  30237. ]
  30238. ))
  30239. characterMakers.push(() => makeCharacter(
  30240. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30241. {
  30242. front: {
  30243. height: math.unit(6, "feet"),
  30244. weight: math.unit(150, "lb"),
  30245. name: "Front",
  30246. image: {
  30247. source: "./media/characters/kosho/front.svg",
  30248. extra: 1847 / 1847,
  30249. bottom: 86 / 1933
  30250. }
  30251. },
  30252. },
  30253. [
  30254. {
  30255. name: "Second-stage micro",
  30256. height: math.unit(0.5, "inches")
  30257. },
  30258. {
  30259. name: "First-stage micro",
  30260. height: math.unit(6, "inches")
  30261. },
  30262. {
  30263. name: "Normal",
  30264. height: math.unit(6, "feet"),
  30265. default: true
  30266. },
  30267. {
  30268. name: "First-stage macro",
  30269. height: math.unit(72, "feet")
  30270. },
  30271. {
  30272. name: "Second-stage macro",
  30273. height: math.unit(864, "feet")
  30274. },
  30275. ]
  30276. ))
  30277. characterMakers.push(() => makeCharacter(
  30278. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30279. {
  30280. normal: {
  30281. height: math.unit(4 + 6 / 12, "feet"),
  30282. name: "Normal",
  30283. image: {
  30284. source: "./media/characters/hydra/normal.svg",
  30285. extra: 2833 / 2634,
  30286. bottom: 68 / 2901
  30287. }
  30288. },
  30289. smol: {
  30290. height: math.unit(0.705, "inches"),
  30291. name: "Smol",
  30292. image: {
  30293. source: "./media/characters/hydra/smol.svg",
  30294. extra: 2715 / 2540,
  30295. bottom: 0 / 2715
  30296. }
  30297. },
  30298. },
  30299. [
  30300. {
  30301. name: "Normal",
  30302. height: math.unit(4 + 6 / 12, "feet"),
  30303. default: true
  30304. }
  30305. ]
  30306. ))
  30307. characterMakers.push(() => makeCharacter(
  30308. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30309. {
  30310. front: {
  30311. height: math.unit(0.6, "cm"),
  30312. name: "Front",
  30313. image: {
  30314. source: "./media/characters/daz/front.svg",
  30315. extra: 1682 / 1164,
  30316. bottom: 42 / 1724
  30317. }
  30318. },
  30319. },
  30320. [
  30321. {
  30322. name: "Normal",
  30323. height: math.unit(0.6, "cm"),
  30324. default: true
  30325. },
  30326. ]
  30327. ))
  30328. characterMakers.push(() => makeCharacter(
  30329. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30330. {
  30331. front: {
  30332. height: math.unit(6, "feet"),
  30333. weight: math.unit(235, "lb"),
  30334. name: "Front",
  30335. image: {
  30336. source: "./media/characters/theo-pangolin/front.svg",
  30337. extra: 1996 / 1969,
  30338. bottom: 115 / 2111
  30339. }
  30340. },
  30341. back: {
  30342. height: math.unit(6, "feet"),
  30343. weight: math.unit(235, "lb"),
  30344. name: "Back",
  30345. image: {
  30346. source: "./media/characters/theo-pangolin/back.svg",
  30347. extra: 1979 / 1979,
  30348. bottom: 40 / 2019
  30349. }
  30350. },
  30351. feral: {
  30352. height: math.unit(2, "feet"),
  30353. weight: math.unit(30, "lb"),
  30354. name: "Feral",
  30355. image: {
  30356. source: "./media/characters/theo-pangolin/feral.svg",
  30357. extra: 803 / 791,
  30358. bottom: 181 / 984
  30359. }
  30360. },
  30361. footFive: {
  30362. height: math.unit(1.43, "feet"),
  30363. name: "Foot (Five Toes)",
  30364. image: {
  30365. source: "./media/characters/theo-pangolin/foot-five.svg"
  30366. }
  30367. },
  30368. footFour: {
  30369. height: math.unit(1.43, "feet"),
  30370. name: "Foot (Four Toes)",
  30371. image: {
  30372. source: "./media/characters/theo-pangolin/foot-four.svg"
  30373. }
  30374. },
  30375. handFour: {
  30376. height: math.unit(0.81, "feet"),
  30377. name: "Hand (Four Fingers)",
  30378. image: {
  30379. source: "./media/characters/theo-pangolin/hand-four.svg"
  30380. }
  30381. },
  30382. handThree: {
  30383. height: math.unit(0.81, "feet"),
  30384. name: "Hand (Three Fingers)",
  30385. image: {
  30386. source: "./media/characters/theo-pangolin/hand-three.svg"
  30387. }
  30388. },
  30389. headFront: {
  30390. height: math.unit(1.37, "feet"),
  30391. name: "Head (Front)",
  30392. image: {
  30393. source: "./media/characters/theo-pangolin/head-front.svg"
  30394. }
  30395. },
  30396. headSide: {
  30397. height: math.unit(1.43, "feet"),
  30398. name: "Head (Side)",
  30399. image: {
  30400. source: "./media/characters/theo-pangolin/head-side.svg"
  30401. }
  30402. },
  30403. tongue: {
  30404. height: math.unit(2.29, "feet"),
  30405. name: "Tongue",
  30406. image: {
  30407. source: "./media/characters/theo-pangolin/tongue.svg"
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Normal",
  30414. height: math.unit(6, "feet")
  30415. },
  30416. {
  30417. name: "Macro",
  30418. height: math.unit(400, "feet"),
  30419. default: true
  30420. },
  30421. ]
  30422. ))
  30423. characterMakers.push(() => makeCharacter(
  30424. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30425. {
  30426. front: {
  30427. height: math.unit(6, "inches"),
  30428. weight: math.unit(0.036, "kg"),
  30429. name: "Front",
  30430. image: {
  30431. source: "./media/characters/renée/front.svg",
  30432. extra: 900 / 886,
  30433. bottom: 8 / 908
  30434. }
  30435. },
  30436. },
  30437. [
  30438. {
  30439. name: "Nano",
  30440. height: math.unit(1, "nm")
  30441. },
  30442. {
  30443. name: "Micro",
  30444. height: math.unit(1, "mm")
  30445. },
  30446. {
  30447. name: "Normal",
  30448. height: math.unit(6, "inches")
  30449. },
  30450. {
  30451. name: "Macro",
  30452. height: math.unit(2000, "feet"),
  30453. default: true
  30454. },
  30455. {
  30456. name: "Megamacro",
  30457. height: math.unit(2, "km")
  30458. },
  30459. {
  30460. name: "Gigamacro",
  30461. height: math.unit(2000, "km")
  30462. },
  30463. {
  30464. name: "Teramacro",
  30465. height: math.unit(250000, "km")
  30466. },
  30467. ]
  30468. ))
  30469. characterMakers.push(() => makeCharacter(
  30470. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30471. {
  30472. front: {
  30473. height: math.unit(4, "meters"),
  30474. weight: math.unit(150, "kg"),
  30475. name: "Front",
  30476. image: {
  30477. source: "./media/characters/caledvwlch/front.svg",
  30478. extra: 1760 / 1551,
  30479. bottom: 28 / 1788
  30480. }
  30481. },
  30482. side: {
  30483. height: math.unit(4, "meters"),
  30484. weight: math.unit(150, "kg"),
  30485. name: "Side",
  30486. image: {
  30487. source: "./media/characters/caledvwlch/side.svg",
  30488. extra: 1605 / 1536,
  30489. bottom: 31 / 1636
  30490. }
  30491. },
  30492. back: {
  30493. height: math.unit(4, "meters"),
  30494. weight: math.unit(150, "kg"),
  30495. name: "Back",
  30496. image: {
  30497. source: "./media/characters/caledvwlch/back.svg",
  30498. extra: 1635 / 1565,
  30499. bottom: 27 / 1662
  30500. }
  30501. },
  30502. },
  30503. [
  30504. {
  30505. name: "\"Incognito\"",
  30506. height: math.unit(4, "meters")
  30507. },
  30508. {
  30509. name: "Small rampage",
  30510. height: math.unit(600, "meters")
  30511. },
  30512. {
  30513. name: "Mega",
  30514. height: math.unit(30, "km")
  30515. },
  30516. {
  30517. name: "Home-size",
  30518. height: math.unit(50, "km"),
  30519. default: true
  30520. },
  30521. {
  30522. name: "Giga",
  30523. height: math.unit(300, "km")
  30524. },
  30525. {
  30526. name: "Lounging",
  30527. height: math.unit(11000, "km")
  30528. },
  30529. {
  30530. name: "Planet snacking",
  30531. height: math.unit(2000000, "km")
  30532. },
  30533. ]
  30534. ))
  30535. characterMakers.push(() => makeCharacter(
  30536. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30537. {
  30538. front: {
  30539. height: math.unit(6, "feet"),
  30540. weight: math.unit(215, "lb"),
  30541. name: "Front",
  30542. image: {
  30543. source: "./media/characters/sapphire-svell/front.svg",
  30544. extra: 495 / 455,
  30545. bottom: 20 / 515
  30546. }
  30547. },
  30548. back: {
  30549. height: math.unit(6, "feet"),
  30550. weight: math.unit(216, "lb"),
  30551. name: "Back",
  30552. image: {
  30553. source: "./media/characters/sapphire-svell/back.svg",
  30554. extra: 497 / 477,
  30555. bottom: 7 / 504
  30556. }
  30557. },
  30558. maw: {
  30559. height: math.unit(1.57, "feet"),
  30560. name: "Maw",
  30561. image: {
  30562. source: "./media/characters/sapphire-svell/maw.svg"
  30563. }
  30564. },
  30565. foot: {
  30566. height: math.unit(1.07, "feet"),
  30567. name: "Foot",
  30568. image: {
  30569. source: "./media/characters/sapphire-svell/foot.svg"
  30570. }
  30571. },
  30572. toering: {
  30573. height: math.unit(1.7, "inch"),
  30574. name: "Toering",
  30575. image: {
  30576. source: "./media/characters/sapphire-svell/toering.svg"
  30577. }
  30578. },
  30579. },
  30580. [
  30581. {
  30582. name: "Normal",
  30583. height: math.unit(300, "feet"),
  30584. default: true
  30585. },
  30586. {
  30587. name: "Augmented",
  30588. height: math.unit(1250, "feet")
  30589. },
  30590. {
  30591. name: "Unleashed",
  30592. height: math.unit(3000, "feet")
  30593. },
  30594. ]
  30595. ))
  30596. characterMakers.push(() => makeCharacter(
  30597. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30598. {
  30599. side: {
  30600. height: math.unit(2 + 3 / 12, "feet"),
  30601. weight: math.unit(110, "lb"),
  30602. name: "Side",
  30603. image: {
  30604. source: "./media/characters/glitch-flux/side.svg",
  30605. extra: 997 / 805,
  30606. bottom: 20 / 1017
  30607. }
  30608. },
  30609. },
  30610. [
  30611. {
  30612. name: "Normal",
  30613. height: math.unit(2 + 3 / 12, "feet"),
  30614. default: true
  30615. },
  30616. ]
  30617. ))
  30618. characterMakers.push(() => makeCharacter(
  30619. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30620. {
  30621. front: {
  30622. height: math.unit(4, "meters"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/mid/front.svg",
  30626. extra: 507 / 476,
  30627. bottom: 17 / 524
  30628. }
  30629. },
  30630. back: {
  30631. height: math.unit(4, "meters"),
  30632. name: "Back",
  30633. image: {
  30634. source: "./media/characters/mid/back.svg",
  30635. extra: 519 / 487,
  30636. bottom: 7 / 526
  30637. }
  30638. },
  30639. stuck: {
  30640. height: math.unit(2.2, "meters"),
  30641. name: "Stuck",
  30642. image: {
  30643. source: "./media/characters/mid/stuck.svg",
  30644. extra: 1951 / 1869,
  30645. bottom: 88 / 2039
  30646. }
  30647. }
  30648. },
  30649. [
  30650. {
  30651. name: "Normal",
  30652. height: math.unit(4, "meters"),
  30653. default: true
  30654. },
  30655. {
  30656. name: "Big",
  30657. height: math.unit(10, "meters")
  30658. },
  30659. {
  30660. name: "Macro",
  30661. height: math.unit(800, "meters")
  30662. },
  30663. {
  30664. name: "Megamacro",
  30665. height: math.unit(100, "km")
  30666. },
  30667. {
  30668. name: "Overgrown",
  30669. height: math.unit(1, "parsec")
  30670. },
  30671. ]
  30672. ))
  30673. characterMakers.push(() => makeCharacter(
  30674. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30675. {
  30676. front: {
  30677. height: math.unit(2.5, "meters"),
  30678. weight: math.unit(225, "kg"),
  30679. name: "Front",
  30680. image: {
  30681. source: "./media/characters/iris/front.svg",
  30682. extra: 3348 / 3251,
  30683. bottom: 205 / 3553
  30684. }
  30685. },
  30686. maw: {
  30687. height: math.unit(0.56, "meter"),
  30688. name: "Maw",
  30689. image: {
  30690. source: "./media/characters/iris/maw.svg"
  30691. }
  30692. },
  30693. },
  30694. [
  30695. {
  30696. name: "Mewter cat",
  30697. height: math.unit(1.2, "meters")
  30698. },
  30699. {
  30700. name: "Minimacro",
  30701. height: math.unit(2.5, "meters"),
  30702. default: true
  30703. },
  30704. {
  30705. name: "Macro",
  30706. height: math.unit(180, "meters")
  30707. },
  30708. {
  30709. name: "Megamacro",
  30710. height: math.unit(2746, "meters")
  30711. },
  30712. ]
  30713. ))
  30714. characterMakers.push(() => makeCharacter(
  30715. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30716. {
  30717. front: {
  30718. height: math.unit(6, "feet"),
  30719. weight: math.unit(135, "lb"),
  30720. name: "Front",
  30721. image: {
  30722. source: "./media/characters/axel/front.svg",
  30723. extra: 908 / 908,
  30724. bottom: 58 / 966
  30725. }
  30726. },
  30727. side: {
  30728. height: math.unit(6, "feet"),
  30729. weight: math.unit(135, "lb"),
  30730. name: "Side",
  30731. image: {
  30732. source: "./media/characters/axel/side.svg",
  30733. extra: 958 / 958,
  30734. bottom: 11 / 969
  30735. }
  30736. },
  30737. back: {
  30738. height: math.unit(6, "feet"),
  30739. weight: math.unit(135, "lb"),
  30740. name: "Back",
  30741. image: {
  30742. source: "./media/characters/axel/back.svg",
  30743. extra: 887 / 887,
  30744. bottom: 34 / 921
  30745. }
  30746. },
  30747. head: {
  30748. height: math.unit(1.07, "feet"),
  30749. name: "Head",
  30750. image: {
  30751. source: "./media/characters/axel/head.svg"
  30752. }
  30753. },
  30754. beak: {
  30755. height: math.unit(1.4, "feet"),
  30756. name: "Beak",
  30757. image: {
  30758. source: "./media/characters/axel/beak.svg"
  30759. }
  30760. },
  30761. beakSide: {
  30762. height: math.unit(1.4, "feet"),
  30763. name: "Beak Side",
  30764. image: {
  30765. source: "./media/characters/axel/beak-side.svg"
  30766. }
  30767. },
  30768. sheath: {
  30769. height: math.unit(0.5, "feet"),
  30770. name: "Sheath",
  30771. image: {
  30772. source: "./media/characters/axel/sheath.svg"
  30773. }
  30774. },
  30775. dick: {
  30776. height: math.unit(0.98, "feet"),
  30777. name: "Dick",
  30778. image: {
  30779. source: "./media/characters/axel/dick.svg"
  30780. }
  30781. },
  30782. },
  30783. [
  30784. {
  30785. name: "Macro",
  30786. height: math.unit(68, "meters"),
  30787. default: true
  30788. },
  30789. ]
  30790. ))
  30791. characterMakers.push(() => makeCharacter(
  30792. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30793. {
  30794. front: {
  30795. height: math.unit(3.5, "meters"),
  30796. weight: math.unit(1200, "kg"),
  30797. name: "Front",
  30798. image: {
  30799. source: "./media/characters/joanna/front.svg",
  30800. extra: 1596 / 1488,
  30801. bottom: 29 / 1625
  30802. }
  30803. },
  30804. back: {
  30805. height: math.unit(3.5, "meters"),
  30806. weight: math.unit(1200, "kg"),
  30807. name: "Back",
  30808. image: {
  30809. source: "./media/characters/joanna/back.svg",
  30810. extra: 1594 / 1495,
  30811. bottom: 26 / 1620
  30812. }
  30813. },
  30814. frontShorts: {
  30815. height: math.unit(3.5, "meters"),
  30816. weight: math.unit(1200, "kg"),
  30817. name: "Front (Shorts)",
  30818. image: {
  30819. source: "./media/characters/joanna/front-shorts.svg",
  30820. extra: 1596 / 1488,
  30821. bottom: 29 / 1625
  30822. }
  30823. },
  30824. frontBiker: {
  30825. height: math.unit(3.5, "meters"),
  30826. weight: math.unit(1200, "kg"),
  30827. name: "Front (Biker)",
  30828. image: {
  30829. source: "./media/characters/joanna/front-biker.svg",
  30830. extra: 1596 / 1488,
  30831. bottom: 29 / 1625
  30832. }
  30833. },
  30834. backBiker: {
  30835. height: math.unit(3.5, "meters"),
  30836. weight: math.unit(1200, "kg"),
  30837. name: "Back (Biker)",
  30838. image: {
  30839. source: "./media/characters/joanna/back-biker.svg",
  30840. extra: 1594 / 1495,
  30841. bottom: 88 / 1682
  30842. }
  30843. },
  30844. bikeLeft: {
  30845. height: math.unit(2.4, "meters"),
  30846. weight: math.unit(1600, "kg"),
  30847. name: "Bike (Left)",
  30848. image: {
  30849. source: "./media/characters/joanna/bike-left.svg",
  30850. extra: 720 / 720,
  30851. bottom: 8 / 728
  30852. }
  30853. },
  30854. bikeRight: {
  30855. height: math.unit(2.4, "meters"),
  30856. weight: math.unit(1600, "kg"),
  30857. name: "Bike (Right)",
  30858. image: {
  30859. source: "./media/characters/joanna/bike-right.svg",
  30860. extra: 720 / 720,
  30861. bottom: 8 / 728
  30862. }
  30863. },
  30864. },
  30865. [
  30866. {
  30867. name: "Incognito",
  30868. height: math.unit(3.5, "meters")
  30869. },
  30870. {
  30871. name: "Casual Big",
  30872. height: math.unit(200, "meters")
  30873. },
  30874. {
  30875. name: "Macro",
  30876. height: math.unit(600, "meters")
  30877. },
  30878. {
  30879. name: "Original",
  30880. height: math.unit(20, "km"),
  30881. default: true
  30882. },
  30883. {
  30884. name: "Giga",
  30885. height: math.unit(400, "km")
  30886. },
  30887. {
  30888. name: "Lounging",
  30889. height: math.unit(1500, "km")
  30890. },
  30891. {
  30892. name: "Planetary",
  30893. height: math.unit(200000, "km")
  30894. },
  30895. ]
  30896. ))
  30897. characterMakers.push(() => makeCharacter(
  30898. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30899. {
  30900. front: {
  30901. height: math.unit(6, "feet"),
  30902. weight: math.unit(150, "lb"),
  30903. name: "Front",
  30904. image: {
  30905. source: "./media/characters/hugo-sigil/front.svg",
  30906. extra: 522 / 500,
  30907. bottom: 2 / 524
  30908. }
  30909. },
  30910. back: {
  30911. height: math.unit(6, "feet"),
  30912. weight: math.unit(150, "lb"),
  30913. name: "Back",
  30914. image: {
  30915. source: "./media/characters/hugo-sigil/back.svg",
  30916. extra: 519 / 495,
  30917. bottom: 5 / 524
  30918. }
  30919. },
  30920. maw: {
  30921. height: math.unit(1.4, "feet"),
  30922. weight: math.unit(150, "lb"),
  30923. name: "Maw",
  30924. image: {
  30925. source: "./media/characters/hugo-sigil/maw.svg"
  30926. }
  30927. },
  30928. feet: {
  30929. height: math.unit(1.56, "feet"),
  30930. weight: math.unit(150, "lb"),
  30931. name: "Feet",
  30932. image: {
  30933. source: "./media/characters/hugo-sigil/feet.svg",
  30934. extra: 177 / 177,
  30935. bottom: 12 / 189
  30936. }
  30937. },
  30938. },
  30939. [
  30940. {
  30941. name: "Normal",
  30942. height: math.unit(6, "feet")
  30943. },
  30944. {
  30945. name: "Macro",
  30946. height: math.unit(200, "feet"),
  30947. default: true
  30948. },
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30953. {
  30954. front: {
  30955. height: math.unit(6, "feet"),
  30956. weight: math.unit(150, "lb"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/peri/front.svg",
  30960. extra: 2354 / 2233,
  30961. bottom: 49 / 2403
  30962. }
  30963. },
  30964. },
  30965. [
  30966. {
  30967. name: "Really Small",
  30968. height: math.unit(1, "nm")
  30969. },
  30970. {
  30971. name: "Micro",
  30972. height: math.unit(4, "inches")
  30973. },
  30974. {
  30975. name: "Normal",
  30976. height: math.unit(7, "inches"),
  30977. default: true
  30978. },
  30979. {
  30980. name: "Macro",
  30981. height: math.unit(400, "feet")
  30982. },
  30983. {
  30984. name: "Megamacro",
  30985. height: math.unit(100, "miles")
  30986. },
  30987. ]
  30988. ))
  30989. characterMakers.push(() => makeCharacter(
  30990. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30991. {
  30992. frontSlim: {
  30993. height: math.unit(7, "feet"),
  30994. name: "Front (Slim)",
  30995. image: {
  30996. source: "./media/characters/issilora/front-slim.svg",
  30997. extra: 529 / 449,
  30998. bottom: 53 / 582
  30999. }
  31000. },
  31001. sideSlim: {
  31002. height: math.unit(7, "feet"),
  31003. name: "Side (Slim)",
  31004. image: {
  31005. source: "./media/characters/issilora/side-slim.svg",
  31006. extra: 570 / 480,
  31007. bottom: 30 / 600
  31008. }
  31009. },
  31010. backSlim: {
  31011. height: math.unit(7, "feet"),
  31012. name: "Back (Slim)",
  31013. image: {
  31014. source: "./media/characters/issilora/back-slim.svg",
  31015. extra: 537 / 455,
  31016. bottom: 46 / 583
  31017. }
  31018. },
  31019. frontBuff: {
  31020. height: math.unit(7, "feet"),
  31021. name: "Front (Buff)",
  31022. image: {
  31023. source: "./media/characters/issilora/front-buff.svg",
  31024. extra: 2310 / 2035,
  31025. bottom: 335 / 2645
  31026. }
  31027. },
  31028. head: {
  31029. height: math.unit(1.94, "feet"),
  31030. name: "Head",
  31031. image: {
  31032. source: "./media/characters/issilora/head.svg"
  31033. }
  31034. },
  31035. },
  31036. [
  31037. {
  31038. name: "Minimum",
  31039. height: math.unit(7, "feet")
  31040. },
  31041. {
  31042. name: "Comfortable",
  31043. height: math.unit(17, "feet")
  31044. },
  31045. {
  31046. name: "Fun Size",
  31047. height: math.unit(47, "feet")
  31048. },
  31049. {
  31050. name: "Natural Macro",
  31051. height: math.unit(137, "feet"),
  31052. default: true
  31053. },
  31054. {
  31055. name: "Maximum Kaiju",
  31056. height: math.unit(397, "feet")
  31057. },
  31058. ]
  31059. ))
  31060. characterMakers.push(() => makeCharacter(
  31061. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31062. {
  31063. front: {
  31064. height: math.unit(50 + 9/12, "feet"),
  31065. weight: math.unit(32.8, "tons"),
  31066. name: "Front",
  31067. image: {
  31068. source: "./media/characters/irb'iiritaahn/front.svg",
  31069. extra: 1878/1826,
  31070. bottom: 326/2204
  31071. }
  31072. },
  31073. back: {
  31074. height: math.unit(50 + 9/12, "feet"),
  31075. weight: math.unit(32.8, "tons"),
  31076. name: "Back",
  31077. image: {
  31078. source: "./media/characters/irb'iiritaahn/back.svg",
  31079. extra: 2052/2018,
  31080. bottom: 152/2204
  31081. }
  31082. },
  31083. head: {
  31084. height: math.unit(12.86, "feet"),
  31085. name: "Head",
  31086. image: {
  31087. source: "./media/characters/irb'iiritaahn/head.svg"
  31088. }
  31089. },
  31090. maw: {
  31091. height: math.unit(9.66, "feet"),
  31092. name: "Maw",
  31093. image: {
  31094. source: "./media/characters/irb'iiritaahn/maw.svg"
  31095. }
  31096. },
  31097. frontDick: {
  31098. height: math.unit(8.78461, "feet"),
  31099. name: "Front Dick",
  31100. image: {
  31101. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31102. }
  31103. },
  31104. rearDick: {
  31105. height: math.unit(8.78461, "feet"),
  31106. name: "Rear Dick",
  31107. image: {
  31108. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31109. }
  31110. },
  31111. rearDickUnfolded: {
  31112. height: math.unit(8.78, "feet"),
  31113. name: "Rear Dick (Unfolded)",
  31114. image: {
  31115. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31116. }
  31117. },
  31118. wings: {
  31119. height: math.unit(43, "feet"),
  31120. name: "Wings",
  31121. image: {
  31122. source: "./media/characters/irb'iiritaahn/wings.svg"
  31123. }
  31124. },
  31125. },
  31126. [
  31127. {
  31128. name: "Macro",
  31129. height: math.unit(50 + 9/12, "feet"),
  31130. default: true
  31131. },
  31132. ]
  31133. ))
  31134. characterMakers.push(() => makeCharacter(
  31135. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31136. {
  31137. front: {
  31138. height: math.unit(205, "cm"),
  31139. weight: math.unit(102, "kg"),
  31140. name: "Front",
  31141. image: {
  31142. source: "./media/characters/irbisgreif/front.svg",
  31143. extra: 785/706,
  31144. bottom: 13/798
  31145. }
  31146. },
  31147. back: {
  31148. height: math.unit(205, "cm"),
  31149. weight: math.unit(102, "kg"),
  31150. name: "Back",
  31151. image: {
  31152. source: "./media/characters/irbisgreif/back.svg",
  31153. extra: 713/701,
  31154. bottom: 26/739
  31155. }
  31156. },
  31157. frontDressed: {
  31158. height: math.unit(216, "cm"),
  31159. weight: math.unit(102, "kg"),
  31160. name: "Front-dressed",
  31161. image: {
  31162. source: "./media/characters/irbisgreif/front-dressed.svg",
  31163. extra: 902/776,
  31164. bottom: 14/916
  31165. }
  31166. },
  31167. sideDressed: {
  31168. height: math.unit(195, "cm"),
  31169. weight: math.unit(102, "kg"),
  31170. name: "Side-dressed",
  31171. image: {
  31172. source: "./media/characters/irbisgreif/side-dressed.svg",
  31173. extra: 788/688,
  31174. bottom: 21/809
  31175. }
  31176. },
  31177. backDressed: {
  31178. height: math.unit(216, "cm"),
  31179. weight: math.unit(102, "kg"),
  31180. name: "Back-dressed",
  31181. image: {
  31182. source: "./media/characters/irbisgreif/back-dressed.svg",
  31183. extra: 901/783,
  31184. bottom: 10/911
  31185. }
  31186. },
  31187. dick: {
  31188. height: math.unit(0.49, "feet"),
  31189. name: "Dick",
  31190. image: {
  31191. source: "./media/characters/irbisgreif/dick.svg"
  31192. }
  31193. },
  31194. wingTop: {
  31195. height: math.unit(1.93 , "feet"),
  31196. name: "Wing-top",
  31197. image: {
  31198. source: "./media/characters/irbisgreif/wing-top.svg"
  31199. }
  31200. },
  31201. wingBottom: {
  31202. height: math.unit(1.93 , "feet"),
  31203. name: "Wing-bottom",
  31204. image: {
  31205. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31206. }
  31207. },
  31208. },
  31209. [
  31210. {
  31211. name: "Normal",
  31212. height: math.unit(216, "cm"),
  31213. default: true
  31214. },
  31215. ]
  31216. ))
  31217. characterMakers.push(() => makeCharacter(
  31218. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31219. {
  31220. front: {
  31221. height: math.unit(6, "feet"),
  31222. weight: math.unit(150, "lb"),
  31223. name: "Front",
  31224. image: {
  31225. source: "./media/characters/pride/front.svg",
  31226. extra: 1299/1230,
  31227. bottom: 18/1317
  31228. }
  31229. },
  31230. },
  31231. [
  31232. {
  31233. name: "Normal",
  31234. height: math.unit(7, "feet")
  31235. },
  31236. {
  31237. name: "Mini-macro",
  31238. height: math.unit(11, "feet")
  31239. },
  31240. {
  31241. name: "Macro",
  31242. height: math.unit(15, "meters"),
  31243. default: true
  31244. },
  31245. {
  31246. name: "Macro+",
  31247. height: math.unit(40, "meters")
  31248. },
  31249. ]
  31250. ))
  31251. characterMakers.push(() => makeCharacter(
  31252. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31253. {
  31254. front: {
  31255. height: math.unit(4 + 2 / 12, "feet"),
  31256. weight: math.unit(95, "lb"),
  31257. name: "Front",
  31258. image: {
  31259. source: "./media/characters/vaelophis-nyx/front.svg",
  31260. extra: 2532/2330,
  31261. bottom: 0/2532
  31262. }
  31263. },
  31264. back: {
  31265. height: math.unit(4 + 2 / 12, "feet"),
  31266. weight: math.unit(95, "lb"),
  31267. name: "Back",
  31268. image: {
  31269. source: "./media/characters/vaelophis-nyx/back.svg",
  31270. extra: 2484/2361,
  31271. bottom: 0/2484
  31272. }
  31273. },
  31274. feralSide: {
  31275. height: math.unit(2 + 1/12, "feet"),
  31276. weight: math.unit(20, "lb"),
  31277. name: "Feral (Side)",
  31278. image: {
  31279. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31280. extra: 1721/1581,
  31281. bottom: 70/1791
  31282. }
  31283. },
  31284. feralLazing: {
  31285. height: math.unit(1.08, "feet"),
  31286. weight: math.unit(20, "lb"),
  31287. name: "Feral (Lazing)",
  31288. image: {
  31289. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31290. extra: 822/822,
  31291. bottom: 248/1070
  31292. }
  31293. },
  31294. ear: {
  31295. height: math.unit(0.416, "feet"),
  31296. name: "Ear",
  31297. image: {
  31298. source: "./media/characters/vaelophis-nyx/ear.svg"
  31299. }
  31300. },
  31301. eye: {
  31302. height: math.unit(0.0748, "feet"),
  31303. name: "Eye",
  31304. image: {
  31305. source: "./media/characters/vaelophis-nyx/eye.svg"
  31306. }
  31307. },
  31308. mouth: {
  31309. height: math.unit(0.378, "feet"),
  31310. name: "Mouth",
  31311. image: {
  31312. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31313. }
  31314. },
  31315. spade: {
  31316. height: math.unit(0.55, "feet"),
  31317. name: "Spade",
  31318. image: {
  31319. source: "./media/characters/vaelophis-nyx/spade.svg"
  31320. }
  31321. },
  31322. },
  31323. [
  31324. {
  31325. name: "Normal",
  31326. height: math.unit(4 + 2/12, "feet"),
  31327. default: true
  31328. },
  31329. ]
  31330. ))
  31331. characterMakers.push(() => makeCharacter(
  31332. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31333. {
  31334. front: {
  31335. height: math.unit(7, "feet"),
  31336. weight: math.unit(231, "lb"),
  31337. name: "Front",
  31338. image: {
  31339. source: "./media/characters/flux/front.svg",
  31340. extra: 919/871,
  31341. bottom: 0/919
  31342. }
  31343. },
  31344. back: {
  31345. height: math.unit(7, "feet"),
  31346. weight: math.unit(231, "lb"),
  31347. name: "Back",
  31348. image: {
  31349. source: "./media/characters/flux/back.svg",
  31350. extra: 1040/992,
  31351. bottom: 0/1040
  31352. }
  31353. },
  31354. frontDressed: {
  31355. height: math.unit(7, "feet"),
  31356. weight: math.unit(231, "lb"),
  31357. name: "Front (Dressed)",
  31358. image: {
  31359. source: "./media/characters/flux/front-dressed.svg",
  31360. extra: 919/871,
  31361. bottom: 0/919
  31362. }
  31363. },
  31364. feralSide: {
  31365. height: math.unit(5, "feet"),
  31366. weight: math.unit(150, "lb"),
  31367. name: "Feral (Side)",
  31368. image: {
  31369. source: "./media/characters/flux/feral-side.svg",
  31370. extra: 598/528,
  31371. bottom: 28/626
  31372. }
  31373. },
  31374. head: {
  31375. height: math.unit(1.585, "feet"),
  31376. name: "Head",
  31377. image: {
  31378. source: "./media/characters/flux/head.svg"
  31379. }
  31380. },
  31381. headSide: {
  31382. height: math.unit(1.74, "feet"),
  31383. name: "Head (Side)",
  31384. image: {
  31385. source: "./media/characters/flux/head-side.svg"
  31386. }
  31387. },
  31388. headSideFire: {
  31389. height: math.unit(1.76, "feet"),
  31390. name: "Head (Side, Fire)",
  31391. image: {
  31392. source: "./media/characters/flux/head-side-fire.svg"
  31393. }
  31394. },
  31395. },
  31396. [
  31397. {
  31398. name: "Normal",
  31399. height: math.unit(7, "feet"),
  31400. default: true
  31401. },
  31402. ]
  31403. ))
  31404. characterMakers.push(() => makeCharacter(
  31405. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31406. {
  31407. front: {
  31408. height: math.unit(9, "feet"),
  31409. weight: math.unit(1012, "lb"),
  31410. name: "Front",
  31411. image: {
  31412. source: "./media/characters/ulfra-lupae/front.svg",
  31413. extra: 1083/1011,
  31414. bottom: 67/1150
  31415. }
  31416. },
  31417. },
  31418. [
  31419. {
  31420. name: "Micro",
  31421. height: math.unit(6, "inches")
  31422. },
  31423. {
  31424. name: "Socializing",
  31425. height: math.unit(6 + 5/12, "feet")
  31426. },
  31427. {
  31428. name: "Normal",
  31429. height: math.unit(9, "feet"),
  31430. default: true
  31431. },
  31432. {
  31433. name: "Macro",
  31434. height: math.unit(150, "feet")
  31435. },
  31436. ]
  31437. ))
  31438. characterMakers.push(() => makeCharacter(
  31439. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31440. {
  31441. front: {
  31442. height: math.unit(5 + 2/12, "feet"),
  31443. weight: math.unit(120, "lb"),
  31444. name: "Front",
  31445. image: {
  31446. source: "./media/characters/timber/front.svg",
  31447. extra: 2814/2705,
  31448. bottom: 181/2995
  31449. }
  31450. },
  31451. },
  31452. [
  31453. {
  31454. name: "Normal",
  31455. height: math.unit(5 + 2/12, "feet"),
  31456. default: true
  31457. },
  31458. ]
  31459. ))
  31460. characterMakers.push(() => makeCharacter(
  31461. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31462. {
  31463. front: {
  31464. height: math.unit(5 + 7/12, "feet"),
  31465. weight: math.unit(220, "lb"),
  31466. name: "Front",
  31467. image: {
  31468. source: "./media/characters/nicki/front.svg",
  31469. extra: 453/419,
  31470. bottom: 7/460
  31471. }
  31472. },
  31473. frontAlt: {
  31474. height: math.unit(5 + 7/12, "feet"),
  31475. weight: math.unit(220, "lb"),
  31476. name: "Front-alt",
  31477. image: {
  31478. source: "./media/characters/nicki/front-alt.svg",
  31479. extra: 435/411,
  31480. bottom: 12/447
  31481. }
  31482. },
  31483. back: {
  31484. height: math.unit(5 + 7/12, "feet"),
  31485. weight: math.unit(220, "lb"),
  31486. name: "Back",
  31487. image: {
  31488. source: "./media/characters/nicki/back.svg",
  31489. extra: 440/413,
  31490. bottom: 19/459
  31491. }
  31492. },
  31493. taur: {
  31494. height: math.unit(7 + 6/12, "feet"),
  31495. weight: math.unit(700, "lb"),
  31496. name: "Taur",
  31497. image: {
  31498. source: "./media/characters/nicki/taur.svg",
  31499. extra: 975/773,
  31500. bottom: 0/975
  31501. }
  31502. },
  31503. frontNsfw: {
  31504. height: math.unit(5 + 7/12, "feet"),
  31505. weight: math.unit(220, "lb"),
  31506. name: "Front (NSFW)",
  31507. image: {
  31508. source: "./media/characters/nicki/front-nsfw.svg",
  31509. extra: 453/419,
  31510. bottom: 7/460
  31511. }
  31512. },
  31513. frontNsfwAlt: {
  31514. height: math.unit(5 + 7/12, "feet"),
  31515. weight: math.unit(220, "lb"),
  31516. name: "Front (Alt, NSFW)",
  31517. image: {
  31518. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31519. extra: 435/411,
  31520. bottom: 12/447
  31521. }
  31522. },
  31523. backNsfw: {
  31524. height: math.unit(5 + 7/12, "feet"),
  31525. weight: math.unit(220, "lb"),
  31526. name: "Back (NSFW)",
  31527. image: {
  31528. source: "./media/characters/nicki/back-nsfw.svg",
  31529. extra: 440/413,
  31530. bottom: 19/459
  31531. }
  31532. },
  31533. head: {
  31534. height: math.unit(2.1, "feet"),
  31535. name: "Head",
  31536. image: {
  31537. source: "./media/characters/nicki/head.svg"
  31538. }
  31539. },
  31540. paw: {
  31541. height: math.unit(1.88, "feet"),
  31542. name: "Paw",
  31543. image: {
  31544. source: "./media/characters/nicki/paw.svg"
  31545. }
  31546. },
  31547. },
  31548. [
  31549. {
  31550. name: "Normal",
  31551. height: math.unit(5 + 7/12, "feet"),
  31552. default: true
  31553. },
  31554. ]
  31555. ))
  31556. characterMakers.push(() => makeCharacter(
  31557. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31558. {
  31559. front: {
  31560. height: math.unit(7 + 10/12, "feet"),
  31561. weight: math.unit(3.5, "tons"),
  31562. name: "Front",
  31563. image: {
  31564. source: "./media/characters/lee/front.svg",
  31565. extra: 1773/1615,
  31566. bottom: 86/1859
  31567. }
  31568. },
  31569. hand: {
  31570. height: math.unit(1.78, "feet"),
  31571. name: "Hand",
  31572. image: {
  31573. source: "./media/characters/lee/hand.svg"
  31574. }
  31575. },
  31576. maw: {
  31577. height: math.unit(1.18, "feet"),
  31578. name: "Maw",
  31579. image: {
  31580. source: "./media/characters/lee/maw.svg"
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Normal",
  31587. height: math.unit(7 + 10/12, "feet"),
  31588. default: true
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31594. {
  31595. front: {
  31596. height: math.unit(9, "feet"),
  31597. name: "Front",
  31598. image: {
  31599. source: "./media/characters/guti/front.svg",
  31600. extra: 4551/4355,
  31601. bottom: 123/4674
  31602. }
  31603. },
  31604. tongue: {
  31605. height: math.unit(1, "feet"),
  31606. name: "Tongue",
  31607. image: {
  31608. source: "./media/characters/guti/tongue.svg"
  31609. }
  31610. },
  31611. paw: {
  31612. height: math.unit(1.18, "feet"),
  31613. name: "Paw",
  31614. image: {
  31615. source: "./media/characters/guti/paw.svg"
  31616. }
  31617. },
  31618. },
  31619. [
  31620. {
  31621. name: "Normal",
  31622. height: math.unit(9, "feet"),
  31623. default: true
  31624. },
  31625. ]
  31626. ))
  31627. characterMakers.push(() => makeCharacter(
  31628. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31629. {
  31630. side: {
  31631. height: math.unit(5, "meters"),
  31632. name: "Side",
  31633. image: {
  31634. source: "./media/characters/vesper/side.svg",
  31635. extra: 1605/1518,
  31636. bottom: 0/1605
  31637. }
  31638. },
  31639. },
  31640. [
  31641. {
  31642. name: "Small",
  31643. height: math.unit(5, "meters")
  31644. },
  31645. {
  31646. name: "Sage",
  31647. height: math.unit(100, "meters"),
  31648. default: true
  31649. },
  31650. {
  31651. name: "Fun Size",
  31652. height: math.unit(600, "meters")
  31653. },
  31654. {
  31655. name: "Goddess",
  31656. height: math.unit(20000, "km")
  31657. },
  31658. {
  31659. name: "Maximum",
  31660. height: math.unit(5, "galaxies")
  31661. },
  31662. ]
  31663. ))
  31664. characterMakers.push(() => makeCharacter(
  31665. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31666. {
  31667. front: {
  31668. height: math.unit(6 + 3/12, "feet"),
  31669. weight: math.unit(190, "lb"),
  31670. name: "Front",
  31671. image: {
  31672. source: "./media/characters/gawain/front.svg",
  31673. extra: 2222/2139,
  31674. bottom: 90/2312
  31675. }
  31676. },
  31677. back: {
  31678. height: math.unit(6 + 3/12, "feet"),
  31679. weight: math.unit(190, "lb"),
  31680. name: "Back",
  31681. image: {
  31682. source: "./media/characters/gawain/back.svg",
  31683. extra: 2199/2111,
  31684. bottom: 73/2272
  31685. }
  31686. },
  31687. },
  31688. [
  31689. {
  31690. name: "Normal",
  31691. height: math.unit(6 + 3/12, "feet"),
  31692. default: true
  31693. },
  31694. ]
  31695. ))
  31696. characterMakers.push(() => makeCharacter(
  31697. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31698. {
  31699. side: {
  31700. height: math.unit(3.5, "meters"),
  31701. weight: math.unit(16000, "lb"),
  31702. name: "Side",
  31703. image: {
  31704. source: "./media/characters/dascalti/side.svg",
  31705. extra: 392/273,
  31706. bottom: 47/439
  31707. }
  31708. },
  31709. breath: {
  31710. height: math.unit(7.4, "feet"),
  31711. name: "Breath",
  31712. image: {
  31713. source: "./media/characters/dascalti/breath.svg"
  31714. }
  31715. },
  31716. fed: {
  31717. height: math.unit(3.6, "meters"),
  31718. weight: math.unit(16000, "lb"),
  31719. name: "Fed",
  31720. image: {
  31721. source: "./media/characters/dascalti/fed.svg",
  31722. extra: 1419/820,
  31723. bottom: 95/1514
  31724. }
  31725. },
  31726. },
  31727. [
  31728. {
  31729. name: "Normal",
  31730. height: math.unit(3.5, "meters"),
  31731. default: true
  31732. },
  31733. ]
  31734. ))
  31735. characterMakers.push(() => makeCharacter(
  31736. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31737. {
  31738. front: {
  31739. height: math.unit(3 + 5/12, "feet"),
  31740. name: "Front",
  31741. image: {
  31742. source: "./media/characters/mauve/front.svg",
  31743. extra: 1126/1033,
  31744. bottom: 65/1191
  31745. }
  31746. },
  31747. side: {
  31748. height: math.unit(3 + 5/12, "feet"),
  31749. name: "Side",
  31750. image: {
  31751. source: "./media/characters/mauve/side.svg",
  31752. extra: 1089/1001,
  31753. bottom: 29/1118
  31754. }
  31755. },
  31756. back: {
  31757. height: math.unit(3 + 5/12, "feet"),
  31758. name: "Back",
  31759. image: {
  31760. source: "./media/characters/mauve/back.svg",
  31761. extra: 1173/1053,
  31762. bottom: 109/1282
  31763. }
  31764. },
  31765. },
  31766. [
  31767. {
  31768. name: "Normal",
  31769. height: math.unit(3 + 5/12, "feet"),
  31770. default: true
  31771. },
  31772. ]
  31773. ))
  31774. characterMakers.push(() => makeCharacter(
  31775. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31776. {
  31777. front: {
  31778. height: math.unit(6 + 3/12, "feet"),
  31779. weight: math.unit(430, "lb"),
  31780. name: "Front",
  31781. image: {
  31782. source: "./media/characters/carlos/front.svg",
  31783. extra: 1964/1913,
  31784. bottom: 70/2034
  31785. }
  31786. },
  31787. },
  31788. [
  31789. {
  31790. name: "Normal",
  31791. height: math.unit(6 + 3/12, "feet"),
  31792. default: true
  31793. },
  31794. ]
  31795. ))
  31796. characterMakers.push(() => makeCharacter(
  31797. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31798. {
  31799. back: {
  31800. height: math.unit(5 + 10/12, "feet"),
  31801. weight: math.unit(200, "lb"),
  31802. name: "Back",
  31803. image: {
  31804. source: "./media/characters/jax/back.svg",
  31805. extra: 764/739,
  31806. bottom: 25/789
  31807. }
  31808. },
  31809. },
  31810. [
  31811. {
  31812. name: "Normal",
  31813. height: math.unit(5 + 10/12, "feet"),
  31814. default: true
  31815. },
  31816. ]
  31817. ))
  31818. characterMakers.push(() => makeCharacter(
  31819. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31820. {
  31821. front: {
  31822. height: math.unit(8, "feet"),
  31823. weight: math.unit(250, "lb"),
  31824. name: "Front",
  31825. image: {
  31826. source: "./media/characters/eikthynir/front.svg",
  31827. extra: 1332/1166,
  31828. bottom: 82/1414
  31829. }
  31830. },
  31831. back: {
  31832. height: math.unit(8, "feet"),
  31833. weight: math.unit(250, "lb"),
  31834. name: "Back",
  31835. image: {
  31836. source: "./media/characters/eikthynir/back.svg",
  31837. extra: 1342/1190,
  31838. bottom: 19/1361
  31839. }
  31840. },
  31841. dick: {
  31842. height: math.unit(2.35, "feet"),
  31843. name: "Dick",
  31844. image: {
  31845. source: "./media/characters/eikthynir/dick.svg"
  31846. }
  31847. },
  31848. },
  31849. [
  31850. {
  31851. name: "Normal",
  31852. height: math.unit(8, "feet"),
  31853. default: true
  31854. },
  31855. ]
  31856. ))
  31857. characterMakers.push(() => makeCharacter(
  31858. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31859. {
  31860. front: {
  31861. height: math.unit(99, "meters"),
  31862. weight: math.unit(13000, "tons"),
  31863. name: "Front",
  31864. image: {
  31865. source: "./media/characters/zlmos/front.svg",
  31866. extra: 2202/1992,
  31867. bottom: 315/2517
  31868. }
  31869. },
  31870. },
  31871. [
  31872. {
  31873. name: "Macro",
  31874. height: math.unit(99, "meters"),
  31875. default: true
  31876. },
  31877. ]
  31878. ))
  31879. characterMakers.push(() => makeCharacter(
  31880. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31881. {
  31882. front: {
  31883. height: math.unit(6 + 5/12, "feet"),
  31884. name: "Front",
  31885. image: {
  31886. source: "./media/characters/purri/front.svg",
  31887. extra: 1698/1610,
  31888. bottom: 32/1730
  31889. }
  31890. },
  31891. frontAlt: {
  31892. height: math.unit(6 + 5/12, "feet"),
  31893. name: "Front (Alt)",
  31894. image: {
  31895. source: "./media/characters/purri/front-alt.svg",
  31896. extra: 450/420,
  31897. bottom: 26/476
  31898. }
  31899. },
  31900. boots: {
  31901. height: math.unit(5.5, "feet"),
  31902. name: "Boots",
  31903. image: {
  31904. source: "./media/characters/purri/boots.svg",
  31905. extra: 905/853,
  31906. bottom: 18/923
  31907. }
  31908. },
  31909. lying: {
  31910. height: math.unit(2, "feet"),
  31911. name: "Lying",
  31912. image: {
  31913. source: "./media/characters/purri/lying.svg",
  31914. extra: 940/843,
  31915. bottom: 146/1086
  31916. }
  31917. },
  31918. devious: {
  31919. height: math.unit(1.77, "feet"),
  31920. name: "Devious",
  31921. image: {
  31922. source: "./media/characters/purri/devious.svg",
  31923. extra: 1440/1155,
  31924. bottom: 147/1587
  31925. }
  31926. },
  31927. bean: {
  31928. height: math.unit(1.94, "feet"),
  31929. name: "Bean",
  31930. image: {
  31931. source: "./media/characters/purri/bean.svg"
  31932. }
  31933. },
  31934. },
  31935. [
  31936. {
  31937. name: "Micro",
  31938. height: math.unit(1, "mm")
  31939. },
  31940. {
  31941. name: "Normal",
  31942. height: math.unit(6 + 5/12, "feet"),
  31943. default: true
  31944. },
  31945. {
  31946. name: "Macro :3c",
  31947. height: math.unit(2, "miles")
  31948. },
  31949. ]
  31950. ))
  31951. characterMakers.push(() => makeCharacter(
  31952. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31953. {
  31954. front: {
  31955. height: math.unit(6 + 2/12, "feet"),
  31956. weight: math.unit(250, "lb"),
  31957. name: "Front",
  31958. image: {
  31959. source: "./media/characters/moonlight/front.svg",
  31960. extra: 1044/908,
  31961. bottom: 56/1100
  31962. }
  31963. },
  31964. feral: {
  31965. height: math.unit(3 + 1/12, "feet"),
  31966. weight: math.unit(50, "kg"),
  31967. name: "Feral",
  31968. image: {
  31969. source: "./media/characters/moonlight/feral.svg",
  31970. extra: 3705/2791,
  31971. bottom: 145/3850
  31972. }
  31973. },
  31974. paw: {
  31975. height: math.unit(1, "feet"),
  31976. name: "Paw",
  31977. image: {
  31978. source: "./media/characters/moonlight/paw.svg"
  31979. }
  31980. },
  31981. paws: {
  31982. height: math.unit(0.98, "feet"),
  31983. name: "Paws",
  31984. image: {
  31985. source: "./media/characters/moonlight/paws.svg",
  31986. extra: 939/939,
  31987. bottom: 50/989
  31988. }
  31989. },
  31990. mouth: {
  31991. height: math.unit(0.48, "feet"),
  31992. name: "Mouth",
  31993. image: {
  31994. source: "./media/characters/moonlight/mouth.svg"
  31995. }
  31996. },
  31997. dick: {
  31998. height: math.unit(1.46, "feet"),
  31999. name: "Dick",
  32000. image: {
  32001. source: "./media/characters/moonlight/dick.svg"
  32002. }
  32003. },
  32004. },
  32005. [
  32006. {
  32007. name: "Normal",
  32008. height: math.unit(6 + 2/12, "feet"),
  32009. default: true
  32010. },
  32011. {
  32012. name: "Macro",
  32013. height: math.unit(300, "feet")
  32014. },
  32015. {
  32016. name: "Macro+",
  32017. height: math.unit(1, "mile")
  32018. },
  32019. {
  32020. name: "Mt. Moon",
  32021. height: math.unit(5, "miles")
  32022. },
  32023. {
  32024. name: "Megamacro",
  32025. height: math.unit(15, "miles")
  32026. },
  32027. ]
  32028. ))
  32029. characterMakers.push(() => makeCharacter(
  32030. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32031. {
  32032. back: {
  32033. height: math.unit(6, "feet"),
  32034. weight: math.unit(150, "lb"),
  32035. name: "Back",
  32036. image: {
  32037. source: "./media/characters/sylen/back.svg",
  32038. extra: 1335/1273,
  32039. bottom: 107/1442
  32040. }
  32041. },
  32042. },
  32043. [
  32044. {
  32045. name: "Normal",
  32046. height: math.unit(5 + 5/12, "feet")
  32047. },
  32048. {
  32049. name: "Megamacro",
  32050. height: math.unit(3, "miles"),
  32051. default: true
  32052. },
  32053. ]
  32054. ))
  32055. characterMakers.push(() => makeCharacter(
  32056. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32057. {
  32058. front: {
  32059. height: math.unit(6, "feet"),
  32060. weight: math.unit(190, "lb"),
  32061. name: "Front",
  32062. image: {
  32063. source: "./media/characters/huttser/front.svg",
  32064. extra: 1152/1058,
  32065. bottom: 23/1175
  32066. }
  32067. },
  32068. side: {
  32069. height: math.unit(6, "feet"),
  32070. weight: math.unit(190, "lb"),
  32071. name: "Side",
  32072. image: {
  32073. source: "./media/characters/huttser/side.svg",
  32074. extra: 1174/1065,
  32075. bottom: 18/1192
  32076. }
  32077. },
  32078. back: {
  32079. height: math.unit(6, "feet"),
  32080. weight: math.unit(190, "lb"),
  32081. name: "Back",
  32082. image: {
  32083. source: "./media/characters/huttser/back.svg",
  32084. extra: 1158/1056,
  32085. bottom: 12/1170
  32086. }
  32087. },
  32088. },
  32089. [
  32090. ]
  32091. ))
  32092. characterMakers.push(() => makeCharacter(
  32093. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32094. {
  32095. side: {
  32096. height: math.unit(12 + 9/12, "feet"),
  32097. weight: math.unit(15000, "lb"),
  32098. name: "Side",
  32099. image: {
  32100. source: "./media/characters/faan/side.svg",
  32101. extra: 2747/2697,
  32102. bottom: 0/2747
  32103. }
  32104. },
  32105. front: {
  32106. height: math.unit(12 + 9/12, "feet"),
  32107. weight: math.unit(15000, "lb"),
  32108. name: "Front",
  32109. image: {
  32110. source: "./media/characters/faan/front.svg",
  32111. extra: 607/571,
  32112. bottom: 24/631
  32113. }
  32114. },
  32115. head: {
  32116. height: math.unit(2.85, "feet"),
  32117. name: "Head",
  32118. image: {
  32119. source: "./media/characters/faan/head.svg"
  32120. }
  32121. },
  32122. headAlt: {
  32123. height: math.unit(3.13, "feet"),
  32124. name: "Head-alt",
  32125. image: {
  32126. source: "./media/characters/faan/head-alt.svg"
  32127. }
  32128. },
  32129. },
  32130. [
  32131. {
  32132. name: "Normal",
  32133. height: math.unit(12 + 9/12, "feet"),
  32134. default: true
  32135. },
  32136. ]
  32137. ))
  32138. characterMakers.push(() => makeCharacter(
  32139. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32140. {
  32141. front: {
  32142. height: math.unit(6, "feet"),
  32143. weight: math.unit(300, "lb"),
  32144. name: "Front",
  32145. image: {
  32146. source: "./media/characters/tanio/front.svg",
  32147. extra: 711/673,
  32148. bottom: 25/736
  32149. }
  32150. },
  32151. },
  32152. [
  32153. {
  32154. name: "Normal",
  32155. height: math.unit(6, "feet"),
  32156. default: true
  32157. },
  32158. ]
  32159. ))
  32160. characterMakers.push(() => makeCharacter(
  32161. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32162. {
  32163. front: {
  32164. height: math.unit(3, "inches"),
  32165. name: "Front",
  32166. image: {
  32167. source: "./media/characters/noboru/front.svg",
  32168. extra: 1039/932,
  32169. bottom: 18/1057
  32170. }
  32171. },
  32172. },
  32173. [
  32174. {
  32175. name: "Micro",
  32176. height: math.unit(3, "inches"),
  32177. default: true
  32178. },
  32179. ]
  32180. ))
  32181. characterMakers.push(() => makeCharacter(
  32182. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32183. {
  32184. front: {
  32185. height: math.unit(1.85, "meters"),
  32186. weight: math.unit(80, "kg"),
  32187. name: "Front",
  32188. image: {
  32189. source: "./media/characters/daniel-barrett/front.svg",
  32190. extra: 355/337,
  32191. bottom: 9/364
  32192. }
  32193. },
  32194. },
  32195. [
  32196. {
  32197. name: "Pico",
  32198. height: math.unit(0.0433, "mm")
  32199. },
  32200. {
  32201. name: "Nano",
  32202. height: math.unit(1.5, "mm")
  32203. },
  32204. {
  32205. name: "Micro",
  32206. height: math.unit(5.3, "cm"),
  32207. default: true
  32208. },
  32209. {
  32210. name: "Normal",
  32211. height: math.unit(1.85, "meters")
  32212. },
  32213. {
  32214. name: "Macro",
  32215. height: math.unit(64.7, "meters")
  32216. },
  32217. {
  32218. name: "Megamacro",
  32219. height: math.unit(2.26, "km")
  32220. },
  32221. {
  32222. name: "Gigamacro",
  32223. height: math.unit(79, "km")
  32224. },
  32225. {
  32226. name: "Teramacro",
  32227. height: math.unit(2765, "km")
  32228. },
  32229. {
  32230. name: "Petamacro",
  32231. height: math.unit(96678, "km")
  32232. },
  32233. ]
  32234. ))
  32235. characterMakers.push(() => makeCharacter(
  32236. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32237. {
  32238. front: {
  32239. height: math.unit(30, "meters"),
  32240. weight: math.unit(400, "tons"),
  32241. name: "Front",
  32242. image: {
  32243. source: "./media/characters/zeel/front.svg",
  32244. extra: 2599/2599,
  32245. bottom: 226/2825
  32246. }
  32247. },
  32248. },
  32249. [
  32250. {
  32251. name: "Macro",
  32252. height: math.unit(30, "meters"),
  32253. default: true
  32254. },
  32255. ]
  32256. ))
  32257. characterMakers.push(() => makeCharacter(
  32258. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32259. {
  32260. front: {
  32261. height: math.unit(6 + 7/12, "feet"),
  32262. weight: math.unit(210, "lb"),
  32263. name: "Front",
  32264. image: {
  32265. source: "./media/characters/tarn/front.svg",
  32266. extra: 3517/3220,
  32267. bottom: 91/3608
  32268. }
  32269. },
  32270. back: {
  32271. height: math.unit(6 + 7/12, "feet"),
  32272. weight: math.unit(210, "lb"),
  32273. name: "Back",
  32274. image: {
  32275. source: "./media/characters/tarn/back.svg",
  32276. extra: 3566/3241,
  32277. bottom: 34/3600
  32278. }
  32279. },
  32280. dick: {
  32281. height: math.unit(1.65, "feet"),
  32282. name: "Dick",
  32283. image: {
  32284. source: "./media/characters/tarn/dick.svg"
  32285. }
  32286. },
  32287. paw: {
  32288. height: math.unit(1.80, "feet"),
  32289. name: "Paw",
  32290. image: {
  32291. source: "./media/characters/tarn/paw.svg"
  32292. }
  32293. },
  32294. tongue: {
  32295. height: math.unit(0.97, "feet"),
  32296. name: "Tongue",
  32297. image: {
  32298. source: "./media/characters/tarn/tongue.svg"
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Micro",
  32305. height: math.unit(4, "inches")
  32306. },
  32307. {
  32308. name: "Normal",
  32309. height: math.unit(6 + 7/12, "feet"),
  32310. default: true
  32311. },
  32312. {
  32313. name: "Macro",
  32314. height: math.unit(300, "feet")
  32315. },
  32316. ]
  32317. ))
  32318. characterMakers.push(() => makeCharacter(
  32319. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32320. {
  32321. front: {
  32322. height: math.unit(5 + 7/12, "feet"),
  32323. weight: math.unit(80, "kg"),
  32324. name: "Front",
  32325. image: {
  32326. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32327. extra: 3023/2865,
  32328. bottom: 33/3056
  32329. }
  32330. },
  32331. back: {
  32332. height: math.unit(5 + 7/12, "feet"),
  32333. weight: math.unit(80, "kg"),
  32334. name: "Back",
  32335. image: {
  32336. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32337. extra: 3020/2886,
  32338. bottom: 30/3050
  32339. }
  32340. },
  32341. dick: {
  32342. height: math.unit(0.98, "feet"),
  32343. name: "Dick",
  32344. image: {
  32345. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32346. }
  32347. },
  32348. anatomy: {
  32349. height: math.unit(2.86, "feet"),
  32350. name: "Anatomy",
  32351. image: {
  32352. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32353. }
  32354. },
  32355. },
  32356. [
  32357. {
  32358. name: "Really Small",
  32359. height: math.unit(2, "inches")
  32360. },
  32361. {
  32362. name: "Micro",
  32363. height: math.unit(5.583, "inches")
  32364. },
  32365. {
  32366. name: "Normal",
  32367. height: math.unit(5 + 7/12, "feet"),
  32368. default: true
  32369. },
  32370. {
  32371. name: "Macro",
  32372. height: math.unit(67, "feet")
  32373. },
  32374. {
  32375. name: "Megamacro",
  32376. height: math.unit(134, "feet")
  32377. },
  32378. ]
  32379. ))
  32380. characterMakers.push(() => makeCharacter(
  32381. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32382. {
  32383. front: {
  32384. height: math.unit(9, "feet"),
  32385. weight: math.unit(120, "lb"),
  32386. name: "Front",
  32387. image: {
  32388. source: "./media/characters/sally/front.svg",
  32389. extra: 1506/1349,
  32390. bottom: 66/1572
  32391. }
  32392. },
  32393. },
  32394. [
  32395. {
  32396. name: "Normal",
  32397. height: math.unit(9, "feet"),
  32398. default: true
  32399. },
  32400. ]
  32401. ))
  32402. characterMakers.push(() => makeCharacter(
  32403. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32404. {
  32405. front: {
  32406. height: math.unit(8, "feet"),
  32407. weight: math.unit(900, "lb"),
  32408. name: "Front",
  32409. image: {
  32410. source: "./media/characters/owen/front.svg",
  32411. extra: 1761/1657,
  32412. bottom: 74/1835
  32413. }
  32414. },
  32415. side: {
  32416. height: math.unit(8, "feet"),
  32417. weight: math.unit(900, "lb"),
  32418. name: "Side",
  32419. image: {
  32420. source: "./media/characters/owen/side.svg",
  32421. extra: 1797/1734,
  32422. bottom: 30/1827
  32423. }
  32424. },
  32425. back: {
  32426. height: math.unit(8, "feet"),
  32427. weight: math.unit(900, "lb"),
  32428. name: "Back",
  32429. image: {
  32430. source: "./media/characters/owen/back.svg",
  32431. extra: 1796/1706,
  32432. bottom: 59/1855
  32433. }
  32434. },
  32435. maw: {
  32436. height: math.unit(1.76, "feet"),
  32437. name: "Maw",
  32438. image: {
  32439. source: "./media/characters/owen/maw.svg"
  32440. }
  32441. },
  32442. },
  32443. [
  32444. {
  32445. name: "Normal",
  32446. height: math.unit(8, "feet"),
  32447. default: true
  32448. },
  32449. ]
  32450. ))
  32451. characterMakers.push(() => makeCharacter(
  32452. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32453. {
  32454. front: {
  32455. height: math.unit(4, "feet"),
  32456. weight: math.unit(400, "lb"),
  32457. name: "Front",
  32458. image: {
  32459. source: "./media/characters/ryth/front.svg",
  32460. extra: 1920/1748,
  32461. bottom: 42/1962
  32462. }
  32463. },
  32464. back: {
  32465. height: math.unit(4, "feet"),
  32466. weight: math.unit(400, "lb"),
  32467. name: "Back",
  32468. image: {
  32469. source: "./media/characters/ryth/back.svg",
  32470. extra: 1897/1690,
  32471. bottom: 89/1986
  32472. }
  32473. },
  32474. mouth: {
  32475. height: math.unit(1.39, "feet"),
  32476. name: "Mouth",
  32477. image: {
  32478. source: "./media/characters/ryth/mouth.svg"
  32479. }
  32480. },
  32481. tailmaw: {
  32482. height: math.unit(1.23, "feet"),
  32483. name: "Tailmaw",
  32484. image: {
  32485. source: "./media/characters/ryth/tailmaw.svg"
  32486. }
  32487. },
  32488. goia: {
  32489. height: math.unit(4, "meters"),
  32490. weight: math.unit(10800, "lb"),
  32491. name: "Goia",
  32492. image: {
  32493. source: "./media/characters/ryth/goia.svg",
  32494. extra: 745/640,
  32495. bottom: 107/852
  32496. }
  32497. },
  32498. goiaFront: {
  32499. height: math.unit(4, "meters"),
  32500. weight: math.unit(10800, "lb"),
  32501. name: "Goia (Front)",
  32502. image: {
  32503. source: "./media/characters/ryth/goia-front.svg",
  32504. extra: 750/586,
  32505. bottom: 114/864
  32506. }
  32507. },
  32508. goiaMaw: {
  32509. height: math.unit(5.55, "feet"),
  32510. name: "Goia Maw",
  32511. image: {
  32512. source: "./media/characters/ryth/goia-maw.svg"
  32513. }
  32514. },
  32515. goiaForepaw: {
  32516. height: math.unit(3.5, "feet"),
  32517. name: "Goia Forepaw",
  32518. image: {
  32519. source: "./media/characters/ryth/goia-forepaw.svg"
  32520. }
  32521. },
  32522. goiaHindpaw: {
  32523. height: math.unit(5.55, "feet"),
  32524. name: "Goia Hindpaw",
  32525. image: {
  32526. source: "./media/characters/ryth/goia-hindpaw.svg"
  32527. }
  32528. },
  32529. },
  32530. [
  32531. {
  32532. name: "Normal",
  32533. height: math.unit(4, "feet"),
  32534. default: true
  32535. },
  32536. ]
  32537. ))
  32538. characterMakers.push(() => makeCharacter(
  32539. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32540. {
  32541. front: {
  32542. height: math.unit(7, "feet"),
  32543. weight: math.unit(180, "lb"),
  32544. name: "Front",
  32545. image: {
  32546. source: "./media/characters/necrolance/front.svg",
  32547. extra: 1062/947,
  32548. bottom: 41/1103
  32549. }
  32550. },
  32551. back: {
  32552. height: math.unit(7, "feet"),
  32553. weight: math.unit(180, "lb"),
  32554. name: "Back",
  32555. image: {
  32556. source: "./media/characters/necrolance/back.svg",
  32557. extra: 1045/984,
  32558. bottom: 14/1059
  32559. }
  32560. },
  32561. wing: {
  32562. height: math.unit(2.67, "feet"),
  32563. name: "Wing",
  32564. image: {
  32565. source: "./media/characters/necrolance/wing.svg"
  32566. }
  32567. },
  32568. },
  32569. [
  32570. {
  32571. name: "Normal",
  32572. height: math.unit(7, "feet"),
  32573. default: true
  32574. },
  32575. ]
  32576. ))
  32577. characterMakers.push(() => makeCharacter(
  32578. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32579. {
  32580. front: {
  32581. height: math.unit(76, "meters"),
  32582. weight: math.unit(30000, "tons"),
  32583. name: "Front",
  32584. image: {
  32585. source: "./media/characters/tyler/front.svg",
  32586. extra: 1640/1640,
  32587. bottom: 114/1754
  32588. }
  32589. },
  32590. },
  32591. [
  32592. {
  32593. name: "Macro",
  32594. height: math.unit(76, "meters"),
  32595. default: true
  32596. },
  32597. ]
  32598. ))
  32599. characterMakers.push(() => makeCharacter(
  32600. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32601. {
  32602. front: {
  32603. height: math.unit(4 + 11/12, "feet"),
  32604. weight: math.unit(132, "lb"),
  32605. name: "Front",
  32606. image: {
  32607. source: "./media/characters/icey/front.svg",
  32608. extra: 2750/2550,
  32609. bottom: 33/2783
  32610. }
  32611. },
  32612. back: {
  32613. height: math.unit(4 + 11/12, "feet"),
  32614. weight: math.unit(132, "lb"),
  32615. name: "Back",
  32616. image: {
  32617. source: "./media/characters/icey/back.svg",
  32618. extra: 2624/2481,
  32619. bottom: 35/2659
  32620. }
  32621. },
  32622. },
  32623. [
  32624. {
  32625. name: "Normal",
  32626. height: math.unit(4 + 11/12, "feet"),
  32627. default: true
  32628. },
  32629. ]
  32630. ))
  32631. characterMakers.push(() => makeCharacter(
  32632. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32633. {
  32634. front: {
  32635. height: math.unit(100, "feet"),
  32636. weight: math.unit(0, "lb"),
  32637. name: "Front",
  32638. image: {
  32639. source: "./media/characters/smile/front.svg",
  32640. extra: 2983/2912,
  32641. bottom: 162/3145
  32642. }
  32643. },
  32644. back: {
  32645. height: math.unit(100, "feet"),
  32646. weight: math.unit(0, "lb"),
  32647. name: "Back",
  32648. image: {
  32649. source: "./media/characters/smile/back.svg",
  32650. extra: 3143/3031,
  32651. bottom: 91/3234
  32652. }
  32653. },
  32654. head: {
  32655. height: math.unit(26.3, "feet"),
  32656. weight: math.unit(0, "lb"),
  32657. name: "Head",
  32658. image: {
  32659. source: "./media/characters/smile/head.svg"
  32660. }
  32661. },
  32662. collar: {
  32663. height: math.unit(5.3, "feet"),
  32664. weight: math.unit(0, "lb"),
  32665. name: "Collar",
  32666. image: {
  32667. source: "./media/characters/smile/collar.svg"
  32668. }
  32669. },
  32670. },
  32671. [
  32672. {
  32673. name: "Macro",
  32674. height: math.unit(100, "feet"),
  32675. default: true
  32676. },
  32677. ]
  32678. ))
  32679. characterMakers.push(() => makeCharacter(
  32680. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32681. {
  32682. dragon: {
  32683. height: math.unit(26, "feet"),
  32684. weight: math.unit(36, "tons"),
  32685. name: "Dragon",
  32686. image: {
  32687. source: "./media/characters/arimphae/dragon.svg",
  32688. extra: 1574/983,
  32689. bottom: 357/1931
  32690. }
  32691. },
  32692. drake: {
  32693. height: math.unit(9, "feet"),
  32694. weight: math.unit(1.5, "tons"),
  32695. name: "Drake",
  32696. image: {
  32697. source: "./media/characters/arimphae/drake.svg",
  32698. extra: 1120/925,
  32699. bottom: 435/1555
  32700. }
  32701. },
  32702. },
  32703. [
  32704. {
  32705. name: "Small",
  32706. height: math.unit(26*5/9, "feet")
  32707. },
  32708. {
  32709. name: "Normal",
  32710. height: math.unit(26, "feet"),
  32711. default: true
  32712. },
  32713. ]
  32714. ))
  32715. characterMakers.push(() => makeCharacter(
  32716. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32717. {
  32718. front: {
  32719. height: math.unit(8 + 9/12, "feet"),
  32720. name: "Front",
  32721. image: {
  32722. source: "./media/characters/xander/front.svg",
  32723. extra: 1237/974,
  32724. bottom: 94/1331
  32725. }
  32726. },
  32727. },
  32728. [
  32729. {
  32730. name: "Normal",
  32731. height: math.unit(8 + 9/12, "feet"),
  32732. default: true
  32733. },
  32734. {
  32735. name: "Gaze Grabber",
  32736. height: math.unit(13 + 8/12, "feet")
  32737. },
  32738. {
  32739. name: "Jaw Dropper",
  32740. height: math.unit(27, "feet")
  32741. },
  32742. {
  32743. name: "Show Stopper",
  32744. height: math.unit(136, "feet")
  32745. },
  32746. {
  32747. name: "Superstar",
  32748. height: math.unit(1.9e6, "miles")
  32749. },
  32750. ]
  32751. ))
  32752. characterMakers.push(() => makeCharacter(
  32753. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32754. {
  32755. side: {
  32756. height: math.unit(2100, "feet"),
  32757. name: "Side",
  32758. image: {
  32759. source: "./media/characters/osiris/side.svg",
  32760. extra: 1105/939,
  32761. bottom: 167/1272
  32762. }
  32763. },
  32764. },
  32765. [
  32766. {
  32767. name: "Macro",
  32768. height: math.unit(2100, "feet"),
  32769. default: true
  32770. },
  32771. ]
  32772. ))
  32773. characterMakers.push(() => makeCharacter(
  32774. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32775. {
  32776. front: {
  32777. height: math.unit(6 + 8/12, "feet"),
  32778. weight: math.unit(225, "lb"),
  32779. name: "Front",
  32780. image: {
  32781. source: "./media/characters/rhys-londe/front.svg",
  32782. extra: 2258/2141,
  32783. bottom: 188/2446
  32784. }
  32785. },
  32786. back: {
  32787. height: math.unit(6 + 8/12, "feet"),
  32788. weight: math.unit(225, "lb"),
  32789. name: "Back",
  32790. image: {
  32791. source: "./media/characters/rhys-londe/back.svg",
  32792. extra: 2237/2137,
  32793. bottom: 63/2300
  32794. }
  32795. },
  32796. frontNsfw: {
  32797. height: math.unit(6 + 8/12, "feet"),
  32798. weight: math.unit(225, "lb"),
  32799. name: "Front (NSFW)",
  32800. image: {
  32801. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32802. extra: 2258/2141,
  32803. bottom: 188/2446
  32804. }
  32805. },
  32806. backNsfw: {
  32807. height: math.unit(6 + 8/12, "feet"),
  32808. weight: math.unit(225, "lb"),
  32809. name: "Back (NSFW)",
  32810. image: {
  32811. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32812. extra: 2237/2137,
  32813. bottom: 63/2300
  32814. }
  32815. },
  32816. dick: {
  32817. height: math.unit(30, "inches"),
  32818. name: "Dick",
  32819. image: {
  32820. source: "./media/characters/rhys-londe/dick.svg"
  32821. }
  32822. },
  32823. maw: {
  32824. height: math.unit(1.6, "feet"),
  32825. name: "Maw",
  32826. image: {
  32827. source: "./media/characters/rhys-londe/maw.svg"
  32828. }
  32829. },
  32830. },
  32831. [
  32832. {
  32833. name: "Normal",
  32834. height: math.unit(6 + 8/12, "feet"),
  32835. default: true
  32836. },
  32837. ]
  32838. ))
  32839. characterMakers.push(() => makeCharacter(
  32840. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32841. {
  32842. front: {
  32843. height: math.unit(3 + 10/12, "feet"),
  32844. weight: math.unit(90, "lb"),
  32845. name: "Front",
  32846. image: {
  32847. source: "./media/characters/taivas-ensim/front.svg",
  32848. extra: 1327/1216,
  32849. bottom: 96/1423
  32850. }
  32851. },
  32852. back: {
  32853. height: math.unit(3 + 10/12, "feet"),
  32854. weight: math.unit(90, "lb"),
  32855. name: "Back",
  32856. image: {
  32857. source: "./media/characters/taivas-ensim/back.svg",
  32858. extra: 1355/1247,
  32859. bottom: 11/1366
  32860. }
  32861. },
  32862. frontNsfw: {
  32863. height: math.unit(3 + 10/12, "feet"),
  32864. weight: math.unit(90, "lb"),
  32865. name: "Front (NSFW)",
  32866. image: {
  32867. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32868. extra: 1327/1216,
  32869. bottom: 96/1423
  32870. }
  32871. },
  32872. backNsfw: {
  32873. height: math.unit(3 + 10/12, "feet"),
  32874. weight: math.unit(90, "lb"),
  32875. name: "Back (NSFW)",
  32876. image: {
  32877. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32878. extra: 1355/1247,
  32879. bottom: 11/1366
  32880. }
  32881. },
  32882. },
  32883. [
  32884. {
  32885. name: "Normal",
  32886. height: math.unit(3 + 10/12, "feet"),
  32887. default: true
  32888. },
  32889. ]
  32890. ))
  32891. characterMakers.push(() => makeCharacter(
  32892. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32893. {
  32894. front: {
  32895. height: math.unit(9 + 6/12, "feet"),
  32896. weight: math.unit(940, "lb"),
  32897. name: "Front",
  32898. image: {
  32899. source: "./media/characters/byliss/front.svg",
  32900. extra: 1327/1290,
  32901. bottom: 82/1409
  32902. }
  32903. },
  32904. back: {
  32905. height: math.unit(9 + 6/12, "feet"),
  32906. weight: math.unit(940, "lb"),
  32907. name: "Back",
  32908. image: {
  32909. source: "./media/characters/byliss/back.svg",
  32910. extra: 1376/1349,
  32911. bottom: 9/1385
  32912. }
  32913. },
  32914. frontNsfw: {
  32915. height: math.unit(9 + 6/12, "feet"),
  32916. weight: math.unit(940, "lb"),
  32917. name: "Front (NSFW)",
  32918. image: {
  32919. source: "./media/characters/byliss/front-nsfw.svg",
  32920. extra: 1327/1290,
  32921. bottom: 82/1409
  32922. }
  32923. },
  32924. backNsfw: {
  32925. height: math.unit(9 + 6/12, "feet"),
  32926. weight: math.unit(940, "lb"),
  32927. name: "Back (NSFW)",
  32928. image: {
  32929. source: "./media/characters/byliss/back-nsfw.svg",
  32930. extra: 1376/1349,
  32931. bottom: 9/1385
  32932. }
  32933. },
  32934. },
  32935. [
  32936. {
  32937. name: "Normal",
  32938. height: math.unit(9 + 6/12, "feet"),
  32939. default: true
  32940. },
  32941. ]
  32942. ))
  32943. characterMakers.push(() => makeCharacter(
  32944. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32945. {
  32946. front: {
  32947. height: math.unit(5 + 2/12, "feet"),
  32948. weight: math.unit(200, "lb"),
  32949. name: "Front",
  32950. image: {
  32951. source: "./media/characters/noraly/front.svg",
  32952. extra: 4985/4773,
  32953. bottom: 150/5135
  32954. }
  32955. },
  32956. full: {
  32957. height: math.unit(5 + 2/12, "feet"),
  32958. weight: math.unit(164, "lb"),
  32959. name: "Full",
  32960. image: {
  32961. source: "./media/characters/noraly/full.svg",
  32962. extra: 1114/1059,
  32963. bottom: 35/1149
  32964. }
  32965. },
  32966. fuller: {
  32967. height: math.unit(5 + 2/12, "feet"),
  32968. weight: math.unit(230, "lb"),
  32969. name: "Fuller",
  32970. image: {
  32971. source: "./media/characters/noraly/fuller.svg",
  32972. extra: 1114/1059,
  32973. bottom: 35/1149
  32974. }
  32975. },
  32976. fullest: {
  32977. height: math.unit(5 + 2/12, "feet"),
  32978. weight: math.unit(300, "lb"),
  32979. name: "Fullest",
  32980. image: {
  32981. source: "./media/characters/noraly/fullest.svg",
  32982. extra: 1114/1059,
  32983. bottom: 35/1149
  32984. }
  32985. },
  32986. },
  32987. [
  32988. {
  32989. name: "Normal",
  32990. height: math.unit(5 + 2/12, "feet"),
  32991. default: true
  32992. },
  32993. ]
  32994. ))
  32995. characterMakers.push(() => makeCharacter(
  32996. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32997. {
  32998. front: {
  32999. height: math.unit(5 + 2/12, "feet"),
  33000. weight: math.unit(210, "lb"),
  33001. name: "Front",
  33002. image: {
  33003. source: "./media/characters/pera/front.svg",
  33004. extra: 1560/1531,
  33005. bottom: 165/1725
  33006. }
  33007. },
  33008. back: {
  33009. height: math.unit(5 + 2/12, "feet"),
  33010. weight: math.unit(210, "lb"),
  33011. name: "Back",
  33012. image: {
  33013. source: "./media/characters/pera/back.svg",
  33014. extra: 1523/1493,
  33015. bottom: 152/1675
  33016. }
  33017. },
  33018. dick: {
  33019. height: math.unit(2.4, "feet"),
  33020. name: "Dick",
  33021. image: {
  33022. source: "./media/characters/pera/dick.svg"
  33023. }
  33024. },
  33025. },
  33026. [
  33027. {
  33028. name: "Normal",
  33029. height: math.unit(5 + 2/12, "feet"),
  33030. default: true
  33031. },
  33032. ]
  33033. ))
  33034. characterMakers.push(() => makeCharacter(
  33035. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33036. {
  33037. front: {
  33038. height: math.unit(12, "feet"),
  33039. weight: math.unit(3200, "lb"),
  33040. name: "Front",
  33041. image: {
  33042. source: "./media/characters/julian/front.svg",
  33043. extra: 2962/2701,
  33044. bottom: 184/3146
  33045. }
  33046. },
  33047. maw: {
  33048. height: math.unit(5.35, "feet"),
  33049. name: "Maw",
  33050. image: {
  33051. source: "./media/characters/julian/maw.svg"
  33052. }
  33053. },
  33054. paw: {
  33055. height: math.unit(3.07, "feet"),
  33056. name: "Paw",
  33057. image: {
  33058. source: "./media/characters/julian/paw.svg"
  33059. }
  33060. },
  33061. },
  33062. [
  33063. {
  33064. name: "Default",
  33065. height: math.unit(12, "feet"),
  33066. default: true
  33067. },
  33068. {
  33069. name: "Big",
  33070. height: math.unit(50, "feet")
  33071. },
  33072. {
  33073. name: "Really Big",
  33074. height: math.unit(1, "mile")
  33075. },
  33076. {
  33077. name: "Extremely Big",
  33078. height: math.unit(100, "miles")
  33079. },
  33080. {
  33081. name: "Planet Hugger",
  33082. height: math.unit(200, "megameters")
  33083. },
  33084. {
  33085. name: "Unreasonably Big",
  33086. height: math.unit(1e300, "meters")
  33087. },
  33088. ]
  33089. ))
  33090. characterMakers.push(() => makeCharacter(
  33091. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33092. {
  33093. solgooleo: {
  33094. height: math.unit(4, "meters"),
  33095. weight: math.unit(6000*1.5, "kg"),
  33096. volume: math.unit(6000, "liters"),
  33097. name: "Solgooleo",
  33098. image: {
  33099. source: "./media/characters/pi/solgooleo.svg",
  33100. extra: 388/331,
  33101. bottom: 29/417
  33102. }
  33103. },
  33104. },
  33105. [
  33106. {
  33107. name: "Normal",
  33108. height: math.unit(4, "meters"),
  33109. default: true
  33110. },
  33111. ]
  33112. ))
  33113. characterMakers.push(() => makeCharacter(
  33114. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33115. {
  33116. front: {
  33117. height: math.unit(8, "feet"),
  33118. weight: math.unit(4, "tons"),
  33119. name: "Front",
  33120. image: {
  33121. source: "./media/characters/shaun/front.svg",
  33122. extra: 503/495,
  33123. bottom: 20/523
  33124. }
  33125. },
  33126. back: {
  33127. height: math.unit(8, "feet"),
  33128. weight: math.unit(4, "tons"),
  33129. name: "Back",
  33130. image: {
  33131. source: "./media/characters/shaun/back.svg",
  33132. extra: 487/480,
  33133. bottom: 20/507
  33134. }
  33135. },
  33136. },
  33137. [
  33138. {
  33139. name: "Lorg",
  33140. height: math.unit(8, "feet"),
  33141. default: true
  33142. },
  33143. ]
  33144. ))
  33145. characterMakers.push(() => makeCharacter(
  33146. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33147. {
  33148. frontAnthro: {
  33149. height: math.unit(7, "feet"),
  33150. name: "Front",
  33151. image: {
  33152. source: "./media/characters/sini/front-anthro.svg",
  33153. extra: 726/678,
  33154. bottom: 35/761
  33155. },
  33156. form: "anthro",
  33157. default: true
  33158. },
  33159. backAnthro: {
  33160. height: math.unit(7, "feet"),
  33161. name: "Back",
  33162. image: {
  33163. source: "./media/characters/sini/back-anthro.svg",
  33164. extra: 743/701,
  33165. bottom: 12/755
  33166. },
  33167. form: "anthro",
  33168. },
  33169. frontAnthroNsfw: {
  33170. height: math.unit(7, "feet"),
  33171. name: "Front (NSFW)",
  33172. image: {
  33173. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33174. extra: 726/678,
  33175. bottom: 35/761
  33176. },
  33177. form: "anthro"
  33178. },
  33179. backAnthroNsfw: {
  33180. height: math.unit(7, "feet"),
  33181. name: "Back (NSFW)",
  33182. image: {
  33183. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33184. extra: 743/701,
  33185. bottom: 12/755
  33186. },
  33187. form: "anthro",
  33188. },
  33189. mawAnthro: {
  33190. height: math.unit(2.14, "feet"),
  33191. name: "Maw",
  33192. image: {
  33193. source: "./media/characters/sini/maw-anthro.svg"
  33194. },
  33195. form: "anthro"
  33196. },
  33197. dick: {
  33198. height: math.unit(1.45, "feet"),
  33199. name: "Dick",
  33200. image: {
  33201. source: "./media/characters/sini/dick-anthro.svg"
  33202. },
  33203. form: "anthro"
  33204. },
  33205. feral: {
  33206. height: math.unit(16, "feet"),
  33207. name: "Feral",
  33208. image: {
  33209. source: "./media/characters/sini/feral.svg",
  33210. extra: 814/605,
  33211. bottom: 11/825
  33212. },
  33213. form: "feral",
  33214. default: true
  33215. },
  33216. feralNsfw: {
  33217. height: math.unit(16, "feet"),
  33218. name: "Feral (NSFW)",
  33219. image: {
  33220. source: "./media/characters/sini/feral-nsfw.svg",
  33221. extra: 814/605,
  33222. bottom: 11/825
  33223. },
  33224. form: "feral"
  33225. },
  33226. mawFeral: {
  33227. height: math.unit(5.66, "feet"),
  33228. name: "Maw",
  33229. image: {
  33230. source: "./media/characters/sini/maw-feral.svg"
  33231. },
  33232. form: "feral",
  33233. },
  33234. pawFeral: {
  33235. height: math.unit(5.17, "feet"),
  33236. name: "Paw",
  33237. image: {
  33238. source: "./media/characters/sini/paw-feral.svg"
  33239. },
  33240. form: "feral",
  33241. },
  33242. rumpFeral: {
  33243. height: math.unit(13.11, "feet"),
  33244. name: "Rump",
  33245. image: {
  33246. source: "./media/characters/sini/rump-feral.svg"
  33247. },
  33248. form: "feral",
  33249. },
  33250. dickFeral: {
  33251. height: math.unit(1, "feet"),
  33252. name: "Dick",
  33253. image: {
  33254. source: "./media/characters/sini/dick-feral.svg"
  33255. },
  33256. form: "feral",
  33257. },
  33258. eyeFeral: {
  33259. height: math.unit(1.23, "feet"),
  33260. name: "Eye",
  33261. image: {
  33262. source: "./media/characters/sini/eye-feral.svg"
  33263. },
  33264. form: "feral",
  33265. },
  33266. },
  33267. [
  33268. {
  33269. name: "Normal",
  33270. height: math.unit(7, "feet"),
  33271. default: true,
  33272. form: "anthro"
  33273. },
  33274. {
  33275. name: "Normal",
  33276. height: math.unit(16, "feet"),
  33277. default: true,
  33278. form: "feral"
  33279. },
  33280. ],
  33281. {
  33282. "anthro": {
  33283. name: "Anthro",
  33284. default: true
  33285. },
  33286. "feral": {
  33287. name: "Feral",
  33288. }
  33289. }
  33290. ))
  33291. characterMakers.push(() => makeCharacter(
  33292. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33293. {
  33294. side: {
  33295. height: math.unit(13, "meters"),
  33296. weight: math.unit(9072, "kg"),
  33297. name: "Side",
  33298. image: {
  33299. source: "./media/characters/raylldo/side.svg",
  33300. extra: 403/344,
  33301. bottom: 42/445
  33302. }
  33303. },
  33304. leaping: {
  33305. height: math.unit(12.3, "meters"),
  33306. weight: math.unit(9072, "kg"),
  33307. name: "Leaping",
  33308. image: {
  33309. source: "./media/characters/raylldo/leaping.svg",
  33310. extra: 470/249,
  33311. bottom: 13/483
  33312. }
  33313. },
  33314. flying: {
  33315. height: math.unit(18, "meters"),
  33316. weight: math.unit(9072, "kg"),
  33317. name: "Flying",
  33318. image: {
  33319. source: "./media/characters/raylldo/flying.svg"
  33320. }
  33321. },
  33322. head: {
  33323. height: math.unit(5.85, "meters"),
  33324. name: "Head",
  33325. image: {
  33326. source: "./media/characters/raylldo/head.svg"
  33327. }
  33328. },
  33329. maw: {
  33330. height: math.unit(5.32, "meters"),
  33331. name: "Maw",
  33332. image: {
  33333. source: "./media/characters/raylldo/maw.svg"
  33334. }
  33335. },
  33336. eye: {
  33337. height: math.unit(0.54, "meters"),
  33338. name: "Eye",
  33339. image: {
  33340. source: "./media/characters/raylldo/eye.svg"
  33341. }
  33342. },
  33343. },
  33344. [
  33345. {
  33346. name: "Normal",
  33347. height: math.unit(13, "meters"),
  33348. default: true
  33349. },
  33350. ]
  33351. ))
  33352. characterMakers.push(() => makeCharacter(
  33353. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33354. {
  33355. anthroFront: {
  33356. height: math.unit(9, "feet"),
  33357. weight: math.unit(600, "lb"),
  33358. name: "Anthro (Front)",
  33359. image: {
  33360. source: "./media/characters/glint/anthro-front.svg",
  33361. extra: 1097/1018,
  33362. bottom: 28/1125
  33363. }
  33364. },
  33365. anthroBack: {
  33366. height: math.unit(9, "feet"),
  33367. weight: math.unit(600, "lb"),
  33368. name: "Anthro (Back)",
  33369. image: {
  33370. source: "./media/characters/glint/anthro-back.svg",
  33371. extra: 1154/997,
  33372. bottom: 36/1190
  33373. }
  33374. },
  33375. feral: {
  33376. height: math.unit(11, "feet"),
  33377. weight: math.unit(50000, "lb"),
  33378. name: "Feral",
  33379. image: {
  33380. source: "./media/characters/glint/feral.svg",
  33381. extra: 3035/1585,
  33382. bottom: 1169/4204
  33383. }
  33384. },
  33385. dickAnthro: {
  33386. height: math.unit(0.7, "meters"),
  33387. name: "Dick (Anthro)",
  33388. image: {
  33389. source: "./media/characters/glint/dick-anthro.svg"
  33390. }
  33391. },
  33392. dickFeral: {
  33393. height: math.unit(2.65, "meters"),
  33394. name: "Dick (Feral)",
  33395. image: {
  33396. source: "./media/characters/glint/dick-feral.svg"
  33397. }
  33398. },
  33399. slitHidden: {
  33400. height: math.unit(5.85, "meters"),
  33401. name: "Slit (Hidden)",
  33402. image: {
  33403. source: "./media/characters/glint/slit-hidden.svg"
  33404. }
  33405. },
  33406. slitErect: {
  33407. height: math.unit(5.85, "meters"),
  33408. name: "Slit (Erect)",
  33409. image: {
  33410. source: "./media/characters/glint/slit-erect.svg"
  33411. }
  33412. },
  33413. mawAnthro: {
  33414. height: math.unit(0.63, "meters"),
  33415. name: "Maw (Anthro)",
  33416. image: {
  33417. source: "./media/characters/glint/maw.svg"
  33418. }
  33419. },
  33420. mawFeral: {
  33421. height: math.unit(2.89, "meters"),
  33422. name: "Maw (Feral)",
  33423. image: {
  33424. source: "./media/characters/glint/maw.svg"
  33425. }
  33426. },
  33427. },
  33428. [
  33429. {
  33430. name: "Normal",
  33431. height: math.unit(9, "feet"),
  33432. default: true
  33433. },
  33434. ]
  33435. ))
  33436. characterMakers.push(() => makeCharacter(
  33437. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33438. {
  33439. side: {
  33440. height: math.unit(15, "feet"),
  33441. weight: math.unit(5000, "kg"),
  33442. name: "Side",
  33443. image: {
  33444. source: "./media/characters/kairne/side.svg",
  33445. extra: 979/811,
  33446. bottom: 13/992
  33447. }
  33448. },
  33449. front: {
  33450. height: math.unit(15, "feet"),
  33451. weight: math.unit(5000, "kg"),
  33452. name: "Front",
  33453. image: {
  33454. source: "./media/characters/kairne/front.svg",
  33455. extra: 908/814,
  33456. bottom: 26/934
  33457. }
  33458. },
  33459. sideNsfw: {
  33460. height: math.unit(15, "feet"),
  33461. weight: math.unit(5000, "kg"),
  33462. name: "Side (NSFW)",
  33463. image: {
  33464. source: "./media/characters/kairne/side-nsfw.svg",
  33465. extra: 979/811,
  33466. bottom: 13/992
  33467. }
  33468. },
  33469. frontNsfw: {
  33470. height: math.unit(15, "feet"),
  33471. weight: math.unit(5000, "kg"),
  33472. name: "Front (NSFW)",
  33473. image: {
  33474. source: "./media/characters/kairne/front-nsfw.svg",
  33475. extra: 908/814,
  33476. bottom: 26/934
  33477. }
  33478. },
  33479. dickCaged: {
  33480. height: math.unit(0.65, "meters"),
  33481. name: "Dick-caged",
  33482. image: {
  33483. source: "./media/characters/kairne/dick-caged.svg"
  33484. }
  33485. },
  33486. dick: {
  33487. height: math.unit(0.79, "meters"),
  33488. name: "Dick",
  33489. image: {
  33490. source: "./media/characters/kairne/dick.svg"
  33491. }
  33492. },
  33493. genitals: {
  33494. height: math.unit(1.29, "meters"),
  33495. name: "Genitals",
  33496. image: {
  33497. source: "./media/characters/kairne/genitals.svg"
  33498. }
  33499. },
  33500. maw: {
  33501. height: math.unit(1.73, "meters"),
  33502. name: "Maw",
  33503. image: {
  33504. source: "./media/characters/kairne/maw.svg"
  33505. }
  33506. },
  33507. },
  33508. [
  33509. {
  33510. name: "Normal",
  33511. height: math.unit(15, "feet"),
  33512. default: true
  33513. },
  33514. ]
  33515. ))
  33516. characterMakers.push(() => makeCharacter(
  33517. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33518. {
  33519. front: {
  33520. height: math.unit(5 + 8/12, "feet"),
  33521. weight: math.unit(139, "lb"),
  33522. name: "Front",
  33523. image: {
  33524. source: "./media/characters/biscuit-jackal/front.svg",
  33525. extra: 2106/1961,
  33526. bottom: 58/2164
  33527. }
  33528. },
  33529. back: {
  33530. height: math.unit(5 + 8/12, "feet"),
  33531. weight: math.unit(139, "lb"),
  33532. name: "Back",
  33533. image: {
  33534. source: "./media/characters/biscuit-jackal/back.svg",
  33535. extra: 2132/1976,
  33536. bottom: 57/2189
  33537. }
  33538. },
  33539. werejackal: {
  33540. height: math.unit(6 + 3/12, "feet"),
  33541. weight: math.unit(188, "lb"),
  33542. name: "Werejackal",
  33543. image: {
  33544. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33545. extra: 2373/2178,
  33546. bottom: 53/2426
  33547. }
  33548. },
  33549. },
  33550. [
  33551. {
  33552. name: "Normal",
  33553. height: math.unit(5 + 8/12, "feet"),
  33554. default: true
  33555. },
  33556. ]
  33557. ))
  33558. characterMakers.push(() => makeCharacter(
  33559. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33560. {
  33561. front: {
  33562. height: math.unit(140, "cm"),
  33563. weight: math.unit(45, "kg"),
  33564. name: "Front",
  33565. image: {
  33566. source: "./media/characters/tayra-white/front.svg",
  33567. extra: 2229/2192,
  33568. bottom: 75/2304
  33569. }
  33570. },
  33571. },
  33572. [
  33573. {
  33574. name: "Normal",
  33575. height: math.unit(140, "cm"),
  33576. default: true
  33577. },
  33578. ]
  33579. ))
  33580. characterMakers.push(() => makeCharacter(
  33581. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33582. {
  33583. front: {
  33584. height: math.unit(4 + 5/12, "feet"),
  33585. name: "Front",
  33586. image: {
  33587. source: "./media/characters/scoop/front.svg",
  33588. extra: 1257/1136,
  33589. bottom: 69/1326
  33590. }
  33591. },
  33592. back: {
  33593. height: math.unit(4 + 5/12, "feet"),
  33594. name: "Back",
  33595. image: {
  33596. source: "./media/characters/scoop/back.svg",
  33597. extra: 1321/1152,
  33598. bottom: 32/1353
  33599. }
  33600. },
  33601. maw: {
  33602. height: math.unit(0.68, "feet"),
  33603. name: "Maw",
  33604. image: {
  33605. source: "./media/characters/scoop/maw.svg"
  33606. }
  33607. },
  33608. },
  33609. [
  33610. {
  33611. name: "Really Small",
  33612. height: math.unit(1, "mm")
  33613. },
  33614. {
  33615. name: "Micro",
  33616. height: math.unit(1, "inch")
  33617. },
  33618. {
  33619. name: "Normal",
  33620. height: math.unit(4 + 5/12, "feet"),
  33621. default: true
  33622. },
  33623. {
  33624. name: "Macro",
  33625. height: math.unit(200, "feet")
  33626. },
  33627. {
  33628. name: "Megamacro",
  33629. height: math.unit(3240, "feet")
  33630. },
  33631. {
  33632. name: "Teramacro",
  33633. height: math.unit(2500, "miles")
  33634. },
  33635. ]
  33636. ))
  33637. characterMakers.push(() => makeCharacter(
  33638. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33639. {
  33640. front: {
  33641. height: math.unit(15 + 7/12, "feet"),
  33642. name: "Front",
  33643. image: {
  33644. source: "./media/characters/saphinara/front.svg",
  33645. extra: 604/546,
  33646. bottom: 19/623
  33647. }
  33648. },
  33649. side: {
  33650. height: math.unit(15 + 7/12, "feet"),
  33651. name: "Side",
  33652. image: {
  33653. source: "./media/characters/saphinara/side.svg",
  33654. extra: 605/547,
  33655. bottom: 6/611
  33656. }
  33657. },
  33658. back: {
  33659. height: math.unit(15 + 7/12, "feet"),
  33660. name: "Back",
  33661. image: {
  33662. source: "./media/characters/saphinara/back.svg",
  33663. extra: 591/531,
  33664. bottom: 13/604
  33665. }
  33666. },
  33667. frontTail: {
  33668. height: math.unit(15 + 7/12, "feet"),
  33669. name: "Front (Full Tail)",
  33670. image: {
  33671. source: "./media/characters/saphinara/front-tail.svg",
  33672. extra: 748/547,
  33673. bottom: 66/814
  33674. }
  33675. },
  33676. },
  33677. [
  33678. {
  33679. name: "Normal",
  33680. height: math.unit(15 + 7/12, "feet"),
  33681. default: true
  33682. },
  33683. {
  33684. name: "Angry",
  33685. height: math.unit(30 + 6/12, "feet")
  33686. },
  33687. {
  33688. name: "Enraged",
  33689. height: math.unit(102 + 1/12, "feet")
  33690. },
  33691. ]
  33692. ))
  33693. characterMakers.push(() => makeCharacter(
  33694. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33695. {
  33696. front: {
  33697. height: math.unit(6 + 8/12, "feet"),
  33698. weight: math.unit(300, "lb"),
  33699. name: "Front",
  33700. image: {
  33701. source: "./media/characters/jrain/front.svg",
  33702. extra: 3039/2865,
  33703. bottom: 399/3438
  33704. }
  33705. },
  33706. back: {
  33707. height: math.unit(6 + 8/12, "feet"),
  33708. weight: math.unit(300, "lb"),
  33709. name: "Back",
  33710. image: {
  33711. source: "./media/characters/jrain/back.svg",
  33712. extra: 3089/2938,
  33713. bottom: 172/3261
  33714. }
  33715. },
  33716. head: {
  33717. height: math.unit(2.14, "feet"),
  33718. name: "Head",
  33719. image: {
  33720. source: "./media/characters/jrain/head.svg"
  33721. }
  33722. },
  33723. maw: {
  33724. height: math.unit(1.77, "feet"),
  33725. name: "Maw",
  33726. image: {
  33727. source: "./media/characters/jrain/maw.svg"
  33728. }
  33729. },
  33730. leftHand: {
  33731. height: math.unit(1.1, "feet"),
  33732. name: "Left Hand",
  33733. image: {
  33734. source: "./media/characters/jrain/left-hand.svg"
  33735. }
  33736. },
  33737. rightHand: {
  33738. height: math.unit(1.1, "feet"),
  33739. name: "Right Hand",
  33740. image: {
  33741. source: "./media/characters/jrain/right-hand.svg"
  33742. }
  33743. },
  33744. eye: {
  33745. height: math.unit(0.35, "feet"),
  33746. name: "Eye",
  33747. image: {
  33748. source: "./media/characters/jrain/eye.svg"
  33749. }
  33750. },
  33751. },
  33752. [
  33753. {
  33754. name: "Normal",
  33755. height: math.unit(6 + 8/12, "feet"),
  33756. default: true
  33757. },
  33758. {
  33759. name: "Casually Large",
  33760. height: math.unit(25, "feet")
  33761. },
  33762. {
  33763. name: "Giant",
  33764. height: math.unit(100, "feet")
  33765. },
  33766. {
  33767. name: "Kaiju",
  33768. height: math.unit(300, "feet")
  33769. },
  33770. ]
  33771. ))
  33772. characterMakers.push(() => makeCharacter(
  33773. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33774. {
  33775. dragon: {
  33776. height: math.unit(5, "meters"),
  33777. name: "Dragon",
  33778. image: {
  33779. source: "./media/characters/sabrina/dragon.svg",
  33780. extra: 3670 / 2365,
  33781. bottom: 333 / 4003
  33782. }
  33783. },
  33784. gryphon: {
  33785. height: math.unit(3, "meters"),
  33786. name: "Gryphon",
  33787. image: {
  33788. source: "./media/characters/sabrina/gryphon.svg",
  33789. extra: 1576 / 945,
  33790. bottom: 71 / 1647
  33791. }
  33792. },
  33793. snake: {
  33794. height: math.unit(12, "meters"),
  33795. name: "Snake",
  33796. image: {
  33797. source: "./media/characters/sabrina/snake.svg",
  33798. extra: 1758 / 1320,
  33799. bottom: 186 / 1944
  33800. }
  33801. },
  33802. collar: {
  33803. height: math.unit(1.86, "meters"),
  33804. name: "Collar",
  33805. image: {
  33806. source: "./media/characters/sabrina/collar.svg"
  33807. }
  33808. },
  33809. eye: {
  33810. height: math.unit(0.53, "meters"),
  33811. name: "Eye",
  33812. image: {
  33813. source: "./media/characters/sabrina/eye.svg"
  33814. }
  33815. },
  33816. foot: {
  33817. height: math.unit(1.86, "meters"),
  33818. name: "Foot",
  33819. image: {
  33820. source: "./media/characters/sabrina/foot.svg"
  33821. }
  33822. },
  33823. hand: {
  33824. height: math.unit(1.32, "meters"),
  33825. name: "Hand",
  33826. image: {
  33827. source: "./media/characters/sabrina/hand.svg"
  33828. }
  33829. },
  33830. head: {
  33831. height: math.unit(2.44, "meters"),
  33832. name: "Head",
  33833. image: {
  33834. source: "./media/characters/sabrina/head.svg"
  33835. }
  33836. },
  33837. headAngry: {
  33838. height: math.unit(2.44, "meters"),
  33839. name: "Head (Angry))",
  33840. image: {
  33841. source: "./media/characters/sabrina/head-angry.svg"
  33842. }
  33843. },
  33844. maw: {
  33845. height: math.unit(1.65, "meters"),
  33846. name: "Maw",
  33847. image: {
  33848. source: "./media/characters/sabrina/maw.svg"
  33849. }
  33850. },
  33851. spikes: {
  33852. height: math.unit(1.69, "meters"),
  33853. name: "Spikes",
  33854. image: {
  33855. source: "./media/characters/sabrina/spikes.svg"
  33856. }
  33857. },
  33858. stomach: {
  33859. height: math.unit(1.15, "meters"),
  33860. name: "Stomach",
  33861. image: {
  33862. source: "./media/characters/sabrina/stomach.svg"
  33863. }
  33864. },
  33865. tongue: {
  33866. height: math.unit(1.27, "meters"),
  33867. name: "Tongue",
  33868. image: {
  33869. source: "./media/characters/sabrina/tongue.svg"
  33870. }
  33871. },
  33872. wingDorsal: {
  33873. height: math.unit(4.85, "meters"),
  33874. name: "Wing (Dorsal)",
  33875. image: {
  33876. source: "./media/characters/sabrina/wing-dorsal.svg"
  33877. }
  33878. },
  33879. wingVentral: {
  33880. height: math.unit(4.85, "meters"),
  33881. name: "Wing (Ventral)",
  33882. image: {
  33883. source: "./media/characters/sabrina/wing-ventral.svg"
  33884. }
  33885. },
  33886. },
  33887. [
  33888. {
  33889. name: "Normal",
  33890. height: math.unit(5, "meters"),
  33891. default: true
  33892. },
  33893. ]
  33894. ))
  33895. characterMakers.push(() => makeCharacter(
  33896. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33897. {
  33898. frontMaid: {
  33899. height: math.unit(5 + 5/12, "feet"),
  33900. weight: math.unit(130, "lb"),
  33901. name: "Front (Maid)",
  33902. image: {
  33903. source: "./media/characters/midnight-tales/front-maid.svg",
  33904. extra: 489/454,
  33905. bottom: 61/550
  33906. }
  33907. },
  33908. frontFormal: {
  33909. height: math.unit(5 + 5/12, "feet"),
  33910. weight: math.unit(130, "lb"),
  33911. name: "Front (Formal)",
  33912. image: {
  33913. source: "./media/characters/midnight-tales/front-formal.svg",
  33914. extra: 489/454,
  33915. bottom: 61/550
  33916. }
  33917. },
  33918. back: {
  33919. height: math.unit(5 + 5/12, "feet"),
  33920. weight: math.unit(130, "lb"),
  33921. name: "Back",
  33922. image: {
  33923. source: "./media/characters/midnight-tales/back.svg",
  33924. extra: 498/456,
  33925. bottom: 33/531
  33926. }
  33927. },
  33928. frontBeast: {
  33929. height: math.unit(40, "feet"),
  33930. weight: math.unit(64000, "lb"),
  33931. name: "Front (Beast)",
  33932. image: {
  33933. source: "./media/characters/midnight-tales/front-beast.svg",
  33934. extra: 927/860,
  33935. bottom: 53/980
  33936. }
  33937. },
  33938. backBeast: {
  33939. height: math.unit(40, "feet"),
  33940. weight: math.unit(64000, "lb"),
  33941. name: "Back (Beast)",
  33942. image: {
  33943. source: "./media/characters/midnight-tales/back-beast.svg",
  33944. extra: 929/855,
  33945. bottom: 16/945
  33946. }
  33947. },
  33948. footBeast: {
  33949. height: math.unit(6.7, "feet"),
  33950. name: "Foot (Beast)",
  33951. image: {
  33952. source: "./media/characters/midnight-tales/foot-beast.svg"
  33953. }
  33954. },
  33955. headBeast: {
  33956. height: math.unit(8, "feet"),
  33957. name: "Head (Beast)",
  33958. image: {
  33959. source: "./media/characters/midnight-tales/head-beast.svg"
  33960. }
  33961. },
  33962. },
  33963. [
  33964. {
  33965. name: "Normal",
  33966. height: math.unit(5 + 5 / 12, "feet"),
  33967. default: true
  33968. },
  33969. {
  33970. name: "Macro",
  33971. height: math.unit(25, "feet")
  33972. },
  33973. ]
  33974. ))
  33975. characterMakers.push(() => makeCharacter(
  33976. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33977. {
  33978. front: {
  33979. height: math.unit(5 + 10/12, "feet"),
  33980. name: "Front",
  33981. image: {
  33982. source: "./media/characters/argon/front.svg",
  33983. extra: 2009/1935,
  33984. bottom: 118/2127
  33985. }
  33986. },
  33987. back: {
  33988. height: math.unit(5 + 10/12, "feet"),
  33989. name: "Back",
  33990. image: {
  33991. source: "./media/characters/argon/back.svg",
  33992. extra: 2047/1992,
  33993. bottom: 20/2067
  33994. }
  33995. },
  33996. frontDressed: {
  33997. height: math.unit(5 + 10/12, "feet"),
  33998. name: "Front (Dressed)",
  33999. image: {
  34000. source: "./media/characters/argon/front-dressed.svg",
  34001. extra: 2009/1935,
  34002. bottom: 118/2127
  34003. }
  34004. },
  34005. },
  34006. [
  34007. {
  34008. name: "Normal",
  34009. height: math.unit(5 + 10/12, "feet"),
  34010. default: true
  34011. },
  34012. ]
  34013. ))
  34014. characterMakers.push(() => makeCharacter(
  34015. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34016. {
  34017. front: {
  34018. height: math.unit(8 + 6/12, "feet"),
  34019. weight: math.unit(1150, "lb"),
  34020. name: "Front",
  34021. image: {
  34022. source: "./media/characters/kichi/front.svg",
  34023. extra: 1267/1164,
  34024. bottom: 61/1328
  34025. }
  34026. },
  34027. back: {
  34028. height: math.unit(8 + 6/12, "feet"),
  34029. weight: math.unit(1150, "lb"),
  34030. name: "Back",
  34031. image: {
  34032. source: "./media/characters/kichi/back.svg",
  34033. extra: 1273/1166,
  34034. bottom: 33/1306
  34035. }
  34036. },
  34037. },
  34038. [
  34039. {
  34040. name: "Normal",
  34041. height: math.unit(8 + 6/12, "feet"),
  34042. default: true
  34043. },
  34044. ]
  34045. ))
  34046. characterMakers.push(() => makeCharacter(
  34047. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34048. {
  34049. front: {
  34050. height: math.unit(6, "feet"),
  34051. weight: math.unit(210, "lb"),
  34052. name: "Front",
  34053. image: {
  34054. source: "./media/characters/manetel-greyscale/front.svg",
  34055. extra: 350/312,
  34056. bottom: 8/358
  34057. }
  34058. },
  34059. },
  34060. [
  34061. {
  34062. name: "Micro",
  34063. height: math.unit(2, "inches")
  34064. },
  34065. {
  34066. name: "Normal",
  34067. height: math.unit(6, "feet"),
  34068. default: true
  34069. },
  34070. {
  34071. name: "Minimacro",
  34072. height: math.unit(17, "feet")
  34073. },
  34074. {
  34075. name: "Macro",
  34076. height: math.unit(117, "feet")
  34077. },
  34078. ]
  34079. ))
  34080. characterMakers.push(() => makeCharacter(
  34081. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34082. {
  34083. side: {
  34084. height: math.unit(5 + 1/12, "feet"),
  34085. weight: math.unit(418, "lb"),
  34086. name: "Side",
  34087. image: {
  34088. source: "./media/characters/softpurr/side.svg",
  34089. extra: 1993/1945,
  34090. bottom: 134/2127
  34091. }
  34092. },
  34093. front: {
  34094. height: math.unit(5 + 1/12, "feet"),
  34095. weight: math.unit(418, "lb"),
  34096. name: "Front",
  34097. image: {
  34098. source: "./media/characters/softpurr/front.svg",
  34099. extra: 1950/1856,
  34100. bottom: 174/2124
  34101. }
  34102. },
  34103. paw: {
  34104. height: math.unit(1, "feet"),
  34105. name: "Paw",
  34106. image: {
  34107. source: "./media/characters/softpurr/paw.svg"
  34108. }
  34109. },
  34110. },
  34111. [
  34112. {
  34113. name: "Normal",
  34114. height: math.unit(5 + 1/12, "feet"),
  34115. default: true
  34116. },
  34117. ]
  34118. ))
  34119. characterMakers.push(() => makeCharacter(
  34120. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34121. {
  34122. front: {
  34123. height: math.unit(260, "meters"),
  34124. name: "Front",
  34125. image: {
  34126. source: "./media/characters/anahita/front.svg",
  34127. extra: 665/635,
  34128. bottom: 89/754
  34129. }
  34130. },
  34131. },
  34132. [
  34133. {
  34134. name: "Macro",
  34135. height: math.unit(260, "meters"),
  34136. default: true
  34137. },
  34138. ]
  34139. ))
  34140. characterMakers.push(() => makeCharacter(
  34141. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34142. {
  34143. front: {
  34144. height: math.unit(4 + 10/12, "feet"),
  34145. weight: math.unit(160, "lb"),
  34146. name: "Front",
  34147. image: {
  34148. source: "./media/characters/chip-mouse/front.svg",
  34149. extra: 3528/3408,
  34150. bottom: 0/3528
  34151. }
  34152. },
  34153. frontNsfw: {
  34154. height: math.unit(4 + 10/12, "feet"),
  34155. weight: math.unit(160, "lb"),
  34156. name: "Front (NSFW)",
  34157. image: {
  34158. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34159. extra: 3528/3408,
  34160. bottom: 0/3528
  34161. }
  34162. },
  34163. },
  34164. [
  34165. {
  34166. name: "Normal",
  34167. height: math.unit(4 + 10/12, "feet"),
  34168. default: true
  34169. },
  34170. ]
  34171. ))
  34172. characterMakers.push(() => makeCharacter(
  34173. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34174. {
  34175. side: {
  34176. height: math.unit(10, "feet"),
  34177. weight: math.unit(14000, "lb"),
  34178. name: "Side",
  34179. image: {
  34180. source: "./media/characters/kremm/side.svg",
  34181. extra: 1390/1053,
  34182. bottom: 90/1480
  34183. }
  34184. },
  34185. gut: {
  34186. height: math.unit(5.8, "feet"),
  34187. name: "Gut",
  34188. image: {
  34189. source: "./media/characters/kremm/gut.svg"
  34190. }
  34191. },
  34192. ass: {
  34193. height: math.unit(6.1, "feet"),
  34194. name: "Ass",
  34195. image: {
  34196. source: "./media/characters/kremm/ass.svg"
  34197. }
  34198. },
  34199. jaws: {
  34200. height: math.unit(2.2, "feet"),
  34201. name: "Jaws",
  34202. image: {
  34203. source: "./media/characters/kremm/jaws.svg"
  34204. }
  34205. },
  34206. dick: {
  34207. height: math.unit(4.26, "feet"),
  34208. name: "Dick",
  34209. image: {
  34210. source: "./media/characters/kremm/dick.svg"
  34211. }
  34212. },
  34213. },
  34214. [
  34215. {
  34216. name: "Normal",
  34217. height: math.unit(10, "feet"),
  34218. default: true
  34219. },
  34220. ]
  34221. ))
  34222. characterMakers.push(() => makeCharacter(
  34223. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34224. {
  34225. front: {
  34226. height: math.unit(30, "stories"),
  34227. name: "Front",
  34228. image: {
  34229. source: "./media/characters/kai/front.svg",
  34230. extra: 1892/1718,
  34231. bottom: 162/2054
  34232. }
  34233. },
  34234. },
  34235. [
  34236. {
  34237. name: "Macro",
  34238. height: math.unit(30, "stories"),
  34239. default: true
  34240. },
  34241. ]
  34242. ))
  34243. characterMakers.push(() => makeCharacter(
  34244. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34245. {
  34246. front: {
  34247. height: math.unit(6 + 4/12, "feet"),
  34248. weight: math.unit(145, "lb"),
  34249. name: "Front",
  34250. image: {
  34251. source: "./media/characters/sykes/front.svg",
  34252. extra: 1321 / 1187,
  34253. bottom: 66 / 1387
  34254. }
  34255. },
  34256. back: {
  34257. height: math.unit(6 + 4/12, "feet"),
  34258. weight: math.unit(145, "lb"),
  34259. name: "Back",
  34260. image: {
  34261. source: "./media/characters/sykes/back.svg",
  34262. extra: 1326/1181,
  34263. bottom: 31/1357
  34264. }
  34265. },
  34266. handBack: {
  34267. height: math.unit(0.9, "feet"),
  34268. name: "Hand (Back)",
  34269. image: {
  34270. source: "./media/characters/sykes/hand-back.svg"
  34271. }
  34272. },
  34273. handFront: {
  34274. height: math.unit(0.839, "feet"),
  34275. name: "Hand (Front)",
  34276. image: {
  34277. source: "./media/characters/sykes/hand-front.svg"
  34278. }
  34279. },
  34280. leftFoot: {
  34281. height: math.unit(1.2, "feet"),
  34282. name: "Foot (Left)",
  34283. image: {
  34284. source: "./media/characters/sykes/foot-left.svg"
  34285. }
  34286. },
  34287. rightFoot: {
  34288. height: math.unit(1.2, "feet"),
  34289. name: "Foot (Right)",
  34290. image: {
  34291. source: "./media/characters/sykes/foot-right.svg"
  34292. }
  34293. },
  34294. maw: {
  34295. height: math.unit(1.93, "feet"),
  34296. name: "Maw",
  34297. image: {
  34298. source: "./media/characters/sykes/maw.svg"
  34299. }
  34300. },
  34301. teeth: {
  34302. height: math.unit(0.51, "feet"),
  34303. name: "Teeth",
  34304. image: {
  34305. source: "./media/characters/sykes/teeth.svg"
  34306. }
  34307. },
  34308. tongue: {
  34309. height: math.unit(2.13, "feet"),
  34310. name: "Tongue",
  34311. image: {
  34312. source: "./media/characters/sykes/tongue.svg"
  34313. }
  34314. },
  34315. uvula: {
  34316. height: math.unit(0.16, "feet"),
  34317. name: "Uvula",
  34318. image: {
  34319. source: "./media/characters/sykes/uvula.svg"
  34320. }
  34321. },
  34322. collar: {
  34323. height: math.unit(0.287, "feet"),
  34324. name: "Collar",
  34325. image: {
  34326. source: "./media/characters/sykes/collar.svg"
  34327. }
  34328. },
  34329. },
  34330. [
  34331. {
  34332. name: "Shrunken",
  34333. height: math.unit(5, "inches")
  34334. },
  34335. {
  34336. name: "Normal",
  34337. height: math.unit(6 + 4 / 12, "feet"),
  34338. default: true
  34339. },
  34340. {
  34341. name: "Big",
  34342. height: math.unit(15, "feet")
  34343. },
  34344. ]
  34345. ))
  34346. characterMakers.push(() => makeCharacter(
  34347. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34348. {
  34349. front: {
  34350. height: math.unit(5 + 8/12, "feet"),
  34351. weight: math.unit(190, "lb"),
  34352. name: "Front",
  34353. image: {
  34354. source: "./media/characters/oven-otter/front.svg",
  34355. extra: 1809/1740,
  34356. bottom: 181/1990
  34357. }
  34358. },
  34359. back: {
  34360. height: math.unit(5 + 8/12, "feet"),
  34361. weight: math.unit(190, "lb"),
  34362. name: "Back",
  34363. image: {
  34364. source: "./media/characters/oven-otter/back.svg",
  34365. extra: 1709/1635,
  34366. bottom: 118/1827
  34367. }
  34368. },
  34369. hand: {
  34370. height: math.unit(1.07, "feet"),
  34371. name: "Hand",
  34372. image: {
  34373. source: "./media/characters/oven-otter/hand.svg"
  34374. }
  34375. },
  34376. beans: {
  34377. height: math.unit(1.74, "feet"),
  34378. name: "Beans",
  34379. image: {
  34380. source: "./media/characters/oven-otter/beans.svg"
  34381. }
  34382. },
  34383. },
  34384. [
  34385. {
  34386. name: "Micro",
  34387. height: math.unit(0.5, "inches")
  34388. },
  34389. {
  34390. name: "Normal",
  34391. height: math.unit(5 + 8/12, "feet"),
  34392. default: true
  34393. },
  34394. {
  34395. name: "Macro",
  34396. height: math.unit(250, "feet")
  34397. },
  34398. {
  34399. name: "Really High",
  34400. height: math.unit(420, "feet")
  34401. },
  34402. ]
  34403. ))
  34404. characterMakers.push(() => makeCharacter(
  34405. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34406. {
  34407. front: {
  34408. height: math.unit(5, "meters"),
  34409. weight: math.unit(292000000000000, "kg"),
  34410. name: "Front",
  34411. image: {
  34412. source: "./media/characters/devourer/front.svg",
  34413. extra: 1800/1733,
  34414. bottom: 211/2011
  34415. }
  34416. },
  34417. maw: {
  34418. height: math.unit(1.1, "meter"),
  34419. name: "Maw",
  34420. image: {
  34421. source: "./media/characters/devourer/maw.svg"
  34422. }
  34423. },
  34424. },
  34425. [
  34426. {
  34427. name: "Small",
  34428. height: math.unit(3, "meters")
  34429. },
  34430. {
  34431. name: "Large",
  34432. height: math.unit(5, "meters"),
  34433. default: true
  34434. },
  34435. ]
  34436. ))
  34437. characterMakers.push(() => makeCharacter(
  34438. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34439. {
  34440. front: {
  34441. height: math.unit(6, "feet"),
  34442. weight: math.unit(400, "lb"),
  34443. name: "Front",
  34444. image: {
  34445. source: "./media/characters/ellarby/front.svg",
  34446. extra: 1909/1763,
  34447. bottom: 80/1989
  34448. }
  34449. },
  34450. back: {
  34451. height: math.unit(6, "feet"),
  34452. weight: math.unit(400, "lb"),
  34453. name: "Back",
  34454. image: {
  34455. source: "./media/characters/ellarby/back.svg",
  34456. extra: 1914/1784,
  34457. bottom: 172/2086
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Mischief",
  34464. height: math.unit(18, "inches")
  34465. },
  34466. {
  34467. name: "Trouble",
  34468. height: math.unit(12, "feet")
  34469. },
  34470. {
  34471. name: "Havoc",
  34472. height: math.unit(200, "feet"),
  34473. default: true
  34474. },
  34475. {
  34476. name: "Pandemonium",
  34477. height: math.unit(1, "mile")
  34478. },
  34479. {
  34480. name: "Catastrophe",
  34481. height: math.unit(100, "miles")
  34482. },
  34483. ]
  34484. ))
  34485. characterMakers.push(() => makeCharacter(
  34486. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34487. {
  34488. front: {
  34489. height: math.unit(4.7, "meters"),
  34490. weight: math.unit(6500, "kg"),
  34491. name: "Front",
  34492. image: {
  34493. source: "./media/characters/vex/front.svg",
  34494. extra: 1288/1140,
  34495. bottom: 100/1388
  34496. }
  34497. },
  34498. },
  34499. [
  34500. {
  34501. name: "Normal",
  34502. height: math.unit(4.7, "meters"),
  34503. default: true
  34504. },
  34505. ]
  34506. ))
  34507. characterMakers.push(() => makeCharacter(
  34508. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34509. {
  34510. normal: {
  34511. height: math.unit(6, "feet"),
  34512. weight: math.unit(350, "lb"),
  34513. name: "Normal",
  34514. image: {
  34515. source: "./media/characters/teshy/normal.svg",
  34516. extra: 1795/1735,
  34517. bottom: 16/1811
  34518. }
  34519. },
  34520. monsterFront: {
  34521. height: math.unit(12, "feet"),
  34522. weight: math.unit(4700, "lb"),
  34523. name: "Monster (Front)",
  34524. image: {
  34525. source: "./media/characters/teshy/monster-front.svg",
  34526. extra: 2042/2034,
  34527. bottom: 128/2170
  34528. }
  34529. },
  34530. monsterSide: {
  34531. height: math.unit(12, "feet"),
  34532. weight: math.unit(4700, "lb"),
  34533. name: "Monster (Side)",
  34534. image: {
  34535. source: "./media/characters/teshy/monster-side.svg",
  34536. extra: 2067/2056,
  34537. bottom: 70/2137
  34538. }
  34539. },
  34540. monsterBack: {
  34541. height: math.unit(12, "feet"),
  34542. weight: math.unit(4700, "lb"),
  34543. name: "Monster (Back)",
  34544. image: {
  34545. source: "./media/characters/teshy/monster-back.svg",
  34546. extra: 1921/1914,
  34547. bottom: 171/2092
  34548. }
  34549. },
  34550. },
  34551. [
  34552. {
  34553. name: "Normal",
  34554. height: math.unit(6, "feet"),
  34555. default: true
  34556. },
  34557. ]
  34558. ))
  34559. characterMakers.push(() => makeCharacter(
  34560. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34561. {
  34562. front: {
  34563. height: math.unit(6, "feet"),
  34564. name: "Front",
  34565. image: {
  34566. source: "./media/characters/ramey/front.svg",
  34567. extra: 790/787,
  34568. bottom: 27/817
  34569. }
  34570. },
  34571. },
  34572. [
  34573. {
  34574. name: "Normal",
  34575. height: math.unit(6, "feet"),
  34576. default: true
  34577. },
  34578. ]
  34579. ))
  34580. characterMakers.push(() => makeCharacter(
  34581. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34582. {
  34583. front: {
  34584. height: math.unit(5 + 5/12, "feet"),
  34585. weight: math.unit(120, "lb"),
  34586. name: "Front",
  34587. image: {
  34588. source: "./media/characters/phirae/front.svg",
  34589. extra: 2491/2436,
  34590. bottom: 38/2529
  34591. }
  34592. },
  34593. },
  34594. [
  34595. {
  34596. name: "Normal",
  34597. height: math.unit(5 + 5/12, "feet"),
  34598. default: true
  34599. },
  34600. ]
  34601. ))
  34602. characterMakers.push(() => makeCharacter(
  34603. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34604. {
  34605. front: {
  34606. height: math.unit(5 + 3/12, "feet"),
  34607. name: "Front",
  34608. image: {
  34609. source: "./media/characters/stagglas/front.svg",
  34610. extra: 962/882,
  34611. bottom: 53/1015
  34612. }
  34613. },
  34614. feral: {
  34615. height: math.unit(335, "cm"),
  34616. name: "Feral",
  34617. image: {
  34618. source: "./media/characters/stagglas/feral.svg",
  34619. extra: 1732/1090,
  34620. bottom: 48/1780
  34621. }
  34622. },
  34623. },
  34624. [
  34625. {
  34626. name: "Normal",
  34627. height: math.unit(5 + 3/12, "feet"),
  34628. default: true
  34629. },
  34630. ]
  34631. ))
  34632. characterMakers.push(() => makeCharacter(
  34633. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34634. {
  34635. front: {
  34636. height: math.unit(5 + 4/12, "feet"),
  34637. weight: math.unit(145, "lb"),
  34638. name: "Front",
  34639. image: {
  34640. source: "./media/characters/starra/front.svg",
  34641. extra: 1790/1691,
  34642. bottom: 91/1881
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Normal",
  34649. height: math.unit(5 + 4/12, "feet"),
  34650. default: true
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34656. {
  34657. front: {
  34658. height: math.unit(2.2, "meters"),
  34659. name: "Front",
  34660. image: {
  34661. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34662. extra: 1194/1005,
  34663. bottom: 25/1219
  34664. }
  34665. },
  34666. },
  34667. [
  34668. {
  34669. name: "Normal",
  34670. height: math.unit(2.2, "meters"),
  34671. default: true
  34672. },
  34673. ]
  34674. ))
  34675. characterMakers.push(() => makeCharacter(
  34676. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34677. {
  34678. side: {
  34679. height: math.unit(8 + 2/12, "feet"),
  34680. weight: math.unit(1240, "lb"),
  34681. name: "Side",
  34682. image: {
  34683. source: "./media/characters/mika-valentine/side.svg",
  34684. extra: 2670/2501,
  34685. bottom: 250/2920
  34686. }
  34687. },
  34688. },
  34689. [
  34690. {
  34691. name: "Normal",
  34692. height: math.unit(8 + 2/12, "feet"),
  34693. default: true
  34694. },
  34695. ]
  34696. ))
  34697. characterMakers.push(() => makeCharacter(
  34698. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34699. {
  34700. front: {
  34701. height: math.unit(7 + 2/12, "feet"),
  34702. name: "Front",
  34703. image: {
  34704. source: "./media/characters/xoltol/front.svg",
  34705. extra: 2212/2124,
  34706. bottom: 84/2296
  34707. }
  34708. },
  34709. side: {
  34710. height: math.unit(7 + 2/12, "feet"),
  34711. name: "Side",
  34712. image: {
  34713. source: "./media/characters/xoltol/side.svg",
  34714. extra: 2273/2197,
  34715. bottom: 26/2299
  34716. }
  34717. },
  34718. hand: {
  34719. height: math.unit(2.5, "feet"),
  34720. name: "Hand",
  34721. image: {
  34722. source: "./media/characters/xoltol/hand.svg"
  34723. }
  34724. },
  34725. },
  34726. [
  34727. {
  34728. name: "Small-ish",
  34729. height: math.unit(5 + 11/12, "feet")
  34730. },
  34731. {
  34732. name: "Normal",
  34733. height: math.unit(7 + 2/12, "feet")
  34734. },
  34735. {
  34736. name: "\"Macro\"",
  34737. height: math.unit(14 + 9/12, "feet"),
  34738. default: true
  34739. },
  34740. {
  34741. name: "Alternate Height",
  34742. height: math.unit(20, "feet")
  34743. },
  34744. {
  34745. name: "Actually Macro",
  34746. height: math.unit(100, "feet")
  34747. },
  34748. ]
  34749. ))
  34750. characterMakers.push(() => makeCharacter(
  34751. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34752. {
  34753. front: {
  34754. height: math.unit(5 + 2/12, "feet"),
  34755. name: "Front",
  34756. image: {
  34757. source: "./media/characters/kotetsu-redwood/front.svg",
  34758. extra: 1053/942,
  34759. bottom: 60/1113
  34760. }
  34761. },
  34762. },
  34763. [
  34764. {
  34765. name: "Normal",
  34766. height: math.unit(5 + 2/12, "feet"),
  34767. default: true
  34768. },
  34769. ]
  34770. ))
  34771. characterMakers.push(() => makeCharacter(
  34772. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34773. {
  34774. front: {
  34775. height: math.unit(2.4, "meters"),
  34776. weight: math.unit(125, "kg"),
  34777. name: "Front",
  34778. image: {
  34779. source: "./media/characters/lilith/front.svg",
  34780. extra: 1590/1513,
  34781. bottom: 203/1793
  34782. }
  34783. },
  34784. },
  34785. [
  34786. {
  34787. name: "Humanoid",
  34788. height: math.unit(2.4, "meters")
  34789. },
  34790. {
  34791. name: "Normal",
  34792. height: math.unit(6, "meters"),
  34793. default: true
  34794. },
  34795. {
  34796. name: "Largest",
  34797. height: math.unit(55, "meters")
  34798. },
  34799. ]
  34800. ))
  34801. characterMakers.push(() => makeCharacter(
  34802. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34803. {
  34804. front: {
  34805. height: math.unit(8 + 4/12, "feet"),
  34806. weight: math.unit(535, "lb"),
  34807. name: "Front",
  34808. image: {
  34809. source: "./media/characters/beh'kah-bolger/front.svg",
  34810. extra: 1660/1603,
  34811. bottom: 37/1697
  34812. }
  34813. },
  34814. },
  34815. [
  34816. {
  34817. name: "Normal",
  34818. height: math.unit(8 + 4/12, "feet"),
  34819. default: true
  34820. },
  34821. {
  34822. name: "Kaiju",
  34823. height: math.unit(250, "feet")
  34824. },
  34825. {
  34826. name: "Still Growing",
  34827. height: math.unit(10, "miles")
  34828. },
  34829. {
  34830. name: "Continental",
  34831. height: math.unit(5000, "miles")
  34832. },
  34833. {
  34834. name: "Final Form",
  34835. height: math.unit(2500000, "miles")
  34836. },
  34837. ]
  34838. ))
  34839. characterMakers.push(() => makeCharacter(
  34840. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34841. {
  34842. front: {
  34843. height: math.unit(7 + 2/12, "feet"),
  34844. weight: math.unit(230, "kg"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/tatyana-milewska/front.svg",
  34848. extra: 1199/1150,
  34849. bottom: 86/1285
  34850. }
  34851. },
  34852. },
  34853. [
  34854. {
  34855. name: "Normal",
  34856. height: math.unit(7 + 2/12, "feet"),
  34857. default: true
  34858. },
  34859. {
  34860. name: "Big",
  34861. height: math.unit(12, "feet")
  34862. },
  34863. {
  34864. name: "Minimacro",
  34865. height: math.unit(20, "feet")
  34866. },
  34867. {
  34868. name: "Macro",
  34869. height: math.unit(120, "feet")
  34870. },
  34871. ]
  34872. ))
  34873. characterMakers.push(() => makeCharacter(
  34874. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34875. {
  34876. front: {
  34877. height: math.unit(7 + 8/12, "feet"),
  34878. weight: math.unit(152, "kg"),
  34879. name: "Front",
  34880. image: {
  34881. source: "./media/characters/helen-arri/front.svg",
  34882. extra: 440/423,
  34883. bottom: 14/454
  34884. }
  34885. },
  34886. back: {
  34887. height: math.unit(7 + 8/12, "feet"),
  34888. weight: math.unit(152, "kg"),
  34889. name: "Back",
  34890. image: {
  34891. source: "./media/characters/helen-arri/back.svg",
  34892. extra: 443/426,
  34893. bottom: 8/451
  34894. }
  34895. },
  34896. },
  34897. [
  34898. {
  34899. name: "Normal",
  34900. height: math.unit(7 + 8/12, "feet"),
  34901. default: true
  34902. },
  34903. {
  34904. name: "Big",
  34905. height: math.unit(14, "feet")
  34906. },
  34907. {
  34908. name: "Minimacro",
  34909. height: math.unit(24, "feet")
  34910. },
  34911. {
  34912. name: "Macro",
  34913. height: math.unit(140, "feet")
  34914. },
  34915. ]
  34916. ))
  34917. characterMakers.push(() => makeCharacter(
  34918. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34919. {
  34920. front: {
  34921. height: math.unit(6, "meters"),
  34922. name: "Front",
  34923. image: {
  34924. source: "./media/characters/ehanu-rehu/front.svg",
  34925. extra: 1800/1800,
  34926. bottom: 59/1859
  34927. }
  34928. },
  34929. },
  34930. [
  34931. {
  34932. name: "Normal",
  34933. height: math.unit(6, "meters"),
  34934. default: true
  34935. },
  34936. ]
  34937. ))
  34938. characterMakers.push(() => makeCharacter(
  34939. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34940. {
  34941. front: {
  34942. height: math.unit(7 + 3/12, "feet"),
  34943. name: "Front",
  34944. image: {
  34945. source: "./media/characters/renholder/front.svg",
  34946. extra: 3096/2960,
  34947. bottom: 250/3346
  34948. }
  34949. },
  34950. },
  34951. [
  34952. {
  34953. name: "Normal Bat",
  34954. height: math.unit(7 + 3/12, "feet"),
  34955. default: true
  34956. },
  34957. {
  34958. name: "Slightly Tall Bat",
  34959. height: math.unit(100, "feet")
  34960. },
  34961. {
  34962. name: "Big Bat",
  34963. height: math.unit(1000, "feet")
  34964. },
  34965. {
  34966. name: "City-Sized Bat",
  34967. height: math.unit(200000, "feet")
  34968. },
  34969. {
  34970. name: "Bigger Bat",
  34971. height: math.unit(10000, "miles")
  34972. },
  34973. {
  34974. name: "Solar Sized Bat",
  34975. height: math.unit(100, "AU")
  34976. },
  34977. {
  34978. name: "Galactic Bat",
  34979. height: math.unit(200000, "lightyears")
  34980. },
  34981. {
  34982. name: "Universally Known Bat",
  34983. height: math.unit(1, "universe")
  34984. },
  34985. ]
  34986. ))
  34987. characterMakers.push(() => makeCharacter(
  34988. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34989. {
  34990. front: {
  34991. height: math.unit(6 + 11/12, "feet"),
  34992. weight: math.unit(250, "lb"),
  34993. name: "Front",
  34994. image: {
  34995. source: "./media/characters/cookiecat/front.svg",
  34996. extra: 893/827,
  34997. bottom: 14/907
  34998. }
  34999. },
  35000. },
  35001. [
  35002. {
  35003. name: "Micro",
  35004. height: math.unit(3, "inches")
  35005. },
  35006. {
  35007. name: "Normal",
  35008. height: math.unit(6 + 11/12, "feet"),
  35009. default: true
  35010. },
  35011. {
  35012. name: "Macro",
  35013. height: math.unit(100, "feet")
  35014. },
  35015. {
  35016. name: "Macro+",
  35017. height: math.unit(404, "feet")
  35018. },
  35019. {
  35020. name: "Megamacro",
  35021. height: math.unit(165, "miles")
  35022. },
  35023. {
  35024. name: "Planetary",
  35025. height: math.unit(4600, "miles")
  35026. },
  35027. ]
  35028. ))
  35029. characterMakers.push(() => makeCharacter(
  35030. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35031. {
  35032. front: {
  35033. height: math.unit(10 + 3/12, "feet"),
  35034. weight: math.unit(1500, "lb"),
  35035. name: "Front",
  35036. image: {
  35037. source: "./media/characters/tux-kusanagi/front.svg",
  35038. extra: 944/840,
  35039. bottom: 39/983
  35040. }
  35041. },
  35042. back: {
  35043. height: math.unit(10 + 3/12, "feet"),
  35044. weight: math.unit(1500, "lb"),
  35045. name: "Back",
  35046. image: {
  35047. source: "./media/characters/tux-kusanagi/back.svg",
  35048. extra: 941/842,
  35049. bottom: 28/969
  35050. }
  35051. },
  35052. rump: {
  35053. height: math.unit(5.25, "feet"),
  35054. name: "Rump",
  35055. image: {
  35056. source: "./media/characters/tux-kusanagi/rump.svg"
  35057. }
  35058. },
  35059. beak: {
  35060. height: math.unit(1.54, "feet"),
  35061. name: "Beak",
  35062. image: {
  35063. source: "./media/characters/tux-kusanagi/beak.svg"
  35064. }
  35065. },
  35066. },
  35067. [
  35068. {
  35069. name: "Normal",
  35070. height: math.unit(10 + 3/12, "feet"),
  35071. default: true
  35072. },
  35073. ]
  35074. ))
  35075. characterMakers.push(() => makeCharacter(
  35076. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35077. {
  35078. front: {
  35079. height: math.unit(58, "feet"),
  35080. weight: math.unit(200, "tons"),
  35081. name: "Front",
  35082. image: {
  35083. source: "./media/characters/uzarmazari/front.svg",
  35084. extra: 1575/1455,
  35085. bottom: 152/1727
  35086. }
  35087. },
  35088. back: {
  35089. height: math.unit(58, "feet"),
  35090. weight: math.unit(200, "tons"),
  35091. name: "Back",
  35092. image: {
  35093. source: "./media/characters/uzarmazari/back.svg",
  35094. extra: 1585/1510,
  35095. bottom: 157/1742
  35096. }
  35097. },
  35098. head: {
  35099. height: math.unit(26, "feet"),
  35100. name: "Head",
  35101. image: {
  35102. source: "./media/characters/uzarmazari/head.svg"
  35103. }
  35104. },
  35105. },
  35106. [
  35107. {
  35108. name: "Normal",
  35109. height: math.unit(58, "feet"),
  35110. default: true
  35111. },
  35112. ]
  35113. ))
  35114. characterMakers.push(() => makeCharacter(
  35115. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35116. {
  35117. side: {
  35118. height: math.unit(15, "feet"),
  35119. name: "Side",
  35120. image: {
  35121. source: "./media/characters/akitu/side.svg",
  35122. extra: 1421/1321,
  35123. bottom: 157/1578
  35124. }
  35125. },
  35126. front: {
  35127. height: math.unit(15, "feet"),
  35128. name: "Front",
  35129. image: {
  35130. source: "./media/characters/akitu/front.svg",
  35131. extra: 1435/1326,
  35132. bottom: 232/1667
  35133. }
  35134. },
  35135. },
  35136. [
  35137. {
  35138. name: "Normal",
  35139. height: math.unit(15, "feet"),
  35140. default: true
  35141. },
  35142. ]
  35143. ))
  35144. characterMakers.push(() => makeCharacter(
  35145. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35146. {
  35147. front: {
  35148. height: math.unit(10 + 8/12, "feet"),
  35149. name: "Front",
  35150. image: {
  35151. source: "./media/characters/azalie-croixland/front.svg",
  35152. extra: 1972/1856,
  35153. bottom: 31/2003
  35154. }
  35155. },
  35156. },
  35157. [
  35158. {
  35159. name: "Original Height",
  35160. height: math.unit(5 + 4/12, "feet")
  35161. },
  35162. {
  35163. name: "Normal Height",
  35164. height: math.unit(10 + 8/12, "feet"),
  35165. default: true
  35166. },
  35167. ]
  35168. ))
  35169. characterMakers.push(() => makeCharacter(
  35170. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35171. {
  35172. side: {
  35173. height: math.unit(7 + 1/12, "feet"),
  35174. weight: math.unit(245, "lb"),
  35175. name: "Side",
  35176. image: {
  35177. source: "./media/characters/kavus-kazian/side.svg",
  35178. extra: 349/342,
  35179. bottom: 15/364
  35180. }
  35181. },
  35182. },
  35183. [
  35184. {
  35185. name: "Normal",
  35186. height: math.unit(7 + 1/12, "feet"),
  35187. default: true
  35188. },
  35189. ]
  35190. ))
  35191. characterMakers.push(() => makeCharacter(
  35192. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35193. {
  35194. normalFront: {
  35195. height: math.unit(5 + 11/12, "feet"),
  35196. name: "Front",
  35197. image: {
  35198. source: "./media/characters/moonlight-rose/normal-front.svg",
  35199. extra: 1980/1825,
  35200. bottom: 18/1998
  35201. },
  35202. form: "normal",
  35203. default: true
  35204. },
  35205. normalBack: {
  35206. height: math.unit(5 + 11/12, "feet"),
  35207. name: "Back",
  35208. image: {
  35209. source: "./media/characters/moonlight-rose/normal-back.svg",
  35210. extra: 2010/1839,
  35211. bottom: 10/2020
  35212. },
  35213. form: "normal"
  35214. },
  35215. demonFront: {
  35216. height: math.unit(1.5, "earths"),
  35217. name: "Front",
  35218. image: {
  35219. source: "./media/characters/moonlight-rose/demon.svg",
  35220. extra: 1400/1294,
  35221. bottom: 45/1445
  35222. },
  35223. form: "demon",
  35224. default: true
  35225. },
  35226. terraFront: {
  35227. height: math.unit(1.5, "earths"),
  35228. name: "Front",
  35229. image: {
  35230. source: "./media/characters/moonlight-rose/terra.svg"
  35231. },
  35232. form: "terra",
  35233. default: true
  35234. },
  35235. jupiterFront: {
  35236. height: math.unit(69911*2, "km"),
  35237. name: "Front",
  35238. image: {
  35239. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35240. extra: 1367/1286,
  35241. bottom: 55/1422
  35242. },
  35243. form: "jupiter",
  35244. default: true
  35245. },
  35246. neptuneFront: {
  35247. height: math.unit(24622*2, "feet"),
  35248. name: "Front",
  35249. image: {
  35250. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35251. extra: 1851/1712,
  35252. bottom: 0/1851
  35253. },
  35254. form: "neptune",
  35255. default: true
  35256. },
  35257. },
  35258. [
  35259. {
  35260. name: "\"Natural\" Height",
  35261. height: math.unit(5 + 11/12, "feet"),
  35262. form: "normal"
  35263. },
  35264. {
  35265. name: "Smallest comfortable size",
  35266. height: math.unit(40, "meters"),
  35267. form: "normal"
  35268. },
  35269. {
  35270. name: "Common size",
  35271. height: math.unit(50, "km"),
  35272. form: "normal",
  35273. default: true
  35274. },
  35275. {
  35276. name: "Normal",
  35277. height: math.unit(1.5, "earths"),
  35278. form: "demon",
  35279. default: true
  35280. },
  35281. {
  35282. name: "Universal",
  35283. height: math.unit(15, "universes"),
  35284. form: "demon"
  35285. },
  35286. {
  35287. name: "Earth",
  35288. height: math.unit(1.5, "earths"),
  35289. form: "terra",
  35290. default: true
  35291. },
  35292. {
  35293. name: "Super Earth",
  35294. height: math.unit(67.5, "earths"),
  35295. form: "terra"
  35296. },
  35297. {
  35298. name: "Doesn't fit in a solar system...",
  35299. height: math.unit(1, "galaxy"),
  35300. form: "terra"
  35301. },
  35302. {
  35303. name: "Saturn",
  35304. height: math.unit(58232*2, "km"),
  35305. form: "jupiter"
  35306. },
  35307. {
  35308. name: "Jupiter",
  35309. height: math.unit(69911*2, "km"),
  35310. form: "jupiter",
  35311. default: true
  35312. },
  35313. {
  35314. name: "HD 100546 b",
  35315. height: math.unit(482938, "km"),
  35316. form: "jupiter"
  35317. },
  35318. {
  35319. name: "Enceladus",
  35320. height: math.unit(513*2, "km"),
  35321. form: "neptune"
  35322. },
  35323. {
  35324. name: "Europe",
  35325. height: math.unit(1560*2, "km"),
  35326. form: "neptune"
  35327. },
  35328. {
  35329. name: "Neptune",
  35330. height: math.unit(24622*2, "km"),
  35331. form: "neptune",
  35332. default: true
  35333. },
  35334. {
  35335. name: "CoRoT-9b",
  35336. height: math.unit(75067*2, "km"),
  35337. form: "neptune"
  35338. },
  35339. ],
  35340. {
  35341. "normal": {
  35342. name: "Normal",
  35343. default: true
  35344. },
  35345. "demon": {
  35346. name: "Demon"
  35347. },
  35348. "terra": {
  35349. name: "Terra"
  35350. },
  35351. "jupiter": {
  35352. name: "Jupiter"
  35353. },
  35354. "neptune": {
  35355. name: "Neptune"
  35356. }
  35357. }
  35358. ))
  35359. characterMakers.push(() => makeCharacter(
  35360. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35361. {
  35362. front: {
  35363. height: math.unit(16, "feet"),
  35364. weight: math.unit(610, "kg"),
  35365. name: "Front",
  35366. image: {
  35367. source: "./media/characters/huckle/front.svg",
  35368. extra: 1731/1625,
  35369. bottom: 33/1764
  35370. }
  35371. },
  35372. back: {
  35373. height: math.unit(16, "feet"),
  35374. weight: math.unit(610, "kg"),
  35375. name: "Back",
  35376. image: {
  35377. source: "./media/characters/huckle/back.svg",
  35378. extra: 1738/1651,
  35379. bottom: 37/1775
  35380. }
  35381. },
  35382. laughing: {
  35383. height: math.unit(3.75, "feet"),
  35384. name: "Laughing",
  35385. image: {
  35386. source: "./media/characters/huckle/laughing.svg"
  35387. }
  35388. },
  35389. angry: {
  35390. height: math.unit(4.15, "feet"),
  35391. name: "Angry",
  35392. image: {
  35393. source: "./media/characters/huckle/angry.svg"
  35394. }
  35395. },
  35396. },
  35397. [
  35398. {
  35399. name: "Normal",
  35400. height: math.unit(16, "feet"),
  35401. default: true
  35402. },
  35403. {
  35404. name: "Mini Macro",
  35405. height: math.unit(463, "feet")
  35406. },
  35407. {
  35408. name: "Macro",
  35409. height: math.unit(1680, "meters")
  35410. },
  35411. {
  35412. name: "Mega Macro",
  35413. height: math.unit(175, "km")
  35414. },
  35415. {
  35416. name: "Terra Macro",
  35417. height: math.unit(32, "gigameters")
  35418. },
  35419. {
  35420. name: "Multiverse+",
  35421. height: math.unit(2.56e23, "yottameters")
  35422. },
  35423. ]
  35424. ))
  35425. characterMakers.push(() => makeCharacter(
  35426. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35427. {
  35428. front: {
  35429. height: math.unit(6 + 9/12, "feet"),
  35430. weight: math.unit(280, "lb"),
  35431. name: "Front",
  35432. image: {
  35433. source: "./media/characters/candy/front.svg",
  35434. extra: 234/217,
  35435. bottom: 11/245
  35436. }
  35437. },
  35438. },
  35439. [
  35440. {
  35441. name: "Really Small",
  35442. height: math.unit(0.1, "nm")
  35443. },
  35444. {
  35445. name: "Micro",
  35446. height: math.unit(2, "inches")
  35447. },
  35448. {
  35449. name: "Normal",
  35450. height: math.unit(6 + 9/12, "feet"),
  35451. default: true
  35452. },
  35453. {
  35454. name: "Small Macro",
  35455. height: math.unit(69, "feet")
  35456. },
  35457. {
  35458. name: "Macro",
  35459. height: math.unit(160, "feet")
  35460. },
  35461. {
  35462. name: "Megamacro",
  35463. height: math.unit(22000, "miles")
  35464. },
  35465. {
  35466. name: "Gigamacro",
  35467. height: math.unit(50000, "miles")
  35468. },
  35469. ]
  35470. ))
  35471. characterMakers.push(() => makeCharacter(
  35472. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35473. {
  35474. front: {
  35475. height: math.unit(4, "feet"),
  35476. weight: math.unit(90, "lb"),
  35477. name: "Front",
  35478. image: {
  35479. source: "./media/characters/joey-mcdonald/front.svg",
  35480. extra: 1059/852,
  35481. bottom: 33/1092
  35482. }
  35483. },
  35484. back: {
  35485. height: math.unit(4, "feet"),
  35486. weight: math.unit(90, "lb"),
  35487. name: "Back",
  35488. image: {
  35489. source: "./media/characters/joey-mcdonald/back.svg",
  35490. extra: 1077/879,
  35491. bottom: 5/1082
  35492. }
  35493. },
  35494. frontKobold: {
  35495. height: math.unit(4, "feet"),
  35496. weight: math.unit(100, "lb"),
  35497. name: "Front-kobold",
  35498. image: {
  35499. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35500. extra: 1480/1367,
  35501. bottom: 0/1480
  35502. }
  35503. },
  35504. backKobold: {
  35505. height: math.unit(4, "feet"),
  35506. weight: math.unit(100, "lb"),
  35507. name: "Back-kobold",
  35508. image: {
  35509. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35510. extra: 1449/1361,
  35511. bottom: 0/1449
  35512. }
  35513. },
  35514. },
  35515. [
  35516. {
  35517. name: "Normal",
  35518. height: math.unit(4, "feet"),
  35519. default: true
  35520. },
  35521. ]
  35522. ))
  35523. characterMakers.push(() => makeCharacter(
  35524. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35525. {
  35526. front: {
  35527. height: math.unit(12 + 6/12, "feet"),
  35528. name: "Front",
  35529. image: {
  35530. source: "./media/characters/kass-lockheed/front.svg",
  35531. extra: 354/343,
  35532. bottom: 9/363
  35533. }
  35534. },
  35535. back: {
  35536. height: math.unit(12 + 6/12, "feet"),
  35537. name: "Back",
  35538. image: {
  35539. source: "./media/characters/kass-lockheed/back.svg",
  35540. extra: 364/352,
  35541. bottom: 3/367
  35542. }
  35543. },
  35544. dick: {
  35545. height: math.unit(3.12, "feet"),
  35546. name: "Dick",
  35547. image: {
  35548. source: "./media/characters/kass-lockheed/dick.svg"
  35549. }
  35550. },
  35551. head: {
  35552. height: math.unit(2.6, "feet"),
  35553. name: "Head",
  35554. image: {
  35555. source: "./media/characters/kass-lockheed/head.svg"
  35556. }
  35557. },
  35558. bleh: {
  35559. height: math.unit(2.85, "feet"),
  35560. name: "Bleh",
  35561. image: {
  35562. source: "./media/characters/kass-lockheed/bleh.svg"
  35563. }
  35564. },
  35565. smug: {
  35566. height: math.unit(2.85, "feet"),
  35567. name: "Smug",
  35568. image: {
  35569. source: "./media/characters/kass-lockheed/smug.svg"
  35570. }
  35571. },
  35572. },
  35573. [
  35574. {
  35575. name: "Normal",
  35576. height: math.unit(12 + 6/12, "feet"),
  35577. default: true
  35578. },
  35579. ]
  35580. ))
  35581. characterMakers.push(() => makeCharacter(
  35582. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35583. {
  35584. front: {
  35585. height: math.unit(6 + 2/12, "feet"),
  35586. name: "Front",
  35587. image: {
  35588. source: "./media/characters/taylor/front.svg",
  35589. extra: 639/495,
  35590. bottom: 12/651
  35591. }
  35592. },
  35593. },
  35594. [
  35595. {
  35596. name: "Normal",
  35597. height: math.unit(6 + 2/12, "feet"),
  35598. default: true
  35599. },
  35600. {
  35601. name: "Big",
  35602. height: math.unit(15, "feet")
  35603. },
  35604. {
  35605. name: "Lorg",
  35606. height: math.unit(80, "feet")
  35607. },
  35608. {
  35609. name: "Too Lorg",
  35610. height: math.unit(120, "feet")
  35611. },
  35612. ]
  35613. ))
  35614. characterMakers.push(() => makeCharacter(
  35615. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35616. {
  35617. front: {
  35618. height: math.unit(15, "feet"),
  35619. name: "Front",
  35620. image: {
  35621. source: "./media/characters/kaizer/front.svg",
  35622. extra: 1612/1436,
  35623. bottom: 43/1655
  35624. }
  35625. },
  35626. },
  35627. [
  35628. {
  35629. name: "Normal",
  35630. height: math.unit(15, "feet"),
  35631. default: true
  35632. },
  35633. ]
  35634. ))
  35635. characterMakers.push(() => makeCharacter(
  35636. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35637. {
  35638. front: {
  35639. height: math.unit(2, "feet"),
  35640. weight: math.unit(30, "lb"),
  35641. name: "Front",
  35642. image: {
  35643. source: "./media/characters/sandy/front.svg",
  35644. extra: 1439/1307,
  35645. bottom: 194/1633
  35646. }
  35647. },
  35648. },
  35649. [
  35650. {
  35651. name: "Normal",
  35652. height: math.unit(2, "feet"),
  35653. default: true
  35654. },
  35655. ]
  35656. ))
  35657. characterMakers.push(() => makeCharacter(
  35658. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35659. {
  35660. front: {
  35661. height: math.unit(3, "feet"),
  35662. name: "Front",
  35663. image: {
  35664. source: "./media/characters/mellvi/front.svg",
  35665. extra: 1831/1630,
  35666. bottom: 58/1889
  35667. }
  35668. },
  35669. },
  35670. [
  35671. {
  35672. name: "Normal",
  35673. height: math.unit(3, "feet"),
  35674. default: true
  35675. },
  35676. ]
  35677. ))
  35678. characterMakers.push(() => makeCharacter(
  35679. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35680. {
  35681. front: {
  35682. height: math.unit(5 + 11/12, "feet"),
  35683. weight: math.unit(200, "lb"),
  35684. name: "Front",
  35685. image: {
  35686. source: "./media/characters/shirou/front.svg",
  35687. extra: 2491/2383,
  35688. bottom: 189/2680
  35689. }
  35690. },
  35691. back: {
  35692. height: math.unit(5 + 11/12, "feet"),
  35693. weight: math.unit(200, "lb"),
  35694. name: "Back",
  35695. image: {
  35696. source: "./media/characters/shirou/back.svg",
  35697. extra: 2554/2450,
  35698. bottom: 76/2630
  35699. }
  35700. },
  35701. },
  35702. [
  35703. {
  35704. name: "Normal",
  35705. height: math.unit(5 + 11/12, "feet"),
  35706. default: true
  35707. },
  35708. ]
  35709. ))
  35710. characterMakers.push(() => makeCharacter(
  35711. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35712. {
  35713. front: {
  35714. height: math.unit(6 + 3/12, "feet"),
  35715. weight: math.unit(177, "lb"),
  35716. name: "Front",
  35717. image: {
  35718. source: "./media/characters/noryu/front.svg",
  35719. extra: 973/885,
  35720. bottom: 10/983
  35721. }
  35722. },
  35723. },
  35724. [
  35725. {
  35726. name: "Normal",
  35727. height: math.unit(6 + 3/12, "feet"),
  35728. default: true
  35729. },
  35730. ]
  35731. ))
  35732. characterMakers.push(() => makeCharacter(
  35733. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35734. {
  35735. front: {
  35736. height: math.unit(5 + 6/12, "feet"),
  35737. weight: math.unit(170, "lb"),
  35738. name: "Front",
  35739. image: {
  35740. source: "./media/characters/mevolas-rubenido/front.svg",
  35741. extra: 2109/1901,
  35742. bottom: 96/2205
  35743. }
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "Normal",
  35749. height: math.unit(5 + 6/12, "feet"),
  35750. default: true
  35751. },
  35752. ]
  35753. ))
  35754. characterMakers.push(() => makeCharacter(
  35755. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35756. {
  35757. front: {
  35758. height: math.unit(100, "feet"),
  35759. name: "Front",
  35760. image: {
  35761. source: "./media/characters/dee/front.svg",
  35762. extra: 2153/2036,
  35763. bottom: 59/2212
  35764. }
  35765. },
  35766. back: {
  35767. height: math.unit(100, "feet"),
  35768. name: "Back",
  35769. image: {
  35770. source: "./media/characters/dee/back.svg",
  35771. extra: 2183/2058,
  35772. bottom: 75/2258
  35773. }
  35774. },
  35775. foot: {
  35776. height: math.unit(19.43, "feet"),
  35777. name: "Foot",
  35778. image: {
  35779. source: "./media/characters/dee/foot.svg"
  35780. }
  35781. },
  35782. hoof: {
  35783. height: math.unit(20.6, "feet"),
  35784. name: "Hoof",
  35785. image: {
  35786. source: "./media/characters/dee/hoof.svg"
  35787. }
  35788. },
  35789. },
  35790. [
  35791. {
  35792. name: "Macro",
  35793. height: math.unit(100, "feet"),
  35794. default: true
  35795. },
  35796. ]
  35797. ))
  35798. characterMakers.push(() => makeCharacter(
  35799. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35800. {
  35801. front: {
  35802. height: math.unit(5 + 6/12, "feet"),
  35803. name: "Front",
  35804. image: {
  35805. source: "./media/characters/teh/front.svg",
  35806. extra: 1002/847,
  35807. bottom: 62/1064
  35808. }
  35809. },
  35810. },
  35811. [
  35812. {
  35813. name: "Normal",
  35814. height: math.unit(5 + 6/12, "feet"),
  35815. default: true
  35816. },
  35817. ]
  35818. ))
  35819. characterMakers.push(() => makeCharacter(
  35820. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35821. {
  35822. side: {
  35823. height: math.unit(6 + 1/12, "feet"),
  35824. weight: math.unit(204, "lb"),
  35825. name: "Side",
  35826. image: {
  35827. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35828. extra: 974/775,
  35829. bottom: 169/1143
  35830. }
  35831. },
  35832. sitting: {
  35833. height: math.unit(6 + 2/12, "feet"),
  35834. weight: math.unit(204, "lb"),
  35835. name: "Sitting",
  35836. image: {
  35837. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35838. extra: 1175/964,
  35839. bottom: 378/1553
  35840. }
  35841. },
  35842. },
  35843. [
  35844. {
  35845. name: "Normal",
  35846. height: math.unit(6 + 1/12, "feet"),
  35847. default: true
  35848. },
  35849. ]
  35850. ))
  35851. characterMakers.push(() => makeCharacter(
  35852. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35853. {
  35854. front: {
  35855. height: math.unit(6, "inches"),
  35856. name: "Front",
  35857. image: {
  35858. source: "./media/characters/tululi/front.svg",
  35859. extra: 1997/1876,
  35860. bottom: 20/2017
  35861. }
  35862. },
  35863. },
  35864. [
  35865. {
  35866. name: "Normal",
  35867. height: math.unit(6, "inches"),
  35868. default: true
  35869. },
  35870. ]
  35871. ))
  35872. characterMakers.push(() => makeCharacter(
  35873. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35874. {
  35875. front: {
  35876. height: math.unit(4 + 1/12, "feet"),
  35877. name: "Front",
  35878. image: {
  35879. source: "./media/characters/star/front.svg",
  35880. extra: 1493/1189,
  35881. bottom: 48/1541
  35882. }
  35883. },
  35884. },
  35885. [
  35886. {
  35887. name: "Normal",
  35888. height: math.unit(4 + 1/12, "feet"),
  35889. default: true
  35890. },
  35891. ]
  35892. ))
  35893. characterMakers.push(() => makeCharacter(
  35894. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35895. {
  35896. front: {
  35897. height: math.unit(6 + 3/12, "feet"),
  35898. name: "Front",
  35899. image: {
  35900. source: "./media/characters/comet/front.svg",
  35901. extra: 1681/1462,
  35902. bottom: 26/1707
  35903. }
  35904. },
  35905. },
  35906. [
  35907. {
  35908. name: "Normal",
  35909. height: math.unit(6 + 3/12, "feet"),
  35910. default: true
  35911. },
  35912. ]
  35913. ))
  35914. characterMakers.push(() => makeCharacter(
  35915. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35916. {
  35917. front: {
  35918. height: math.unit(950, "feet"),
  35919. name: "Front",
  35920. image: {
  35921. source: "./media/characters/vortex/front.svg",
  35922. extra: 1497/1434,
  35923. bottom: 56/1553
  35924. }
  35925. },
  35926. maw: {
  35927. height: math.unit(285, "feet"),
  35928. name: "Maw",
  35929. image: {
  35930. source: "./media/characters/vortex/maw.svg"
  35931. }
  35932. },
  35933. },
  35934. [
  35935. {
  35936. name: "Macro",
  35937. height: math.unit(950, "feet"),
  35938. default: true
  35939. },
  35940. ]
  35941. ))
  35942. characterMakers.push(() => makeCharacter(
  35943. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35944. {
  35945. front: {
  35946. height: math.unit(600, "feet"),
  35947. weight: math.unit(0.02, "grams"),
  35948. name: "Front",
  35949. image: {
  35950. source: "./media/characters/doodle/front.svg",
  35951. extra: 1578/1413,
  35952. bottom: 37/1615
  35953. }
  35954. },
  35955. },
  35956. [
  35957. {
  35958. name: "Macro",
  35959. height: math.unit(600, "feet"),
  35960. default: true
  35961. },
  35962. ]
  35963. ))
  35964. characterMakers.push(() => makeCharacter(
  35965. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35966. {
  35967. front: {
  35968. height: math.unit(6 + 6/12, "feet"),
  35969. name: "Front",
  35970. image: {
  35971. source: "./media/characters/jai/front.svg",
  35972. extra: 1645/1534,
  35973. bottom: 115/1760
  35974. }
  35975. },
  35976. },
  35977. [
  35978. {
  35979. name: "Normal",
  35980. height: math.unit(6 + 6/12, "feet"),
  35981. default: true
  35982. },
  35983. ]
  35984. ))
  35985. characterMakers.push(() => makeCharacter(
  35986. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35987. {
  35988. front: {
  35989. height: math.unit(6 + 8/12, "feet"),
  35990. name: "Front",
  35991. image: {
  35992. source: "./media/characters/pixel/front.svg",
  35993. extra: 1900/1735,
  35994. bottom: 63/1963
  35995. }
  35996. },
  35997. },
  35998. [
  35999. {
  36000. name: "Normal",
  36001. height: math.unit(6 + 8/12, "feet"),
  36002. default: true
  36003. },
  36004. ]
  36005. ))
  36006. characterMakers.push(() => makeCharacter(
  36007. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36008. {
  36009. back: {
  36010. height: math.unit(4 + 1/12, "feet"),
  36011. weight: math.unit(75, "lb"),
  36012. name: "Back",
  36013. image: {
  36014. source: "./media/characters/rhett/back.svg",
  36015. extra: 930/878,
  36016. bottom: 25/955
  36017. }
  36018. },
  36019. front: {
  36020. height: math.unit(4 + 1/12, "feet"),
  36021. weight: math.unit(75, "lb"),
  36022. name: "Front",
  36023. image: {
  36024. source: "./media/characters/rhett/front.svg",
  36025. extra: 1682/1586,
  36026. bottom: 92/1774
  36027. }
  36028. },
  36029. },
  36030. [
  36031. {
  36032. name: "Micro",
  36033. height: math.unit(8, "inches")
  36034. },
  36035. {
  36036. name: "Tiny",
  36037. height: math.unit(2, "feet")
  36038. },
  36039. {
  36040. name: "Normal",
  36041. height: math.unit(4 + 1/12, "feet"),
  36042. default: true
  36043. },
  36044. ]
  36045. ))
  36046. characterMakers.push(() => makeCharacter(
  36047. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36048. {
  36049. front: {
  36050. height: math.unit(3 + 3/12, "feet"),
  36051. name: "Front",
  36052. image: {
  36053. source: "./media/characters/penny/front.svg",
  36054. extra: 1406/1311,
  36055. bottom: 26/1432
  36056. }
  36057. },
  36058. },
  36059. [
  36060. {
  36061. name: "Normal",
  36062. height: math.unit(3 + 3/12, "feet"),
  36063. default: true
  36064. },
  36065. ]
  36066. ))
  36067. characterMakers.push(() => makeCharacter(
  36068. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36069. {
  36070. front: {
  36071. height: math.unit(4 + 11/12, "feet"),
  36072. name: "Front",
  36073. image: {
  36074. source: "./media/characters/monty/front.svg",
  36075. extra: 1479/1209,
  36076. bottom: 0/1479
  36077. }
  36078. },
  36079. },
  36080. [
  36081. {
  36082. name: "Normal",
  36083. height: math.unit(4 + 11/12, "feet"),
  36084. default: true
  36085. },
  36086. ]
  36087. ))
  36088. characterMakers.push(() => makeCharacter(
  36089. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36090. {
  36091. front: {
  36092. height: math.unit(8 + 4/12, "feet"),
  36093. name: "Front",
  36094. image: {
  36095. source: "./media/characters/sterling/front.svg",
  36096. extra: 1420/1236,
  36097. bottom: 27/1447
  36098. }
  36099. },
  36100. },
  36101. [
  36102. {
  36103. name: "Normal",
  36104. height: math.unit(8 + 4/12, "feet"),
  36105. default: true
  36106. },
  36107. ]
  36108. ))
  36109. characterMakers.push(() => makeCharacter(
  36110. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36111. {
  36112. front: {
  36113. height: math.unit(15, "feet"),
  36114. name: "Front",
  36115. image: {
  36116. source: "./media/characters/marble/front.svg",
  36117. extra: 973/937,
  36118. bottom: 32/1005
  36119. }
  36120. },
  36121. },
  36122. [
  36123. {
  36124. name: "Normal",
  36125. height: math.unit(15, "feet"),
  36126. default: true
  36127. },
  36128. ]
  36129. ))
  36130. characterMakers.push(() => makeCharacter(
  36131. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36132. {
  36133. front: {
  36134. height: math.unit(3, "inches"),
  36135. name: "Front",
  36136. image: {
  36137. source: "./media/characters/powder/front.svg",
  36138. extra: 1504/1334,
  36139. bottom: 518/2022
  36140. }
  36141. },
  36142. },
  36143. [
  36144. {
  36145. name: "Normal",
  36146. height: math.unit(3, "inches"),
  36147. default: true
  36148. },
  36149. ]
  36150. ))
  36151. characterMakers.push(() => makeCharacter(
  36152. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36153. {
  36154. front: {
  36155. height: math.unit(4 + 5/12, "feet"),
  36156. name: "Front",
  36157. image: {
  36158. source: "./media/characters/joey-raccoon/front.svg",
  36159. extra: 1273/1197,
  36160. bottom: 0/1273
  36161. }
  36162. },
  36163. },
  36164. [
  36165. {
  36166. name: "Normal",
  36167. height: math.unit(4 + 5/12, "feet"),
  36168. default: true
  36169. },
  36170. ]
  36171. ))
  36172. characterMakers.push(() => makeCharacter(
  36173. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36174. {
  36175. front: {
  36176. height: math.unit(8 + 4/12, "feet"),
  36177. name: "Front",
  36178. image: {
  36179. source: "./media/characters/vick/front.svg",
  36180. extra: 2187/2118,
  36181. bottom: 47/2234
  36182. }
  36183. },
  36184. },
  36185. [
  36186. {
  36187. name: "Normal",
  36188. height: math.unit(8 + 4/12, "feet"),
  36189. default: true
  36190. },
  36191. ]
  36192. ))
  36193. characterMakers.push(() => makeCharacter(
  36194. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36195. {
  36196. front: {
  36197. height: math.unit(5 + 5/12, "feet"),
  36198. name: "Front",
  36199. image: {
  36200. source: "./media/characters/mitsy/front.svg",
  36201. extra: 1842/1695,
  36202. bottom: 0/1842
  36203. }
  36204. },
  36205. },
  36206. [
  36207. {
  36208. name: "Normal",
  36209. height: math.unit(5 + 5/12, "feet"),
  36210. default: true
  36211. },
  36212. ]
  36213. ))
  36214. characterMakers.push(() => makeCharacter(
  36215. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36216. {
  36217. front: {
  36218. height: math.unit(6 + 3/12, "feet"),
  36219. name: "Front",
  36220. image: {
  36221. source: "./media/characters/silvy/front.svg",
  36222. extra: 1995/1836,
  36223. bottom: 225/2220
  36224. }
  36225. },
  36226. },
  36227. [
  36228. {
  36229. name: "Normal",
  36230. height: math.unit(6 + 3/12, "feet"),
  36231. default: true
  36232. },
  36233. ]
  36234. ))
  36235. characterMakers.push(() => makeCharacter(
  36236. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36237. {
  36238. front: {
  36239. height: math.unit(3 + 8/12, "feet"),
  36240. name: "Front",
  36241. image: {
  36242. source: "./media/characters/rodney/front.svg",
  36243. extra: 1956/1747,
  36244. bottom: 31/1987
  36245. }
  36246. },
  36247. frontDressed: {
  36248. height: math.unit(2.9, "feet"),
  36249. name: "Front (Dressed)",
  36250. image: {
  36251. source: "./media/characters/rodney/front-dressed.svg",
  36252. extra: 1382/1241,
  36253. bottom: 385/1767
  36254. }
  36255. },
  36256. },
  36257. [
  36258. {
  36259. name: "Normal",
  36260. height: math.unit(3 + 8/12, "feet"),
  36261. default: true
  36262. },
  36263. ]
  36264. ))
  36265. characterMakers.push(() => makeCharacter(
  36266. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36267. {
  36268. front: {
  36269. height: math.unit(5 + 9/12, "feet"),
  36270. weight: math.unit(194, "lbs"),
  36271. name: "Front",
  36272. image: {
  36273. source: "./media/characters/zakail-sudekai/front.svg",
  36274. extra: 2696/2533,
  36275. bottom: 248/2944
  36276. }
  36277. },
  36278. maw: {
  36279. height: math.unit(1.35, "feet"),
  36280. name: "Maw",
  36281. image: {
  36282. source: "./media/characters/zakail-sudekai/maw.svg"
  36283. }
  36284. },
  36285. },
  36286. [
  36287. {
  36288. name: "Normal",
  36289. height: math.unit(5 + 9/12, "feet"),
  36290. default: true
  36291. },
  36292. ]
  36293. ))
  36294. characterMakers.push(() => makeCharacter(
  36295. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36296. {
  36297. front: {
  36298. height: math.unit(8 + 4/12, "feet"),
  36299. weight: math.unit(1200, "lb"),
  36300. name: "Front",
  36301. image: {
  36302. source: "./media/characters/eleanor/front.svg",
  36303. extra: 1226/1192,
  36304. bottom: 52/1278
  36305. }
  36306. },
  36307. back: {
  36308. height: math.unit(8 + 4/12, "feet"),
  36309. weight: math.unit(1200, "lb"),
  36310. name: "Back",
  36311. image: {
  36312. source: "./media/characters/eleanor/back.svg",
  36313. extra: 1242/1184,
  36314. bottom: 60/1302
  36315. }
  36316. },
  36317. head: {
  36318. height: math.unit(2.62, "feet"),
  36319. name: "Head",
  36320. image: {
  36321. source: "./media/characters/eleanor/head.svg"
  36322. }
  36323. },
  36324. },
  36325. [
  36326. {
  36327. name: "Normal",
  36328. height: math.unit(8 + 4/12, "feet"),
  36329. default: true
  36330. },
  36331. ]
  36332. ))
  36333. characterMakers.push(() => makeCharacter(
  36334. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36335. {
  36336. front: {
  36337. height: math.unit(8 + 4/12, "feet"),
  36338. weight: math.unit(750, "lb"),
  36339. name: "Front",
  36340. image: {
  36341. source: "./media/characters/tanya/front.svg",
  36342. extra: 1749/1615,
  36343. bottom: 33/1782
  36344. }
  36345. },
  36346. },
  36347. [
  36348. {
  36349. name: "Normal",
  36350. height: math.unit(8 + 4/12, "feet"),
  36351. default: true
  36352. },
  36353. ]
  36354. ))
  36355. characterMakers.push(() => makeCharacter(
  36356. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36357. {
  36358. front: {
  36359. height: math.unit(5, "feet"),
  36360. weight: math.unit(225, "lb"),
  36361. name: "Front",
  36362. image: {
  36363. source: "./media/characters/cindy/front.svg",
  36364. extra: 1320/1250,
  36365. bottom: 42/1362
  36366. }
  36367. },
  36368. frontDressed: {
  36369. height: math.unit(5, "feet"),
  36370. weight: math.unit(225, "lb"),
  36371. name: "Front (Dressed)",
  36372. image: {
  36373. source: "./media/characters/cindy/front-dressed.svg",
  36374. extra: 1320/1250,
  36375. bottom: 42/1362
  36376. }
  36377. },
  36378. back: {
  36379. height: math.unit(5, "feet"),
  36380. weight: math.unit(225, "lb"),
  36381. name: "Back",
  36382. image: {
  36383. source: "./media/characters/cindy/back.svg",
  36384. extra: 1384/1346,
  36385. bottom: 14/1398
  36386. }
  36387. },
  36388. },
  36389. [
  36390. {
  36391. name: "Normal",
  36392. height: math.unit(5, "feet"),
  36393. default: true
  36394. },
  36395. ]
  36396. ))
  36397. characterMakers.push(() => makeCharacter(
  36398. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36399. {
  36400. front: {
  36401. height: math.unit(6 + 9/12, "feet"),
  36402. weight: math.unit(440, "lb"),
  36403. name: "Front",
  36404. image: {
  36405. source: "./media/characters/wilbur-owen/front.svg",
  36406. extra: 1575/1448,
  36407. bottom: 72/1647
  36408. }
  36409. },
  36410. back: {
  36411. height: math.unit(6 + 9/12, "feet"),
  36412. weight: math.unit(440, "lb"),
  36413. name: "Back",
  36414. image: {
  36415. source: "./media/characters/wilbur-owen/back.svg",
  36416. extra: 1578/1445,
  36417. bottom: 36/1614
  36418. }
  36419. },
  36420. },
  36421. [
  36422. {
  36423. name: "Normal",
  36424. height: math.unit(6 + 9/12, "feet"),
  36425. default: true
  36426. },
  36427. ]
  36428. ))
  36429. characterMakers.push(() => makeCharacter(
  36430. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36431. {
  36432. front: {
  36433. height: math.unit(6 + 5/12, "feet"),
  36434. weight: math.unit(650, "lb"),
  36435. name: "Front",
  36436. image: {
  36437. source: "./media/characters/keegan/front.svg",
  36438. extra: 2387/2198,
  36439. bottom: 33/2420
  36440. }
  36441. },
  36442. side: {
  36443. height: math.unit(6 + 5/12, "feet"),
  36444. weight: math.unit(650, "lb"),
  36445. name: "Side",
  36446. image: {
  36447. source: "./media/characters/keegan/side.svg",
  36448. extra: 2390/2202,
  36449. bottom: 47/2437
  36450. }
  36451. },
  36452. back: {
  36453. height: math.unit(6 + 5/12, "feet"),
  36454. weight: math.unit(650, "lb"),
  36455. name: "Back",
  36456. image: {
  36457. source: "./media/characters/keegan/back.svg",
  36458. extra: 2418/2268,
  36459. bottom: 15/2433
  36460. }
  36461. },
  36462. frontSfw: {
  36463. height: math.unit(6 + 5/12, "feet"),
  36464. weight: math.unit(650, "lb"),
  36465. name: "Front (SFW)",
  36466. image: {
  36467. source: "./media/characters/keegan/front-sfw.svg",
  36468. extra: 2387/2198,
  36469. bottom: 33/2420
  36470. }
  36471. },
  36472. beans: {
  36473. height: math.unit(1.85, "feet"),
  36474. name: "Beans",
  36475. image: {
  36476. source: "./media/characters/keegan/beans.svg"
  36477. }
  36478. },
  36479. },
  36480. [
  36481. {
  36482. name: "Normal",
  36483. height: math.unit(6 + 5/12, "feet"),
  36484. default: true
  36485. },
  36486. ]
  36487. ))
  36488. characterMakers.push(() => makeCharacter(
  36489. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36490. {
  36491. front: {
  36492. height: math.unit(9, "feet"),
  36493. name: "Front",
  36494. image: {
  36495. source: "./media/characters/colton/front.svg",
  36496. extra: 1589/1326,
  36497. bottom: 139/1728
  36498. }
  36499. },
  36500. },
  36501. [
  36502. {
  36503. name: "Normal",
  36504. height: math.unit(9, "feet"),
  36505. default: true
  36506. },
  36507. ]
  36508. ))
  36509. characterMakers.push(() => makeCharacter(
  36510. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36511. {
  36512. front: {
  36513. height: math.unit(2 + 9/12, "feet"),
  36514. name: "Front",
  36515. image: {
  36516. source: "./media/characters/bora/front.svg",
  36517. extra: 1265/1250,
  36518. bottom: 24/1289
  36519. }
  36520. },
  36521. },
  36522. [
  36523. {
  36524. name: "Normal",
  36525. height: math.unit(2 + 9/12, "feet"),
  36526. default: true
  36527. },
  36528. ]
  36529. ))
  36530. characterMakers.push(() => makeCharacter(
  36531. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36532. {
  36533. front: {
  36534. height: math.unit(8, "feet"),
  36535. name: "Front",
  36536. image: {
  36537. source: "./media/characters/myu-myu/front.svg",
  36538. extra: 1949/1857,
  36539. bottom: 90/2039
  36540. }
  36541. },
  36542. },
  36543. [
  36544. {
  36545. name: "Normal",
  36546. height: math.unit(8, "feet"),
  36547. default: true
  36548. },
  36549. {
  36550. name: "Big",
  36551. height: math.unit(15, "feet")
  36552. },
  36553. {
  36554. name: "BIG",
  36555. height: math.unit(25, "feet")
  36556. },
  36557. ]
  36558. ))
  36559. characterMakers.push(() => makeCharacter(
  36560. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36561. {
  36562. side: {
  36563. height: math.unit(7 + 5/12, "feet"),
  36564. weight: math.unit(2800, "lb"),
  36565. name: "Side",
  36566. image: {
  36567. source: "./media/characters/haloren/side.svg",
  36568. extra: 1793/409,
  36569. bottom: 59/1852
  36570. }
  36571. },
  36572. frontPaw: {
  36573. height: math.unit(2.36, "feet"),
  36574. name: "Front paw",
  36575. image: {
  36576. source: "./media/characters/haloren/front-paw.svg"
  36577. }
  36578. },
  36579. hindPaw: {
  36580. height: math.unit(3.18, "feet"),
  36581. name: "Hind paw",
  36582. image: {
  36583. source: "./media/characters/haloren/hind-paw.svg"
  36584. }
  36585. },
  36586. maw: {
  36587. height: math.unit(5.05, "feet"),
  36588. name: "Maw",
  36589. image: {
  36590. source: "./media/characters/haloren/maw.svg"
  36591. }
  36592. },
  36593. dick: {
  36594. height: math.unit(2.90, "feet"),
  36595. name: "Dick",
  36596. image: {
  36597. source: "./media/characters/haloren/dick.svg"
  36598. }
  36599. },
  36600. },
  36601. [
  36602. {
  36603. name: "Normal",
  36604. height: math.unit(7 + 5/12, "feet"),
  36605. default: true
  36606. },
  36607. {
  36608. name: "Enhanced",
  36609. height: math.unit(14 + 3/12, "feet")
  36610. },
  36611. ]
  36612. ))
  36613. characterMakers.push(() => makeCharacter(
  36614. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36615. {
  36616. front: {
  36617. height: math.unit(171, "cm"),
  36618. name: "Front",
  36619. image: {
  36620. source: "./media/characters/kimmy/front.svg",
  36621. extra: 1491/1435,
  36622. bottom: 53/1544
  36623. }
  36624. },
  36625. },
  36626. [
  36627. {
  36628. name: "Small",
  36629. height: math.unit(9, "cm")
  36630. },
  36631. {
  36632. name: "Normal",
  36633. height: math.unit(171, "cm"),
  36634. default: true
  36635. },
  36636. ]
  36637. ))
  36638. characterMakers.push(() => makeCharacter(
  36639. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36640. {
  36641. front: {
  36642. height: math.unit(8, "feet"),
  36643. weight: math.unit(300, "lb"),
  36644. name: "Front",
  36645. image: {
  36646. source: "./media/characters/galeboomer/front.svg",
  36647. extra: 4651/4415,
  36648. bottom: 162/4813
  36649. }
  36650. },
  36651. back: {
  36652. height: math.unit(8, "feet"),
  36653. weight: math.unit(300, "lb"),
  36654. name: "Back",
  36655. image: {
  36656. source: "./media/characters/galeboomer/back.svg",
  36657. extra: 4544/4314,
  36658. bottom: 16/4560
  36659. }
  36660. },
  36661. frontAlt: {
  36662. height: math.unit(8, "feet"),
  36663. weight: math.unit(300, "lb"),
  36664. name: "Front (Alt)",
  36665. image: {
  36666. source: "./media/characters/galeboomer/front-alt.svg",
  36667. extra: 4458/4228,
  36668. bottom: 68/4526
  36669. }
  36670. },
  36671. maw: {
  36672. height: math.unit(1.2, "feet"),
  36673. name: "Maw",
  36674. image: {
  36675. source: "./media/characters/galeboomer/maw.svg"
  36676. }
  36677. },
  36678. },
  36679. [
  36680. {
  36681. name: "Normal",
  36682. height: math.unit(8, "feet"),
  36683. default: true
  36684. },
  36685. ]
  36686. ))
  36687. characterMakers.push(() => makeCharacter(
  36688. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36689. {
  36690. front: {
  36691. height: math.unit(5 + 9/12, "feet"),
  36692. weight: math.unit(120, "lb"),
  36693. name: "Front",
  36694. image: {
  36695. source: "./media/characters/chyr/front.svg",
  36696. extra: 1323/1254,
  36697. bottom: 63/1386
  36698. }
  36699. },
  36700. back: {
  36701. height: math.unit(5 + 9/12, "feet"),
  36702. weight: math.unit(120, "lb"),
  36703. name: "Back",
  36704. image: {
  36705. source: "./media/characters/chyr/back.svg",
  36706. extra: 1323/1252,
  36707. bottom: 48/1371
  36708. }
  36709. },
  36710. },
  36711. [
  36712. {
  36713. name: "Normal",
  36714. height: math.unit(5 + 9/12, "feet"),
  36715. default: true
  36716. },
  36717. ]
  36718. ))
  36719. characterMakers.push(() => makeCharacter(
  36720. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36721. {
  36722. front: {
  36723. height: math.unit(7, "feet"),
  36724. weight: math.unit(310, "lb"),
  36725. name: "Front",
  36726. image: {
  36727. source: "./media/characters/solarus/front.svg",
  36728. extra: 2415/2021,
  36729. bottom: 103/2518
  36730. }
  36731. },
  36732. back: {
  36733. height: math.unit(7, "feet"),
  36734. weight: math.unit(310, "lb"),
  36735. name: "Back",
  36736. image: {
  36737. source: "./media/characters/solarus/back.svg",
  36738. extra: 2463/2089,
  36739. bottom: 79/2542
  36740. }
  36741. },
  36742. },
  36743. [
  36744. {
  36745. name: "Normal",
  36746. height: math.unit(7, "feet"),
  36747. default: true
  36748. },
  36749. ]
  36750. ))
  36751. characterMakers.push(() => makeCharacter(
  36752. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36753. {
  36754. front: {
  36755. height: math.unit(16, "feet"),
  36756. name: "Front",
  36757. image: {
  36758. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36759. extra: 1844/1780,
  36760. bottom: 58/1902
  36761. }
  36762. },
  36763. winterCoat: {
  36764. height: math.unit(16, "feet"),
  36765. name: "Winter Coat",
  36766. image: {
  36767. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36768. extra: 1807/1775,
  36769. bottom: 69/1876
  36770. }
  36771. },
  36772. },
  36773. [
  36774. {
  36775. name: "Normal",
  36776. height: math.unit(16, "feet"),
  36777. default: true
  36778. },
  36779. {
  36780. name: "Chicago Size",
  36781. height: math.unit(560, "feet")
  36782. },
  36783. ]
  36784. ))
  36785. characterMakers.push(() => makeCharacter(
  36786. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36787. {
  36788. front: {
  36789. height: math.unit(11 + 6/12, "feet"),
  36790. weight: math.unit(1366, "lb"),
  36791. name: "Front",
  36792. image: {
  36793. source: "./media/characters/lexor/front.svg",
  36794. extra: 1560/1481,
  36795. bottom: 211/1771
  36796. }
  36797. },
  36798. back: {
  36799. height: math.unit(11 + 6/12, "feet"),
  36800. weight: math.unit(1366, "lb"),
  36801. name: "Back",
  36802. image: {
  36803. source: "./media/characters/lexor/back.svg",
  36804. extra: 1614/1533,
  36805. bottom: 76/1690
  36806. }
  36807. },
  36808. maw: {
  36809. height: math.unit(3, "feet"),
  36810. name: "Maw",
  36811. image: {
  36812. source: "./media/characters/lexor/maw.svg"
  36813. }
  36814. },
  36815. dick: {
  36816. height: math.unit(2.59, "feet"),
  36817. name: "Dick",
  36818. image: {
  36819. source: "./media/characters/lexor/dick.svg"
  36820. }
  36821. },
  36822. },
  36823. [
  36824. {
  36825. name: "Normal",
  36826. height: math.unit(11 + 6/12, "feet"),
  36827. default: true
  36828. },
  36829. ]
  36830. ))
  36831. characterMakers.push(() => makeCharacter(
  36832. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36833. {
  36834. front: {
  36835. height: math.unit(5 + 8/12, "feet"),
  36836. name: "Front",
  36837. image: {
  36838. source: "./media/characters/magnum/front.svg",
  36839. extra: 942/855,
  36840. bottom: 26/968
  36841. }
  36842. },
  36843. },
  36844. [
  36845. {
  36846. name: "Normal",
  36847. height: math.unit(5 + 8/12, "feet"),
  36848. default: true
  36849. },
  36850. ]
  36851. ))
  36852. characterMakers.push(() => makeCharacter(
  36853. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36854. {
  36855. front: {
  36856. height: math.unit(18 + 4/12, "feet"),
  36857. weight: math.unit(1500, "kg"),
  36858. name: "Front",
  36859. image: {
  36860. source: "./media/characters/solas-sharpsman/front.svg",
  36861. extra: 1698/1589,
  36862. bottom: 0/1698
  36863. }
  36864. },
  36865. },
  36866. [
  36867. {
  36868. name: "Normal",
  36869. height: math.unit(18 + 4/12, "feet"),
  36870. default: true
  36871. },
  36872. ]
  36873. ))
  36874. characterMakers.push(() => makeCharacter(
  36875. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36876. {
  36877. front: {
  36878. height: math.unit(5 + 5/12, "feet"),
  36879. weight: math.unit(180, "lb"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/october/front.svg",
  36883. extra: 1800/1650,
  36884. bottom: 0/1800
  36885. }
  36886. },
  36887. frontNsfw: {
  36888. height: math.unit(5 + 5/12, "feet"),
  36889. weight: math.unit(180, "lb"),
  36890. name: "Front (NSFW)",
  36891. image: {
  36892. source: "./media/characters/october/front-nsfw.svg",
  36893. extra: 1392/1307,
  36894. bottom: 42/1434
  36895. }
  36896. },
  36897. },
  36898. [
  36899. {
  36900. name: "Normal",
  36901. height: math.unit(5 + 5/12, "feet"),
  36902. default: true
  36903. },
  36904. ]
  36905. ))
  36906. characterMakers.push(() => makeCharacter(
  36907. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36908. {
  36909. front: {
  36910. height: math.unit(8 + 6/12, "feet"),
  36911. name: "Front",
  36912. image: {
  36913. source: "./media/characters/essynkardi/front.svg",
  36914. extra: 1914/1846,
  36915. bottom: 22/1936
  36916. }
  36917. },
  36918. },
  36919. [
  36920. {
  36921. name: "Normal",
  36922. height: math.unit(8 + 6/12, "feet"),
  36923. default: true
  36924. },
  36925. ]
  36926. ))
  36927. characterMakers.push(() => makeCharacter(
  36928. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36929. {
  36930. front: {
  36931. height: math.unit(6 + 6/12, "feet"),
  36932. weight: math.unit(7, "lb"),
  36933. name: "Front",
  36934. image: {
  36935. source: "./media/characters/icky/front.svg",
  36936. extra: 813/782,
  36937. bottom: 66/879
  36938. }
  36939. },
  36940. back: {
  36941. height: math.unit(6 + 6/12, "feet"),
  36942. weight: math.unit(7, "lb"),
  36943. name: "Back",
  36944. image: {
  36945. source: "./media/characters/icky/back.svg",
  36946. extra: 754/735,
  36947. bottom: 56/810
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Normal",
  36954. height: math.unit(6 + 6/12, "feet"),
  36955. default: true
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36961. {
  36962. front: {
  36963. height: math.unit(15, "feet"),
  36964. name: "Front",
  36965. image: {
  36966. source: "./media/characters/rojas/front.svg",
  36967. extra: 1462/1408,
  36968. bottom: 95/1557
  36969. }
  36970. },
  36971. back: {
  36972. height: math.unit(15, "feet"),
  36973. name: "Back",
  36974. image: {
  36975. source: "./media/characters/rojas/back.svg",
  36976. extra: 1023/954,
  36977. bottom: 28/1051
  36978. }
  36979. },
  36980. },
  36981. [
  36982. {
  36983. name: "Normal",
  36984. height: math.unit(15, "feet"),
  36985. default: true
  36986. },
  36987. ]
  36988. ))
  36989. characterMakers.push(() => makeCharacter(
  36990. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36991. {
  36992. frontHuman: {
  36993. height: math.unit(5 + 7/12, "feet"),
  36994. name: "Front (Human)",
  36995. image: {
  36996. source: "./media/characters/alek-dryagan/front-human.svg",
  36997. extra: 1687/1667,
  36998. bottom: 69/1756
  36999. }
  37000. },
  37001. backHuman: {
  37002. height: math.unit(5 + 7/12, "feet"),
  37003. name: "Back (Human)",
  37004. image: {
  37005. source: "./media/characters/alek-dryagan/back-human.svg",
  37006. extra: 1670/1649,
  37007. bottom: 65/1735
  37008. }
  37009. },
  37010. frontDemi: {
  37011. height: math.unit(65, "feet"),
  37012. name: "Front (Demi)",
  37013. image: {
  37014. source: "./media/characters/alek-dryagan/front-demi.svg",
  37015. extra: 1669/1642,
  37016. bottom: 49/1718
  37017. }
  37018. },
  37019. backDemi: {
  37020. height: math.unit(65, "feet"),
  37021. name: "Back (Demi)",
  37022. image: {
  37023. source: "./media/characters/alek-dryagan/back-demi.svg",
  37024. extra: 1658/1637,
  37025. bottom: 40/1698
  37026. }
  37027. },
  37028. mawHuman: {
  37029. height: math.unit(0.3, "feet"),
  37030. name: "Maw (Human)",
  37031. image: {
  37032. source: "./media/characters/alek-dryagan/maw-human.svg"
  37033. }
  37034. },
  37035. mawDemi: {
  37036. height: math.unit(3.8, "feet"),
  37037. name: "Maw (Demi)",
  37038. image: {
  37039. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37040. }
  37041. },
  37042. },
  37043. [
  37044. {
  37045. name: "Normal",
  37046. height: math.unit(5 + 7/12, "feet"),
  37047. default: true
  37048. },
  37049. ]
  37050. ))
  37051. characterMakers.push(() => makeCharacter(
  37052. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37053. {
  37054. frontHuman: {
  37055. height: math.unit(5 + 2/12, "feet"),
  37056. name: "Front (Human)",
  37057. image: {
  37058. source: "./media/characters/gen/front-human.svg",
  37059. extra: 1627/1538,
  37060. bottom: 71/1698
  37061. }
  37062. },
  37063. backHuman: {
  37064. height: math.unit(5 + 2/12, "feet"),
  37065. name: "Back (Human)",
  37066. image: {
  37067. source: "./media/characters/gen/back-human.svg",
  37068. extra: 1638/1548,
  37069. bottom: 69/1707
  37070. }
  37071. },
  37072. frontDemi: {
  37073. height: math.unit(5 + 2/12, "feet"),
  37074. name: "Front (Demi)",
  37075. image: {
  37076. source: "./media/characters/gen/front-demi.svg",
  37077. extra: 1627/1538,
  37078. bottom: 71/1698
  37079. }
  37080. },
  37081. backDemi: {
  37082. height: math.unit(5 + 2/12, "feet"),
  37083. name: "Back (Demi)",
  37084. image: {
  37085. source: "./media/characters/gen/back-demi.svg",
  37086. extra: 1638/1548,
  37087. bottom: 69/1707
  37088. }
  37089. },
  37090. },
  37091. [
  37092. {
  37093. name: "Normal",
  37094. height: math.unit(5 + 2/12, "feet"),
  37095. default: true
  37096. },
  37097. ]
  37098. ))
  37099. characterMakers.push(() => makeCharacter(
  37100. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37101. {
  37102. frontImp: {
  37103. height: math.unit(1 + 11/12, "feet"),
  37104. name: "Front (Imp)",
  37105. image: {
  37106. source: "./media/characters/max-kobold/front-imp.svg",
  37107. extra: 1238/1134,
  37108. bottom: 81/1319
  37109. }
  37110. },
  37111. backImp: {
  37112. height: math.unit(1 + 11/12, "feet"),
  37113. name: "Back (Imp)",
  37114. image: {
  37115. source: "./media/characters/max-kobold/back-imp.svg",
  37116. extra: 1334/1175,
  37117. bottom: 34/1368
  37118. }
  37119. },
  37120. frontDemi: {
  37121. height: math.unit(5 + 9/12, "feet"),
  37122. name: "Front (Demi)",
  37123. image: {
  37124. source: "./media/characters/max-kobold/front-demi.svg",
  37125. extra: 1715/1685,
  37126. bottom: 54/1769
  37127. }
  37128. },
  37129. backDemi: {
  37130. height: math.unit(5 + 9/12, "feet"),
  37131. name: "Back (Demi)",
  37132. image: {
  37133. source: "./media/characters/max-kobold/back-demi.svg",
  37134. extra: 1752/1729,
  37135. bottom: 41/1793
  37136. }
  37137. },
  37138. handImp: {
  37139. height: math.unit(0.45, "feet"),
  37140. name: "Hand (Imp)",
  37141. image: {
  37142. source: "./media/characters/max-kobold/hand.svg"
  37143. }
  37144. },
  37145. pawImp: {
  37146. height: math.unit(0.46, "feet"),
  37147. name: "Paw (Imp)",
  37148. image: {
  37149. source: "./media/characters/max-kobold/paw.svg"
  37150. }
  37151. },
  37152. handDemi: {
  37153. height: math.unit(0.80, "feet"),
  37154. name: "Hand (Demi)",
  37155. image: {
  37156. source: "./media/characters/max-kobold/hand.svg"
  37157. }
  37158. },
  37159. pawDemi: {
  37160. height: math.unit(1.1, "feet"),
  37161. name: "Paw (Demi)",
  37162. image: {
  37163. source: "./media/characters/max-kobold/paw.svg"
  37164. }
  37165. },
  37166. headImp: {
  37167. height: math.unit(1.33, "feet"),
  37168. name: "Head (Imp)",
  37169. image: {
  37170. source: "./media/characters/max-kobold/head-imp.svg"
  37171. }
  37172. },
  37173. mawImp: {
  37174. height: math.unit(0.75, "feet"),
  37175. name: "Maw (Imp)",
  37176. image: {
  37177. source: "./media/characters/max-kobold/maw-imp.svg"
  37178. }
  37179. },
  37180. mawDemi: {
  37181. height: math.unit(0.42, "feet"),
  37182. name: "Maw (Demi)",
  37183. image: {
  37184. source: "./media/characters/max-kobold/maw-demi.svg"
  37185. }
  37186. },
  37187. },
  37188. [
  37189. {
  37190. name: "Normal",
  37191. height: math.unit(1 + 11/12, "feet"),
  37192. default: true
  37193. },
  37194. ]
  37195. ))
  37196. characterMakers.push(() => makeCharacter(
  37197. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37198. {
  37199. front: {
  37200. height: math.unit(7 + 5/12, "feet"),
  37201. name: "Front",
  37202. image: {
  37203. source: "./media/characters/carbon/front.svg",
  37204. extra: 1754/1689,
  37205. bottom: 65/1819
  37206. }
  37207. },
  37208. back: {
  37209. height: math.unit(7 + 5/12, "feet"),
  37210. name: "Back",
  37211. image: {
  37212. source: "./media/characters/carbon/back.svg",
  37213. extra: 1762/1695,
  37214. bottom: 24/1786
  37215. }
  37216. },
  37217. frontGigantamax: {
  37218. height: math.unit(150, "feet"),
  37219. name: "Front (Gigantamax)",
  37220. image: {
  37221. source: "./media/characters/carbon/front-gigantamax.svg",
  37222. extra: 1826/1669,
  37223. bottom: 59/1885
  37224. }
  37225. },
  37226. backGigantamax: {
  37227. height: math.unit(150, "feet"),
  37228. name: "Back (Gigantamax)",
  37229. image: {
  37230. source: "./media/characters/carbon/back-gigantamax.svg",
  37231. extra: 1796/1653,
  37232. bottom: 53/1849
  37233. }
  37234. },
  37235. maw: {
  37236. height: math.unit(0.48, "feet"),
  37237. name: "Maw",
  37238. image: {
  37239. source: "./media/characters/carbon/maw.svg"
  37240. }
  37241. },
  37242. mawGigantamax: {
  37243. height: math.unit(7.5, "feet"),
  37244. name: "Maw (Gigantamax)",
  37245. image: {
  37246. source: "./media/characters/carbon/maw-gigantamax.svg"
  37247. }
  37248. },
  37249. },
  37250. [
  37251. {
  37252. name: "Normal",
  37253. height: math.unit(7 + 5/12, "feet"),
  37254. default: true
  37255. },
  37256. ]
  37257. ))
  37258. characterMakers.push(() => makeCharacter(
  37259. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37260. {
  37261. front: {
  37262. height: math.unit(6, "feet"),
  37263. name: "Front",
  37264. image: {
  37265. source: "./media/characters/maverick/front.svg",
  37266. extra: 1672/1661,
  37267. bottom: 85/1757
  37268. }
  37269. },
  37270. back: {
  37271. height: math.unit(6, "feet"),
  37272. name: "Back",
  37273. image: {
  37274. source: "./media/characters/maverick/back.svg",
  37275. extra: 1642/1631,
  37276. bottom: 38/1680
  37277. }
  37278. },
  37279. },
  37280. [
  37281. {
  37282. name: "Normal",
  37283. height: math.unit(6, "feet"),
  37284. default: true
  37285. },
  37286. ]
  37287. ))
  37288. characterMakers.push(() => makeCharacter(
  37289. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37290. {
  37291. front: {
  37292. height: math.unit(15, "feet"),
  37293. weight: math.unit(615, "lb"),
  37294. name: "Front",
  37295. image: {
  37296. source: "./media/characters/grockle/front.svg",
  37297. extra: 1535/1427,
  37298. bottom: 56/1591
  37299. }
  37300. },
  37301. },
  37302. [
  37303. {
  37304. name: "Normal",
  37305. height: math.unit(15, "feet"),
  37306. default: true
  37307. },
  37308. {
  37309. name: "Large",
  37310. height: math.unit(150, "feet")
  37311. },
  37312. {
  37313. name: "Macro",
  37314. height: math.unit(1876, "feet")
  37315. },
  37316. {
  37317. name: "Mega Macro",
  37318. height: math.unit(121940, "feet")
  37319. },
  37320. {
  37321. name: "Giga Macro",
  37322. height: math.unit(750, "km")
  37323. },
  37324. {
  37325. name: "Tera Macro",
  37326. height: math.unit(750000, "km")
  37327. },
  37328. {
  37329. name: "Galactic",
  37330. height: math.unit(1.4e5, "km")
  37331. },
  37332. {
  37333. name: "Godlike",
  37334. height: math.unit(9.8e280, "galaxies")
  37335. },
  37336. ]
  37337. ))
  37338. characterMakers.push(() => makeCharacter(
  37339. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37340. {
  37341. front: {
  37342. height: math.unit(11, "meters"),
  37343. weight: math.unit(20, "tonnes"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/alistair/front.svg",
  37347. extra: 1265/1009,
  37348. bottom: 93/1358
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(11, "meters"),
  37356. default: true
  37357. },
  37358. ]
  37359. ))
  37360. characterMakers.push(() => makeCharacter(
  37361. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37362. {
  37363. front: {
  37364. height: math.unit(5 + 8/12, "feet"),
  37365. name: "Front",
  37366. image: {
  37367. source: "./media/characters/haruka/front.svg",
  37368. extra: 2012/1952,
  37369. bottom: 0/2012
  37370. }
  37371. },
  37372. },
  37373. [
  37374. {
  37375. name: "Normal",
  37376. height: math.unit(5 + 8/12, "feet"),
  37377. default: true
  37378. },
  37379. ]
  37380. ))
  37381. characterMakers.push(() => makeCharacter(
  37382. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37383. {
  37384. back: {
  37385. height: math.unit(9, "feet"),
  37386. name: "Back",
  37387. image: {
  37388. source: "./media/characters/vivian-sylveon/back.svg",
  37389. extra: 1853/1714,
  37390. bottom: 0/1853
  37391. }
  37392. },
  37393. },
  37394. [
  37395. {
  37396. name: "Normal",
  37397. height: math.unit(9, "feet"),
  37398. default: true
  37399. },
  37400. {
  37401. name: "Macro",
  37402. height: math.unit(500, "feet")
  37403. },
  37404. {
  37405. name: "Megamacro",
  37406. height: math.unit(600, "miles")
  37407. },
  37408. {
  37409. name: "Gigamacro",
  37410. height: math.unit(30000, "miles")
  37411. },
  37412. ]
  37413. ))
  37414. characterMakers.push(() => makeCharacter(
  37415. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37416. {
  37417. anthro: {
  37418. height: math.unit(5 + 10/12, "feet"),
  37419. weight: math.unit(100, "lb"),
  37420. name: "Anthro",
  37421. image: {
  37422. source: "./media/characters/daiki/anthro.svg",
  37423. extra: 1115/1027,
  37424. bottom: 69/1184
  37425. }
  37426. },
  37427. feral: {
  37428. height: math.unit(200, "feet"),
  37429. name: "Feral",
  37430. image: {
  37431. source: "./media/characters/daiki/feral.svg",
  37432. extra: 1256/313,
  37433. bottom: 39/1295
  37434. }
  37435. },
  37436. feralHead: {
  37437. height: math.unit(171, "feet"),
  37438. name: "Feral Head",
  37439. image: {
  37440. source: "./media/characters/daiki/feral-head.svg"
  37441. }
  37442. },
  37443. manaDragon: {
  37444. height: math.unit(170, "meters"),
  37445. name: "Mana-dragon",
  37446. image: {
  37447. source: "./media/characters/daiki/mana-dragon.svg",
  37448. extra: 763/420,
  37449. bottom: 97/860
  37450. }
  37451. },
  37452. },
  37453. [
  37454. {
  37455. name: "Normal",
  37456. height: math.unit(5 + 10/12, "feet"),
  37457. default: true
  37458. },
  37459. ]
  37460. ))
  37461. characterMakers.push(() => makeCharacter(
  37462. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37463. {
  37464. fullyEquippedFront: {
  37465. height: math.unit(3 + 1/12, "feet"),
  37466. weight: math.unit(24, "lb"),
  37467. name: "Fully Equipped (Front)",
  37468. image: {
  37469. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37470. extra: 687/605,
  37471. bottom: 18/705
  37472. }
  37473. },
  37474. fullyEquippedBack: {
  37475. height: math.unit(3 + 1/12, "feet"),
  37476. weight: math.unit(24, "lb"),
  37477. name: "Fully Equipped (Back)",
  37478. image: {
  37479. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37480. extra: 689/590,
  37481. bottom: 18/707
  37482. }
  37483. },
  37484. dailyWear: {
  37485. height: math.unit(3 + 1/12, "feet"),
  37486. weight: math.unit(24, "lb"),
  37487. name: "Daily Wear",
  37488. image: {
  37489. source: "./media/characters/tea-spot/daily-wear.svg",
  37490. extra: 701/620,
  37491. bottom: 21/722
  37492. }
  37493. },
  37494. maidWork: {
  37495. height: math.unit(3 + 1/12, "feet"),
  37496. weight: math.unit(24, "lb"),
  37497. name: "Maid Work",
  37498. image: {
  37499. source: "./media/characters/tea-spot/maid-work.svg",
  37500. extra: 693/609,
  37501. bottom: 15/708
  37502. }
  37503. },
  37504. },
  37505. [
  37506. {
  37507. name: "Normal",
  37508. height: math.unit(3 + 1/12, "feet"),
  37509. default: true
  37510. },
  37511. ]
  37512. ))
  37513. characterMakers.push(() => makeCharacter(
  37514. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37515. {
  37516. front: {
  37517. height: math.unit(175, "cm"),
  37518. weight: math.unit(75, "kg"),
  37519. name: "Front",
  37520. image: {
  37521. source: "./media/characters/chee/front.svg",
  37522. extra: 1796/1740,
  37523. bottom: 40/1836
  37524. }
  37525. },
  37526. },
  37527. [
  37528. {
  37529. name: "Micro-Micro",
  37530. height: math.unit(1, "nm")
  37531. },
  37532. {
  37533. name: "Micro-erst",
  37534. height: math.unit(1, "micrometer")
  37535. },
  37536. {
  37537. name: "Micro-er",
  37538. height: math.unit(1, "cm")
  37539. },
  37540. {
  37541. name: "Normal",
  37542. height: math.unit(175, "cm"),
  37543. default: true
  37544. },
  37545. {
  37546. name: "Macro",
  37547. height: math.unit(100, "m")
  37548. },
  37549. {
  37550. name: "Macro-er",
  37551. height: math.unit(1, "km")
  37552. },
  37553. {
  37554. name: "Macro-erst",
  37555. height: math.unit(10, "km")
  37556. },
  37557. {
  37558. name: "Macro-Macro",
  37559. height: math.unit(100, "km")
  37560. },
  37561. ]
  37562. ))
  37563. characterMakers.push(() => makeCharacter(
  37564. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37565. {
  37566. front: {
  37567. height: math.unit(11 + 9/12, "feet"),
  37568. weight: math.unit(935, "lb"),
  37569. name: "Front",
  37570. image: {
  37571. source: "./media/characters/kingsley/front.svg",
  37572. extra: 1803/1674,
  37573. bottom: 127/1930
  37574. }
  37575. },
  37576. frontNude: {
  37577. height: math.unit(11 + 9/12, "feet"),
  37578. weight: math.unit(935, "lb"),
  37579. name: "Front (Nude)",
  37580. image: {
  37581. source: "./media/characters/kingsley/front-nude.svg",
  37582. extra: 1803/1674,
  37583. bottom: 127/1930
  37584. }
  37585. },
  37586. },
  37587. [
  37588. {
  37589. name: "Normal",
  37590. height: math.unit(11 + 9/12, "feet"),
  37591. default: true
  37592. },
  37593. ]
  37594. ))
  37595. characterMakers.push(() => makeCharacter(
  37596. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37597. {
  37598. side: {
  37599. height: math.unit(9, "feet"),
  37600. name: "Side",
  37601. image: {
  37602. source: "./media/characters/rymel/side.svg",
  37603. extra: 792/469,
  37604. bottom: 121/913
  37605. }
  37606. },
  37607. maw: {
  37608. height: math.unit(2.4, "meters"),
  37609. name: "Maw",
  37610. image: {
  37611. source: "./media/characters/rymel/maw.svg"
  37612. }
  37613. },
  37614. },
  37615. [
  37616. {
  37617. name: "House Drake",
  37618. height: math.unit(2, "feet")
  37619. },
  37620. {
  37621. name: "Reduced",
  37622. height: math.unit(4.5, "feet")
  37623. },
  37624. {
  37625. name: "Normal",
  37626. height: math.unit(9, "feet"),
  37627. default: true
  37628. },
  37629. ]
  37630. ))
  37631. characterMakers.push(() => makeCharacter(
  37632. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37633. {
  37634. front: {
  37635. height: math.unit(1.74, "meters"),
  37636. weight: math.unit(55, "kg"),
  37637. name: "Front",
  37638. image: {
  37639. source: "./media/characters/rubus/front.svg",
  37640. extra: 1894/1742,
  37641. bottom: 44/1938
  37642. }
  37643. },
  37644. },
  37645. [
  37646. {
  37647. name: "Normal",
  37648. height: math.unit(1.74, "meters"),
  37649. default: true
  37650. },
  37651. ]
  37652. ))
  37653. characterMakers.push(() => makeCharacter(
  37654. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37655. {
  37656. front: {
  37657. height: math.unit(5 + 2/12, "feet"),
  37658. weight: math.unit(112, "lb"),
  37659. name: "Front",
  37660. image: {
  37661. source: "./media/characters/cassie-kingston/front.svg",
  37662. extra: 1438/1390,
  37663. bottom: 47/1485
  37664. }
  37665. },
  37666. },
  37667. [
  37668. {
  37669. name: "Normal",
  37670. height: math.unit(5 + 2/12, "feet"),
  37671. default: true
  37672. },
  37673. {
  37674. name: "Macro",
  37675. height: math.unit(128, "feet")
  37676. },
  37677. {
  37678. name: "Megamacro",
  37679. height: math.unit(2.56, "miles")
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(7, "feet"),
  37688. name: "Front",
  37689. image: {
  37690. source: "./media/characters/fox/front.svg",
  37691. extra: 1798/1703,
  37692. bottom: 55/1853
  37693. }
  37694. },
  37695. back: {
  37696. height: math.unit(7, "feet"),
  37697. name: "Back",
  37698. image: {
  37699. source: "./media/characters/fox/back.svg",
  37700. extra: 1748/1649,
  37701. bottom: 32/1780
  37702. }
  37703. },
  37704. head: {
  37705. height: math.unit(1.95, "feet"),
  37706. name: "Head",
  37707. image: {
  37708. source: "./media/characters/fox/head.svg"
  37709. }
  37710. },
  37711. dick: {
  37712. height: math.unit(1.33, "feet"),
  37713. name: "Dick",
  37714. image: {
  37715. source: "./media/characters/fox/dick.svg"
  37716. }
  37717. },
  37718. foot: {
  37719. height: math.unit(1, "feet"),
  37720. name: "Foot",
  37721. image: {
  37722. source: "./media/characters/fox/foot.svg"
  37723. }
  37724. },
  37725. paw: {
  37726. height: math.unit(0.92, "feet"),
  37727. name: "Paw",
  37728. image: {
  37729. source: "./media/characters/fox/paw.svg"
  37730. }
  37731. },
  37732. },
  37733. [
  37734. {
  37735. name: "Small",
  37736. height: math.unit(3, "inches")
  37737. },
  37738. {
  37739. name: "\"Realistic\"",
  37740. height: math.unit(7, "feet")
  37741. },
  37742. {
  37743. name: "Normal",
  37744. height: math.unit(150, "feet"),
  37745. default: true
  37746. },
  37747. {
  37748. name: "BIG",
  37749. height: math.unit(1200, "feet")
  37750. },
  37751. {
  37752. name: "👀",
  37753. height: math.unit(5, "miles")
  37754. },
  37755. {
  37756. name: "👀👀👀",
  37757. height: math.unit(64, "miles")
  37758. },
  37759. ]
  37760. ))
  37761. characterMakers.push(() => makeCharacter(
  37762. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37763. {
  37764. front: {
  37765. height: math.unit(625, "feet"),
  37766. name: "Front",
  37767. image: {
  37768. source: "./media/characters/asonja-rossa/front.svg",
  37769. extra: 1833/1686,
  37770. bottom: 24/1857
  37771. }
  37772. },
  37773. back: {
  37774. height: math.unit(625, "feet"),
  37775. name: "Back",
  37776. image: {
  37777. source: "./media/characters/asonja-rossa/back.svg",
  37778. extra: 1852/1753,
  37779. bottom: 26/1878
  37780. }
  37781. },
  37782. },
  37783. [
  37784. {
  37785. name: "Macro",
  37786. height: math.unit(625, "feet"),
  37787. default: true
  37788. },
  37789. ]
  37790. ))
  37791. characterMakers.push(() => makeCharacter(
  37792. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37793. {
  37794. side: {
  37795. height: math.unit(8, "feet"),
  37796. name: "Side",
  37797. image: {
  37798. source: "./media/characters/rezukii/side.svg",
  37799. extra: 979/542,
  37800. bottom: 87/1066
  37801. }
  37802. },
  37803. sitting: {
  37804. height: math.unit(14.6, "feet"),
  37805. name: "Sitting",
  37806. image: {
  37807. source: "./media/characters/rezukii/sitting.svg",
  37808. extra: 1023/813,
  37809. bottom: 45/1068
  37810. }
  37811. },
  37812. },
  37813. [
  37814. {
  37815. name: "Tiny",
  37816. height: math.unit(2, "feet")
  37817. },
  37818. {
  37819. name: "Smol",
  37820. height: math.unit(4, "feet")
  37821. },
  37822. {
  37823. name: "Normal",
  37824. height: math.unit(8, "feet"),
  37825. default: true
  37826. },
  37827. {
  37828. name: "Big",
  37829. height: math.unit(12, "feet")
  37830. },
  37831. {
  37832. name: "Macro",
  37833. height: math.unit(30, "feet")
  37834. },
  37835. ]
  37836. ))
  37837. characterMakers.push(() => makeCharacter(
  37838. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37839. {
  37840. front: {
  37841. height: math.unit(14, "feet"),
  37842. weight: math.unit(9.5, "tonnes"),
  37843. name: "Front",
  37844. image: {
  37845. source: "./media/characters/dawnheart/front.svg",
  37846. extra: 2792/2675,
  37847. bottom: 64/2856
  37848. }
  37849. },
  37850. },
  37851. [
  37852. {
  37853. name: "Normal",
  37854. height: math.unit(14, "feet"),
  37855. default: true
  37856. },
  37857. ]
  37858. ))
  37859. characterMakers.push(() => makeCharacter(
  37860. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37861. {
  37862. front: {
  37863. height: math.unit(1.7, "m"),
  37864. name: "Front",
  37865. image: {
  37866. source: "./media/characters/gladi/front.svg",
  37867. extra: 1460/1362,
  37868. bottom: 19/1479
  37869. }
  37870. },
  37871. back: {
  37872. height: math.unit(1.7, "m"),
  37873. name: "Back",
  37874. image: {
  37875. source: "./media/characters/gladi/back.svg",
  37876. extra: 1459/1357,
  37877. bottom: 12/1471
  37878. }
  37879. },
  37880. feral: {
  37881. height: math.unit(2.05, "m"),
  37882. name: "Feral",
  37883. image: {
  37884. source: "./media/characters/gladi/feral.svg",
  37885. extra: 821/557,
  37886. bottom: 91/912
  37887. }
  37888. },
  37889. },
  37890. [
  37891. {
  37892. name: "Shortest",
  37893. height: math.unit(70, "cm")
  37894. },
  37895. {
  37896. name: "Normal",
  37897. height: math.unit(1.7, "m")
  37898. },
  37899. {
  37900. name: "Macro",
  37901. height: math.unit(10, "m"),
  37902. default: true
  37903. },
  37904. {
  37905. name: "Tallest",
  37906. height: math.unit(200, "m")
  37907. },
  37908. ]
  37909. ))
  37910. characterMakers.push(() => makeCharacter(
  37911. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37912. {
  37913. front: {
  37914. height: math.unit(5 + 7/12, "feet"),
  37915. weight: math.unit(2, "tons"),
  37916. name: "Front",
  37917. image: {
  37918. source: "./media/characters/erdno/front.svg",
  37919. extra: 1234/1129,
  37920. bottom: 35/1269
  37921. }
  37922. },
  37923. angled: {
  37924. height: math.unit(5 + 7/12, "feet"),
  37925. weight: math.unit(2, "tons"),
  37926. name: "Angled",
  37927. image: {
  37928. source: "./media/characters/erdno/angled.svg",
  37929. extra: 1185/1139,
  37930. bottom: 36/1221
  37931. }
  37932. },
  37933. side: {
  37934. height: math.unit(5 + 7/12, "feet"),
  37935. weight: math.unit(2, "tons"),
  37936. name: "Side",
  37937. image: {
  37938. source: "./media/characters/erdno/side.svg",
  37939. extra: 1191/1144,
  37940. bottom: 40/1231
  37941. }
  37942. },
  37943. back: {
  37944. height: math.unit(5 + 7/12, "feet"),
  37945. weight: math.unit(2, "tons"),
  37946. name: "Back",
  37947. image: {
  37948. source: "./media/characters/erdno/back.svg",
  37949. extra: 1202/1146,
  37950. bottom: 17/1219
  37951. }
  37952. },
  37953. frontNsfw: {
  37954. height: math.unit(5 + 7/12, "feet"),
  37955. weight: math.unit(2, "tons"),
  37956. name: "Front (NSFW)",
  37957. image: {
  37958. source: "./media/characters/erdno/front-nsfw.svg",
  37959. extra: 1234/1129,
  37960. bottom: 35/1269
  37961. }
  37962. },
  37963. angledNsfw: {
  37964. height: math.unit(5 + 7/12, "feet"),
  37965. weight: math.unit(2, "tons"),
  37966. name: "Angled (NSFW)",
  37967. image: {
  37968. source: "./media/characters/erdno/angled-nsfw.svg",
  37969. extra: 1185/1139,
  37970. bottom: 36/1221
  37971. }
  37972. },
  37973. sideNsfw: {
  37974. height: math.unit(5 + 7/12, "feet"),
  37975. weight: math.unit(2, "tons"),
  37976. name: "Side (NSFW)",
  37977. image: {
  37978. source: "./media/characters/erdno/side-nsfw.svg",
  37979. extra: 1191/1144,
  37980. bottom: 40/1231
  37981. }
  37982. },
  37983. backNsfw: {
  37984. height: math.unit(5 + 7/12, "feet"),
  37985. weight: math.unit(2, "tons"),
  37986. name: "Back (NSFW)",
  37987. image: {
  37988. source: "./media/characters/erdno/back-nsfw.svg",
  37989. extra: 1202/1146,
  37990. bottom: 17/1219
  37991. }
  37992. },
  37993. frontHyper: {
  37994. height: math.unit(5 + 7/12, "feet"),
  37995. weight: math.unit(2, "tons"),
  37996. name: "Front (Hyper)",
  37997. image: {
  37998. source: "./media/characters/erdno/front-hyper.svg",
  37999. extra: 1298/1136,
  38000. bottom: 35/1333
  38001. }
  38002. },
  38003. },
  38004. [
  38005. {
  38006. name: "Normal",
  38007. height: math.unit(5 + 7/12, "feet"),
  38008. default: true
  38009. },
  38010. {
  38011. name: "Big",
  38012. height: math.unit(5.7, "meters")
  38013. },
  38014. {
  38015. name: "Macro",
  38016. height: math.unit(5.7, "kilometers")
  38017. },
  38018. {
  38019. name: "Megamacro",
  38020. height: math.unit(5.7, "earths")
  38021. },
  38022. ]
  38023. ))
  38024. characterMakers.push(() => makeCharacter(
  38025. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38026. {
  38027. front: {
  38028. height: math.unit(5 + 10/12, "feet"),
  38029. weight: math.unit(150, "lb"),
  38030. name: "Front",
  38031. image: {
  38032. source: "./media/characters/jamie/front.svg",
  38033. extra: 1908/1768,
  38034. bottom: 19/1927
  38035. }
  38036. },
  38037. },
  38038. [
  38039. {
  38040. name: "Minimum",
  38041. height: math.unit(2, "cm")
  38042. },
  38043. {
  38044. name: "Micro",
  38045. height: math.unit(3, "inches")
  38046. },
  38047. {
  38048. name: "Normal",
  38049. height: math.unit(5 + 10/12, "feet"),
  38050. default: true
  38051. },
  38052. {
  38053. name: "Macro",
  38054. height: math.unit(150, "feet")
  38055. },
  38056. {
  38057. name: "Megamacro",
  38058. height: math.unit(10000, "m")
  38059. },
  38060. ]
  38061. ))
  38062. characterMakers.push(() => makeCharacter(
  38063. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38064. {
  38065. front: {
  38066. height: math.unit(2, "meters"),
  38067. weight: math.unit(100, "kg"),
  38068. name: "Front",
  38069. image: {
  38070. source: "./media/characters/shiron/front.svg",
  38071. extra: 2103/1985,
  38072. bottom: 98/2201
  38073. }
  38074. },
  38075. back: {
  38076. height: math.unit(2, "meters"),
  38077. weight: math.unit(100, "kg"),
  38078. name: "Back",
  38079. image: {
  38080. source: "./media/characters/shiron/back.svg",
  38081. extra: 2110/2015,
  38082. bottom: 89/2199
  38083. }
  38084. },
  38085. hand: {
  38086. height: math.unit(0.96, "feet"),
  38087. name: "Hand",
  38088. image: {
  38089. source: "./media/characters/shiron/hand.svg"
  38090. }
  38091. },
  38092. foot: {
  38093. height: math.unit(1.464, "feet"),
  38094. name: "Foot",
  38095. image: {
  38096. source: "./media/characters/shiron/foot.svg"
  38097. }
  38098. },
  38099. },
  38100. [
  38101. {
  38102. name: "Normal",
  38103. height: math.unit(2, "meters")
  38104. },
  38105. {
  38106. name: "Macro",
  38107. height: math.unit(500, "meters"),
  38108. default: true
  38109. },
  38110. {
  38111. name: "Megamacro",
  38112. height: math.unit(20, "km")
  38113. },
  38114. ]
  38115. ))
  38116. characterMakers.push(() => makeCharacter(
  38117. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38118. {
  38119. front: {
  38120. height: math.unit(6, "feet"),
  38121. name: "Front",
  38122. image: {
  38123. source: "./media/characters/sam/front.svg",
  38124. extra: 849/826,
  38125. bottom: 19/868
  38126. }
  38127. },
  38128. },
  38129. [
  38130. {
  38131. name: "Normal",
  38132. height: math.unit(6, "feet"),
  38133. default: true
  38134. },
  38135. ]
  38136. ))
  38137. characterMakers.push(() => makeCharacter(
  38138. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38139. {
  38140. front: {
  38141. height: math.unit(8 + 4/12, "feet"),
  38142. weight: math.unit(122, "kg"),
  38143. name: "Front",
  38144. image: {
  38145. source: "./media/characters/namori-kurogawa/front.svg",
  38146. extra: 1894/1576,
  38147. bottom: 34/1928
  38148. }
  38149. },
  38150. },
  38151. [
  38152. {
  38153. name: "Normal",
  38154. height: math.unit(8 + 4/12, "feet"),
  38155. default: true
  38156. },
  38157. ]
  38158. ))
  38159. characterMakers.push(() => makeCharacter(
  38160. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38161. {
  38162. front: {
  38163. height: math.unit(9, "feet"),
  38164. weight: math.unit(621, "lb"),
  38165. name: "Front",
  38166. image: {
  38167. source: "./media/characters/unmru/front.svg",
  38168. extra: 1853/1747,
  38169. bottom: 73/1926
  38170. }
  38171. },
  38172. side: {
  38173. height: math.unit(9, "feet"),
  38174. weight: math.unit(621, "lb"),
  38175. name: "Side",
  38176. image: {
  38177. source: "./media/characters/unmru/side.svg",
  38178. extra: 1781/1671,
  38179. bottom: 127/1908
  38180. }
  38181. },
  38182. back: {
  38183. height: math.unit(9, "feet"),
  38184. weight: math.unit(621, "lb"),
  38185. name: "Back",
  38186. image: {
  38187. source: "./media/characters/unmru/back.svg",
  38188. extra: 1894/1765,
  38189. bottom: 75/1969
  38190. }
  38191. },
  38192. dick: {
  38193. height: math.unit(3, "feet"),
  38194. weight: math.unit(35, "lb"),
  38195. name: "Dick",
  38196. image: {
  38197. source: "./media/characters/unmru/dick.svg"
  38198. }
  38199. },
  38200. },
  38201. [
  38202. {
  38203. name: "Normal",
  38204. height: math.unit(9, "feet")
  38205. },
  38206. {
  38207. name: "Natural",
  38208. height: math.unit(27, "feet"),
  38209. default: true
  38210. },
  38211. {
  38212. name: "Giant",
  38213. height: math.unit(90, "feet")
  38214. },
  38215. {
  38216. name: "Kaiju",
  38217. height: math.unit(270, "feet")
  38218. },
  38219. {
  38220. name: "Macro",
  38221. height: math.unit(900, "feet")
  38222. },
  38223. {
  38224. name: "Macro+",
  38225. height: math.unit(2700, "feet")
  38226. },
  38227. {
  38228. name: "Megamacro",
  38229. height: math.unit(9000, "feet")
  38230. },
  38231. {
  38232. name: "City-Crushing",
  38233. height: math.unit(27000, "feet")
  38234. },
  38235. {
  38236. name: "Mountain-Mashing",
  38237. height: math.unit(90000, "feet")
  38238. },
  38239. {
  38240. name: "Earth-Eclipsing",
  38241. height: math.unit(2.7e8, "feet")
  38242. },
  38243. {
  38244. name: "Sol-Swallowing",
  38245. height: math.unit(9e10, "feet")
  38246. },
  38247. {
  38248. name: "Majoris-Munching",
  38249. height: math.unit(2.7e13, "feet")
  38250. },
  38251. ]
  38252. ))
  38253. characterMakers.push(() => makeCharacter(
  38254. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38255. {
  38256. front: {
  38257. height: math.unit(1, "inch"),
  38258. name: "Front",
  38259. image: {
  38260. source: "./media/characters/squeaks-mouse/front.svg",
  38261. extra: 352/308,
  38262. bottom: 25/377
  38263. }
  38264. },
  38265. },
  38266. [
  38267. {
  38268. name: "Micro",
  38269. height: math.unit(1, "inch"),
  38270. default: true
  38271. },
  38272. ]
  38273. ))
  38274. characterMakers.push(() => makeCharacter(
  38275. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38276. {
  38277. side: {
  38278. height: math.unit(35, "feet"),
  38279. name: "Side",
  38280. image: {
  38281. source: "./media/characters/sayko/side.svg",
  38282. extra: 1697/1021,
  38283. bottom: 82/1779
  38284. }
  38285. },
  38286. head: {
  38287. height: math.unit(16, "feet"),
  38288. name: "Head",
  38289. image: {
  38290. source: "./media/characters/sayko/head.svg"
  38291. }
  38292. },
  38293. forepaw: {
  38294. height: math.unit(7.85, "feet"),
  38295. name: "Forepaw",
  38296. image: {
  38297. source: "./media/characters/sayko/forepaw.svg"
  38298. }
  38299. },
  38300. hindpaw: {
  38301. height: math.unit(8.8, "feet"),
  38302. name: "Hindpaw",
  38303. image: {
  38304. source: "./media/characters/sayko/hindpaw.svg"
  38305. }
  38306. },
  38307. },
  38308. [
  38309. {
  38310. name: "Normal",
  38311. height: math.unit(35, "feet"),
  38312. default: true
  38313. },
  38314. {
  38315. name: "Colossus",
  38316. height: math.unit(100, "meters")
  38317. },
  38318. {
  38319. name: "\"Small\" Deity",
  38320. height: math.unit(1, "km")
  38321. },
  38322. {
  38323. name: "\"Large\" Deity",
  38324. height: math.unit(15, "km")
  38325. },
  38326. ]
  38327. ))
  38328. characterMakers.push(() => makeCharacter(
  38329. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38330. {
  38331. front: {
  38332. height: math.unit(6, "feet"),
  38333. weight: math.unit(250, "lb"),
  38334. name: "Front",
  38335. image: {
  38336. source: "./media/characters/mukiro/front.svg",
  38337. extra: 1368/1310,
  38338. bottom: 34/1402
  38339. }
  38340. },
  38341. },
  38342. [
  38343. {
  38344. name: "Normal",
  38345. height: math.unit(6, "feet"),
  38346. default: true
  38347. },
  38348. ]
  38349. ))
  38350. characterMakers.push(() => makeCharacter(
  38351. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38352. {
  38353. front: {
  38354. height: math.unit(12 + 4/12, "feet"),
  38355. name: "Front",
  38356. image: {
  38357. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38358. extra: 1346/1311,
  38359. bottom: 65/1411
  38360. }
  38361. },
  38362. },
  38363. [
  38364. {
  38365. name: "Base",
  38366. height: math.unit(12 + 4/12, "feet"),
  38367. default: true
  38368. },
  38369. {
  38370. name: "Macro",
  38371. height: math.unit(150, "feet")
  38372. },
  38373. {
  38374. name: "Mega",
  38375. height: math.unit(2, "miles")
  38376. },
  38377. {
  38378. name: "Demi God",
  38379. height: math.unit(4, "AU")
  38380. },
  38381. {
  38382. name: "God Size",
  38383. height: math.unit(1, "universe")
  38384. },
  38385. ]
  38386. ))
  38387. characterMakers.push(() => makeCharacter(
  38388. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38389. {
  38390. front: {
  38391. height: math.unit(3 + 3/12, "feet"),
  38392. weight: math.unit(88, "lb"),
  38393. name: "Front",
  38394. image: {
  38395. source: "./media/characters/trey/front.svg",
  38396. extra: 1815/1509,
  38397. bottom: 60/1875
  38398. }
  38399. },
  38400. },
  38401. [
  38402. {
  38403. name: "Normal",
  38404. height: math.unit(3 + 3/12, "feet"),
  38405. default: true
  38406. },
  38407. ]
  38408. ))
  38409. characterMakers.push(() => makeCharacter(
  38410. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38411. {
  38412. front: {
  38413. height: math.unit(4, "meters"),
  38414. name: "Front",
  38415. image: {
  38416. source: "./media/characters/adelonda/front.svg",
  38417. extra: 1077/982,
  38418. bottom: 39/1116
  38419. }
  38420. },
  38421. back: {
  38422. height: math.unit(4, "meters"),
  38423. name: "Back",
  38424. image: {
  38425. source: "./media/characters/adelonda/back.svg",
  38426. extra: 1105/1003,
  38427. bottom: 25/1130
  38428. }
  38429. },
  38430. feral: {
  38431. height: math.unit(40/1.5, "meters"),
  38432. name: "Feral",
  38433. image: {
  38434. source: "./media/characters/adelonda/feral.svg",
  38435. extra: 597/271,
  38436. bottom: 387/984
  38437. }
  38438. },
  38439. },
  38440. [
  38441. {
  38442. name: "Normal",
  38443. height: math.unit(4, "meters"),
  38444. default: true
  38445. },
  38446. ]
  38447. ))
  38448. characterMakers.push(() => makeCharacter(
  38449. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38450. {
  38451. front: {
  38452. height: math.unit(8 + 4/12, "feet"),
  38453. weight: math.unit(670, "lb"),
  38454. name: "Front",
  38455. image: {
  38456. source: "./media/characters/acadiel/front.svg",
  38457. extra: 1901/1595,
  38458. bottom: 142/2043
  38459. }
  38460. },
  38461. },
  38462. [
  38463. {
  38464. name: "Normal",
  38465. height: math.unit(8 + 4/12, "feet"),
  38466. default: true
  38467. },
  38468. {
  38469. name: "Macro",
  38470. height: math.unit(200, "feet")
  38471. },
  38472. ]
  38473. ))
  38474. characterMakers.push(() => makeCharacter(
  38475. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38476. {
  38477. front: {
  38478. height: math.unit(6 + 2/12, "feet"),
  38479. weight: math.unit(185, "lb"),
  38480. name: "Front",
  38481. image: {
  38482. source: "./media/characters/kayne-ein/front.svg",
  38483. extra: 1780/1560,
  38484. bottom: 81/1861
  38485. }
  38486. },
  38487. },
  38488. [
  38489. {
  38490. name: "Normal",
  38491. height: math.unit(6 + 2/12, "feet"),
  38492. default: true
  38493. },
  38494. {
  38495. name: "Transformation Stage",
  38496. height: math.unit(15, "feet")
  38497. },
  38498. {
  38499. name: "Macro",
  38500. height: math.unit(150, "feet")
  38501. },
  38502. {
  38503. name: "Earth's Shadow",
  38504. height: math.unit(6200, "miles")
  38505. },
  38506. {
  38507. name: "Universal Demon",
  38508. height: math.unit(28e9, "parsecs")
  38509. },
  38510. {
  38511. name: "Multiverse God",
  38512. height: math.unit(3, "multiverses")
  38513. },
  38514. ]
  38515. ))
  38516. characterMakers.push(() => makeCharacter(
  38517. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38518. {
  38519. front: {
  38520. height: math.unit(5 + 5/12, "feet"),
  38521. name: "Front",
  38522. image: {
  38523. source: "./media/characters/fawn/front.svg",
  38524. extra: 1873/1731,
  38525. bottom: 95/1968
  38526. }
  38527. },
  38528. back: {
  38529. height: math.unit(5 + 5/12, "feet"),
  38530. name: "Back",
  38531. image: {
  38532. source: "./media/characters/fawn/back.svg",
  38533. extra: 1813/1700,
  38534. bottom: 14/1827
  38535. }
  38536. },
  38537. hoof: {
  38538. height: math.unit(1.45, "feet"),
  38539. name: "Hoof",
  38540. image: {
  38541. source: "./media/characters/fawn/hoof.svg"
  38542. }
  38543. },
  38544. },
  38545. [
  38546. {
  38547. name: "Normal",
  38548. height: math.unit(5 + 5/12, "feet"),
  38549. default: true
  38550. },
  38551. ]
  38552. ))
  38553. characterMakers.push(() => makeCharacter(
  38554. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38555. {
  38556. front: {
  38557. height: math.unit(2 + 5/12, "feet"),
  38558. name: "Front",
  38559. image: {
  38560. source: "./media/characters/orion/front.svg",
  38561. extra: 1366/1304,
  38562. bottom: 43/1409
  38563. }
  38564. },
  38565. paw: {
  38566. height: math.unit(0.52, "feet"),
  38567. name: "Paw",
  38568. image: {
  38569. source: "./media/characters/orion/paw.svg"
  38570. }
  38571. },
  38572. },
  38573. [
  38574. {
  38575. name: "Normal",
  38576. height: math.unit(2 + 5/12, "feet"),
  38577. default: true
  38578. },
  38579. ]
  38580. ))
  38581. characterMakers.push(() => makeCharacter(
  38582. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38583. {
  38584. front: {
  38585. height: math.unit(5 + 10/12, "feet"),
  38586. name: "Front",
  38587. image: {
  38588. source: "./media/characters/vera/front.svg",
  38589. extra: 1680/1575,
  38590. bottom: 49/1729
  38591. }
  38592. },
  38593. back: {
  38594. height: math.unit(5 + 10/12, "feet"),
  38595. name: "Back",
  38596. image: {
  38597. source: "./media/characters/vera/back.svg",
  38598. extra: 1700/1588,
  38599. bottom: 18/1718
  38600. }
  38601. },
  38602. arcanine: {
  38603. height: math.unit(6 + 8/12, "feet"),
  38604. name: "Arcanine",
  38605. image: {
  38606. source: "./media/characters/vera/arcanine.svg",
  38607. extra: 1590/1511,
  38608. bottom: 71/1661
  38609. }
  38610. },
  38611. maw: {
  38612. height: math.unit(0.82, "feet"),
  38613. name: "Maw",
  38614. image: {
  38615. source: "./media/characters/vera/maw.svg"
  38616. }
  38617. },
  38618. mawArcanine: {
  38619. height: math.unit(0.97, "feet"),
  38620. name: "Maw (Arcanine)",
  38621. image: {
  38622. source: "./media/characters/vera/maw-arcanine.svg"
  38623. }
  38624. },
  38625. paw: {
  38626. height: math.unit(0.75, "feet"),
  38627. name: "Paw",
  38628. image: {
  38629. source: "./media/characters/vera/paw.svg"
  38630. }
  38631. },
  38632. pawprint: {
  38633. height: math.unit(0.52, "feet"),
  38634. name: "Pawprint",
  38635. image: {
  38636. source: "./media/characters/vera/pawprint.svg"
  38637. }
  38638. },
  38639. },
  38640. [
  38641. {
  38642. name: "Normal",
  38643. height: math.unit(5 + 10/12, "feet"),
  38644. default: true
  38645. },
  38646. {
  38647. name: "Macro",
  38648. height: math.unit(75, "feet")
  38649. },
  38650. ]
  38651. ))
  38652. characterMakers.push(() => makeCharacter(
  38653. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38654. {
  38655. front: {
  38656. height: math.unit(4, "feet"),
  38657. weight: math.unit(40, "lb"),
  38658. name: "Front",
  38659. image: {
  38660. source: "./media/characters/orvan-rabbit/front.svg",
  38661. extra: 1896/1642,
  38662. bottom: 29/1925
  38663. }
  38664. },
  38665. },
  38666. [
  38667. {
  38668. name: "Normal",
  38669. height: math.unit(4, "feet"),
  38670. default: true
  38671. },
  38672. ]
  38673. ))
  38674. characterMakers.push(() => makeCharacter(
  38675. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38676. {
  38677. front: {
  38678. height: math.unit(6, "feet"),
  38679. weight: math.unit(168, "lb"),
  38680. name: "Front",
  38681. image: {
  38682. source: "./media/characters/lisa/front.svg",
  38683. extra: 2065/1867,
  38684. bottom: 46/2111
  38685. }
  38686. },
  38687. back: {
  38688. height: math.unit(6, "feet"),
  38689. weight: math.unit(168, "lb"),
  38690. name: "Back",
  38691. image: {
  38692. source: "./media/characters/lisa/back.svg",
  38693. extra: 1982/1838,
  38694. bottom: 29/2011
  38695. }
  38696. },
  38697. maw: {
  38698. height: math.unit(0.81, "feet"),
  38699. name: "Maw",
  38700. image: {
  38701. source: "./media/characters/lisa/maw.svg"
  38702. }
  38703. },
  38704. paw: {
  38705. height: math.unit(0.9, "feet"),
  38706. name: "Paw",
  38707. image: {
  38708. source: "./media/characters/lisa/paw.svg"
  38709. }
  38710. },
  38711. caribousune: {
  38712. height: math.unit(7 + 2/12, "feet"),
  38713. weight: math.unit(268, "lb"),
  38714. name: "Caribousune",
  38715. image: {
  38716. source: "./media/characters/lisa/caribousune.svg",
  38717. extra: 1843/1633,
  38718. bottom: 29/1872
  38719. }
  38720. },
  38721. frontCaribousune: {
  38722. height: math.unit(7 + 2/12, "feet"),
  38723. weight: math.unit(268, "lb"),
  38724. name: "Front (Caribousune)",
  38725. image: {
  38726. source: "./media/characters/lisa/front-caribousune.svg",
  38727. extra: 1818/1638,
  38728. bottom: 52/1870
  38729. }
  38730. },
  38731. sideCaribousune: {
  38732. height: math.unit(7 + 2/12, "feet"),
  38733. weight: math.unit(268, "lb"),
  38734. name: "Side (Caribousune)",
  38735. image: {
  38736. source: "./media/characters/lisa/side-caribousune.svg",
  38737. extra: 1851/1635,
  38738. bottom: 16/1867
  38739. }
  38740. },
  38741. backCaribousune: {
  38742. height: math.unit(7 + 2/12, "feet"),
  38743. weight: math.unit(268, "lb"),
  38744. name: "Back (Caribousune)",
  38745. image: {
  38746. source: "./media/characters/lisa/back-caribousune.svg",
  38747. extra: 1801/1604,
  38748. bottom: 44/1845
  38749. }
  38750. },
  38751. caribou: {
  38752. height: math.unit(7 + 2/12, "feet"),
  38753. weight: math.unit(268, "lb"),
  38754. name: "Caribou",
  38755. image: {
  38756. source: "./media/characters/lisa/caribou.svg",
  38757. extra: 1843/1633,
  38758. bottom: 29/1872
  38759. }
  38760. },
  38761. frontCaribou: {
  38762. height: math.unit(7 + 2/12, "feet"),
  38763. weight: math.unit(268, "lb"),
  38764. name: "Front (Caribou)",
  38765. image: {
  38766. source: "./media/characters/lisa/front-caribou.svg",
  38767. extra: 1818/1638,
  38768. bottom: 52/1870
  38769. }
  38770. },
  38771. sideCaribou: {
  38772. height: math.unit(7 + 2/12, "feet"),
  38773. weight: math.unit(268, "lb"),
  38774. name: "Side (Caribou)",
  38775. image: {
  38776. source: "./media/characters/lisa/side-caribou.svg",
  38777. extra: 1851/1635,
  38778. bottom: 16/1867
  38779. }
  38780. },
  38781. backCaribou: {
  38782. height: math.unit(7 + 2/12, "feet"),
  38783. weight: math.unit(268, "lb"),
  38784. name: "Back (Caribou)",
  38785. image: {
  38786. source: "./media/characters/lisa/back-caribou.svg",
  38787. extra: 1801/1604,
  38788. bottom: 44/1845
  38789. }
  38790. },
  38791. mawCaribou: {
  38792. height: math.unit(1.45, "feet"),
  38793. name: "Maw (Caribou)",
  38794. image: {
  38795. source: "./media/characters/lisa/maw-caribou.svg"
  38796. }
  38797. },
  38798. mawCaribousune: {
  38799. height: math.unit(1.45, "feet"),
  38800. name: "Maw (Caribousune)",
  38801. image: {
  38802. source: "./media/characters/lisa/maw-caribousune.svg"
  38803. }
  38804. },
  38805. pawCaribousune: {
  38806. height: math.unit(1.61, "feet"),
  38807. name: "Paw (Caribou)",
  38808. image: {
  38809. source: "./media/characters/lisa/paw-caribousune.svg"
  38810. }
  38811. },
  38812. },
  38813. [
  38814. {
  38815. name: "Normal",
  38816. height: math.unit(6, "feet")
  38817. },
  38818. {
  38819. name: "God Size",
  38820. height: math.unit(72, "feet"),
  38821. default: true
  38822. },
  38823. {
  38824. name: "Towering",
  38825. height: math.unit(288, "feet")
  38826. },
  38827. {
  38828. name: "City Size",
  38829. height: math.unit(48384, "feet")
  38830. },
  38831. {
  38832. name: "Continental",
  38833. height: math.unit(4200, "miles")
  38834. },
  38835. {
  38836. name: "Planet Eater",
  38837. height: math.unit(42, "earths")
  38838. },
  38839. {
  38840. name: "Star Swallower",
  38841. height: math.unit(42, "solarradii")
  38842. },
  38843. {
  38844. name: "System Swallower",
  38845. height: math.unit(84000, "AU")
  38846. },
  38847. {
  38848. name: "Galaxy Gobbler",
  38849. height: math.unit(42, "galaxies")
  38850. },
  38851. {
  38852. name: "Universe Devourer",
  38853. height: math.unit(42, "universes")
  38854. },
  38855. {
  38856. name: "Multiverse Muncher",
  38857. height: math.unit(42, "multiverses")
  38858. },
  38859. ]
  38860. ))
  38861. characterMakers.push(() => makeCharacter(
  38862. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38863. {
  38864. front: {
  38865. height: math.unit(36, "feet"),
  38866. name: "Front",
  38867. image: {
  38868. source: "./media/characters/shadow-rat/front.svg",
  38869. extra: 1845/1758,
  38870. bottom: 83/1928
  38871. }
  38872. },
  38873. },
  38874. [
  38875. {
  38876. name: "Macro",
  38877. height: math.unit(36, "feet"),
  38878. default: true
  38879. },
  38880. ]
  38881. ))
  38882. characterMakers.push(() => makeCharacter(
  38883. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38884. {
  38885. side: {
  38886. height: math.unit(8, "feet"),
  38887. weight: math.unit(2630, "lb"),
  38888. name: "Side",
  38889. image: {
  38890. source: "./media/characters/torallia/side.svg",
  38891. extra: 2164/2021,
  38892. bottom: 371/2535
  38893. }
  38894. },
  38895. },
  38896. [
  38897. {
  38898. name: "Mortal Interaction",
  38899. height: math.unit(8, "feet")
  38900. },
  38901. {
  38902. name: "Natural",
  38903. height: math.unit(24, "feet"),
  38904. default: true
  38905. },
  38906. {
  38907. name: "Giant",
  38908. height: math.unit(80, "feet")
  38909. },
  38910. {
  38911. name: "Kaiju",
  38912. height: math.unit(240, "feet")
  38913. },
  38914. {
  38915. name: "Macro",
  38916. height: math.unit(800, "feet")
  38917. },
  38918. {
  38919. name: "Macro+",
  38920. height: math.unit(2400, "feet")
  38921. },
  38922. {
  38923. name: "Macro++",
  38924. height: math.unit(8000, "feet")
  38925. },
  38926. {
  38927. name: "City-Crushing",
  38928. height: math.unit(24000, "feet")
  38929. },
  38930. {
  38931. name: "Mountain-Mashing",
  38932. height: math.unit(80000, "feet")
  38933. },
  38934. {
  38935. name: "District Demolisher",
  38936. height: math.unit(240000, "feet")
  38937. },
  38938. {
  38939. name: "Tri-County Terror",
  38940. height: math.unit(800000, "feet")
  38941. },
  38942. {
  38943. name: "State Smasher",
  38944. height: math.unit(2.4e6, "feet")
  38945. },
  38946. {
  38947. name: "Nation Nemesis",
  38948. height: math.unit(8e6, "feet")
  38949. },
  38950. {
  38951. name: "Continent Cracker",
  38952. height: math.unit(2.4e7, "feet")
  38953. },
  38954. {
  38955. name: "Planet-Pillaging",
  38956. height: math.unit(8e7, "feet")
  38957. },
  38958. {
  38959. name: "Earth-Eclipsing",
  38960. height: math.unit(2.4e8, "feet")
  38961. },
  38962. {
  38963. name: "Jovian-Jostling",
  38964. height: math.unit(8e8, "feet")
  38965. },
  38966. {
  38967. name: "Gas Giant Gulper",
  38968. height: math.unit(2.4e9, "feet")
  38969. },
  38970. {
  38971. name: "Astral Annihilator",
  38972. height: math.unit(8e9, "feet")
  38973. },
  38974. {
  38975. name: "Celestial Conqueror",
  38976. height: math.unit(2.4e10, "feet")
  38977. },
  38978. {
  38979. name: "Sol-Swallowing",
  38980. height: math.unit(8e10, "feet")
  38981. },
  38982. {
  38983. name: "Hunter of the Heavens",
  38984. height: math.unit(2.4e13, "feet")
  38985. },
  38986. ]
  38987. ))
  38988. characterMakers.push(() => makeCharacter(
  38989. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38990. {
  38991. front: {
  38992. height: math.unit(6 + 8/12, "feet"),
  38993. name: "Front",
  38994. image: {
  38995. source: "./media/characters/rebecca-pawlson/front.svg",
  38996. extra: 1737/1596,
  38997. bottom: 107/1844
  38998. }
  38999. },
  39000. back: {
  39001. height: math.unit(6 + 8/12, "feet"),
  39002. name: "Back",
  39003. image: {
  39004. source: "./media/characters/rebecca-pawlson/back.svg",
  39005. extra: 1702/1523,
  39006. bottom: 86/1788
  39007. }
  39008. },
  39009. },
  39010. [
  39011. {
  39012. name: "Normal",
  39013. height: math.unit(6 + 8/12, "feet")
  39014. },
  39015. {
  39016. name: "Mini Macro",
  39017. height: math.unit(10, "feet"),
  39018. default: true
  39019. },
  39020. {
  39021. name: "Macro",
  39022. height: math.unit(100, "feet")
  39023. },
  39024. {
  39025. name: "Mega Macro",
  39026. height: math.unit(2500, "feet")
  39027. },
  39028. {
  39029. name: "Giga Macro",
  39030. height: math.unit(50, "miles")
  39031. },
  39032. ]
  39033. ))
  39034. characterMakers.push(() => makeCharacter(
  39035. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39036. {
  39037. front: {
  39038. height: math.unit(7 + 6/12, "feet"),
  39039. weight: math.unit(600, "lb"),
  39040. name: "Front",
  39041. image: {
  39042. source: "./media/characters/moxie-nova/front.svg",
  39043. extra: 1734/1652,
  39044. bottom: 41/1775
  39045. }
  39046. },
  39047. },
  39048. [
  39049. {
  39050. name: "Normal",
  39051. height: math.unit(7 + 6/12, "feet"),
  39052. default: true
  39053. },
  39054. ]
  39055. ))
  39056. characterMakers.push(() => makeCharacter(
  39057. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39058. {
  39059. goat: {
  39060. height: math.unit(4, "feet"),
  39061. weight: math.unit(180, "lb"),
  39062. name: "Goat",
  39063. image: {
  39064. source: "./media/characters/tiffany/goat.svg",
  39065. extra: 1845/1595,
  39066. bottom: 106/1951
  39067. }
  39068. },
  39069. front: {
  39070. height: math.unit(5, "feet"),
  39071. weight: math.unit(150, "lb"),
  39072. name: "Foxcoon",
  39073. image: {
  39074. source: "./media/characters/tiffany/foxcoon.svg",
  39075. extra: 1941/1845,
  39076. bottom: 58/1999
  39077. }
  39078. },
  39079. },
  39080. [
  39081. {
  39082. name: "Normal",
  39083. height: math.unit(5, "feet"),
  39084. default: true
  39085. },
  39086. ]
  39087. ))
  39088. characterMakers.push(() => makeCharacter(
  39089. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39090. {
  39091. front: {
  39092. height: math.unit(8, "feet"),
  39093. weight: math.unit(300, "lb"),
  39094. name: "Front",
  39095. image: {
  39096. source: "./media/characters/raxinath/front.svg",
  39097. extra: 1407/1309,
  39098. bottom: 39/1446
  39099. }
  39100. },
  39101. back: {
  39102. height: math.unit(8, "feet"),
  39103. weight: math.unit(300, "lb"),
  39104. name: "Back",
  39105. image: {
  39106. source: "./media/characters/raxinath/back.svg",
  39107. extra: 1405/1315,
  39108. bottom: 9/1414
  39109. }
  39110. },
  39111. },
  39112. [
  39113. {
  39114. name: "Speck",
  39115. height: math.unit(0.5, "nm")
  39116. },
  39117. {
  39118. name: "Micro",
  39119. height: math.unit(3, "inches")
  39120. },
  39121. {
  39122. name: "Kobold",
  39123. height: math.unit(3, "feet")
  39124. },
  39125. {
  39126. name: "Normal",
  39127. height: math.unit(8, "feet"),
  39128. default: true
  39129. },
  39130. {
  39131. name: "Giant",
  39132. height: math.unit(50, "feet")
  39133. },
  39134. {
  39135. name: "Macro",
  39136. height: math.unit(1000, "feet")
  39137. },
  39138. {
  39139. name: "Megamacro",
  39140. height: math.unit(1, "mile")
  39141. },
  39142. ]
  39143. ))
  39144. characterMakers.push(() => makeCharacter(
  39145. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39146. {
  39147. front: {
  39148. height: math.unit(10, "feet"),
  39149. weight: math.unit(1442, "lb"),
  39150. name: "Front",
  39151. image: {
  39152. source: "./media/characters/mal-dragon/front.svg",
  39153. extra: 1515/1444,
  39154. bottom: 113/1628
  39155. }
  39156. },
  39157. back: {
  39158. height: math.unit(10, "feet"),
  39159. weight: math.unit(1442, "lb"),
  39160. name: "Back",
  39161. image: {
  39162. source: "./media/characters/mal-dragon/back.svg",
  39163. extra: 1527/1434,
  39164. bottom: 25/1552
  39165. }
  39166. },
  39167. },
  39168. [
  39169. {
  39170. name: "Mortal Interaction",
  39171. height: math.unit(10, "feet"),
  39172. default: true
  39173. },
  39174. {
  39175. name: "Large",
  39176. height: math.unit(30, "feet")
  39177. },
  39178. {
  39179. name: "Kaiju",
  39180. height: math.unit(300, "feet")
  39181. },
  39182. {
  39183. name: "Megamacro",
  39184. height: math.unit(10000, "feet")
  39185. },
  39186. {
  39187. name: "Continent Cracker",
  39188. height: math.unit(30000000, "feet")
  39189. },
  39190. {
  39191. name: "Sol-Swallowing",
  39192. height: math.unit(1e11, "feet")
  39193. },
  39194. {
  39195. name: "Light Universal",
  39196. height: math.unit(5, "universes")
  39197. },
  39198. {
  39199. name: "Universe Atoms",
  39200. height: math.unit(1.829e9, "universes")
  39201. },
  39202. {
  39203. name: "Light Multiversal",
  39204. height: math.unit(5, "multiverses")
  39205. },
  39206. {
  39207. name: "Multiverse Atoms",
  39208. height: math.unit(1.829e9, "multiverses")
  39209. },
  39210. {
  39211. name: "Fabric of Time",
  39212. height: math.unit(1e262, "multiverses")
  39213. },
  39214. ]
  39215. ))
  39216. characterMakers.push(() => makeCharacter(
  39217. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39218. {
  39219. front: {
  39220. height: math.unit(9, "feet"),
  39221. weight: math.unit(1050, "lb"),
  39222. name: "Front",
  39223. image: {
  39224. source: "./media/characters/tabitha/front.svg",
  39225. extra: 2083/1994,
  39226. bottom: 68/2151
  39227. }
  39228. },
  39229. },
  39230. [
  39231. {
  39232. name: "Baseline",
  39233. height: math.unit(9, "feet"),
  39234. default: true
  39235. },
  39236. {
  39237. name: "Giant",
  39238. height: math.unit(90, "feet")
  39239. },
  39240. {
  39241. name: "Macro",
  39242. height: math.unit(900, "feet")
  39243. },
  39244. {
  39245. name: "Megamacro",
  39246. height: math.unit(9000, "feet")
  39247. },
  39248. {
  39249. name: "City-Crushing",
  39250. height: math.unit(27000, "feet")
  39251. },
  39252. {
  39253. name: "Mountain-Mashing",
  39254. height: math.unit(90000, "feet")
  39255. },
  39256. {
  39257. name: "Nation Nemesis",
  39258. height: math.unit(9e6, "feet")
  39259. },
  39260. {
  39261. name: "Continent Cracker",
  39262. height: math.unit(27e6, "feet")
  39263. },
  39264. {
  39265. name: "Earth-Eclipsing",
  39266. height: math.unit(2.7e8, "feet")
  39267. },
  39268. {
  39269. name: "Gas Giant Gulper",
  39270. height: math.unit(2.7e9, "feet")
  39271. },
  39272. {
  39273. name: "Sol-Swallowing",
  39274. height: math.unit(9e10, "feet")
  39275. },
  39276. {
  39277. name: "Galaxy Gulper",
  39278. height: math.unit(9, "galaxies")
  39279. },
  39280. {
  39281. name: "Cosmos Churner",
  39282. height: math.unit(9, "universes")
  39283. },
  39284. ]
  39285. ))
  39286. characterMakers.push(() => makeCharacter(
  39287. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39288. {
  39289. front: {
  39290. height: math.unit(160, "cm"),
  39291. weight: math.unit(55, "kg"),
  39292. name: "Front",
  39293. image: {
  39294. source: "./media/characters/tow/front.svg",
  39295. extra: 1751/1722,
  39296. bottom: 74/1825
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Norm",
  39303. height: math.unit(160, "cm")
  39304. },
  39305. {
  39306. name: "Casual",
  39307. height: math.unit(3200, "m"),
  39308. default: true
  39309. },
  39310. {
  39311. name: "Show-Off",
  39312. height: math.unit(160, "km")
  39313. },
  39314. ]
  39315. ))
  39316. characterMakers.push(() => makeCharacter(
  39317. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39318. {
  39319. front: {
  39320. height: math.unit(7 + 11/12, "feet"),
  39321. weight: math.unit(342.8, "lb"),
  39322. name: "Front",
  39323. image: {
  39324. source: "./media/characters/vivian-orca-dragon/front.svg",
  39325. extra: 1890/1865,
  39326. bottom: 28/1918
  39327. }
  39328. },
  39329. },
  39330. [
  39331. {
  39332. name: "Micro",
  39333. height: math.unit(5, "inches")
  39334. },
  39335. {
  39336. name: "Normal",
  39337. height: math.unit(7 + 11/12, "feet"),
  39338. default: true
  39339. },
  39340. {
  39341. name: "Macro",
  39342. height: math.unit(395 + 7/12, "feet")
  39343. },
  39344. ]
  39345. ))
  39346. characterMakers.push(() => makeCharacter(
  39347. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39348. {
  39349. side: {
  39350. height: math.unit(10, "feet"),
  39351. weight: math.unit(1442, "lb"),
  39352. name: "Side",
  39353. image: {
  39354. source: "./media/characters/lotherakon/side.svg",
  39355. extra: 1604/1497,
  39356. bottom: 89/1693
  39357. }
  39358. },
  39359. },
  39360. [
  39361. {
  39362. name: "Mortal Interaction",
  39363. height: math.unit(10, "feet")
  39364. },
  39365. {
  39366. name: "Large",
  39367. height: math.unit(30, "feet"),
  39368. default: true
  39369. },
  39370. {
  39371. name: "Giant",
  39372. height: math.unit(100, "feet")
  39373. },
  39374. {
  39375. name: "Kaiju",
  39376. height: math.unit(300, "feet")
  39377. },
  39378. {
  39379. name: "Macro",
  39380. height: math.unit(1000, "feet")
  39381. },
  39382. {
  39383. name: "Macro+",
  39384. height: math.unit(3000, "feet")
  39385. },
  39386. {
  39387. name: "Megamacro",
  39388. height: math.unit(10000, "feet")
  39389. },
  39390. {
  39391. name: "City-Crushing",
  39392. height: math.unit(30000, "feet")
  39393. },
  39394. {
  39395. name: "Continent Cracker",
  39396. height: math.unit(30e6, "feet")
  39397. },
  39398. {
  39399. name: "Earth Eclipsing",
  39400. height: math.unit(3e8, "feet")
  39401. },
  39402. {
  39403. name: "Gas Giant Gulper",
  39404. height: math.unit(3e9, "feet")
  39405. },
  39406. {
  39407. name: "Sol-Swallowing",
  39408. height: math.unit(1e11, "feet")
  39409. },
  39410. {
  39411. name: "System Swallower",
  39412. height: math.unit(3e14, "feet")
  39413. },
  39414. {
  39415. name: "Galaxy Gulper",
  39416. height: math.unit(10, "galaxies")
  39417. },
  39418. {
  39419. name: "Light Universal",
  39420. height: math.unit(5, "universes")
  39421. },
  39422. {
  39423. name: "Universe Palm",
  39424. height: math.unit(20, "universes")
  39425. },
  39426. {
  39427. name: "Light Multiversal",
  39428. height: math.unit(5, "multiverses")
  39429. },
  39430. {
  39431. name: "Multiverse Palm",
  39432. height: math.unit(20, "multiverses")
  39433. },
  39434. {
  39435. name: "Inferno Incarnate",
  39436. height: math.unit(1e7, "multiverses")
  39437. },
  39438. ]
  39439. ))
  39440. characterMakers.push(() => makeCharacter(
  39441. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39442. {
  39443. front: {
  39444. height: math.unit(8, "feet"),
  39445. weight: math.unit(1200, "lb"),
  39446. name: "Front",
  39447. image: {
  39448. source: "./media/characters/malithee/front.svg",
  39449. extra: 1675/1640,
  39450. bottom: 162/1837
  39451. }
  39452. },
  39453. },
  39454. [
  39455. {
  39456. name: "Mortal Interaction",
  39457. height: math.unit(8, "feet"),
  39458. default: true
  39459. },
  39460. {
  39461. name: "Large",
  39462. height: math.unit(24, "feet")
  39463. },
  39464. {
  39465. name: "Kaiju",
  39466. height: math.unit(240, "feet")
  39467. },
  39468. {
  39469. name: "Megamacro",
  39470. height: math.unit(8000, "feet")
  39471. },
  39472. {
  39473. name: "Continent Cracker",
  39474. height: math.unit(24e6, "feet")
  39475. },
  39476. {
  39477. name: "Earth-Eclipsing",
  39478. height: math.unit(2.4e8, "feet")
  39479. },
  39480. {
  39481. name: "Sol-Swallowing",
  39482. height: math.unit(8e10, "feet")
  39483. },
  39484. {
  39485. name: "Galaxy Gulper",
  39486. height: math.unit(8, "galaxies")
  39487. },
  39488. {
  39489. name: "Light Universal",
  39490. height: math.unit(4, "universes")
  39491. },
  39492. {
  39493. name: "Universe Atoms",
  39494. height: math.unit(1.829e9, "universes")
  39495. },
  39496. {
  39497. name: "Light Multiversal",
  39498. height: math.unit(4, "multiverses")
  39499. },
  39500. {
  39501. name: "Multiverse Atoms",
  39502. height: math.unit(1.829e9, "multiverses")
  39503. },
  39504. {
  39505. name: "Nigh-Omnipresence",
  39506. height: math.unit(8e261, "multiverses")
  39507. },
  39508. ]
  39509. ))
  39510. characterMakers.push(() => makeCharacter(
  39511. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39512. {
  39513. front: {
  39514. height: math.unit(10, "feet"),
  39515. weight: math.unit(1500, "lb"),
  39516. name: "Front",
  39517. image: {
  39518. source: "./media/characters/miles-thestia/front.svg",
  39519. extra: 1812/1727,
  39520. bottom: 86/1898
  39521. }
  39522. },
  39523. back: {
  39524. height: math.unit(10, "feet"),
  39525. weight: math.unit(1500, "lb"),
  39526. name: "Back",
  39527. image: {
  39528. source: "./media/characters/miles-thestia/back.svg",
  39529. extra: 1799/1690,
  39530. bottom: 47/1846
  39531. }
  39532. },
  39533. frontNsfw: {
  39534. height: math.unit(10, "feet"),
  39535. weight: math.unit(1500, "lb"),
  39536. name: "Front (NSFW)",
  39537. image: {
  39538. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39539. extra: 1812/1727,
  39540. bottom: 86/1898
  39541. }
  39542. },
  39543. },
  39544. [
  39545. {
  39546. name: "Mini-Macro",
  39547. height: math.unit(10, "feet"),
  39548. default: true
  39549. },
  39550. ]
  39551. ))
  39552. characterMakers.push(() => makeCharacter(
  39553. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39554. {
  39555. front: {
  39556. height: math.unit(25, "feet"),
  39557. name: "Front",
  39558. image: {
  39559. source: "./media/characters/titan-s-wulf/front.svg",
  39560. extra: 1560/1484,
  39561. bottom: 76/1636
  39562. }
  39563. },
  39564. },
  39565. [
  39566. {
  39567. name: "Smallest",
  39568. height: math.unit(25, "feet"),
  39569. default: true
  39570. },
  39571. {
  39572. name: "Normal",
  39573. height: math.unit(200, "feet")
  39574. },
  39575. {
  39576. name: "Macro",
  39577. height: math.unit(200000, "feet")
  39578. },
  39579. {
  39580. name: "Multiversal Original",
  39581. height: math.unit(10000, "multiverses")
  39582. },
  39583. ]
  39584. ))
  39585. characterMakers.push(() => makeCharacter(
  39586. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39587. {
  39588. front: {
  39589. height: math.unit(8, "feet"),
  39590. weight: math.unit(553, "lb"),
  39591. name: "Front",
  39592. image: {
  39593. source: "./media/characters/tawendeh/front.svg",
  39594. extra: 2365/2268,
  39595. bottom: 83/2448
  39596. }
  39597. },
  39598. frontClothed: {
  39599. height: math.unit(8, "feet"),
  39600. weight: math.unit(553, "lb"),
  39601. name: "Front (Clothed)",
  39602. image: {
  39603. source: "./media/characters/tawendeh/front-clothed.svg",
  39604. extra: 2365/2268,
  39605. bottom: 83/2448
  39606. }
  39607. },
  39608. back: {
  39609. height: math.unit(8, "feet"),
  39610. weight: math.unit(553, "lb"),
  39611. name: "Back",
  39612. image: {
  39613. source: "./media/characters/tawendeh/back.svg",
  39614. extra: 2397/2294,
  39615. bottom: 42/2439
  39616. }
  39617. },
  39618. },
  39619. [
  39620. {
  39621. name: "Mortal Interaction",
  39622. height: math.unit(8, "feet"),
  39623. default: true
  39624. },
  39625. {
  39626. name: "Giant",
  39627. height: math.unit(80, "feet")
  39628. },
  39629. {
  39630. name: "Macro",
  39631. height: math.unit(800, "feet")
  39632. },
  39633. {
  39634. name: "Megamacro",
  39635. height: math.unit(8000, "feet")
  39636. },
  39637. {
  39638. name: "City-Crushing",
  39639. height: math.unit(24000, "feet")
  39640. },
  39641. {
  39642. name: "Mountain-Mashing",
  39643. height: math.unit(80000, "feet")
  39644. },
  39645. {
  39646. name: "Nation Nemesis",
  39647. height: math.unit(8e6, "feet")
  39648. },
  39649. {
  39650. name: "Continent Cracker",
  39651. height: math.unit(24e6, "feet")
  39652. },
  39653. {
  39654. name: "Earth-Eclipsing",
  39655. height: math.unit(2.4e8, "feet")
  39656. },
  39657. {
  39658. name: "Gas Giant Gulper",
  39659. height: math.unit(2.4e9, "feet")
  39660. },
  39661. {
  39662. name: "Sol-Swallowing",
  39663. height: math.unit(8e10, "feet")
  39664. },
  39665. {
  39666. name: "Galaxy Gulper",
  39667. height: math.unit(8, "galaxies")
  39668. },
  39669. {
  39670. name: "Cosmos Churner",
  39671. height: math.unit(8, "universes")
  39672. },
  39673. {
  39674. name: "Omnipotent Otter",
  39675. height: math.unit(80, "universes")
  39676. },
  39677. ]
  39678. ))
  39679. characterMakers.push(() => makeCharacter(
  39680. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39681. {
  39682. front: {
  39683. height: math.unit(2.6, "meters"),
  39684. weight: math.unit(900, "kg"),
  39685. name: "Front",
  39686. image: {
  39687. source: "./media/characters/neesha/front.svg",
  39688. extra: 1803/1653,
  39689. bottom: 128/1931
  39690. }
  39691. },
  39692. },
  39693. [
  39694. {
  39695. name: "Normal",
  39696. height: math.unit(2.6, "meters"),
  39697. default: true
  39698. },
  39699. {
  39700. name: "Macro",
  39701. height: math.unit(50, "meters")
  39702. },
  39703. ]
  39704. ))
  39705. characterMakers.push(() => makeCharacter(
  39706. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39707. {
  39708. front: {
  39709. height: math.unit(5, "feet"),
  39710. weight: math.unit(185, "lb"),
  39711. name: "Front",
  39712. image: {
  39713. source: "./media/characters/kyera/front.svg",
  39714. extra: 1875/1790,
  39715. bottom: 96/1971
  39716. }
  39717. },
  39718. },
  39719. [
  39720. {
  39721. name: "Normal",
  39722. height: math.unit(5, "feet"),
  39723. default: true
  39724. },
  39725. ]
  39726. ))
  39727. characterMakers.push(() => makeCharacter(
  39728. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39729. {
  39730. front: {
  39731. height: math.unit(7 + 6/12, "feet"),
  39732. weight: math.unit(540, "lb"),
  39733. name: "Front",
  39734. image: {
  39735. source: "./media/characters/yuko/front.svg",
  39736. extra: 1282/1222,
  39737. bottom: 101/1383
  39738. }
  39739. },
  39740. frontClothed: {
  39741. height: math.unit(7 + 6/12, "feet"),
  39742. weight: math.unit(540, "lb"),
  39743. name: "Front (Clothed)",
  39744. image: {
  39745. source: "./media/characters/yuko/front-clothed.svg",
  39746. extra: 1282/1222,
  39747. bottom: 101/1383
  39748. }
  39749. },
  39750. },
  39751. [
  39752. {
  39753. name: "Normal",
  39754. height: math.unit(7 + 6/12, "feet"),
  39755. default: true
  39756. },
  39757. {
  39758. name: "Macro",
  39759. height: math.unit(26 + 9/12, "feet")
  39760. },
  39761. {
  39762. name: "Megamacro",
  39763. height: math.unit(300, "feet")
  39764. },
  39765. {
  39766. name: "Gigamacro",
  39767. height: math.unit(5000, "feet")
  39768. },
  39769. {
  39770. name: "Planetary",
  39771. height: math.unit(10000, "miles")
  39772. },
  39773. ]
  39774. ))
  39775. characterMakers.push(() => makeCharacter(
  39776. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39777. {
  39778. front: {
  39779. height: math.unit(8 + 2/12, "feet"),
  39780. weight: math.unit(600, "lb"),
  39781. name: "Front",
  39782. image: {
  39783. source: "./media/characters/deam-nitrel/front.svg",
  39784. extra: 1308/1234,
  39785. bottom: 125/1433
  39786. }
  39787. },
  39788. },
  39789. [
  39790. {
  39791. name: "Normal",
  39792. height: math.unit(8 + 2/12, "feet"),
  39793. default: true
  39794. },
  39795. ]
  39796. ))
  39797. characterMakers.push(() => makeCharacter(
  39798. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39799. {
  39800. front: {
  39801. height: math.unit(6.1, "feet"),
  39802. weight: math.unit(180, "lb"),
  39803. name: "Front",
  39804. image: {
  39805. source: "./media/characters/skyress/front.svg",
  39806. extra: 1045/915,
  39807. bottom: 28/1073
  39808. }
  39809. },
  39810. maw: {
  39811. height: math.unit(1, "feet"),
  39812. name: "Maw",
  39813. image: {
  39814. source: "./media/characters/skyress/maw.svg"
  39815. }
  39816. },
  39817. },
  39818. [
  39819. {
  39820. name: "Normal",
  39821. height: math.unit(6.1, "feet"),
  39822. default: true
  39823. },
  39824. {
  39825. name: "Macro",
  39826. height: math.unit(200, "feet")
  39827. },
  39828. ]
  39829. ))
  39830. characterMakers.push(() => makeCharacter(
  39831. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39832. {
  39833. front: {
  39834. height: math.unit(4 + 2/12, "feet"),
  39835. weight: math.unit(40, "kg"),
  39836. name: "Front",
  39837. image: {
  39838. source: "./media/characters/amethyst-jones/front.svg",
  39839. extra: 1220/1150,
  39840. bottom: 101/1321
  39841. }
  39842. },
  39843. },
  39844. [
  39845. {
  39846. name: "Normal",
  39847. height: math.unit(4 + 2/12, "feet"),
  39848. default: true
  39849. },
  39850. ]
  39851. ))
  39852. characterMakers.push(() => makeCharacter(
  39853. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39854. {
  39855. front: {
  39856. height: math.unit(1.7, "m"),
  39857. weight: math.unit(135, "lb"),
  39858. name: "Front",
  39859. image: {
  39860. source: "./media/characters/jade/front.svg",
  39861. extra: 1818/1767,
  39862. bottom: 32/1850
  39863. }
  39864. },
  39865. back: {
  39866. height: math.unit(1.7, "m"),
  39867. weight: math.unit(135, "lb"),
  39868. name: "Back",
  39869. image: {
  39870. source: "./media/characters/jade/back.svg",
  39871. extra: 1869/1809,
  39872. bottom: 35/1904
  39873. }
  39874. },
  39875. hand: {
  39876. height: math.unit(0.24, "m"),
  39877. name: "Hand",
  39878. image: {
  39879. source: "./media/characters/jade/hand.svg"
  39880. }
  39881. },
  39882. foot: {
  39883. height: math.unit(0.263, "m"),
  39884. name: "Foot",
  39885. image: {
  39886. source: "./media/characters/jade/foot.svg"
  39887. }
  39888. },
  39889. dick: {
  39890. height: math.unit(0.47, "m"),
  39891. name: "Dick",
  39892. image: {
  39893. source: "./media/characters/jade/dick.svg"
  39894. }
  39895. },
  39896. },
  39897. [
  39898. {
  39899. name: "Micro",
  39900. height: math.unit(22, "cm")
  39901. },
  39902. {
  39903. name: "Normal",
  39904. height: math.unit(1.7, "m"),
  39905. default: true
  39906. },
  39907. {
  39908. name: "Macro",
  39909. height: math.unit(152, "m")
  39910. },
  39911. ]
  39912. ))
  39913. characterMakers.push(() => makeCharacter(
  39914. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39915. {
  39916. front: {
  39917. height: math.unit(100, "miles"),
  39918. weight: math.unit(20000, "tons"),
  39919. name: "Front",
  39920. image: {
  39921. source: "./media/characters/cookie/front.svg",
  39922. extra: 1125/1070,
  39923. bottom: 30/1155
  39924. }
  39925. },
  39926. },
  39927. [
  39928. {
  39929. name: "Big",
  39930. height: math.unit(50, "feet")
  39931. },
  39932. {
  39933. name: "Macro",
  39934. height: math.unit(100, "miles"),
  39935. default: true
  39936. },
  39937. {
  39938. name: "Megamacro",
  39939. height: math.unit(90000, "miles")
  39940. },
  39941. ]
  39942. ))
  39943. characterMakers.push(() => makeCharacter(
  39944. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39945. {
  39946. front: {
  39947. height: math.unit(6, "feet"),
  39948. weight: math.unit(145, "lb"),
  39949. name: "Front",
  39950. image: {
  39951. source: "./media/characters/farzian/front.svg",
  39952. extra: 1902/1693,
  39953. bottom: 108/2010
  39954. }
  39955. },
  39956. },
  39957. [
  39958. {
  39959. name: "Macro",
  39960. height: math.unit(500, "feet"),
  39961. default: true
  39962. },
  39963. ]
  39964. ))
  39965. characterMakers.push(() => makeCharacter(
  39966. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39967. {
  39968. front: {
  39969. height: math.unit(3 + 6/12, "feet"),
  39970. weight: math.unit(50, "lb"),
  39971. name: "Front",
  39972. image: {
  39973. source: "./media/characters/kimberly-tilson/front.svg",
  39974. extra: 1400/1322,
  39975. bottom: 36/1436
  39976. }
  39977. },
  39978. back: {
  39979. height: math.unit(3 + 6/12, "feet"),
  39980. weight: math.unit(50, "lb"),
  39981. name: "Back",
  39982. image: {
  39983. source: "./media/characters/kimberly-tilson/back.svg",
  39984. extra: 1370/1307,
  39985. bottom: 20/1390
  39986. }
  39987. },
  39988. },
  39989. [
  39990. {
  39991. name: "Normal",
  39992. height: math.unit(3 + 6/12, "feet"),
  39993. default: true
  39994. },
  39995. ]
  39996. ))
  39997. characterMakers.push(() => makeCharacter(
  39998. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39999. {
  40000. front: {
  40001. height: math.unit(1148, "feet"),
  40002. weight: math.unit(34057, "lb"),
  40003. name: "Front",
  40004. image: {
  40005. source: "./media/characters/harthos/front.svg",
  40006. extra: 1391/1339,
  40007. bottom: 13/1404
  40008. }
  40009. },
  40010. },
  40011. [
  40012. {
  40013. name: "Macro",
  40014. height: math.unit(1148, "feet"),
  40015. default: true
  40016. },
  40017. ]
  40018. ))
  40019. characterMakers.push(() => makeCharacter(
  40020. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40021. {
  40022. front: {
  40023. height: math.unit(15, "feet"),
  40024. name: "Front",
  40025. image: {
  40026. source: "./media/characters/hypatia/front.svg",
  40027. extra: 1653/1591,
  40028. bottom: 79/1732
  40029. }
  40030. },
  40031. },
  40032. [
  40033. {
  40034. name: "Normal",
  40035. height: math.unit(15, "feet")
  40036. },
  40037. {
  40038. name: "Small",
  40039. height: math.unit(300, "feet")
  40040. },
  40041. {
  40042. name: "Macro",
  40043. height: math.unit(2500, "feet"),
  40044. default: true
  40045. },
  40046. {
  40047. name: "Mega Macro",
  40048. height: math.unit(1500, "miles")
  40049. },
  40050. {
  40051. name: "Giga Macro",
  40052. height: math.unit(1.5e6, "miles")
  40053. },
  40054. ]
  40055. ))
  40056. characterMakers.push(() => makeCharacter(
  40057. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40058. {
  40059. front: {
  40060. height: math.unit(6, "feet"),
  40061. weight: math.unit(200, "lb"),
  40062. name: "Front",
  40063. image: {
  40064. source: "./media/characters/wulver/front.svg",
  40065. extra: 1724/1632,
  40066. bottom: 130/1854
  40067. }
  40068. },
  40069. frontNsfw: {
  40070. height: math.unit(6, "feet"),
  40071. weight: math.unit(200, "lb"),
  40072. name: "Front (NSFW)",
  40073. image: {
  40074. source: "./media/characters/wulver/front-nsfw.svg",
  40075. extra: 1724/1632,
  40076. bottom: 130/1854
  40077. }
  40078. },
  40079. },
  40080. [
  40081. {
  40082. name: "Human-Sized",
  40083. height: math.unit(6, "feet")
  40084. },
  40085. {
  40086. name: "Normal",
  40087. height: math.unit(4, "meters"),
  40088. default: true
  40089. },
  40090. {
  40091. name: "Large",
  40092. height: math.unit(6, "m")
  40093. },
  40094. ]
  40095. ))
  40096. characterMakers.push(() => makeCharacter(
  40097. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40098. {
  40099. front: {
  40100. height: math.unit(7, "feet"),
  40101. name: "Front",
  40102. image: {
  40103. source: "./media/characters/maru/front.svg",
  40104. extra: 1595/1570,
  40105. bottom: 0/1595
  40106. }
  40107. },
  40108. },
  40109. [
  40110. {
  40111. name: "Normal",
  40112. height: math.unit(7, "feet"),
  40113. default: true
  40114. },
  40115. {
  40116. name: "Macro",
  40117. height: math.unit(700, "feet")
  40118. },
  40119. {
  40120. name: "Mega Macro",
  40121. height: math.unit(25, "miles")
  40122. },
  40123. ]
  40124. ))
  40125. characterMakers.push(() => makeCharacter(
  40126. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40127. {
  40128. front: {
  40129. height: math.unit(6, "feet"),
  40130. weight: math.unit(170, "lb"),
  40131. name: "Front",
  40132. image: {
  40133. source: "./media/characters/xenon/front.svg",
  40134. extra: 1376/1305,
  40135. bottom: 56/1432
  40136. }
  40137. },
  40138. back: {
  40139. height: math.unit(6, "feet"),
  40140. weight: math.unit(170, "lb"),
  40141. name: "Back",
  40142. image: {
  40143. source: "./media/characters/xenon/back.svg",
  40144. extra: 1328/1259,
  40145. bottom: 95/1423
  40146. }
  40147. },
  40148. maw: {
  40149. height: math.unit(0.52, "feet"),
  40150. name: "Maw",
  40151. image: {
  40152. source: "./media/characters/xenon/maw.svg"
  40153. }
  40154. },
  40155. hand: {
  40156. height: math.unit(0.82, "feet"),
  40157. name: "Hand",
  40158. image: {
  40159. source: "./media/characters/xenon/hand.svg"
  40160. }
  40161. },
  40162. foot: {
  40163. height: math.unit(1.13, "feet"),
  40164. name: "Foot",
  40165. image: {
  40166. source: "./media/characters/xenon/foot.svg"
  40167. }
  40168. },
  40169. },
  40170. [
  40171. {
  40172. name: "Micro",
  40173. height: math.unit(0.8, "inches")
  40174. },
  40175. {
  40176. name: "Normal",
  40177. height: math.unit(6, "feet")
  40178. },
  40179. {
  40180. name: "Macro",
  40181. height: math.unit(50, "feet"),
  40182. default: true
  40183. },
  40184. {
  40185. name: "Macro+",
  40186. height: math.unit(250, "feet")
  40187. },
  40188. {
  40189. name: "Megamacro",
  40190. height: math.unit(1500, "feet")
  40191. },
  40192. ]
  40193. ))
  40194. characterMakers.push(() => makeCharacter(
  40195. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40196. {
  40197. front: {
  40198. height: math.unit(7 + 5/12, "feet"),
  40199. name: "Front",
  40200. image: {
  40201. source: "./media/characters/zane/front.svg",
  40202. extra: 1260/1203,
  40203. bottom: 94/1354
  40204. }
  40205. },
  40206. back: {
  40207. height: math.unit(5.05, "feet"),
  40208. name: "Back",
  40209. image: {
  40210. source: "./media/characters/zane/back.svg",
  40211. extra: 893/829,
  40212. bottom: 30/923
  40213. }
  40214. },
  40215. werewolf: {
  40216. height: math.unit(11, "feet"),
  40217. name: "Werewolf",
  40218. image: {
  40219. source: "./media/characters/zane/werewolf.svg",
  40220. extra: 1383/1323,
  40221. bottom: 89/1472
  40222. }
  40223. },
  40224. foot: {
  40225. height: math.unit(1.46, "feet"),
  40226. name: "Foot",
  40227. image: {
  40228. source: "./media/characters/zane/foot.svg"
  40229. }
  40230. },
  40231. footFront: {
  40232. height: math.unit(0.784, "feet"),
  40233. name: "Foot (Front)",
  40234. image: {
  40235. source: "./media/characters/zane/foot-front.svg"
  40236. }
  40237. },
  40238. dick: {
  40239. height: math.unit(1.95, "feet"),
  40240. name: "Dick",
  40241. image: {
  40242. source: "./media/characters/zane/dick.svg"
  40243. }
  40244. },
  40245. dickWerewolf: {
  40246. height: math.unit(3.77, "feet"),
  40247. name: "Dick (Werewolf)",
  40248. image: {
  40249. source: "./media/characters/zane/dick.svg"
  40250. }
  40251. },
  40252. },
  40253. [
  40254. {
  40255. name: "Normal",
  40256. height: math.unit(7 + 5/12, "feet"),
  40257. default: true
  40258. },
  40259. ]
  40260. ))
  40261. characterMakers.push(() => makeCharacter(
  40262. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40263. {
  40264. front: {
  40265. height: math.unit(6 + 2/12, "feet"),
  40266. weight: math.unit(284, "lb"),
  40267. name: "Front",
  40268. image: {
  40269. source: "./media/characters/benni-desparque/front.svg",
  40270. extra: 1353/1126,
  40271. bottom: 69/1422
  40272. }
  40273. },
  40274. },
  40275. [
  40276. {
  40277. name: "Civilian",
  40278. height: math.unit(6 + 2/12, "feet")
  40279. },
  40280. {
  40281. name: "Normal",
  40282. height: math.unit(98, "feet"),
  40283. default: true
  40284. },
  40285. {
  40286. name: "Kaiju Fighter",
  40287. height: math.unit(268, "feet")
  40288. },
  40289. ]
  40290. ))
  40291. characterMakers.push(() => makeCharacter(
  40292. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40293. {
  40294. front: {
  40295. height: math.unit(5, "feet"),
  40296. weight: math.unit(105, "lb"),
  40297. name: "Front",
  40298. image: {
  40299. source: "./media/characters/maxine/front.svg",
  40300. extra: 1386/1250,
  40301. bottom: 71/1457
  40302. }
  40303. },
  40304. },
  40305. [
  40306. {
  40307. name: "Normal",
  40308. height: math.unit(5, "feet"),
  40309. default: true
  40310. },
  40311. ]
  40312. ))
  40313. characterMakers.push(() => makeCharacter(
  40314. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40315. {
  40316. front: {
  40317. height: math.unit(11 + 7/12, "feet"),
  40318. weight: math.unit(9576, "lb"),
  40319. name: "Front",
  40320. image: {
  40321. source: "./media/characters/scaly/front.svg",
  40322. extra: 888/867,
  40323. bottom: 36/924
  40324. }
  40325. },
  40326. },
  40327. [
  40328. {
  40329. name: "Normal",
  40330. height: math.unit(11 + 7/12, "feet"),
  40331. default: true
  40332. },
  40333. ]
  40334. ))
  40335. characterMakers.push(() => makeCharacter(
  40336. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40337. {
  40338. front: {
  40339. height: math.unit(6 + 3/12, "feet"),
  40340. name: "Front",
  40341. image: {
  40342. source: "./media/characters/saelria/front.svg",
  40343. extra: 1243/1138,
  40344. bottom: 46/1289
  40345. }
  40346. },
  40347. },
  40348. [
  40349. {
  40350. name: "Micro",
  40351. height: math.unit(6, "inches"),
  40352. },
  40353. {
  40354. name: "Normal",
  40355. height: math.unit(6 + 3/12, "feet"),
  40356. default: true
  40357. },
  40358. {
  40359. name: "Macro",
  40360. height: math.unit(25, "feet")
  40361. },
  40362. ]
  40363. ))
  40364. characterMakers.push(() => makeCharacter(
  40365. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40366. {
  40367. front: {
  40368. height: math.unit(80, "meters"),
  40369. weight: math.unit(7000, "tonnes"),
  40370. name: "Front",
  40371. image: {
  40372. source: "./media/characters/tef/front.svg",
  40373. extra: 2036/1991,
  40374. bottom: 54/2090
  40375. }
  40376. },
  40377. back: {
  40378. height: math.unit(80, "meters"),
  40379. weight: math.unit(7000, "tonnes"),
  40380. name: "Back",
  40381. image: {
  40382. source: "./media/characters/tef/back.svg",
  40383. extra: 2036/1991,
  40384. bottom: 54/2090
  40385. }
  40386. },
  40387. },
  40388. [
  40389. {
  40390. name: "Macro",
  40391. height: math.unit(80, "meters"),
  40392. default: true
  40393. },
  40394. ]
  40395. ))
  40396. characterMakers.push(() => makeCharacter(
  40397. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40398. {
  40399. front: {
  40400. height: math.unit(13, "feet"),
  40401. weight: math.unit(6, "tons"),
  40402. name: "Front",
  40403. image: {
  40404. source: "./media/characters/rover/front.svg",
  40405. extra: 1233/1156,
  40406. bottom: 50/1283
  40407. }
  40408. },
  40409. back: {
  40410. height: math.unit(13, "feet"),
  40411. weight: math.unit(6, "tons"),
  40412. name: "Back",
  40413. image: {
  40414. source: "./media/characters/rover/back.svg",
  40415. extra: 1327/1258,
  40416. bottom: 39/1366
  40417. }
  40418. },
  40419. },
  40420. [
  40421. {
  40422. name: "Normal",
  40423. height: math.unit(13, "feet"),
  40424. default: true
  40425. },
  40426. {
  40427. name: "Macro",
  40428. height: math.unit(1300, "feet")
  40429. },
  40430. {
  40431. name: "Megamacro",
  40432. height: math.unit(1300, "miles")
  40433. },
  40434. {
  40435. name: "Gigamacro",
  40436. height: math.unit(1300000, "miles")
  40437. },
  40438. ]
  40439. ))
  40440. characterMakers.push(() => makeCharacter(
  40441. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40442. {
  40443. front: {
  40444. height: math.unit(6, "feet"),
  40445. weight: math.unit(150, "lb"),
  40446. name: "Front",
  40447. image: {
  40448. source: "./media/characters/ariz/front.svg",
  40449. extra: 1401/1346,
  40450. bottom: 5/1406
  40451. }
  40452. },
  40453. },
  40454. [
  40455. {
  40456. name: "Normal",
  40457. height: math.unit(10, "feet"),
  40458. default: true
  40459. },
  40460. ]
  40461. ))
  40462. characterMakers.push(() => makeCharacter(
  40463. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40464. {
  40465. front: {
  40466. height: math.unit(6, "feet"),
  40467. weight: math.unit(140, "lb"),
  40468. name: "Front",
  40469. image: {
  40470. source: "./media/characters/sigrun/front.svg",
  40471. extra: 1418/1359,
  40472. bottom: 27/1445
  40473. }
  40474. },
  40475. },
  40476. [
  40477. {
  40478. name: "Macro",
  40479. height: math.unit(35, "feet"),
  40480. default: true
  40481. },
  40482. ]
  40483. ))
  40484. characterMakers.push(() => makeCharacter(
  40485. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40486. {
  40487. front: {
  40488. height: math.unit(6, "feet"),
  40489. weight: math.unit(150, "lb"),
  40490. name: "Front",
  40491. image: {
  40492. source: "./media/characters/numin/front.svg",
  40493. extra: 1433/1388,
  40494. bottom: 12/1445
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "Macro",
  40501. height: math.unit(21.5, "km"),
  40502. default: true
  40503. },
  40504. ]
  40505. ))
  40506. characterMakers.push(() => makeCharacter(
  40507. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40508. {
  40509. front: {
  40510. height: math.unit(6, "feet"),
  40511. weight: math.unit(463, "lb"),
  40512. name: "Front",
  40513. image: {
  40514. source: "./media/characters/melwa/front.svg",
  40515. extra: 1307/1248,
  40516. bottom: 93/1400
  40517. }
  40518. },
  40519. },
  40520. [
  40521. {
  40522. name: "Macro",
  40523. height: math.unit(50, "meters"),
  40524. default: true
  40525. },
  40526. ]
  40527. ))
  40528. characterMakers.push(() => makeCharacter(
  40529. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40530. {
  40531. front: {
  40532. height: math.unit(325, "feet"),
  40533. name: "Front",
  40534. image: {
  40535. source: "./media/characters/zorkaiju/front.svg",
  40536. extra: 1955/1814,
  40537. bottom: 40/1995
  40538. }
  40539. },
  40540. frontExtended: {
  40541. height: math.unit(325, "feet"),
  40542. name: "Front (Extended)",
  40543. image: {
  40544. source: "./media/characters/zorkaiju/front-extended.svg",
  40545. extra: 1955/1814,
  40546. bottom: 40/1995
  40547. }
  40548. },
  40549. side: {
  40550. height: math.unit(325, "feet"),
  40551. name: "Side",
  40552. image: {
  40553. source: "./media/characters/zorkaiju/side.svg",
  40554. extra: 1495/1396,
  40555. bottom: 17/1512
  40556. }
  40557. },
  40558. sideExtended: {
  40559. height: math.unit(325, "feet"),
  40560. name: "Side (Extended)",
  40561. image: {
  40562. source: "./media/characters/zorkaiju/side-extended.svg",
  40563. extra: 1495/1396,
  40564. bottom: 17/1512
  40565. }
  40566. },
  40567. back: {
  40568. height: math.unit(325, "feet"),
  40569. name: "Back",
  40570. image: {
  40571. source: "./media/characters/zorkaiju/back.svg",
  40572. extra: 1959/1821,
  40573. bottom: 31/1990
  40574. }
  40575. },
  40576. backExtended: {
  40577. height: math.unit(325, "feet"),
  40578. name: "Back (Extended)",
  40579. image: {
  40580. source: "./media/characters/zorkaiju/back-extended.svg",
  40581. extra: 1959/1821,
  40582. bottom: 31/1990
  40583. }
  40584. },
  40585. hand: {
  40586. height: math.unit(58.4, "feet"),
  40587. name: "Hand",
  40588. image: {
  40589. source: "./media/characters/zorkaiju/hand.svg"
  40590. }
  40591. },
  40592. handExtended: {
  40593. height: math.unit(61.4, "feet"),
  40594. name: "Hand (Extended)",
  40595. image: {
  40596. source: "./media/characters/zorkaiju/hand-extended.svg"
  40597. }
  40598. },
  40599. foot: {
  40600. height: math.unit(95, "feet"),
  40601. name: "Foot",
  40602. image: {
  40603. source: "./media/characters/zorkaiju/foot.svg"
  40604. }
  40605. },
  40606. leftArm: {
  40607. height: math.unit(59, "feet"),
  40608. name: "Left Arm",
  40609. image: {
  40610. source: "./media/characters/zorkaiju/left-arm.svg"
  40611. }
  40612. },
  40613. rightArm: {
  40614. height: math.unit(59, "feet"),
  40615. name: "Right Arm",
  40616. image: {
  40617. source: "./media/characters/zorkaiju/right-arm.svg"
  40618. }
  40619. },
  40620. tail: {
  40621. height: math.unit(104, "feet"),
  40622. name: "Tail",
  40623. image: {
  40624. source: "./media/characters/zorkaiju/tail.svg"
  40625. }
  40626. },
  40627. tailExtended: {
  40628. height: math.unit(104, "feet"),
  40629. name: "Tail (Extended)",
  40630. image: {
  40631. source: "./media/characters/zorkaiju/tail-extended.svg"
  40632. }
  40633. },
  40634. tailBottom: {
  40635. height: math.unit(104, "feet"),
  40636. name: "Tail Bottom",
  40637. image: {
  40638. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40639. }
  40640. },
  40641. crystal: {
  40642. height: math.unit(27.54, "feet"),
  40643. name: "Crystal",
  40644. image: {
  40645. source: "./media/characters/zorkaiju/crystal.svg"
  40646. }
  40647. },
  40648. },
  40649. [
  40650. {
  40651. name: "Kaiju",
  40652. height: math.unit(325, "feet"),
  40653. default: true
  40654. },
  40655. ]
  40656. ))
  40657. characterMakers.push(() => makeCharacter(
  40658. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40659. {
  40660. front: {
  40661. height: math.unit(6 + 1/12, "feet"),
  40662. weight: math.unit(115, "lb"),
  40663. name: "Front",
  40664. image: {
  40665. source: "./media/characters/bailey-belfry/front.svg",
  40666. extra: 1240/1121,
  40667. bottom: 101/1341
  40668. }
  40669. },
  40670. },
  40671. [
  40672. {
  40673. name: "Normal",
  40674. height: math.unit(6 + 1/12, "feet"),
  40675. default: true
  40676. },
  40677. ]
  40678. ))
  40679. characterMakers.push(() => makeCharacter(
  40680. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40681. {
  40682. side: {
  40683. height: math.unit(4, "meters"),
  40684. weight: math.unit(250, "kg"),
  40685. name: "Side",
  40686. image: {
  40687. source: "./media/characters/blacky/side.svg",
  40688. extra: 1027/919,
  40689. bottom: 43/1070
  40690. }
  40691. },
  40692. maw: {
  40693. height: math.unit(1, "meters"),
  40694. name: "Maw",
  40695. image: {
  40696. source: "./media/characters/blacky/maw.svg"
  40697. }
  40698. },
  40699. paw: {
  40700. height: math.unit(1, "meters"),
  40701. name: "Paw",
  40702. image: {
  40703. source: "./media/characters/blacky/paw.svg"
  40704. }
  40705. },
  40706. },
  40707. [
  40708. {
  40709. name: "Normal",
  40710. height: math.unit(4, "meters"),
  40711. default: true
  40712. },
  40713. ]
  40714. ))
  40715. characterMakers.push(() => makeCharacter(
  40716. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40717. {
  40718. front: {
  40719. height: math.unit(170, "cm"),
  40720. weight: math.unit(66, "kg"),
  40721. name: "Front",
  40722. image: {
  40723. source: "./media/characters/thux-ei/front.svg",
  40724. extra: 1109/1011,
  40725. bottom: 8/1117
  40726. }
  40727. },
  40728. },
  40729. [
  40730. {
  40731. name: "Normal",
  40732. height: math.unit(170, "cm"),
  40733. default: true
  40734. },
  40735. ]
  40736. ))
  40737. characterMakers.push(() => makeCharacter(
  40738. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40739. {
  40740. front: {
  40741. height: math.unit(5, "feet"),
  40742. weight: math.unit(120, "lb"),
  40743. name: "Front",
  40744. image: {
  40745. source: "./media/characters/roxanne-voltaire/front.svg",
  40746. extra: 1901/1779,
  40747. bottom: 53/1954
  40748. }
  40749. },
  40750. },
  40751. [
  40752. {
  40753. name: "Normal",
  40754. height: math.unit(5, "feet"),
  40755. default: true
  40756. },
  40757. {
  40758. name: "Giant",
  40759. height: math.unit(50, "feet")
  40760. },
  40761. {
  40762. name: "Titan",
  40763. height: math.unit(500, "feet")
  40764. },
  40765. {
  40766. name: "Macro",
  40767. height: math.unit(5000, "feet")
  40768. },
  40769. {
  40770. name: "Megamacro",
  40771. height: math.unit(50000, "feet")
  40772. },
  40773. {
  40774. name: "Gigamacro",
  40775. height: math.unit(500000, "feet")
  40776. },
  40777. {
  40778. name: "Teramacro",
  40779. height: math.unit(5e6, "feet")
  40780. },
  40781. ]
  40782. ))
  40783. characterMakers.push(() => makeCharacter(
  40784. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40785. {
  40786. front: {
  40787. height: math.unit(6 + 2/12, "feet"),
  40788. name: "Front",
  40789. image: {
  40790. source: "./media/characters/squeaks/front.svg",
  40791. extra: 1823/1768,
  40792. bottom: 138/1961
  40793. }
  40794. },
  40795. },
  40796. [
  40797. {
  40798. name: "Micro",
  40799. height: math.unit(0.5, "inches")
  40800. },
  40801. {
  40802. name: "Normal",
  40803. height: math.unit(6 + 2/12, "feet"),
  40804. default: true
  40805. },
  40806. {
  40807. name: "Macro",
  40808. height: math.unit(600, "feet")
  40809. },
  40810. ]
  40811. ))
  40812. characterMakers.push(() => makeCharacter(
  40813. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40814. {
  40815. front: {
  40816. height: math.unit(1.72, "meters"),
  40817. name: "Front",
  40818. image: {
  40819. source: "./media/characters/archinger/front.svg",
  40820. extra: 1861/1675,
  40821. bottom: 125/1986
  40822. }
  40823. },
  40824. back: {
  40825. height: math.unit(1.72, "meters"),
  40826. name: "Back",
  40827. image: {
  40828. source: "./media/characters/archinger/back.svg",
  40829. extra: 1844/1701,
  40830. bottom: 104/1948
  40831. }
  40832. },
  40833. cock: {
  40834. height: math.unit(0.59, "feet"),
  40835. name: "Cock",
  40836. image: {
  40837. source: "./media/characters/archinger/cock.svg"
  40838. }
  40839. },
  40840. },
  40841. [
  40842. {
  40843. name: "Normal",
  40844. height: math.unit(1.72, "meters"),
  40845. default: true
  40846. },
  40847. {
  40848. name: "Macro",
  40849. height: math.unit(84, "meters")
  40850. },
  40851. {
  40852. name: "Macro+",
  40853. height: math.unit(112, "meters")
  40854. },
  40855. {
  40856. name: "Macro++",
  40857. height: math.unit(960, "meters")
  40858. },
  40859. {
  40860. name: "Macro+++",
  40861. height: math.unit(4, "km")
  40862. },
  40863. {
  40864. name: "Macro++++",
  40865. height: math.unit(48, "km")
  40866. },
  40867. {
  40868. name: "Macro+++++",
  40869. height: math.unit(4500, "km")
  40870. },
  40871. ]
  40872. ))
  40873. characterMakers.push(() => makeCharacter(
  40874. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40875. {
  40876. front: {
  40877. height: math.unit(5 + 5/12, "feet"),
  40878. name: "Front",
  40879. image: {
  40880. source: "./media/characters/alsnapz/front.svg",
  40881. extra: 1157/1065,
  40882. bottom: 42/1199
  40883. }
  40884. },
  40885. },
  40886. [
  40887. {
  40888. name: "Normal",
  40889. height: math.unit(5 + 5/12, "feet"),
  40890. default: true
  40891. },
  40892. ]
  40893. ))
  40894. characterMakers.push(() => makeCharacter(
  40895. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40896. {
  40897. side: {
  40898. height: math.unit(3.2, "earths"),
  40899. name: "Side",
  40900. image: {
  40901. source: "./media/characters/mag/side.svg",
  40902. extra: 1331/1008,
  40903. bottom: 52/1383
  40904. }
  40905. },
  40906. wing: {
  40907. height: math.unit(1.94, "earths"),
  40908. name: "Wing",
  40909. image: {
  40910. source: "./media/characters/mag/wing.svg"
  40911. }
  40912. },
  40913. dick: {
  40914. height: math.unit(1.8, "earths"),
  40915. name: "Dick",
  40916. image: {
  40917. source: "./media/characters/mag/dick.svg"
  40918. }
  40919. },
  40920. ass: {
  40921. height: math.unit(1.33, "earths"),
  40922. name: "Ass",
  40923. image: {
  40924. source: "./media/characters/mag/ass.svg"
  40925. }
  40926. },
  40927. head: {
  40928. height: math.unit(1.1, "earths"),
  40929. name: "Head",
  40930. image: {
  40931. source: "./media/characters/mag/head.svg"
  40932. }
  40933. },
  40934. maw: {
  40935. height: math.unit(1.62, "earths"),
  40936. name: "Maw",
  40937. image: {
  40938. source: "./media/characters/mag/maw.svg"
  40939. }
  40940. },
  40941. },
  40942. [
  40943. {
  40944. name: "Small",
  40945. height: math.unit(162, "feet")
  40946. },
  40947. {
  40948. name: "Normal",
  40949. height: math.unit(3.2, "earths"),
  40950. default: true
  40951. },
  40952. ]
  40953. ))
  40954. characterMakers.push(() => makeCharacter(
  40955. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40956. {
  40957. front: {
  40958. height: math.unit(512, "feet"),
  40959. weight: math.unit(63509, "tonnes"),
  40960. name: "Front",
  40961. image: {
  40962. source: "./media/characters/vorrel-harroc/front.svg",
  40963. extra: 1075/1063,
  40964. bottom: 62/1137
  40965. }
  40966. },
  40967. },
  40968. [
  40969. {
  40970. name: "Normal",
  40971. height: math.unit(10, "feet")
  40972. },
  40973. {
  40974. name: "Macro",
  40975. height: math.unit(512, "feet"),
  40976. default: true
  40977. },
  40978. {
  40979. name: "Megamacro",
  40980. height: math.unit(256, "miles")
  40981. },
  40982. {
  40983. name: "Gigamacro",
  40984. height: math.unit(4096, "miles")
  40985. },
  40986. ]
  40987. ))
  40988. characterMakers.push(() => makeCharacter(
  40989. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40990. {
  40991. side: {
  40992. height: math.unit(50, "feet"),
  40993. name: "Side",
  40994. image: {
  40995. source: "./media/characters/froimar/side.svg",
  40996. extra: 855/638,
  40997. bottom: 99/954
  40998. }
  40999. },
  41000. },
  41001. [
  41002. {
  41003. name: "Macro",
  41004. height: math.unit(50, "feet"),
  41005. default: true
  41006. },
  41007. ]
  41008. ))
  41009. characterMakers.push(() => makeCharacter(
  41010. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41011. {
  41012. front: {
  41013. height: math.unit(210, "miles"),
  41014. name: "Front",
  41015. image: {
  41016. source: "./media/characters/timothy/front.svg",
  41017. extra: 1007/943,
  41018. bottom: 62/1069
  41019. }
  41020. },
  41021. frontSkirt: {
  41022. height: math.unit(210, "miles"),
  41023. name: "Front (Skirt)",
  41024. image: {
  41025. source: "./media/characters/timothy/front-skirt.svg",
  41026. extra: 1007/943,
  41027. bottom: 62/1069
  41028. }
  41029. },
  41030. frontCoat: {
  41031. height: math.unit(210, "miles"),
  41032. name: "Front (Coat)",
  41033. image: {
  41034. source: "./media/characters/timothy/front-coat.svg",
  41035. extra: 1007/943,
  41036. bottom: 62/1069
  41037. }
  41038. },
  41039. },
  41040. [
  41041. {
  41042. name: "Macro",
  41043. height: math.unit(210, "miles"),
  41044. default: true
  41045. },
  41046. {
  41047. name: "Megamacro",
  41048. height: math.unit(210000, "miles")
  41049. },
  41050. ]
  41051. ))
  41052. characterMakers.push(() => makeCharacter(
  41053. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41054. {
  41055. front: {
  41056. height: math.unit(188, "feet"),
  41057. name: "Front",
  41058. image: {
  41059. source: "./media/characters/pyotr/front.svg",
  41060. extra: 1912/1826,
  41061. bottom: 18/1930
  41062. }
  41063. },
  41064. },
  41065. [
  41066. {
  41067. name: "Macro",
  41068. height: math.unit(188, "feet"),
  41069. default: true
  41070. },
  41071. {
  41072. name: "Megamacro",
  41073. height: math.unit(8, "miles")
  41074. },
  41075. ]
  41076. ))
  41077. characterMakers.push(() => makeCharacter(
  41078. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41079. {
  41080. side: {
  41081. height: math.unit(10, "feet"),
  41082. weight: math.unit(4500, "lb"),
  41083. name: "Side",
  41084. image: {
  41085. source: "./media/characters/ackart/side.svg",
  41086. extra: 1776/1668,
  41087. bottom: 116/1892
  41088. }
  41089. },
  41090. },
  41091. [
  41092. {
  41093. name: "Normal",
  41094. height: math.unit(10, "feet"),
  41095. default: true
  41096. },
  41097. ]
  41098. ))
  41099. characterMakers.push(() => makeCharacter(
  41100. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41101. {
  41102. side: {
  41103. height: math.unit(21, "feet"),
  41104. name: "Side",
  41105. image: {
  41106. source: "./media/characters/nolow/side.svg",
  41107. extra: 1484/1434,
  41108. bottom: 85/1569
  41109. }
  41110. },
  41111. sideErect: {
  41112. height: math.unit(21, "feet"),
  41113. name: "Side-erect",
  41114. image: {
  41115. source: "./media/characters/nolow/side-erect.svg",
  41116. extra: 1484/1434,
  41117. bottom: 85/1569
  41118. }
  41119. },
  41120. },
  41121. [
  41122. {
  41123. name: "Regular",
  41124. height: math.unit(12, "feet")
  41125. },
  41126. {
  41127. name: "Big Chee",
  41128. height: math.unit(21, "feet"),
  41129. default: true
  41130. },
  41131. ]
  41132. ))
  41133. characterMakers.push(() => makeCharacter(
  41134. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41135. {
  41136. front: {
  41137. height: math.unit(7, "feet"),
  41138. weight: math.unit(250, "lb"),
  41139. name: "Front",
  41140. image: {
  41141. source: "./media/characters/nines/front.svg",
  41142. extra: 1741/1607,
  41143. bottom: 41/1782
  41144. }
  41145. },
  41146. side: {
  41147. height: math.unit(7, "feet"),
  41148. weight: math.unit(250, "lb"),
  41149. name: "Side",
  41150. image: {
  41151. source: "./media/characters/nines/side.svg",
  41152. extra: 1854/1735,
  41153. bottom: 93/1947
  41154. }
  41155. },
  41156. back: {
  41157. height: math.unit(7, "feet"),
  41158. weight: math.unit(250, "lb"),
  41159. name: "Back",
  41160. image: {
  41161. source: "./media/characters/nines/back.svg",
  41162. extra: 1748/1615,
  41163. bottom: 20/1768
  41164. }
  41165. },
  41166. },
  41167. [
  41168. {
  41169. name: "Megamacro",
  41170. height: math.unit(99, "km"),
  41171. default: true
  41172. },
  41173. ]
  41174. ))
  41175. characterMakers.push(() => makeCharacter(
  41176. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41177. {
  41178. front: {
  41179. height: math.unit(5 + 10/12, "feet"),
  41180. weight: math.unit(210, "lb"),
  41181. name: "Front",
  41182. image: {
  41183. source: "./media/characters/zenith/front.svg",
  41184. extra: 1531/1452,
  41185. bottom: 198/1729
  41186. }
  41187. },
  41188. back: {
  41189. height: math.unit(5 + 10/12, "feet"),
  41190. weight: math.unit(210, "lb"),
  41191. name: "Back",
  41192. image: {
  41193. source: "./media/characters/zenith/back.svg",
  41194. extra: 1571/1487,
  41195. bottom: 75/1646
  41196. }
  41197. },
  41198. },
  41199. [
  41200. {
  41201. name: "Normal",
  41202. height: math.unit(5 + 10/12, "feet"),
  41203. default: true
  41204. }
  41205. ]
  41206. ))
  41207. characterMakers.push(() => makeCharacter(
  41208. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41209. {
  41210. front: {
  41211. height: math.unit(4, "feet"),
  41212. weight: math.unit(60, "lb"),
  41213. name: "Front",
  41214. image: {
  41215. source: "./media/characters/jasper/front.svg",
  41216. extra: 1450/1379,
  41217. bottom: 19/1469
  41218. }
  41219. },
  41220. },
  41221. [
  41222. {
  41223. name: "Normal",
  41224. height: math.unit(4, "feet"),
  41225. default: true
  41226. },
  41227. ]
  41228. ))
  41229. characterMakers.push(() => makeCharacter(
  41230. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41231. {
  41232. front: {
  41233. height: math.unit(6 + 5/12, "feet"),
  41234. weight: math.unit(290, "lb"),
  41235. name: "Front",
  41236. image: {
  41237. source: "./media/characters/tiberius-thyben/front.svg",
  41238. extra: 757/739,
  41239. bottom: 39/796
  41240. }
  41241. },
  41242. },
  41243. [
  41244. {
  41245. name: "Micro",
  41246. height: math.unit(1.5, "inches")
  41247. },
  41248. {
  41249. name: "Normal",
  41250. height: math.unit(6 + 5/12, "feet"),
  41251. default: true
  41252. },
  41253. {
  41254. name: "Macro",
  41255. height: math.unit(300, "feet")
  41256. },
  41257. ]
  41258. ))
  41259. characterMakers.push(() => makeCharacter(
  41260. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41261. {
  41262. front: {
  41263. height: math.unit(5 + 6/12, "feet"),
  41264. weight: math.unit(60, "kg"),
  41265. name: "Front",
  41266. image: {
  41267. source: "./media/characters/sabre/front.svg",
  41268. extra: 738/671,
  41269. bottom: 27/765
  41270. }
  41271. },
  41272. },
  41273. [
  41274. {
  41275. name: "Teeny",
  41276. height: math.unit(2, "inches")
  41277. },
  41278. {
  41279. name: "Smol",
  41280. height: math.unit(8, "inches")
  41281. },
  41282. {
  41283. name: "Normal",
  41284. height: math.unit(5 + 6/12, "feet"),
  41285. default: true
  41286. },
  41287. {
  41288. name: "Mini-Macro",
  41289. height: math.unit(15, "feet")
  41290. },
  41291. {
  41292. name: "Macro",
  41293. height: math.unit(50, "feet")
  41294. },
  41295. ]
  41296. ))
  41297. characterMakers.push(() => makeCharacter(
  41298. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41299. {
  41300. front: {
  41301. height: math.unit(6 + 4/12, "feet"),
  41302. weight: math.unit(170, "lb"),
  41303. name: "Front",
  41304. image: {
  41305. source: "./media/characters/charlie/front.svg",
  41306. extra: 1348/1228,
  41307. bottom: 15/1363
  41308. }
  41309. },
  41310. },
  41311. [
  41312. {
  41313. name: "Macro",
  41314. height: math.unit(1700, "meters"),
  41315. default: true
  41316. },
  41317. {
  41318. name: "MegaMacro",
  41319. height: math.unit(20400, "meters")
  41320. },
  41321. ]
  41322. ))
  41323. characterMakers.push(() => makeCharacter(
  41324. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41325. {
  41326. front: {
  41327. height: math.unit(6 + 3/12, "feet"),
  41328. weight: math.unit(185, "lb"),
  41329. name: "Front",
  41330. image: {
  41331. source: "./media/characters/susan-grant/front.svg",
  41332. extra: 1351/1327,
  41333. bottom: 26/1377
  41334. }
  41335. },
  41336. },
  41337. [
  41338. {
  41339. name: "Normal",
  41340. height: math.unit(6 + 3/12, "feet"),
  41341. default: true
  41342. },
  41343. {
  41344. name: "Macro",
  41345. height: math.unit(225, "feet")
  41346. },
  41347. {
  41348. name: "Macro+",
  41349. height: math.unit(900, "feet")
  41350. },
  41351. {
  41352. name: "MegaMacro",
  41353. height: math.unit(14400, "feet")
  41354. },
  41355. ]
  41356. ))
  41357. characterMakers.push(() => makeCharacter(
  41358. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41359. {
  41360. front: {
  41361. height: math.unit(5 + 4/12, "feet"),
  41362. weight: math.unit(110, "lb"),
  41363. name: "Front",
  41364. image: {
  41365. source: "./media/characters/axel-isanov/front.svg",
  41366. extra: 1096/1065,
  41367. bottom: 13/1109
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Normal",
  41374. height: math.unit(5 + 4/12, "feet"),
  41375. default: true
  41376. },
  41377. ]
  41378. ))
  41379. characterMakers.push(() => makeCharacter(
  41380. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41381. {
  41382. front: {
  41383. height: math.unit(9, "feet"),
  41384. weight: math.unit(467, "lb"),
  41385. name: "Front",
  41386. image: {
  41387. source: "./media/characters/necahual/front.svg",
  41388. extra: 920/873,
  41389. bottom: 26/946
  41390. }
  41391. },
  41392. back: {
  41393. height: math.unit(9, "feet"),
  41394. weight: math.unit(467, "lb"),
  41395. name: "Back",
  41396. image: {
  41397. source: "./media/characters/necahual/back.svg",
  41398. extra: 930/884,
  41399. bottom: 16/946
  41400. }
  41401. },
  41402. frontUnderwear: {
  41403. height: math.unit(9, "feet"),
  41404. weight: math.unit(467, "lb"),
  41405. name: "Front (Underwear)",
  41406. image: {
  41407. source: "./media/characters/necahual/front-underwear.svg",
  41408. extra: 920/873,
  41409. bottom: 26/946
  41410. }
  41411. },
  41412. frontDressed: {
  41413. height: math.unit(9, "feet"),
  41414. weight: math.unit(467, "lb"),
  41415. name: "Front (Dressed)",
  41416. image: {
  41417. source: "./media/characters/necahual/front-dressed.svg",
  41418. extra: 920/873,
  41419. bottom: 26/946
  41420. }
  41421. },
  41422. },
  41423. [
  41424. {
  41425. name: "Comprsesed",
  41426. height: math.unit(9, "feet")
  41427. },
  41428. {
  41429. name: "Natural",
  41430. height: math.unit(15, "feet"),
  41431. default: true
  41432. },
  41433. {
  41434. name: "Boosted",
  41435. height: math.unit(50, "feet")
  41436. },
  41437. {
  41438. name: "Boosted+",
  41439. height: math.unit(150, "feet")
  41440. },
  41441. {
  41442. name: "Max",
  41443. height: math.unit(500, "feet")
  41444. },
  41445. ]
  41446. ))
  41447. characterMakers.push(() => makeCharacter(
  41448. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41449. {
  41450. front: {
  41451. height: math.unit(22 + 1/12, "feet"),
  41452. weight: math.unit(3200, "lb"),
  41453. name: "Front",
  41454. image: {
  41455. source: "./media/characters/theo-acacia/front.svg",
  41456. extra: 1796/1741,
  41457. bottom: 83/1879
  41458. }
  41459. },
  41460. frontUnderwear: {
  41461. height: math.unit(22 + 1/12, "feet"),
  41462. weight: math.unit(3200, "lb"),
  41463. name: "Front (Underwear)",
  41464. image: {
  41465. source: "./media/characters/theo-acacia/front-underwear.svg",
  41466. extra: 1796/1741,
  41467. bottom: 83/1879
  41468. }
  41469. },
  41470. frontNude: {
  41471. height: math.unit(22 + 1/12, "feet"),
  41472. weight: math.unit(3200, "lb"),
  41473. name: "Front (Nude)",
  41474. image: {
  41475. source: "./media/characters/theo-acacia/front-nude.svg",
  41476. extra: 1796/1741,
  41477. bottom: 83/1879
  41478. }
  41479. },
  41480. },
  41481. [
  41482. {
  41483. name: "Normal",
  41484. height: math.unit(22 + 1/12, "feet"),
  41485. default: true
  41486. },
  41487. ]
  41488. ))
  41489. characterMakers.push(() => makeCharacter(
  41490. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41491. {
  41492. front: {
  41493. height: math.unit(20, "feet"),
  41494. name: "Front",
  41495. image: {
  41496. source: "./media/characters/astra/front.svg",
  41497. extra: 1850/1714,
  41498. bottom: 106/1956
  41499. }
  41500. },
  41501. frontUndressed: {
  41502. height: math.unit(20, "feet"),
  41503. name: "Front (Undressed)",
  41504. image: {
  41505. source: "./media/characters/astra/front-undressed.svg",
  41506. extra: 1926/1749,
  41507. bottom: 0/1926
  41508. }
  41509. },
  41510. hand: {
  41511. height: math.unit(1.53, "feet"),
  41512. name: "Hand",
  41513. image: {
  41514. source: "./media/characters/astra/hand.svg"
  41515. }
  41516. },
  41517. paw: {
  41518. height: math.unit(1.53, "feet"),
  41519. name: "Paw",
  41520. image: {
  41521. source: "./media/characters/astra/paw.svg"
  41522. }
  41523. },
  41524. },
  41525. [
  41526. {
  41527. name: "Smallest",
  41528. height: math.unit(20, "feet")
  41529. },
  41530. {
  41531. name: "Normal",
  41532. height: math.unit(1e9, "miles"),
  41533. default: true
  41534. },
  41535. {
  41536. name: "Larger",
  41537. height: math.unit(5, "multiverses")
  41538. },
  41539. {
  41540. name: "Largest",
  41541. height: math.unit(1e9, "multiverses")
  41542. },
  41543. ]
  41544. ))
  41545. characterMakers.push(() => makeCharacter(
  41546. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41547. {
  41548. front: {
  41549. height: math.unit(8, "feet"),
  41550. name: "Front",
  41551. image: {
  41552. source: "./media/characters/breanna/front.svg",
  41553. extra: 1912/1632,
  41554. bottom: 33/1945
  41555. }
  41556. },
  41557. },
  41558. [
  41559. {
  41560. name: "Smallest",
  41561. height: math.unit(8, "feet")
  41562. },
  41563. {
  41564. name: "Normal",
  41565. height: math.unit(1, "mile"),
  41566. default: true
  41567. },
  41568. {
  41569. name: "Maximum",
  41570. height: math.unit(1500000000000, "lightyears")
  41571. },
  41572. ]
  41573. ))
  41574. characterMakers.push(() => makeCharacter(
  41575. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41576. {
  41577. front: {
  41578. height: math.unit(5 + 11/12, "feet"),
  41579. weight: math.unit(155, "lb"),
  41580. name: "Front",
  41581. image: {
  41582. source: "./media/characters/cai/front.svg",
  41583. extra: 1823/1702,
  41584. bottom: 32/1855
  41585. }
  41586. },
  41587. back: {
  41588. height: math.unit(5 + 11/12, "feet"),
  41589. weight: math.unit(155, "lb"),
  41590. name: "Back",
  41591. image: {
  41592. source: "./media/characters/cai/back.svg",
  41593. extra: 1809/1708,
  41594. bottom: 31/1840
  41595. }
  41596. },
  41597. },
  41598. [
  41599. {
  41600. name: "Normal",
  41601. height: math.unit(5 + 11/12, "feet"),
  41602. default: true
  41603. },
  41604. {
  41605. name: "Big",
  41606. height: math.unit(15, "feet")
  41607. },
  41608. {
  41609. name: "Macro",
  41610. height: math.unit(200, "feet")
  41611. },
  41612. ]
  41613. ))
  41614. characterMakers.push(() => makeCharacter(
  41615. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41616. {
  41617. front: {
  41618. height: math.unit(5 + 6/12, "feet"),
  41619. weight: math.unit(160, "lb"),
  41620. name: "Front",
  41621. image: {
  41622. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41623. extra: 1227/1174,
  41624. bottom: 37/1264
  41625. }
  41626. },
  41627. },
  41628. [
  41629. {
  41630. name: "Macro",
  41631. height: math.unit(444, "meters"),
  41632. default: true
  41633. },
  41634. ]
  41635. ))
  41636. characterMakers.push(() => makeCharacter(
  41637. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41638. {
  41639. front: {
  41640. height: math.unit(18 + 7/12, "feet"),
  41641. name: "Front",
  41642. image: {
  41643. source: "./media/characters/rex/front.svg",
  41644. extra: 1941/1807,
  41645. bottom: 66/2007
  41646. }
  41647. },
  41648. back: {
  41649. height: math.unit(18 + 7/12, "feet"),
  41650. name: "Back",
  41651. image: {
  41652. source: "./media/characters/rex/back.svg",
  41653. extra: 1937/1822,
  41654. bottom: 42/1979
  41655. }
  41656. },
  41657. boot: {
  41658. height: math.unit(3.45, "feet"),
  41659. name: "Boot",
  41660. image: {
  41661. source: "./media/characters/rex/boot.svg"
  41662. }
  41663. },
  41664. paw: {
  41665. height: math.unit(4.17, "feet"),
  41666. name: "Paw",
  41667. image: {
  41668. source: "./media/characters/rex/paw.svg"
  41669. }
  41670. },
  41671. head: {
  41672. height: math.unit(6.728, "feet"),
  41673. name: "Head",
  41674. image: {
  41675. source: "./media/characters/rex/head.svg"
  41676. }
  41677. },
  41678. },
  41679. [
  41680. {
  41681. name: "Nano",
  41682. height: math.unit(18 + 7/12, "feet")
  41683. },
  41684. {
  41685. name: "Micro",
  41686. height: math.unit(1.5, "megameters")
  41687. },
  41688. {
  41689. name: "Normal",
  41690. height: math.unit(440, "megameters"),
  41691. default: true
  41692. },
  41693. {
  41694. name: "Macro",
  41695. height: math.unit(2.5, "gigameters")
  41696. },
  41697. {
  41698. name: "Gigamacro",
  41699. height: math.unit(2, "galaxies")
  41700. },
  41701. ]
  41702. ))
  41703. characterMakers.push(() => makeCharacter(
  41704. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41705. {
  41706. side: {
  41707. height: math.unit(32, "feet"),
  41708. weight: math.unit(250000, "lb"),
  41709. name: "Side",
  41710. image: {
  41711. source: "./media/characters/silverwing/side.svg",
  41712. extra: 1100/1019,
  41713. bottom: 204/1304
  41714. }
  41715. },
  41716. },
  41717. [
  41718. {
  41719. name: "Normal",
  41720. height: math.unit(32, "feet"),
  41721. default: true
  41722. },
  41723. ]
  41724. ))
  41725. characterMakers.push(() => makeCharacter(
  41726. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41727. {
  41728. front: {
  41729. height: math.unit(6 + 6/12, "feet"),
  41730. weight: math.unit(350, "lb"),
  41731. name: "Front",
  41732. image: {
  41733. source: "./media/characters/tristan-hawthorne/front.svg",
  41734. extra: 1159/1124,
  41735. bottom: 37/1196
  41736. }
  41737. },
  41738. },
  41739. [
  41740. {
  41741. name: "Normal",
  41742. height: math.unit(6 + 6/12, "feet"),
  41743. default: true
  41744. },
  41745. ]
  41746. ))
  41747. characterMakers.push(() => makeCharacter(
  41748. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41749. {
  41750. front: {
  41751. height: math.unit(5 + 11/12, "feet"),
  41752. weight: math.unit(190, "lb"),
  41753. name: "Front",
  41754. image: {
  41755. source: "./media/characters/mizu/front.svg",
  41756. extra: 1988/1788,
  41757. bottom: 14/2002
  41758. }
  41759. },
  41760. },
  41761. [
  41762. {
  41763. name: "Normal",
  41764. height: math.unit(5 + 11/12, "feet"),
  41765. default: true
  41766. },
  41767. ]
  41768. ))
  41769. characterMakers.push(() => makeCharacter(
  41770. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41771. {
  41772. front: {
  41773. height: math.unit(1.7, "feet"),
  41774. weight: math.unit(50, "lb"),
  41775. name: "Front",
  41776. image: {
  41777. source: "./media/characters/dechroma/front.svg",
  41778. extra: 1095/859,
  41779. bottom: 64/1159
  41780. }
  41781. },
  41782. },
  41783. [
  41784. {
  41785. name: "Normal",
  41786. height: math.unit(1.7, "feet"),
  41787. default: true
  41788. },
  41789. ]
  41790. ))
  41791. characterMakers.push(() => makeCharacter(
  41792. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41793. {
  41794. side: {
  41795. height: math.unit(30, "feet"),
  41796. name: "Side",
  41797. image: {
  41798. source: "./media/characters/veluren-thanazel/side.svg",
  41799. extra: 1611/633,
  41800. bottom: 118/1729
  41801. }
  41802. },
  41803. front: {
  41804. height: math.unit(30, "feet"),
  41805. name: "Front",
  41806. image: {
  41807. source: "./media/characters/veluren-thanazel/front.svg",
  41808. extra: 1486/636,
  41809. bottom: 238/1724
  41810. }
  41811. },
  41812. head: {
  41813. height: math.unit(21.4, "feet"),
  41814. name: "Head",
  41815. image: {
  41816. source: "./media/characters/veluren-thanazel/head.svg"
  41817. }
  41818. },
  41819. genitals: {
  41820. height: math.unit(19.4, "feet"),
  41821. name: "Genitals",
  41822. image: {
  41823. source: "./media/characters/veluren-thanazel/genitals.svg"
  41824. }
  41825. },
  41826. },
  41827. [
  41828. {
  41829. name: "Social",
  41830. height: math.unit(6, "feet")
  41831. },
  41832. {
  41833. name: "Play",
  41834. height: math.unit(12, "feet")
  41835. },
  41836. {
  41837. name: "True",
  41838. height: math.unit(30, "feet"),
  41839. default: true
  41840. },
  41841. ]
  41842. ))
  41843. characterMakers.push(() => makeCharacter(
  41844. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41845. {
  41846. front: {
  41847. height: math.unit(7 + 6/12, "feet"),
  41848. weight: math.unit(500, "kg"),
  41849. name: "Front",
  41850. image: {
  41851. source: "./media/characters/arcturas/front.svg",
  41852. extra: 1700/1500,
  41853. bottom: 145/1845
  41854. }
  41855. },
  41856. },
  41857. [
  41858. {
  41859. name: "Normal",
  41860. height: math.unit(7 + 6/12, "feet"),
  41861. default: true
  41862. },
  41863. ]
  41864. ))
  41865. characterMakers.push(() => makeCharacter(
  41866. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41867. {
  41868. side: {
  41869. height: math.unit(6, "feet"),
  41870. weight: math.unit(2, "tons"),
  41871. name: "Side",
  41872. image: {
  41873. source: "./media/characters/vitaen/side.svg",
  41874. extra: 1157/617,
  41875. bottom: 122/1279
  41876. }
  41877. },
  41878. },
  41879. [
  41880. {
  41881. name: "Normal",
  41882. height: math.unit(6, "feet"),
  41883. default: true
  41884. },
  41885. ]
  41886. ))
  41887. characterMakers.push(() => makeCharacter(
  41888. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41889. {
  41890. front: {
  41891. height: math.unit(19, "feet"),
  41892. name: "Front",
  41893. image: {
  41894. source: "./media/characters/fia-dreamweaver/front.svg",
  41895. extra: 1630/1504,
  41896. bottom: 25/1655
  41897. }
  41898. },
  41899. },
  41900. [
  41901. {
  41902. name: "Normal",
  41903. height: math.unit(19, "feet"),
  41904. default: true
  41905. },
  41906. ]
  41907. ))
  41908. characterMakers.push(() => makeCharacter(
  41909. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41910. {
  41911. front: {
  41912. height: math.unit(5 + 4/12, "feet"),
  41913. name: "Front",
  41914. image: {
  41915. source: "./media/characters/artan/front.svg",
  41916. extra: 1618/1535,
  41917. bottom: 46/1664
  41918. }
  41919. },
  41920. back: {
  41921. height: math.unit(5 + 4/12, "feet"),
  41922. name: "Back",
  41923. image: {
  41924. source: "./media/characters/artan/back.svg",
  41925. extra: 1618/1543,
  41926. bottom: 31/1649
  41927. }
  41928. },
  41929. },
  41930. [
  41931. {
  41932. name: "Normal",
  41933. height: math.unit(5 + 4/12, "feet"),
  41934. default: true
  41935. },
  41936. ]
  41937. ))
  41938. characterMakers.push(() => makeCharacter(
  41939. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41940. {
  41941. side: {
  41942. height: math.unit(182, "cm"),
  41943. weight: math.unit(1000, "lb"),
  41944. name: "Side",
  41945. image: {
  41946. source: "./media/characters/silver-dragon/side.svg",
  41947. extra: 710/287,
  41948. bottom: 88/798
  41949. }
  41950. },
  41951. },
  41952. [
  41953. {
  41954. name: "Normal",
  41955. height: math.unit(182, "cm"),
  41956. default: true
  41957. },
  41958. ]
  41959. ))
  41960. characterMakers.push(() => makeCharacter(
  41961. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41962. {
  41963. side: {
  41964. height: math.unit(6 + 6/12, "feet"),
  41965. weight: math.unit(1.5, "tons"),
  41966. name: "Side",
  41967. image: {
  41968. source: "./media/characters/zephyr/side.svg",
  41969. extra: 1433/586,
  41970. bottom: 109/1542
  41971. }
  41972. },
  41973. },
  41974. [
  41975. {
  41976. name: "Normal",
  41977. height: math.unit(6 + 6/12, "feet"),
  41978. default: true
  41979. },
  41980. ]
  41981. ))
  41982. characterMakers.push(() => makeCharacter(
  41983. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41984. {
  41985. side: {
  41986. height: math.unit(1, "feet"),
  41987. name: "Side",
  41988. image: {
  41989. source: "./media/characters/vixye/side.svg",
  41990. extra: 632/541,
  41991. bottom: 0/632
  41992. }
  41993. },
  41994. },
  41995. [
  41996. {
  41997. name: "Normal",
  41998. height: math.unit(1, "feet"),
  41999. default: true
  42000. },
  42001. {
  42002. name: "True",
  42003. height: math.unit(1e15, "multiverses")
  42004. },
  42005. ]
  42006. ))
  42007. characterMakers.push(() => makeCharacter(
  42008. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42009. {
  42010. front: {
  42011. height: math.unit(8 + 2/12, "feet"),
  42012. weight: math.unit(650, "lb"),
  42013. name: "Front",
  42014. image: {
  42015. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42016. extra: 1174/1137,
  42017. bottom: 82/1256
  42018. }
  42019. },
  42020. back: {
  42021. height: math.unit(8 + 2/12, "feet"),
  42022. weight: math.unit(650, "lb"),
  42023. name: "Back",
  42024. image: {
  42025. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42026. extra: 1204/1157,
  42027. bottom: 46/1250
  42028. }
  42029. },
  42030. },
  42031. [
  42032. {
  42033. name: "Wildform",
  42034. height: math.unit(8 + 2/12, "feet"),
  42035. default: true
  42036. },
  42037. ]
  42038. ))
  42039. characterMakers.push(() => makeCharacter(
  42040. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42041. {
  42042. front: {
  42043. height: math.unit(18, "feet"),
  42044. name: "Front",
  42045. image: {
  42046. source: "./media/characters/cyphin/front.svg",
  42047. extra: 970/886,
  42048. bottom: 42/1012
  42049. }
  42050. },
  42051. back: {
  42052. height: math.unit(18, "feet"),
  42053. name: "Back",
  42054. image: {
  42055. source: "./media/characters/cyphin/back.svg",
  42056. extra: 1009/894,
  42057. bottom: 24/1033
  42058. }
  42059. },
  42060. head: {
  42061. height: math.unit(5.05, "feet"),
  42062. name: "Head",
  42063. image: {
  42064. source: "./media/characters/cyphin/head.svg"
  42065. }
  42066. },
  42067. tailbud: {
  42068. height: math.unit(5, "feet"),
  42069. name: "Tailbud",
  42070. image: {
  42071. source: "./media/characters/cyphin/tailbud.svg"
  42072. }
  42073. },
  42074. },
  42075. [
  42076. ]
  42077. ))
  42078. characterMakers.push(() => makeCharacter(
  42079. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42080. {
  42081. side: {
  42082. height: math.unit(10, "feet"),
  42083. weight: math.unit(6, "tons"),
  42084. name: "Side",
  42085. image: {
  42086. source: "./media/characters/raijin/side.svg",
  42087. extra: 1529/613,
  42088. bottom: 337/1866
  42089. }
  42090. },
  42091. },
  42092. [
  42093. {
  42094. name: "Normal",
  42095. height: math.unit(10, "feet"),
  42096. default: true
  42097. },
  42098. ]
  42099. ))
  42100. characterMakers.push(() => makeCharacter(
  42101. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42102. {
  42103. side: {
  42104. height: math.unit(9, "feet"),
  42105. name: "Side",
  42106. image: {
  42107. source: "./media/characters/nilghais/side.svg",
  42108. extra: 1047/744,
  42109. bottom: 91/1138
  42110. }
  42111. },
  42112. head: {
  42113. height: math.unit(3.14, "feet"),
  42114. name: "Head",
  42115. image: {
  42116. source: "./media/characters/nilghais/head.svg"
  42117. }
  42118. },
  42119. mouth: {
  42120. height: math.unit(4.6, "feet"),
  42121. name: "Mouth",
  42122. image: {
  42123. source: "./media/characters/nilghais/mouth.svg"
  42124. }
  42125. },
  42126. wings: {
  42127. height: math.unit(24, "feet"),
  42128. name: "Wings",
  42129. image: {
  42130. source: "./media/characters/nilghais/wings.svg"
  42131. }
  42132. },
  42133. ass: {
  42134. height: math.unit(6.12, "feet"),
  42135. name: "Ass",
  42136. image: {
  42137. source: "./media/characters/nilghais/ass.svg"
  42138. }
  42139. },
  42140. },
  42141. [
  42142. {
  42143. name: "Normal",
  42144. height: math.unit(9, "feet"),
  42145. default: true
  42146. },
  42147. ]
  42148. ))
  42149. characterMakers.push(() => makeCharacter(
  42150. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42151. {
  42152. regular: {
  42153. height: math.unit(16 + 2/12, "feet"),
  42154. weight: math.unit(2300, "lb"),
  42155. name: "Regular",
  42156. image: {
  42157. source: "./media/characters/zolgar/regular.svg",
  42158. extra: 1246/1004,
  42159. bottom: 124/1370
  42160. }
  42161. },
  42162. boxers: {
  42163. height: math.unit(16 + 2/12, "feet"),
  42164. weight: math.unit(2300, "lb"),
  42165. name: "Boxers",
  42166. image: {
  42167. source: "./media/characters/zolgar/boxers.svg",
  42168. extra: 1246/1004,
  42169. bottom: 124/1370
  42170. }
  42171. },
  42172. armored: {
  42173. height: math.unit(16 + 2/12, "feet"),
  42174. weight: math.unit(2300, "lb"),
  42175. name: "Armored",
  42176. image: {
  42177. source: "./media/characters/zolgar/armored.svg",
  42178. extra: 1246/1004,
  42179. bottom: 124/1370
  42180. }
  42181. },
  42182. goth: {
  42183. height: math.unit(16 + 2/12, "feet"),
  42184. weight: math.unit(2300, "lb"),
  42185. name: "Goth",
  42186. image: {
  42187. source: "./media/characters/zolgar/goth.svg",
  42188. extra: 1246/1004,
  42189. bottom: 124/1370
  42190. }
  42191. },
  42192. },
  42193. [
  42194. {
  42195. name: "Shrunken Down",
  42196. height: math.unit(9 + 2/12, "feet")
  42197. },
  42198. {
  42199. name: "Normal",
  42200. height: math.unit(16 + 2/12, "feet"),
  42201. default: true
  42202. },
  42203. ]
  42204. ))
  42205. characterMakers.push(() => makeCharacter(
  42206. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42207. {
  42208. front: {
  42209. height: math.unit(6, "feet"),
  42210. weight: math.unit(168, "lb"),
  42211. name: "Front",
  42212. image: {
  42213. source: "./media/characters/luca/front.svg",
  42214. extra: 841/667,
  42215. bottom: 102/943
  42216. }
  42217. },
  42218. },
  42219. [
  42220. {
  42221. name: "Normal",
  42222. height: math.unit(6, "feet"),
  42223. default: true
  42224. },
  42225. ]
  42226. ))
  42227. characterMakers.push(() => makeCharacter(
  42228. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42229. {
  42230. side: {
  42231. height: math.unit(7 + 3/12, "feet"),
  42232. weight: math.unit(312, "lb"),
  42233. name: "Side",
  42234. image: {
  42235. source: "./media/characters/zezo/side.svg",
  42236. extra: 1192/1067,
  42237. bottom: 63/1255
  42238. }
  42239. },
  42240. },
  42241. [
  42242. {
  42243. name: "Normal",
  42244. height: math.unit(7 + 3/12, "feet"),
  42245. default: true
  42246. },
  42247. ]
  42248. ))
  42249. characterMakers.push(() => makeCharacter(
  42250. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42251. {
  42252. front: {
  42253. height: math.unit(5 + 5/12, "feet"),
  42254. weight: math.unit(170, "lb"),
  42255. name: "Front",
  42256. image: {
  42257. source: "./media/characters/mayso/front.svg",
  42258. extra: 1215/1108,
  42259. bottom: 16/1231
  42260. }
  42261. },
  42262. },
  42263. [
  42264. {
  42265. name: "Normal",
  42266. height: math.unit(5 + 5/12, "feet"),
  42267. default: true
  42268. },
  42269. ]
  42270. ))
  42271. characterMakers.push(() => makeCharacter(
  42272. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42273. {
  42274. front: {
  42275. height: math.unit(4 + 3/12, "feet"),
  42276. weight: math.unit(80, "lb"),
  42277. name: "Front",
  42278. image: {
  42279. source: "./media/characters/hess/front.svg",
  42280. extra: 1200/1123,
  42281. bottom: 16/1216
  42282. }
  42283. },
  42284. },
  42285. [
  42286. {
  42287. name: "Normal",
  42288. height: math.unit(4 + 3/12, "feet"),
  42289. default: true
  42290. },
  42291. ]
  42292. ))
  42293. characterMakers.push(() => makeCharacter(
  42294. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42295. {
  42296. front: {
  42297. height: math.unit(1.9, "meters"),
  42298. name: "Front",
  42299. image: {
  42300. source: "./media/characters/ashgar/front.svg",
  42301. extra: 1177/1146,
  42302. bottom: 99/1276
  42303. }
  42304. },
  42305. back: {
  42306. height: math.unit(1.9, "meters"),
  42307. name: "Back",
  42308. image: {
  42309. source: "./media/characters/ashgar/back.svg",
  42310. extra: 1201/1183,
  42311. bottom: 53/1254
  42312. }
  42313. },
  42314. feral: {
  42315. height: math.unit(1.4, "meters"),
  42316. name: "Feral",
  42317. image: {
  42318. source: "./media/characters/ashgar/feral.svg",
  42319. extra: 370/345,
  42320. bottom: 45/415
  42321. }
  42322. },
  42323. },
  42324. [
  42325. {
  42326. name: "Normal",
  42327. height: math.unit(1.9, "meters"),
  42328. default: true
  42329. },
  42330. ]
  42331. ))
  42332. characterMakers.push(() => makeCharacter(
  42333. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42334. {
  42335. regular: {
  42336. height: math.unit(6, "feet"),
  42337. weight: math.unit(220, "lb"),
  42338. name: "Regular",
  42339. image: {
  42340. source: "./media/characters/phillip/regular.svg",
  42341. extra: 1373/1277,
  42342. bottom: 75/1448
  42343. }
  42344. },
  42345. dressed: {
  42346. height: math.unit(6, "feet"),
  42347. weight: math.unit(220, "lb"),
  42348. name: "Dressed",
  42349. image: {
  42350. source: "./media/characters/phillip/dressed.svg",
  42351. extra: 1373/1277,
  42352. bottom: 75/1448
  42353. }
  42354. },
  42355. paw: {
  42356. height: math.unit(1.44, "feet"),
  42357. name: "Paw",
  42358. image: {
  42359. source: "./media/characters/phillip/paw.svg"
  42360. }
  42361. },
  42362. },
  42363. [
  42364. {
  42365. name: "Normal",
  42366. height: math.unit(6, "feet"),
  42367. default: true
  42368. },
  42369. ]
  42370. ))
  42371. characterMakers.push(() => makeCharacter(
  42372. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42373. {
  42374. side: {
  42375. height: math.unit(42, "feet"),
  42376. name: "Side",
  42377. image: {
  42378. source: "./media/characters/uvula/side.svg",
  42379. extra: 683/586,
  42380. bottom: 60/743
  42381. }
  42382. },
  42383. front: {
  42384. height: math.unit(42, "feet"),
  42385. name: "Front",
  42386. image: {
  42387. source: "./media/characters/uvula/front.svg",
  42388. extra: 705/613,
  42389. bottom: 54/759
  42390. }
  42391. },
  42392. maw: {
  42393. height: math.unit(23.5, "feet"),
  42394. name: "Maw",
  42395. image: {
  42396. source: "./media/characters/uvula/maw.svg"
  42397. }
  42398. },
  42399. },
  42400. [
  42401. {
  42402. name: "Original Size",
  42403. height: math.unit(14, "inches")
  42404. },
  42405. {
  42406. name: "Human Size",
  42407. height: math.unit(6, "feet")
  42408. },
  42409. {
  42410. name: "Big",
  42411. height: math.unit(42, "feet"),
  42412. default: true
  42413. },
  42414. {
  42415. name: "Bigger",
  42416. height: math.unit(100, "feet")
  42417. },
  42418. ]
  42419. ))
  42420. characterMakers.push(() => makeCharacter(
  42421. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42422. {
  42423. front: {
  42424. height: math.unit(5 + 11/12, "feet"),
  42425. name: "Front",
  42426. image: {
  42427. source: "./media/characters/lannah/front.svg",
  42428. extra: 1208/1113,
  42429. bottom: 97/1305
  42430. }
  42431. },
  42432. },
  42433. [
  42434. {
  42435. name: "Normal",
  42436. height: math.unit(5 + 11/12, "feet"),
  42437. default: true
  42438. },
  42439. ]
  42440. ))
  42441. characterMakers.push(() => makeCharacter(
  42442. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42443. {
  42444. front: {
  42445. height: math.unit(6 + 3/12, "feet"),
  42446. weight: math.unit(3.5, "tons"),
  42447. name: "Front",
  42448. image: {
  42449. source: "./media/characters/emberflame/front.svg",
  42450. extra: 1198/672,
  42451. bottom: 82/1280
  42452. }
  42453. },
  42454. side: {
  42455. height: math.unit(6 + 3/12, "feet"),
  42456. weight: math.unit(3.5, "tons"),
  42457. name: "Side",
  42458. image: {
  42459. source: "./media/characters/emberflame/side.svg",
  42460. extra: 938/527,
  42461. bottom: 56/994
  42462. }
  42463. },
  42464. },
  42465. [
  42466. {
  42467. name: "Normal",
  42468. height: math.unit(6 + 3/12, "feet"),
  42469. default: true
  42470. },
  42471. ]
  42472. ))
  42473. characterMakers.push(() => makeCharacter(
  42474. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42475. {
  42476. side: {
  42477. height: math.unit(17.5, "feet"),
  42478. weight: math.unit(35, "tons"),
  42479. name: "Side",
  42480. image: {
  42481. source: "./media/characters/sophie-ambrose/side.svg",
  42482. extra: 1573/1242,
  42483. bottom: 71/1644
  42484. }
  42485. },
  42486. maw: {
  42487. height: math.unit(7.4, "feet"),
  42488. name: "Maw",
  42489. image: {
  42490. source: "./media/characters/sophie-ambrose/maw.svg"
  42491. }
  42492. },
  42493. },
  42494. [
  42495. {
  42496. name: "Normal",
  42497. height: math.unit(17.5, "feet"),
  42498. default: true
  42499. },
  42500. ]
  42501. ))
  42502. characterMakers.push(() => makeCharacter(
  42503. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42504. {
  42505. front: {
  42506. height: math.unit(280, "feet"),
  42507. weight: math.unit(550, "tons"),
  42508. name: "Front",
  42509. image: {
  42510. source: "./media/characters/king-mugi/front.svg",
  42511. extra: 1102/947,
  42512. bottom: 104/1206
  42513. }
  42514. },
  42515. },
  42516. [
  42517. {
  42518. name: "King Mugi",
  42519. height: math.unit(280, "feet"),
  42520. default: true
  42521. },
  42522. ]
  42523. ))
  42524. characterMakers.push(() => makeCharacter(
  42525. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42526. {
  42527. front: {
  42528. height: math.unit(64, "meters"),
  42529. name: "Front",
  42530. image: {
  42531. source: "./media/characters/nova-fox/front.svg",
  42532. extra: 1310/1246,
  42533. bottom: 65/1375
  42534. }
  42535. },
  42536. },
  42537. [
  42538. {
  42539. name: "Macro",
  42540. height: math.unit(64, "meters"),
  42541. default: true
  42542. },
  42543. ]
  42544. ))
  42545. characterMakers.push(() => makeCharacter(
  42546. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42547. {
  42548. front: {
  42549. height: math.unit(6 + 3/12, "feet"),
  42550. weight: math.unit(170, "lb"),
  42551. name: "Front",
  42552. image: {
  42553. source: "./media/characters/sam-bat/front.svg",
  42554. extra: 1601/1411,
  42555. bottom: 125/1726
  42556. }
  42557. },
  42558. back: {
  42559. height: math.unit(6 + 3/12, "feet"),
  42560. weight: math.unit(170, "lb"),
  42561. name: "Back",
  42562. image: {
  42563. source: "./media/characters/sam-bat/back.svg",
  42564. extra: 1577/1405,
  42565. bottom: 58/1635
  42566. }
  42567. },
  42568. },
  42569. [
  42570. {
  42571. name: "Normal",
  42572. height: math.unit(6 + 3/12, "feet"),
  42573. default: true
  42574. },
  42575. ]
  42576. ))
  42577. characterMakers.push(() => makeCharacter(
  42578. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42579. {
  42580. front: {
  42581. height: math.unit(59, "feet"),
  42582. weight: math.unit(40000, "lb"),
  42583. name: "Front",
  42584. image: {
  42585. source: "./media/characters/inari/front.svg",
  42586. extra: 1884/1350,
  42587. bottom: 95/1979
  42588. }
  42589. },
  42590. },
  42591. [
  42592. {
  42593. name: "Gigantamax",
  42594. height: math.unit(59, "feet"),
  42595. default: true
  42596. },
  42597. ]
  42598. ))
  42599. characterMakers.push(() => makeCharacter(
  42600. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42601. {
  42602. front: {
  42603. height: math.unit(5 + 8/12, "feet"),
  42604. name: "Front",
  42605. image: {
  42606. source: "./media/characters/elizabeth/front.svg",
  42607. extra: 1395/1298,
  42608. bottom: 54/1449
  42609. }
  42610. },
  42611. mouth: {
  42612. height: math.unit(1.97, "feet"),
  42613. name: "Mouth",
  42614. image: {
  42615. source: "./media/characters/elizabeth/mouth.svg"
  42616. }
  42617. },
  42618. foot: {
  42619. height: math.unit(1.17, "feet"),
  42620. name: "Foot",
  42621. image: {
  42622. source: "./media/characters/elizabeth/foot.svg"
  42623. }
  42624. },
  42625. },
  42626. [
  42627. {
  42628. name: "Normal",
  42629. height: math.unit(5 + 8/12, "feet"),
  42630. default: true
  42631. },
  42632. {
  42633. name: "Minimacro",
  42634. height: math.unit(18, "feet")
  42635. },
  42636. {
  42637. name: "Macro",
  42638. height: math.unit(180, "feet")
  42639. },
  42640. ]
  42641. ))
  42642. characterMakers.push(() => makeCharacter(
  42643. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42644. {
  42645. front: {
  42646. height: math.unit(5 + 2/12, "feet"),
  42647. name: "Front",
  42648. image: {
  42649. source: "./media/characters/october-gossamer/front.svg",
  42650. extra: 505/454,
  42651. bottom: 7/512
  42652. }
  42653. },
  42654. back: {
  42655. height: math.unit(5 + 2/12, "feet"),
  42656. name: "Back",
  42657. image: {
  42658. source: "./media/characters/october-gossamer/back.svg",
  42659. extra: 501/454,
  42660. bottom: 11/512
  42661. }
  42662. },
  42663. },
  42664. [
  42665. {
  42666. name: "Normal",
  42667. height: math.unit(5 + 2/12, "feet"),
  42668. default: true
  42669. },
  42670. ]
  42671. ))
  42672. characterMakers.push(() => makeCharacter(
  42673. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42674. {
  42675. front: {
  42676. height: math.unit(5, "feet"),
  42677. name: "Front",
  42678. image: {
  42679. source: "./media/characters/epiglottis/front.svg",
  42680. extra: 923/849,
  42681. bottom: 17/940
  42682. }
  42683. },
  42684. },
  42685. [
  42686. {
  42687. name: "Original Size",
  42688. height: math.unit(10, "inches")
  42689. },
  42690. {
  42691. name: "Human Size",
  42692. height: math.unit(5, "feet"),
  42693. default: true
  42694. },
  42695. {
  42696. name: "Big",
  42697. height: math.unit(25, "feet")
  42698. },
  42699. {
  42700. name: "Bigger",
  42701. height: math.unit(50, "feet")
  42702. },
  42703. {
  42704. name: "oh lawd",
  42705. height: math.unit(75, "feet")
  42706. },
  42707. ]
  42708. ))
  42709. characterMakers.push(() => makeCharacter(
  42710. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42711. {
  42712. front: {
  42713. height: math.unit(2 + 4/12, "feet"),
  42714. weight: math.unit(60, "lb"),
  42715. name: "Front",
  42716. image: {
  42717. source: "./media/characters/lerm/front.svg",
  42718. extra: 796/790,
  42719. bottom: 79/875
  42720. }
  42721. },
  42722. },
  42723. [
  42724. {
  42725. name: "Normal",
  42726. height: math.unit(2 + 4/12, "feet"),
  42727. default: true
  42728. },
  42729. ]
  42730. ))
  42731. characterMakers.push(() => makeCharacter(
  42732. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42733. {
  42734. front: {
  42735. height: math.unit(5.5, "feet"),
  42736. weight: math.unit(130, "lb"),
  42737. name: "Front",
  42738. image: {
  42739. source: "./media/characters/xena-nebadon/front.svg",
  42740. extra: 1828/1730,
  42741. bottom: 79/1907
  42742. }
  42743. },
  42744. },
  42745. [
  42746. {
  42747. name: "Tiny Puppy",
  42748. height: math.unit(3, "inches")
  42749. },
  42750. {
  42751. name: "Normal",
  42752. height: math.unit(5.5, "feet"),
  42753. default: true
  42754. },
  42755. {
  42756. name: "Lotta Lady",
  42757. height: math.unit(12, "feet")
  42758. },
  42759. {
  42760. name: "Pretty Big",
  42761. height: math.unit(100, "feet")
  42762. },
  42763. {
  42764. name: "Big",
  42765. height: math.unit(500, "feet")
  42766. },
  42767. {
  42768. name: "Skyscraper Toys",
  42769. height: math.unit(2500, "feet")
  42770. },
  42771. {
  42772. name: "Plane Catcher",
  42773. height: math.unit(8, "miles")
  42774. },
  42775. {
  42776. name: "Planet Toys",
  42777. height: math.unit(15, "earths")
  42778. },
  42779. {
  42780. name: "Stardust",
  42781. height: math.unit(0.25, "galaxies")
  42782. },
  42783. {
  42784. name: "Snacks",
  42785. height: math.unit(70, "universes")
  42786. },
  42787. ]
  42788. ))
  42789. characterMakers.push(() => makeCharacter(
  42790. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42791. {
  42792. front: {
  42793. height: math.unit(1.6, "meters"),
  42794. weight: math.unit(60, "kg"),
  42795. name: "Front",
  42796. image: {
  42797. source: "./media/characters/bounty/front.svg",
  42798. extra: 1426/1308,
  42799. bottom: 15/1441
  42800. }
  42801. },
  42802. back: {
  42803. height: math.unit(1.6, "meters"),
  42804. weight: math.unit(60, "kg"),
  42805. name: "Back",
  42806. image: {
  42807. source: "./media/characters/bounty/back.svg",
  42808. extra: 1417/1307,
  42809. bottom: 8/1425
  42810. }
  42811. },
  42812. },
  42813. [
  42814. {
  42815. name: "Normal",
  42816. height: math.unit(1.6, "meters"),
  42817. default: true
  42818. },
  42819. {
  42820. name: "Macro",
  42821. height: math.unit(300, "meters")
  42822. },
  42823. ]
  42824. ))
  42825. characterMakers.push(() => makeCharacter(
  42826. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42827. {
  42828. front: {
  42829. height: math.unit(2 + 8/12, "feet"),
  42830. weight: math.unit(15, "lb"),
  42831. name: "Front",
  42832. image: {
  42833. source: "./media/characters/mochi/front.svg",
  42834. extra: 1022/852,
  42835. bottom: 435/1457
  42836. }
  42837. },
  42838. back: {
  42839. height: math.unit(2 + 8/12, "feet"),
  42840. weight: math.unit(15, "lb"),
  42841. name: "Back",
  42842. image: {
  42843. source: "./media/characters/mochi/back.svg",
  42844. extra: 1335/1119,
  42845. bottom: 39/1374
  42846. }
  42847. },
  42848. bird: {
  42849. height: math.unit(2 + 8/12, "feet"),
  42850. weight: math.unit(15, "lb"),
  42851. name: "Bird",
  42852. image: {
  42853. source: "./media/characters/mochi/bird.svg",
  42854. extra: 1251/1113,
  42855. bottom: 178/1429
  42856. }
  42857. },
  42858. kaiju: {
  42859. height: math.unit(154, "feet"),
  42860. weight: math.unit(1e7, "lb"),
  42861. name: "Kaiju",
  42862. image: {
  42863. source: "./media/characters/mochi/kaiju.svg",
  42864. extra: 460/324,
  42865. bottom: 40/500
  42866. }
  42867. },
  42868. head: {
  42869. height: math.unit(1.21, "feet"),
  42870. name: "Head",
  42871. image: {
  42872. source: "./media/characters/mochi/head.svg"
  42873. }
  42874. },
  42875. alternateTail: {
  42876. height: math.unit(2 + 8/12, "feet"),
  42877. weight: math.unit(45, "lb"),
  42878. name: "Alternate Tail",
  42879. image: {
  42880. source: "./media/characters/mochi/alternate-tail.svg",
  42881. extra: 139/76,
  42882. bottom: 45/184
  42883. }
  42884. },
  42885. },
  42886. [
  42887. {
  42888. name: "Micro",
  42889. height: math.unit(2, "inches")
  42890. },
  42891. {
  42892. name: "Normal",
  42893. height: math.unit(2 + 8/12, "feet"),
  42894. default: true
  42895. },
  42896. {
  42897. name: "Macro",
  42898. height: math.unit(106, "feet")
  42899. },
  42900. ]
  42901. ))
  42902. characterMakers.push(() => makeCharacter(
  42903. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42904. {
  42905. front: {
  42906. height: math.unit(5.67, "feet"),
  42907. weight: math.unit(135, "lb"),
  42908. name: "Front",
  42909. image: {
  42910. source: "./media/characters/sarel/front.svg",
  42911. extra: 865/788,
  42912. bottom: 97/962
  42913. }
  42914. },
  42915. back: {
  42916. height: math.unit(5.67, "feet"),
  42917. weight: math.unit(135, "lb"),
  42918. name: "Back",
  42919. image: {
  42920. source: "./media/characters/sarel/back.svg",
  42921. extra: 857/777,
  42922. bottom: 32/889
  42923. }
  42924. },
  42925. chozoan: {
  42926. height: math.unit(5.67, "feet"),
  42927. weight: math.unit(135, "lb"),
  42928. name: "Chozoan",
  42929. image: {
  42930. source: "./media/characters/sarel/chozoan.svg",
  42931. extra: 865/788,
  42932. bottom: 97/962
  42933. }
  42934. },
  42935. current: {
  42936. height: math.unit(5.67, "feet"),
  42937. weight: math.unit(135, "lb"),
  42938. name: "Current",
  42939. image: {
  42940. source: "./media/characters/sarel/current.svg",
  42941. extra: 865/788,
  42942. bottom: 97/962
  42943. }
  42944. },
  42945. head: {
  42946. height: math.unit(1.77, "feet"),
  42947. name: "Head",
  42948. image: {
  42949. source: "./media/characters/sarel/head.svg"
  42950. }
  42951. },
  42952. claws: {
  42953. height: math.unit(1.8, "feet"),
  42954. name: "Claws",
  42955. image: {
  42956. source: "./media/characters/sarel/claws.svg"
  42957. }
  42958. },
  42959. clawsAlt: {
  42960. height: math.unit(1.8, "feet"),
  42961. name: "Claws-alt",
  42962. image: {
  42963. source: "./media/characters/sarel/claws-alt.svg"
  42964. }
  42965. },
  42966. },
  42967. [
  42968. {
  42969. name: "Normal",
  42970. height: math.unit(5.67, "feet"),
  42971. default: true
  42972. },
  42973. ]
  42974. ))
  42975. characterMakers.push(() => makeCharacter(
  42976. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42977. {
  42978. front: {
  42979. height: math.unit(5500, "feet"),
  42980. name: "Front",
  42981. image: {
  42982. source: "./media/characters/alyonia/front.svg",
  42983. extra: 1200/1135,
  42984. bottom: 29/1229
  42985. }
  42986. },
  42987. back: {
  42988. height: math.unit(5500, "feet"),
  42989. name: "Back",
  42990. image: {
  42991. source: "./media/characters/alyonia/back.svg",
  42992. extra: 1205/1138,
  42993. bottom: 10/1215
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Small",
  43000. height: math.unit(10, "feet")
  43001. },
  43002. {
  43003. name: "Macro",
  43004. height: math.unit(500, "feet")
  43005. },
  43006. {
  43007. name: "Mega Macro",
  43008. height: math.unit(5500, "feet"),
  43009. default: true
  43010. },
  43011. {
  43012. name: "Mega Macro+",
  43013. height: math.unit(500000, "feet")
  43014. },
  43015. {
  43016. name: "Giga Macro",
  43017. height: math.unit(3000, "miles")
  43018. },
  43019. {
  43020. name: "Tera Macro",
  43021. height: math.unit(2.8e6, "miles")
  43022. },
  43023. {
  43024. name: "Galactic",
  43025. height: math.unit(120000, "lightyears")
  43026. },
  43027. ]
  43028. ))
  43029. characterMakers.push(() => makeCharacter(
  43030. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43031. {
  43032. werewolf: {
  43033. height: math.unit(8, "feet"),
  43034. weight: math.unit(425, "lb"),
  43035. name: "Werewolf",
  43036. image: {
  43037. source: "./media/characters/autumn/werewolf.svg",
  43038. extra: 2154/2031,
  43039. bottom: 160/2314
  43040. }
  43041. },
  43042. human: {
  43043. height: math.unit(5 + 8/12, "feet"),
  43044. weight: math.unit(150, "lb"),
  43045. name: "Human",
  43046. image: {
  43047. source: "./media/characters/autumn/human.svg",
  43048. extra: 1200/1149,
  43049. bottom: 30/1230
  43050. }
  43051. },
  43052. },
  43053. [
  43054. {
  43055. name: "Normal",
  43056. height: math.unit(8, "feet"),
  43057. default: true
  43058. },
  43059. ]
  43060. ))
  43061. characterMakers.push(() => makeCharacter(
  43062. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43063. {
  43064. front: {
  43065. height: math.unit(8 + 5/12, "feet"),
  43066. weight: math.unit(825, "lb"),
  43067. name: "Front",
  43068. image: {
  43069. source: "./media/characters/cobalt-charizard/front.svg",
  43070. extra: 1268/1155,
  43071. bottom: 122/1390
  43072. }
  43073. },
  43074. side: {
  43075. height: math.unit(8 + 5/12, "feet"),
  43076. weight: math.unit(825, "lb"),
  43077. name: "Side",
  43078. image: {
  43079. source: "./media/characters/cobalt-charizard/side.svg",
  43080. extra: 1348/1257,
  43081. bottom: 58/1406
  43082. }
  43083. },
  43084. gMax: {
  43085. height: math.unit(134 + 11/12, "feet"),
  43086. name: "G-Max",
  43087. image: {
  43088. source: "./media/characters/cobalt-charizard/g-max.svg",
  43089. extra: 1835/1541,
  43090. bottom: 151/1986
  43091. }
  43092. },
  43093. },
  43094. [
  43095. {
  43096. name: "Normal",
  43097. height: math.unit(8 + 5/12, "feet"),
  43098. default: true
  43099. },
  43100. ]
  43101. ))
  43102. characterMakers.push(() => makeCharacter(
  43103. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43104. {
  43105. front: {
  43106. height: math.unit(6 + 3/12, "feet"),
  43107. weight: math.unit(210, "lb"),
  43108. name: "Front",
  43109. image: {
  43110. source: "./media/characters/stella/front.svg",
  43111. extra: 3549/3335,
  43112. bottom: 51/3600
  43113. }
  43114. },
  43115. },
  43116. [
  43117. {
  43118. name: "Normal",
  43119. height: math.unit(6 + 3/12, "feet"),
  43120. default: true
  43121. },
  43122. ]
  43123. ))
  43124. characterMakers.push(() => makeCharacter(
  43125. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43126. {
  43127. front: {
  43128. height: math.unit(5, "feet"),
  43129. weight: math.unit(90, "lb"),
  43130. name: "Front",
  43131. image: {
  43132. source: "./media/characters/riley-bishop/front.svg",
  43133. extra: 1450/1428,
  43134. bottom: 152/1602
  43135. }
  43136. },
  43137. },
  43138. [
  43139. {
  43140. name: "Normal",
  43141. height: math.unit(5, "feet"),
  43142. default: true
  43143. },
  43144. ]
  43145. ))
  43146. characterMakers.push(() => makeCharacter(
  43147. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43148. {
  43149. side: {
  43150. height: math.unit(8 + 2/12, "feet"),
  43151. weight: math.unit(500, "kg"),
  43152. name: "Side",
  43153. image: {
  43154. source: "./media/characters/theo-arcanine/side.svg",
  43155. extra: 1342/1074,
  43156. bottom: 111/1453
  43157. }
  43158. },
  43159. },
  43160. [
  43161. {
  43162. name: "Normal",
  43163. height: math.unit(8 + 2/12, "feet"),
  43164. default: true
  43165. },
  43166. ]
  43167. ))
  43168. characterMakers.push(() => makeCharacter(
  43169. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43170. {
  43171. front: {
  43172. height: math.unit(4, "feet"),
  43173. name: "Front",
  43174. image: {
  43175. source: "./media/characters/kali/front.svg",
  43176. extra: 1921/1357,
  43177. bottom: 70/1991
  43178. }
  43179. },
  43180. },
  43181. [
  43182. {
  43183. name: "Normal",
  43184. height: math.unit(4, "feet"),
  43185. default: true
  43186. },
  43187. {
  43188. name: "Macro",
  43189. height: math.unit(32, "meters")
  43190. },
  43191. {
  43192. name: "Macro+",
  43193. height: math.unit(150, "meters")
  43194. },
  43195. {
  43196. name: "Megamacro",
  43197. height: math.unit(7500, "meters")
  43198. },
  43199. {
  43200. name: "Megamacro+",
  43201. height: math.unit(80, "kilometers")
  43202. },
  43203. ]
  43204. ))
  43205. characterMakers.push(() => makeCharacter(
  43206. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43207. {
  43208. side: {
  43209. height: math.unit(5 + 11/12, "feet"),
  43210. weight: math.unit(236, "lb"),
  43211. name: "Side",
  43212. image: {
  43213. source: "./media/characters/gapp/side.svg",
  43214. extra: 775/340,
  43215. bottom: 58/833
  43216. }
  43217. },
  43218. mouth: {
  43219. height: math.unit(2.98, "feet"),
  43220. name: "Mouth",
  43221. image: {
  43222. source: "./media/characters/gapp/mouth.svg"
  43223. }
  43224. },
  43225. },
  43226. [
  43227. {
  43228. name: "Normal",
  43229. height: math.unit(5 + 1/12, "feet"),
  43230. default: true
  43231. },
  43232. ]
  43233. ))
  43234. characterMakers.push(() => makeCharacter(
  43235. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43236. {
  43237. front: {
  43238. height: math.unit(6, "feet"),
  43239. name: "Front",
  43240. image: {
  43241. source: "./media/characters/persephone/front.svg",
  43242. extra: 1895/1717,
  43243. bottom: 96/1991
  43244. }
  43245. },
  43246. back: {
  43247. height: math.unit(6, "feet"),
  43248. name: "Back",
  43249. image: {
  43250. source: "./media/characters/persephone/back.svg",
  43251. extra: 1868/1679,
  43252. bottom: 26/1894
  43253. }
  43254. },
  43255. casual: {
  43256. height: math.unit(6, "feet"),
  43257. name: "Casual",
  43258. image: {
  43259. source: "./media/characters/persephone/casual.svg",
  43260. extra: 1713/1541,
  43261. bottom: 76/1789
  43262. }
  43263. },
  43264. },
  43265. [
  43266. {
  43267. name: "Human Size",
  43268. height: math.unit(6, "feet")
  43269. },
  43270. {
  43271. name: "Big Steppy",
  43272. height: math.unit(600, "meters"),
  43273. default: true
  43274. },
  43275. {
  43276. name: "Galaxy Brain",
  43277. height: math.unit(1, "zettameter")
  43278. },
  43279. ]
  43280. ))
  43281. characterMakers.push(() => makeCharacter(
  43282. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43283. {
  43284. front: {
  43285. height: math.unit(1.85, "meters"),
  43286. name: "Front",
  43287. image: {
  43288. source: "./media/characters/riley-foxthing/front.svg",
  43289. extra: 1495/1354,
  43290. bottom: 122/1617
  43291. }
  43292. },
  43293. frontAlt: {
  43294. height: math.unit(1.85, "meters"),
  43295. name: "Front (Alt)",
  43296. image: {
  43297. source: "./media/characters/riley-foxthing/front-alt.svg",
  43298. extra: 1572/1389,
  43299. bottom: 116/1688
  43300. }
  43301. },
  43302. },
  43303. [
  43304. {
  43305. name: "Normal Sized",
  43306. height: math.unit(1.85, "meters"),
  43307. default: true
  43308. },
  43309. {
  43310. name: "Quite Sizable",
  43311. height: math.unit(5, "meters")
  43312. },
  43313. {
  43314. name: "Rather Large",
  43315. height: math.unit(20, "meters")
  43316. },
  43317. {
  43318. name: "Macro",
  43319. height: math.unit(450, "meters")
  43320. },
  43321. {
  43322. name: "Giga",
  43323. height: math.unit(5, "km")
  43324. },
  43325. ]
  43326. ))
  43327. characterMakers.push(() => makeCharacter(
  43328. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43329. {
  43330. front: {
  43331. height: math.unit(6, "feet"),
  43332. weight: math.unit(200, "lb"),
  43333. name: "Front",
  43334. image: {
  43335. source: "./media/characters/blizzard/front.svg",
  43336. extra: 1136/990,
  43337. bottom: 136/1272
  43338. }
  43339. },
  43340. back: {
  43341. height: math.unit(6, "feet"),
  43342. weight: math.unit(200, "lb"),
  43343. name: "Back",
  43344. image: {
  43345. source: "./media/characters/blizzard/back.svg",
  43346. extra: 1175/1034,
  43347. bottom: 97/1272
  43348. }
  43349. },
  43350. sitting: {
  43351. height: math.unit(3.725, "feet"),
  43352. weight: math.unit(200, "lb"),
  43353. name: "Sitting",
  43354. image: {
  43355. source: "./media/characters/blizzard/sitting.svg",
  43356. extra: 581/485,
  43357. bottom: 90/671
  43358. }
  43359. },
  43360. frontWizard: {
  43361. height: math.unit(7.9, "feet"),
  43362. weight: math.unit(200, "lb"),
  43363. name: "Front (Wizard)",
  43364. image: {
  43365. source: "./media/characters/blizzard/front-wizard.svg"
  43366. }
  43367. },
  43368. backWizard: {
  43369. height: math.unit(7.9, "feet"),
  43370. weight: math.unit(200, "lb"),
  43371. name: "Back (Wizard)",
  43372. image: {
  43373. source: "./media/characters/blizzard/back-wizard.svg"
  43374. }
  43375. },
  43376. frontNsfw: {
  43377. height: math.unit(6, "feet"),
  43378. weight: math.unit(200, "lb"),
  43379. name: "Front (NSFW)",
  43380. image: {
  43381. source: "./media/characters/blizzard/front-nsfw.svg",
  43382. extra: 1136/990,
  43383. bottom: 136/1272
  43384. }
  43385. },
  43386. backNsfw: {
  43387. height: math.unit(6, "feet"),
  43388. weight: math.unit(200, "lb"),
  43389. name: "Back (NSFW)",
  43390. image: {
  43391. source: "./media/characters/blizzard/back-nsfw.svg",
  43392. extra: 1175/1034,
  43393. bottom: 97/1272
  43394. }
  43395. },
  43396. sittingNsfw: {
  43397. height: math.unit(3.725, "feet"),
  43398. weight: math.unit(200, "lb"),
  43399. name: "Sitting (NSFW)",
  43400. image: {
  43401. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43402. extra: 581/485,
  43403. bottom: 90/671
  43404. }
  43405. },
  43406. wizardFrontNsfw: {
  43407. height: math.unit(7.9, "feet"),
  43408. weight: math.unit(200, "lb"),
  43409. name: "Wizard (Front, NSFW)",
  43410. image: {
  43411. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43412. }
  43413. },
  43414. },
  43415. [
  43416. {
  43417. name: "Normal",
  43418. height: math.unit(6, "feet"),
  43419. default: true
  43420. },
  43421. ]
  43422. ))
  43423. characterMakers.push(() => makeCharacter(
  43424. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43425. {
  43426. front: {
  43427. height: math.unit(5 + 2/12, "feet"),
  43428. name: "Front",
  43429. image: {
  43430. source: "./media/characters/lumi/front.svg",
  43431. extra: 1328/1268,
  43432. bottom: 103/1431
  43433. }
  43434. },
  43435. back: {
  43436. height: math.unit(5 + 2/12, "feet"),
  43437. name: "Back",
  43438. image: {
  43439. source: "./media/characters/lumi/back.svg",
  43440. extra: 1381/1327,
  43441. bottom: 43/1424
  43442. }
  43443. },
  43444. },
  43445. [
  43446. {
  43447. name: "Normal",
  43448. height: math.unit(5 + 2/12, "feet"),
  43449. default: true
  43450. },
  43451. ]
  43452. ))
  43453. characterMakers.push(() => makeCharacter(
  43454. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43455. {
  43456. front: {
  43457. height: math.unit(5 + 9/12, "feet"),
  43458. name: "Front",
  43459. image: {
  43460. source: "./media/characters/aliya-cotton/front.svg",
  43461. extra: 577/564,
  43462. bottom: 29/606
  43463. }
  43464. },
  43465. },
  43466. [
  43467. {
  43468. name: "Normal",
  43469. height: math.unit(5 + 9/12, "feet"),
  43470. default: true
  43471. },
  43472. ]
  43473. ))
  43474. characterMakers.push(() => makeCharacter(
  43475. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43476. {
  43477. front: {
  43478. height: math.unit(2.7, "meters"),
  43479. weight: math.unit(25000, "lb"),
  43480. name: "Front",
  43481. image: {
  43482. source: "./media/characters/noah-luxray/front.svg",
  43483. extra: 1644/825,
  43484. bottom: 339/1983
  43485. }
  43486. },
  43487. side: {
  43488. height: math.unit(2.97, "meters"),
  43489. weight: math.unit(25000, "lb"),
  43490. name: "Side",
  43491. image: {
  43492. source: "./media/characters/noah-luxray/side.svg",
  43493. extra: 1319/650,
  43494. bottom: 163/1482
  43495. }
  43496. },
  43497. dick: {
  43498. height: math.unit(7.4, "feet"),
  43499. weight: math.unit(2500, "lb"),
  43500. name: "Dick",
  43501. image: {
  43502. source: "./media/characters/noah-luxray/dick.svg"
  43503. }
  43504. },
  43505. dickAlt: {
  43506. height: math.unit(10.83, "feet"),
  43507. weight: math.unit(2500, "lb"),
  43508. name: "Dick-alt",
  43509. image: {
  43510. source: "./media/characters/noah-luxray/dick-alt.svg"
  43511. }
  43512. },
  43513. },
  43514. [
  43515. {
  43516. name: "BIG",
  43517. height: math.unit(2.7, "meters"),
  43518. default: true
  43519. },
  43520. ]
  43521. ))
  43522. characterMakers.push(() => makeCharacter(
  43523. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43524. {
  43525. standing: {
  43526. height: math.unit(183, "cm"),
  43527. weight: math.unit(68, "kg"),
  43528. name: "Standing",
  43529. image: {
  43530. source: "./media/characters/arion/standing.svg",
  43531. extra: 1869/1807,
  43532. bottom: 93/1962
  43533. }
  43534. },
  43535. reclining: {
  43536. height: math.unit(70.5, "cm"),
  43537. weight: math.unit(68, "lb"),
  43538. name: "Reclining",
  43539. image: {
  43540. source: "./media/characters/arion/reclining.svg",
  43541. extra: 937/870,
  43542. bottom: 63/1000
  43543. }
  43544. },
  43545. },
  43546. [
  43547. {
  43548. name: "Colossus Size, Low",
  43549. height: math.unit(33, "meters"),
  43550. default: true
  43551. },
  43552. {
  43553. name: "Colossus Size, Mid",
  43554. height: math.unit(52, "meters")
  43555. },
  43556. {
  43557. name: "Colossus Size, High",
  43558. height: math.unit(60, "meters")
  43559. },
  43560. {
  43561. name: "Titan Size, Low",
  43562. height: math.unit(91, "meters"),
  43563. },
  43564. {
  43565. name: "Titan Size, Mid",
  43566. height: math.unit(122, "meters")
  43567. },
  43568. {
  43569. name: "Titan Size, High",
  43570. height: math.unit(162, "meters")
  43571. },
  43572. ]
  43573. ))
  43574. characterMakers.push(() => makeCharacter(
  43575. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43576. {
  43577. front: {
  43578. height: math.unit(53, "meters"),
  43579. name: "Front",
  43580. image: {
  43581. source: "./media/characters/stellar-marbey/front.svg",
  43582. extra: 1913/1805,
  43583. bottom: 92/2005
  43584. }
  43585. },
  43586. back: {
  43587. height: math.unit(53, "meters"),
  43588. name: "Back",
  43589. image: {
  43590. source: "./media/characters/stellar-marbey/back.svg",
  43591. extra: 1960/1851,
  43592. bottom: 28/1988
  43593. }
  43594. },
  43595. mouth: {
  43596. height: math.unit(3.5, "meters"),
  43597. name: "Mouth",
  43598. image: {
  43599. source: "./media/characters/stellar-marbey/mouth.svg"
  43600. }
  43601. },
  43602. },
  43603. [
  43604. {
  43605. name: "Macro",
  43606. height: math.unit(53, "meters"),
  43607. default: true
  43608. },
  43609. ]
  43610. ))
  43611. characterMakers.push(() => makeCharacter(
  43612. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43613. {
  43614. front: {
  43615. height: math.unit(8 + 1/12, "feet"),
  43616. weight: math.unit(233, "lb"),
  43617. name: "Front",
  43618. image: {
  43619. source: "./media/characters/matsu/front.svg",
  43620. extra: 832/772,
  43621. bottom: 40/872
  43622. }
  43623. },
  43624. back: {
  43625. height: math.unit(8 + 1/12, "feet"),
  43626. weight: math.unit(233, "lb"),
  43627. name: "Back",
  43628. image: {
  43629. source: "./media/characters/matsu/back.svg",
  43630. extra: 839/780,
  43631. bottom: 47/886
  43632. }
  43633. },
  43634. },
  43635. [
  43636. {
  43637. name: "Normal",
  43638. height: math.unit(8 + 1/12, "feet"),
  43639. default: true
  43640. },
  43641. ]
  43642. ))
  43643. characterMakers.push(() => makeCharacter(
  43644. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43645. {
  43646. front: {
  43647. height: math.unit(4, "feet"),
  43648. weight: math.unit(148, "lb"),
  43649. name: "Front",
  43650. image: {
  43651. source: "./media/characters/thiz/front.svg",
  43652. extra: 1913/1748,
  43653. bottom: 62/1975
  43654. }
  43655. },
  43656. },
  43657. [
  43658. {
  43659. name: "Normal",
  43660. height: math.unit(4, "feet"),
  43661. default: true
  43662. },
  43663. ]
  43664. ))
  43665. characterMakers.push(() => makeCharacter(
  43666. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43667. {
  43668. front: {
  43669. height: math.unit(7 + 6/12, "feet"),
  43670. weight: math.unit(267, "lb"),
  43671. name: "Front",
  43672. image: {
  43673. source: "./media/characters/marcel/front.svg",
  43674. extra: 1221/1096,
  43675. bottom: 76/1297
  43676. }
  43677. },
  43678. },
  43679. [
  43680. {
  43681. name: "Normal",
  43682. height: math.unit(7 + 6/12, "feet"),
  43683. default: true
  43684. },
  43685. ]
  43686. ))
  43687. characterMakers.push(() => makeCharacter(
  43688. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43689. {
  43690. side: {
  43691. height: math.unit(42, "meters"),
  43692. name: "Side",
  43693. image: {
  43694. source: "./media/characters/flake/side.svg",
  43695. extra: 1525/1306,
  43696. bottom: 209/1734
  43697. }
  43698. },
  43699. },
  43700. [
  43701. {
  43702. name: "Normal",
  43703. height: math.unit(42, "meters"),
  43704. default: true
  43705. },
  43706. ]
  43707. ))
  43708. characterMakers.push(() => makeCharacter(
  43709. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43710. {
  43711. dressed: {
  43712. height: math.unit(6 + 4/12, "feet"),
  43713. weight: math.unit(520, "lb"),
  43714. name: "Dressed",
  43715. image: {
  43716. source: "./media/characters/someonne/dressed.svg",
  43717. extra: 1020/1010,
  43718. bottom: 178/1198
  43719. }
  43720. },
  43721. undressed: {
  43722. height: math.unit(6 + 4/12, "feet"),
  43723. weight: math.unit(520, "lb"),
  43724. name: "Undressed",
  43725. image: {
  43726. source: "./media/characters/someonne/undressed.svg",
  43727. extra: 1019/1014,
  43728. bottom: 169/1188
  43729. }
  43730. },
  43731. },
  43732. [
  43733. {
  43734. name: "Normal",
  43735. height: math.unit(6 + 4/12, "feet"),
  43736. default: true
  43737. },
  43738. ]
  43739. ))
  43740. characterMakers.push(() => makeCharacter(
  43741. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43742. {
  43743. front: {
  43744. height: math.unit(3, "feet"),
  43745. weight: math.unit(30, "lb"),
  43746. name: "Front",
  43747. image: {
  43748. source: "./media/characters/till/front.svg",
  43749. extra: 892/823,
  43750. bottom: 55/947
  43751. }
  43752. },
  43753. },
  43754. [
  43755. {
  43756. name: "Normal",
  43757. height: math.unit(3, "feet"),
  43758. default: true
  43759. },
  43760. ]
  43761. ))
  43762. characterMakers.push(() => makeCharacter(
  43763. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43764. {
  43765. front: {
  43766. height: math.unit(9 + 8/12, "feet"),
  43767. weight: math.unit(800, "lb"),
  43768. name: "Front",
  43769. image: {
  43770. source: "./media/characters/sydney-heki/front.svg",
  43771. extra: 1360/1300,
  43772. bottom: 22/1382
  43773. }
  43774. },
  43775. back: {
  43776. height: math.unit(9 + 8/12, "feet"),
  43777. weight: math.unit(800, "lb"),
  43778. name: "Back",
  43779. image: {
  43780. source: "./media/characters/sydney-heki/back.svg",
  43781. extra: 1356/1293,
  43782. bottom: 12/1368
  43783. }
  43784. },
  43785. frontDressed: {
  43786. height: math.unit(9 + 8/12, "feet"),
  43787. weight: math.unit(800, "lb"),
  43788. name: "Front-dressed",
  43789. image: {
  43790. source: "./media/characters/sydney-heki/front-dressed.svg",
  43791. extra: 1360/1300,
  43792. bottom: 22/1382
  43793. }
  43794. },
  43795. },
  43796. [
  43797. {
  43798. name: "Normal",
  43799. height: math.unit(9 + 8/12, "feet"),
  43800. default: true
  43801. },
  43802. {
  43803. name: "Macro",
  43804. height: math.unit(500, "feet")
  43805. },
  43806. {
  43807. name: "Megamacro",
  43808. height: math.unit(3.6, "miles")
  43809. },
  43810. ]
  43811. ))
  43812. characterMakers.push(() => makeCharacter(
  43813. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43814. {
  43815. front: {
  43816. height: math.unit(200, "cm"),
  43817. weight: math.unit(250, "lb"),
  43818. name: "Front",
  43819. image: {
  43820. source: "./media/characters/fowler-karlsson/front.svg",
  43821. extra: 897/845,
  43822. bottom: 123/1020
  43823. }
  43824. },
  43825. back: {
  43826. height: math.unit(200, "cm"),
  43827. weight: math.unit(250, "lb"),
  43828. name: "Back",
  43829. image: {
  43830. source: "./media/characters/fowler-karlsson/back.svg",
  43831. extra: 999/944,
  43832. bottom: 26/1025
  43833. }
  43834. },
  43835. dick: {
  43836. height: math.unit(1.92, "feet"),
  43837. weight: math.unit(150, "lb"),
  43838. name: "Dick",
  43839. image: {
  43840. source: "./media/characters/fowler-karlsson/dick.svg"
  43841. }
  43842. },
  43843. },
  43844. [
  43845. {
  43846. name: "Normal",
  43847. height: math.unit(200, "cm"),
  43848. default: true
  43849. },
  43850. {
  43851. name: "Smaller Macro",
  43852. height: math.unit(90, "m")
  43853. },
  43854. {
  43855. name: "Macro",
  43856. height: math.unit(150, "m")
  43857. },
  43858. {
  43859. name: "Bigger Macro",
  43860. height: math.unit(300, "m")
  43861. },
  43862. ]
  43863. ))
  43864. characterMakers.push(() => makeCharacter(
  43865. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43866. {
  43867. side: {
  43868. height: math.unit(8 + 2/12, "feet"),
  43869. weight: math.unit(1, "tonne"),
  43870. name: "Side",
  43871. image: {
  43872. source: "./media/characters/rylide/side.svg",
  43873. extra: 1318/1034,
  43874. bottom: 106/1424
  43875. }
  43876. },
  43877. sitting: {
  43878. height: math.unit(303, "cm"),
  43879. weight: math.unit(1, "tonne"),
  43880. name: "Sitting",
  43881. image: {
  43882. source: "./media/characters/rylide/sitting.svg",
  43883. extra: 1303/1103,
  43884. bottom: 36/1339
  43885. }
  43886. },
  43887. },
  43888. [
  43889. {
  43890. name: "Normal",
  43891. height: math.unit(8 + 2/12, "feet"),
  43892. default: true
  43893. },
  43894. ]
  43895. ))
  43896. characterMakers.push(() => makeCharacter(
  43897. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43898. {
  43899. front: {
  43900. height: math.unit(5 + 10/12, "feet"),
  43901. weight: math.unit(160, "lb"),
  43902. name: "Front",
  43903. image: {
  43904. source: "./media/characters/pudask/front.svg",
  43905. extra: 1616/1590,
  43906. bottom: 161/1777
  43907. }
  43908. },
  43909. },
  43910. [
  43911. {
  43912. name: "Ferret Height",
  43913. height: math.unit(2 + 5/12, "feet")
  43914. },
  43915. {
  43916. name: "Canon Height",
  43917. height: math.unit(5 + 10/12, "feet"),
  43918. default: true
  43919. },
  43920. ]
  43921. ))
  43922. characterMakers.push(() => makeCharacter(
  43923. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43924. {
  43925. front: {
  43926. height: math.unit(3 + 6/12, "feet"),
  43927. weight: math.unit(60, "lb"),
  43928. name: "Front",
  43929. image: {
  43930. source: "./media/characters/ramita/front.svg",
  43931. extra: 1402/1232,
  43932. bottom: 62/1464
  43933. }
  43934. },
  43935. dressed: {
  43936. height: math.unit(3 + 6/12, "feet"),
  43937. weight: math.unit(60, "lb"),
  43938. name: "Dressed",
  43939. image: {
  43940. source: "./media/characters/ramita/dressed.svg",
  43941. extra: 1534/1249,
  43942. bottom: 50/1584
  43943. }
  43944. },
  43945. },
  43946. [
  43947. {
  43948. name: "Normal",
  43949. height: math.unit(3 + 6/12, "feet"),
  43950. default: true
  43951. },
  43952. ]
  43953. ))
  43954. characterMakers.push(() => makeCharacter(
  43955. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43956. {
  43957. front: {
  43958. height: math.unit(8, "feet"),
  43959. name: "Front",
  43960. image: {
  43961. source: "./media/characters/ark/front.svg",
  43962. extra: 772/693,
  43963. bottom: 45/817
  43964. }
  43965. },
  43966. },
  43967. [
  43968. {
  43969. name: "Normal",
  43970. height: math.unit(8, "feet"),
  43971. default: true
  43972. },
  43973. ]
  43974. ))
  43975. characterMakers.push(() => makeCharacter(
  43976. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43977. {
  43978. front: {
  43979. height: math.unit(6, "feet"),
  43980. weight: math.unit(250, "lb"),
  43981. volume: math.unit(5/8, "gallons"),
  43982. name: "Front",
  43983. image: {
  43984. source: "./media/characters/ludwig-horn/front.svg",
  43985. extra: 1782/1635,
  43986. bottom: 96/1878
  43987. }
  43988. },
  43989. back: {
  43990. height: math.unit(6, "feet"),
  43991. weight: math.unit(250, "lb"),
  43992. volume: math.unit(5/8, "gallons"),
  43993. name: "Back",
  43994. image: {
  43995. source: "./media/characters/ludwig-horn/back.svg",
  43996. extra: 1874/1729,
  43997. bottom: 27/1901
  43998. }
  43999. },
  44000. dick: {
  44001. height: math.unit(1.05, "feet"),
  44002. weight: math.unit(15, "lb"),
  44003. volume: math.unit(5/8, "gallons"),
  44004. name: "Dick",
  44005. image: {
  44006. source: "./media/characters/ludwig-horn/dick.svg"
  44007. }
  44008. },
  44009. },
  44010. [
  44011. {
  44012. name: "Small",
  44013. height: math.unit(6, "feet")
  44014. },
  44015. {
  44016. name: "Typical",
  44017. height: math.unit(12, "feet"),
  44018. default: true
  44019. },
  44020. {
  44021. name: "Building",
  44022. height: math.unit(80, "feet")
  44023. },
  44024. {
  44025. name: "Town",
  44026. height: math.unit(800, "feet")
  44027. },
  44028. {
  44029. name: "Kingdom",
  44030. height: math.unit(80000, "feet")
  44031. },
  44032. {
  44033. name: "Planet",
  44034. height: math.unit(8000000, "feet")
  44035. },
  44036. {
  44037. name: "Universe",
  44038. height: math.unit(8000000000, "feet")
  44039. },
  44040. {
  44041. name: "Transcended",
  44042. height: math.unit(8e27, "feet")
  44043. },
  44044. ]
  44045. ))
  44046. characterMakers.push(() => makeCharacter(
  44047. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44048. {
  44049. front: {
  44050. height: math.unit(5, "feet"),
  44051. weight: math.unit(50, "kg"),
  44052. name: "Front",
  44053. image: {
  44054. source: "./media/characters/biot-avery/front.svg",
  44055. extra: 1295/1232,
  44056. bottom: 86/1381
  44057. }
  44058. },
  44059. },
  44060. [
  44061. {
  44062. name: "Normal",
  44063. height: math.unit(5, "feet"),
  44064. default: true
  44065. },
  44066. ]
  44067. ))
  44068. characterMakers.push(() => makeCharacter(
  44069. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44070. {
  44071. front: {
  44072. height: math.unit(6, "feet"),
  44073. name: "Front",
  44074. image: {
  44075. source: "./media/characters/kitsune-kiro/front.svg",
  44076. extra: 1270/1158,
  44077. bottom: 42/1312
  44078. }
  44079. },
  44080. frontAlt: {
  44081. height: math.unit(6, "feet"),
  44082. name: "Front-alt",
  44083. image: {
  44084. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44085. extra: 1130/1081,
  44086. bottom: 36/1166
  44087. }
  44088. },
  44089. },
  44090. [
  44091. {
  44092. name: "Smol",
  44093. height: math.unit(3, "feet")
  44094. },
  44095. {
  44096. name: "Normal",
  44097. height: math.unit(6, "feet"),
  44098. default: true
  44099. },
  44100. ]
  44101. ))
  44102. characterMakers.push(() => makeCharacter(
  44103. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44104. {
  44105. front: {
  44106. height: math.unit(6, "feet"),
  44107. weight: math.unit(125, "lb"),
  44108. name: "Front",
  44109. image: {
  44110. source: "./media/characters/jack-thatcher/front.svg",
  44111. extra: 1474/1370,
  44112. bottom: 26/1500
  44113. }
  44114. },
  44115. back: {
  44116. height: math.unit(6, "feet"),
  44117. weight: math.unit(125, "lb"),
  44118. name: "Back",
  44119. image: {
  44120. source: "./media/characters/jack-thatcher/back.svg",
  44121. extra: 1489/1384,
  44122. bottom: 18/1507
  44123. }
  44124. },
  44125. },
  44126. [
  44127. {
  44128. name: "Normal",
  44129. height: math.unit(6, "feet"),
  44130. default: true
  44131. },
  44132. {
  44133. name: "Macro",
  44134. height: math.unit(75, "feet")
  44135. },
  44136. {
  44137. name: "Macro-er",
  44138. height: math.unit(250, "feet")
  44139. },
  44140. ]
  44141. ))
  44142. characterMakers.push(() => makeCharacter(
  44143. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44144. {
  44145. front: {
  44146. height: math.unit(7, "feet"),
  44147. weight: math.unit(110, "kg"),
  44148. name: "Front",
  44149. image: {
  44150. source: "./media/characters/max-hyper/front.svg",
  44151. extra: 1969/1881,
  44152. bottom: 49/2018
  44153. }
  44154. },
  44155. },
  44156. [
  44157. {
  44158. name: "Normal",
  44159. height: math.unit(7, "feet"),
  44160. default: true
  44161. },
  44162. ]
  44163. ))
  44164. characterMakers.push(() => makeCharacter(
  44165. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44166. {
  44167. front: {
  44168. height: math.unit(5 + 5/12, "feet"),
  44169. weight: math.unit(160, "lb"),
  44170. name: "Front",
  44171. image: {
  44172. source: "./media/characters/spook/front.svg",
  44173. extra: 794/791,
  44174. bottom: 54/848
  44175. }
  44176. },
  44177. back: {
  44178. height: math.unit(5 + 5/12, "feet"),
  44179. weight: math.unit(160, "lb"),
  44180. name: "Back",
  44181. image: {
  44182. source: "./media/characters/spook/back.svg",
  44183. extra: 812/798,
  44184. bottom: 32/844
  44185. }
  44186. },
  44187. },
  44188. [
  44189. {
  44190. name: "Normal",
  44191. height: math.unit(5 + 5/12, "feet"),
  44192. default: true
  44193. },
  44194. ]
  44195. ))
  44196. characterMakers.push(() => makeCharacter(
  44197. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44198. {
  44199. front: {
  44200. height: math.unit(18, "feet"),
  44201. name: "Front",
  44202. image: {
  44203. source: "./media/characters/xeaduulix/front.svg",
  44204. extra: 1380/1166,
  44205. bottom: 110/1490
  44206. }
  44207. },
  44208. back: {
  44209. height: math.unit(18, "feet"),
  44210. name: "Back",
  44211. image: {
  44212. source: "./media/characters/xeaduulix/back.svg",
  44213. extra: 1592/1170,
  44214. bottom: 128/1720
  44215. }
  44216. },
  44217. frontNsfw: {
  44218. height: math.unit(18, "feet"),
  44219. name: "Front (NSFW)",
  44220. image: {
  44221. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44222. extra: 1380/1166,
  44223. bottom: 110/1490
  44224. }
  44225. },
  44226. backNsfw: {
  44227. height: math.unit(18, "feet"),
  44228. name: "Back (NSFW)",
  44229. image: {
  44230. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44231. extra: 1592/1170,
  44232. bottom: 128/1720
  44233. }
  44234. },
  44235. },
  44236. [
  44237. {
  44238. name: "Normal",
  44239. height: math.unit(18, "feet"),
  44240. default: true
  44241. },
  44242. ]
  44243. ))
  44244. characterMakers.push(() => makeCharacter(
  44245. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44246. {
  44247. spreadWings: {
  44248. height: math.unit(20, "feet"),
  44249. name: "Spread Wings",
  44250. image: {
  44251. source: "./media/characters/fledge/spread-wings.svg",
  44252. extra: 693/635,
  44253. bottom: 26/719
  44254. }
  44255. },
  44256. front: {
  44257. height: math.unit(20, "feet"),
  44258. name: "Front",
  44259. image: {
  44260. source: "./media/characters/fledge/front.svg",
  44261. extra: 684/637,
  44262. bottom: 18/702
  44263. }
  44264. },
  44265. frontAlt: {
  44266. height: math.unit(20, "feet"),
  44267. name: "Front (Alt)",
  44268. image: {
  44269. source: "./media/characters/fledge/front-alt.svg",
  44270. extra: 708/664,
  44271. bottom: 13/721
  44272. }
  44273. },
  44274. back: {
  44275. height: math.unit(20, "feet"),
  44276. name: "Back",
  44277. image: {
  44278. source: "./media/characters/fledge/back.svg",
  44279. extra: 718/634,
  44280. bottom: 22/740
  44281. }
  44282. },
  44283. head: {
  44284. height: math.unit(5.55, "feet"),
  44285. name: "Head",
  44286. image: {
  44287. source: "./media/characters/fledge/head.svg"
  44288. }
  44289. },
  44290. headAlt: {
  44291. height: math.unit(5.1, "feet"),
  44292. name: "Head (Alt)",
  44293. image: {
  44294. source: "./media/characters/fledge/head-alt.svg"
  44295. }
  44296. },
  44297. },
  44298. [
  44299. {
  44300. name: "Small",
  44301. height: math.unit(6 + 2/12, "feet")
  44302. },
  44303. {
  44304. name: "Big",
  44305. height: math.unit(20, "feet"),
  44306. default: true
  44307. },
  44308. {
  44309. name: "Giant",
  44310. height: math.unit(100, "feet")
  44311. },
  44312. {
  44313. name: "Macro",
  44314. height: math.unit(200, "feet")
  44315. },
  44316. ]
  44317. ))
  44318. characterMakers.push(() => makeCharacter(
  44319. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44320. {
  44321. front: {
  44322. height: math.unit(1, "meter"),
  44323. name: "Front",
  44324. image: {
  44325. source: "./media/characters/atlas-morenai/front.svg",
  44326. extra: 1275/1043,
  44327. bottom: 19/1294
  44328. }
  44329. },
  44330. back: {
  44331. height: math.unit(1, "meter"),
  44332. name: "Back",
  44333. image: {
  44334. source: "./media/characters/atlas-morenai/back.svg",
  44335. extra: 1141/1001,
  44336. bottom: 25/1166
  44337. }
  44338. },
  44339. },
  44340. [
  44341. {
  44342. name: "Normal",
  44343. height: math.unit(1, "meter"),
  44344. default: true
  44345. },
  44346. {
  44347. name: "Magic-Infused",
  44348. height: math.unit(5, "meters")
  44349. },
  44350. ]
  44351. ))
  44352. characterMakers.push(() => makeCharacter(
  44353. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44354. {
  44355. front: {
  44356. height: math.unit(5, "meters"),
  44357. name: "Front",
  44358. image: {
  44359. source: "./media/characters/cintia/front.svg",
  44360. extra: 1312/1228,
  44361. bottom: 38/1350
  44362. }
  44363. },
  44364. back: {
  44365. height: math.unit(5, "meters"),
  44366. name: "Back",
  44367. image: {
  44368. source: "./media/characters/cintia/back.svg",
  44369. extra: 1260/1166,
  44370. bottom: 98/1358
  44371. }
  44372. },
  44373. frontDick: {
  44374. height: math.unit(5, "meters"),
  44375. name: "Front (Dick)",
  44376. image: {
  44377. source: "./media/characters/cintia/front-dick.svg",
  44378. extra: 1312/1228,
  44379. bottom: 38/1350
  44380. }
  44381. },
  44382. backDick: {
  44383. height: math.unit(5, "meters"),
  44384. name: "Back (Dick)",
  44385. image: {
  44386. source: "./media/characters/cintia/back-dick.svg",
  44387. extra: 1260/1166,
  44388. bottom: 98/1358
  44389. }
  44390. },
  44391. bust: {
  44392. height: math.unit(1.97, "meters"),
  44393. name: "Bust",
  44394. image: {
  44395. source: "./media/characters/cintia/bust.svg",
  44396. extra: 617/565,
  44397. bottom: 0/617
  44398. }
  44399. },
  44400. },
  44401. [
  44402. {
  44403. name: "Normal",
  44404. height: math.unit(5, "meters"),
  44405. default: true
  44406. },
  44407. ]
  44408. ))
  44409. characterMakers.push(() => makeCharacter(
  44410. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44411. {
  44412. side: {
  44413. height: math.unit(100, "feet"),
  44414. name: "Side",
  44415. image: {
  44416. source: "./media/characters/denora/side.svg",
  44417. extra: 875/803,
  44418. bottom: 9/884
  44419. }
  44420. },
  44421. },
  44422. [
  44423. {
  44424. name: "Standard",
  44425. height: math.unit(100, "feet"),
  44426. default: true
  44427. },
  44428. {
  44429. name: "Grand",
  44430. height: math.unit(1000, "feet")
  44431. },
  44432. {
  44433. name: "Conquering",
  44434. height: math.unit(10000, "feet")
  44435. },
  44436. ]
  44437. ))
  44438. characterMakers.push(() => makeCharacter(
  44439. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44440. {
  44441. dressed: {
  44442. height: math.unit(8 + 5/12, "feet"),
  44443. weight: math.unit(700, "lb"),
  44444. name: "Dressed",
  44445. image: {
  44446. source: "./media/characters/kiva/dressed.svg",
  44447. extra: 1102/1055,
  44448. bottom: 60/1162
  44449. }
  44450. },
  44451. nude: {
  44452. height: math.unit(8 + 5/12, "feet"),
  44453. weight: math.unit(700, "lb"),
  44454. name: "Nude",
  44455. image: {
  44456. source: "./media/characters/kiva/nude.svg",
  44457. extra: 1102/1055,
  44458. bottom: 60/1162
  44459. }
  44460. },
  44461. },
  44462. [
  44463. {
  44464. name: "Base Height",
  44465. height: math.unit(8 + 5/12, "feet"),
  44466. default: true
  44467. },
  44468. {
  44469. name: "Macro",
  44470. height: math.unit(100, "feet")
  44471. },
  44472. {
  44473. name: "Max",
  44474. height: math.unit(3280, "feet")
  44475. },
  44476. ]
  44477. ))
  44478. characterMakers.push(() => makeCharacter(
  44479. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44480. {
  44481. front: {
  44482. height: math.unit(6 + 8/12, "feet"),
  44483. weight: math.unit(250, "lb"),
  44484. name: "Front",
  44485. image: {
  44486. source: "./media/characters/ztragon/front.svg",
  44487. extra: 1825/1684,
  44488. bottom: 98/1923
  44489. }
  44490. },
  44491. },
  44492. [
  44493. {
  44494. name: "Normal",
  44495. height: math.unit(6 + 8/12, "feet"),
  44496. default: true
  44497. },
  44498. {
  44499. name: "Macro",
  44500. height: math.unit(80, "feet")
  44501. },
  44502. ]
  44503. ))
  44504. characterMakers.push(() => makeCharacter(
  44505. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44506. {
  44507. front: {
  44508. height: math.unit(10.4, "feet"),
  44509. weight: math.unit(2, "tons"),
  44510. name: "Front",
  44511. image: {
  44512. source: "./media/characters/yesenia/front.svg",
  44513. extra: 1479/1474,
  44514. bottom: 233/1712
  44515. }
  44516. },
  44517. },
  44518. [
  44519. {
  44520. name: "Normal",
  44521. height: math.unit(10.4, "feet"),
  44522. default: true
  44523. },
  44524. ]
  44525. ))
  44526. characterMakers.push(() => makeCharacter(
  44527. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44528. {
  44529. normal: {
  44530. height: math.unit(6 + 1/12, "feet"),
  44531. weight: math.unit(180, "lb"),
  44532. name: "Normal",
  44533. image: {
  44534. source: "./media/characters/leanne-lycheborne/normal.svg",
  44535. extra: 1748/1660,
  44536. bottom: 98/1846
  44537. }
  44538. },
  44539. were: {
  44540. height: math.unit(12, "feet"),
  44541. weight: math.unit(1600, "lb"),
  44542. name: "Were",
  44543. image: {
  44544. source: "./media/characters/leanne-lycheborne/were.svg",
  44545. extra: 1485/1432,
  44546. bottom: 66/1551
  44547. }
  44548. },
  44549. },
  44550. [
  44551. {
  44552. name: "Normal",
  44553. height: math.unit(6 + 1/12, "feet"),
  44554. default: true
  44555. },
  44556. ]
  44557. ))
  44558. characterMakers.push(() => makeCharacter(
  44559. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44560. {
  44561. side: {
  44562. height: math.unit(13, "feet"),
  44563. name: "Side",
  44564. image: {
  44565. source: "./media/characters/kira-tyler/side.svg",
  44566. extra: 693/393,
  44567. bottom: 58/751
  44568. }
  44569. },
  44570. },
  44571. [
  44572. {
  44573. name: "Normal",
  44574. height: math.unit(13, "feet"),
  44575. default: true
  44576. },
  44577. ]
  44578. ))
  44579. characterMakers.push(() => makeCharacter(
  44580. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44581. {
  44582. front: {
  44583. height: math.unit(10.3, "feet"),
  44584. weight: math.unit(150, "lb"),
  44585. name: "Front",
  44586. image: {
  44587. source: "./media/characters/blaze/front.svg",
  44588. extra: 1378/1286,
  44589. bottom: 172/1550
  44590. }
  44591. },
  44592. },
  44593. [
  44594. {
  44595. name: "Normal",
  44596. height: math.unit(10.3, "feet"),
  44597. default: true
  44598. },
  44599. ]
  44600. ))
  44601. characterMakers.push(() => makeCharacter(
  44602. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44603. {
  44604. side: {
  44605. height: math.unit(2, "meters"),
  44606. weight: math.unit(400, "kg"),
  44607. name: "Side",
  44608. image: {
  44609. source: "./media/characters/anu/side.svg",
  44610. extra: 506/394,
  44611. bottom: 18/524
  44612. }
  44613. },
  44614. },
  44615. [
  44616. {
  44617. name: "Humanoid",
  44618. height: math.unit(2, "meters")
  44619. },
  44620. {
  44621. name: "Normal",
  44622. height: math.unit(5, "meters"),
  44623. default: true
  44624. },
  44625. ]
  44626. ))
  44627. characterMakers.push(() => makeCharacter(
  44628. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44629. {
  44630. front: {
  44631. height: math.unit(5 + 5/12, "feet"),
  44632. weight: math.unit(170, "lb"),
  44633. name: "Front",
  44634. image: {
  44635. source: "./media/characters/synx-the-lynx/front.svg",
  44636. extra: 1893/1745,
  44637. bottom: 17/1910
  44638. }
  44639. },
  44640. side: {
  44641. height: math.unit(5 + 5/12, "feet"),
  44642. weight: math.unit(170, "lb"),
  44643. name: "Side",
  44644. image: {
  44645. source: "./media/characters/synx-the-lynx/side.svg",
  44646. extra: 1884/1740,
  44647. bottom: 39/1923
  44648. }
  44649. },
  44650. back: {
  44651. height: math.unit(5 + 5/12, "feet"),
  44652. weight: math.unit(170, "lb"),
  44653. name: "Back",
  44654. image: {
  44655. source: "./media/characters/synx-the-lynx/back.svg",
  44656. extra: 1903/1755,
  44657. bottom: 14/1917
  44658. }
  44659. },
  44660. },
  44661. [
  44662. {
  44663. name: "Normal",
  44664. height: math.unit(5 + 5/12, "feet"),
  44665. default: true
  44666. },
  44667. ]
  44668. ))
  44669. characterMakers.push(() => makeCharacter(
  44670. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44671. {
  44672. back: {
  44673. height: math.unit(15, "feet"),
  44674. name: "Back",
  44675. image: {
  44676. source: "./media/characters/nadezda-fex/back.svg",
  44677. extra: 1695/1481,
  44678. bottom: 25/1720
  44679. }
  44680. },
  44681. },
  44682. [
  44683. {
  44684. name: "Normal",
  44685. height: math.unit(15, "feet"),
  44686. default: true
  44687. },
  44688. {
  44689. name: "Macro",
  44690. height: math.unit(2.5, "miles")
  44691. },
  44692. {
  44693. name: "Goddess",
  44694. height: math.unit(2, "multiverses")
  44695. },
  44696. ]
  44697. ))
  44698. characterMakers.push(() => makeCharacter(
  44699. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44700. {
  44701. front: {
  44702. height: math.unit(216, "cm"),
  44703. name: "Front",
  44704. image: {
  44705. source: "./media/characters/lev/front.svg",
  44706. extra: 1728/1670,
  44707. bottom: 82/1810
  44708. }
  44709. },
  44710. back: {
  44711. height: math.unit(216, "cm"),
  44712. name: "Back",
  44713. image: {
  44714. source: "./media/characters/lev/back.svg",
  44715. extra: 1738/1675,
  44716. bottom: 24/1762
  44717. }
  44718. },
  44719. dressed: {
  44720. height: math.unit(216, "cm"),
  44721. name: "Dressed",
  44722. image: {
  44723. source: "./media/characters/lev/dressed.svg",
  44724. extra: 1397/1351,
  44725. bottom: 73/1470
  44726. }
  44727. },
  44728. head: {
  44729. height: math.unit(0.51, "meter"),
  44730. name: "Head",
  44731. image: {
  44732. source: "./media/characters/lev/head.svg"
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "Normal",
  44739. height: math.unit(216, "cm"),
  44740. default: true
  44741. },
  44742. {
  44743. name: "Relatively Macro",
  44744. height: math.unit(80, "meters")
  44745. },
  44746. {
  44747. name: "Megamacro",
  44748. height: math.unit(21600, "meters")
  44749. },
  44750. {
  44751. name: "Megamacro+",
  44752. height: math.unit(64800, "meters")
  44753. },
  44754. ]
  44755. ))
  44756. characterMakers.push(() => makeCharacter(
  44757. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44758. {
  44759. front: {
  44760. height: math.unit(2, "meters"),
  44761. weight: math.unit(80, "kg"),
  44762. name: "Front",
  44763. image: {
  44764. source: "./media/characters/moka/front.svg",
  44765. extra: 1337/1255,
  44766. bottom: 58/1395
  44767. }
  44768. },
  44769. },
  44770. [
  44771. {
  44772. name: "Micro",
  44773. height: math.unit(15, "cm")
  44774. },
  44775. {
  44776. name: "Normal",
  44777. height: math.unit(2, "meters"),
  44778. default: true
  44779. },
  44780. {
  44781. name: "Macro",
  44782. height: math.unit(20, "meters"),
  44783. },
  44784. ]
  44785. ))
  44786. characterMakers.push(() => makeCharacter(
  44787. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44788. {
  44789. front: {
  44790. height: math.unit(9, "feet"),
  44791. weight: math.unit(240, "lb"),
  44792. name: "Front",
  44793. image: {
  44794. source: "./media/characters/kuzco/front.svg",
  44795. extra: 1593/1487,
  44796. bottom: 32/1625
  44797. }
  44798. },
  44799. side: {
  44800. height: math.unit(9, "feet"),
  44801. weight: math.unit(240, "lb"),
  44802. name: "Side",
  44803. image: {
  44804. source: "./media/characters/kuzco/side.svg",
  44805. extra: 1575/1485,
  44806. bottom: 30/1605
  44807. }
  44808. },
  44809. back: {
  44810. height: math.unit(9, "feet"),
  44811. weight: math.unit(240, "lb"),
  44812. name: "Back",
  44813. image: {
  44814. source: "./media/characters/kuzco/back.svg",
  44815. extra: 1603/1514,
  44816. bottom: 14/1617
  44817. }
  44818. },
  44819. },
  44820. [
  44821. {
  44822. name: "Normal",
  44823. height: math.unit(9, "feet"),
  44824. default: true
  44825. },
  44826. ]
  44827. ))
  44828. characterMakers.push(() => makeCharacter(
  44829. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44830. {
  44831. side: {
  44832. height: math.unit(2, "meters"),
  44833. weight: math.unit(300, "kg"),
  44834. name: "Side",
  44835. image: {
  44836. source: "./media/characters/ceruleus/side.svg",
  44837. extra: 1068/974,
  44838. bottom: 126/1194
  44839. }
  44840. },
  44841. },
  44842. [
  44843. {
  44844. name: "Normal",
  44845. height: math.unit(16, "meters"),
  44846. default: true
  44847. },
  44848. ]
  44849. ))
  44850. characterMakers.push(() => makeCharacter(
  44851. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44852. {
  44853. front: {
  44854. height: math.unit(9, "feet"),
  44855. weight: math.unit(500, "kg"),
  44856. name: "Front",
  44857. image: {
  44858. source: "./media/characters/acouya/front.svg",
  44859. extra: 1660/1473,
  44860. bottom: 28/1688
  44861. }
  44862. },
  44863. },
  44864. [
  44865. {
  44866. name: "Normal",
  44867. height: math.unit(9, "feet"),
  44868. default: true
  44869. },
  44870. ]
  44871. ))
  44872. characterMakers.push(() => makeCharacter(
  44873. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44874. {
  44875. front: {
  44876. height: math.unit(5 + 6/12, "feet"),
  44877. weight: math.unit(195, "lb"),
  44878. name: "Front",
  44879. image: {
  44880. source: "./media/characters/vant/front.svg",
  44881. extra: 1396/1320,
  44882. bottom: 20/1416
  44883. }
  44884. },
  44885. back: {
  44886. height: math.unit(5 + 6/12, "feet"),
  44887. weight: math.unit(195, "lb"),
  44888. name: "Back",
  44889. image: {
  44890. source: "./media/characters/vant/back.svg",
  44891. extra: 1396/1320,
  44892. bottom: 20/1416
  44893. }
  44894. },
  44895. maw: {
  44896. height: math.unit(0.75, "feet"),
  44897. name: "Maw",
  44898. image: {
  44899. source: "./media/characters/vant/maw.svg"
  44900. }
  44901. },
  44902. paw: {
  44903. height: math.unit(1.07, "feet"),
  44904. name: "Paw",
  44905. image: {
  44906. source: "./media/characters/vant/paw.svg"
  44907. }
  44908. },
  44909. },
  44910. [
  44911. {
  44912. name: "Micro",
  44913. height: math.unit(0.25, "inches")
  44914. },
  44915. {
  44916. name: "Normal",
  44917. height: math.unit(5 + 6/12, "feet"),
  44918. default: true
  44919. },
  44920. {
  44921. name: "Macro",
  44922. height: math.unit(75, "feet")
  44923. },
  44924. ]
  44925. ))
  44926. characterMakers.push(() => makeCharacter(
  44927. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44928. {
  44929. front: {
  44930. height: math.unit(30, "meters"),
  44931. weight: math.unit(363, "tons"),
  44932. name: "Front",
  44933. image: {
  44934. source: "./media/characters/ahra/front.svg",
  44935. extra: 1914/1814,
  44936. bottom: 46/1960
  44937. }
  44938. },
  44939. },
  44940. [
  44941. {
  44942. name: "Macro",
  44943. height: math.unit(30, "meters"),
  44944. default: true
  44945. },
  44946. ]
  44947. ))
  44948. characterMakers.push(() => makeCharacter(
  44949. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44950. {
  44951. undressed: {
  44952. height: math.unit(2, "m"),
  44953. weight: math.unit(250, "kg"),
  44954. name: "Undressed",
  44955. image: {
  44956. source: "./media/characters/coriander/undressed.svg",
  44957. extra: 1757/1606,
  44958. bottom: 107/1864
  44959. }
  44960. },
  44961. dressed: {
  44962. height: math.unit(2, "m"),
  44963. weight: math.unit(250, "kg"),
  44964. name: "Dressed",
  44965. image: {
  44966. source: "./media/characters/coriander/dressed.svg",
  44967. extra: 1757/1606,
  44968. bottom: 107/1864
  44969. }
  44970. },
  44971. },
  44972. [
  44973. {
  44974. name: "Normal",
  44975. height: math.unit(4, "meters"),
  44976. default: true
  44977. },
  44978. {
  44979. name: "XL",
  44980. height: math.unit(6, "meters")
  44981. },
  44982. {
  44983. name: "XXL",
  44984. height: math.unit(8, "meters")
  44985. },
  44986. ]
  44987. ))
  44988. characterMakers.push(() => makeCharacter(
  44989. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44990. {
  44991. front: {
  44992. height: math.unit(6, "feet"),
  44993. name: "Front",
  44994. image: {
  44995. source: "./media/characters/syrinx/front.svg",
  44996. extra: 1557/1259,
  44997. bottom: 171/1728
  44998. }
  44999. },
  45000. },
  45001. [
  45002. {
  45003. name: "Normal",
  45004. height: math.unit(6 + 3/12, "feet"),
  45005. default: true
  45006. },
  45007. ]
  45008. ))
  45009. characterMakers.push(() => makeCharacter(
  45010. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45011. {
  45012. front: {
  45013. height: math.unit(11 + 6/12, "feet"),
  45014. weight: math.unit(1.5, "tons"),
  45015. name: "Front",
  45016. image: {
  45017. source: "./media/characters/bor/front.svg",
  45018. extra: 1189/1109,
  45019. bottom: 170/1359
  45020. }
  45021. },
  45022. },
  45023. [
  45024. {
  45025. name: "Normal",
  45026. height: math.unit(11 + 6/12, "feet"),
  45027. default: true
  45028. },
  45029. {
  45030. name: "Macro",
  45031. height: math.unit(32 + 9/12, "feet")
  45032. },
  45033. ]
  45034. ))
  45035. characterMakers.push(() => makeCharacter(
  45036. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45037. {
  45038. anthro: {
  45039. height: math.unit(9, "feet"),
  45040. weight: math.unit(2076, "lb"),
  45041. name: "Anthro",
  45042. image: {
  45043. source: "./media/characters/abacus/anthro.svg",
  45044. extra: 1540/1494,
  45045. bottom: 233/1773
  45046. }
  45047. },
  45048. pigeon: {
  45049. height: math.unit(1, "feet"),
  45050. name: "Pigeon",
  45051. image: {
  45052. source: "./media/characters/abacus/pigeon.svg",
  45053. extra: 528/525,
  45054. bottom: 46/574
  45055. }
  45056. },
  45057. },
  45058. [
  45059. {
  45060. name: "Normal",
  45061. height: math.unit(9, "feet"),
  45062. default: true
  45063. },
  45064. ]
  45065. ))
  45066. characterMakers.push(() => makeCharacter(
  45067. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45068. {
  45069. side: {
  45070. height: math.unit(6, "feet"),
  45071. name: "Side",
  45072. image: {
  45073. source: "./media/characters/delkhan/side.svg",
  45074. extra: 1884/1786,
  45075. bottom: 308/2192
  45076. }
  45077. },
  45078. head: {
  45079. height: math.unit(3.38, "feet"),
  45080. name: "Head",
  45081. image: {
  45082. source: "./media/characters/delkhan/head.svg"
  45083. }
  45084. },
  45085. },
  45086. [
  45087. {
  45088. name: "Normal",
  45089. height: math.unit(72, "feet"),
  45090. default: true
  45091. },
  45092. {
  45093. name: "Giant",
  45094. height: math.unit(172, "feet")
  45095. },
  45096. ]
  45097. ))
  45098. characterMakers.push(() => makeCharacter(
  45099. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45100. {
  45101. standing: {
  45102. height: math.unit(6, "feet"),
  45103. name: "Standing",
  45104. image: {
  45105. source: "./media/characters/euchidat/standing.svg",
  45106. extra: 1612/1553,
  45107. bottom: 116/1728
  45108. }
  45109. },
  45110. leaning: {
  45111. height: math.unit(6, "feet"),
  45112. name: "Leaning",
  45113. image: {
  45114. source: "./media/characters/euchidat/leaning.svg",
  45115. extra: 1719/1674,
  45116. bottom: 27/1746
  45117. }
  45118. },
  45119. },
  45120. [
  45121. {
  45122. name: "Normal",
  45123. height: math.unit(175, "feet"),
  45124. default: true
  45125. },
  45126. {
  45127. name: "Megamacro",
  45128. height: math.unit(190, "miles")
  45129. },
  45130. {
  45131. name: "Gigamacro",
  45132. height: math.unit(190000, "miles")
  45133. },
  45134. ]
  45135. ))
  45136. characterMakers.push(() => makeCharacter(
  45137. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45138. {
  45139. front: {
  45140. height: math.unit(6, "feet"),
  45141. weight: math.unit(150, "lb"),
  45142. name: "Front",
  45143. image: {
  45144. source: "./media/characters/rebecca-stack/front.svg",
  45145. extra: 1256/1201,
  45146. bottom: 18/1274
  45147. }
  45148. },
  45149. },
  45150. [
  45151. {
  45152. name: "Normal",
  45153. height: math.unit(5 + 8/12, "feet"),
  45154. default: true
  45155. },
  45156. {
  45157. name: "Demolitionist",
  45158. height: math.unit(200, "feet")
  45159. },
  45160. {
  45161. name: "Out of Control",
  45162. height: math.unit(2, "miles")
  45163. },
  45164. {
  45165. name: "Giga",
  45166. height: math.unit(7200, "miles")
  45167. },
  45168. ]
  45169. ))
  45170. characterMakers.push(() => makeCharacter(
  45171. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45172. {
  45173. front: {
  45174. height: math.unit(6, "feet"),
  45175. weight: math.unit(150, "lb"),
  45176. name: "Front",
  45177. image: {
  45178. source: "./media/characters/jenny-cartwright/front.svg",
  45179. extra: 1384/1376,
  45180. bottom: 58/1442
  45181. }
  45182. },
  45183. },
  45184. [
  45185. {
  45186. name: "Normal",
  45187. height: math.unit(6 + 7/12, "feet"),
  45188. default: true
  45189. },
  45190. {
  45191. name: "Librarian",
  45192. height: math.unit(55, "feet")
  45193. },
  45194. {
  45195. name: "Sightseer",
  45196. height: math.unit(50, "miles")
  45197. },
  45198. {
  45199. name: "Giga",
  45200. height: math.unit(30000, "miles")
  45201. },
  45202. ]
  45203. ))
  45204. characterMakers.push(() => makeCharacter(
  45205. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45206. {
  45207. nude: {
  45208. height: math.unit(8, "feet"),
  45209. weight: math.unit(225, "lb"),
  45210. name: "Nude",
  45211. image: {
  45212. source: "./media/characters/marvy/nude.svg",
  45213. extra: 1900/1683,
  45214. bottom: 89/1989
  45215. }
  45216. },
  45217. dressed: {
  45218. height: math.unit(8, "feet"),
  45219. weight: math.unit(225, "lb"),
  45220. name: "Dressed",
  45221. image: {
  45222. source: "./media/characters/marvy/dressed.svg",
  45223. extra: 1900/1683,
  45224. bottom: 89/1989
  45225. }
  45226. },
  45227. head: {
  45228. height: math.unit(2.85, "feet"),
  45229. name: "Head",
  45230. image: {
  45231. source: "./media/characters/marvy/head.svg"
  45232. }
  45233. },
  45234. },
  45235. [
  45236. {
  45237. name: "Normal",
  45238. height: math.unit(8, "feet"),
  45239. default: true
  45240. },
  45241. ]
  45242. ))
  45243. characterMakers.push(() => makeCharacter(
  45244. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45245. {
  45246. front: {
  45247. height: math.unit(8, "feet"),
  45248. weight: math.unit(250, "lb"),
  45249. name: "Front",
  45250. image: {
  45251. source: "./media/characters/leah/front.svg",
  45252. extra: 1257/1149,
  45253. bottom: 109/1366
  45254. }
  45255. },
  45256. },
  45257. [
  45258. {
  45259. name: "Normal",
  45260. height: math.unit(8, "feet"),
  45261. default: true
  45262. },
  45263. {
  45264. name: "Minimacro",
  45265. height: math.unit(40, "feet")
  45266. },
  45267. {
  45268. name: "Macro",
  45269. height: math.unit(124, "feet")
  45270. },
  45271. {
  45272. name: "Megamacro",
  45273. height: math.unit(850, "feet")
  45274. },
  45275. ]
  45276. ))
  45277. characterMakers.push(() => makeCharacter(
  45278. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45279. {
  45280. side: {
  45281. height: math.unit(13 + 6/12, "feet"),
  45282. weight: math.unit(3200, "lb"),
  45283. name: "Side",
  45284. image: {
  45285. source: "./media/characters/alvir/side.svg",
  45286. extra: 896/589,
  45287. bottom: 26/922
  45288. }
  45289. },
  45290. },
  45291. [
  45292. {
  45293. name: "Normal",
  45294. height: math.unit(13 + 6/12, "feet"),
  45295. default: true
  45296. },
  45297. ]
  45298. ))
  45299. characterMakers.push(() => makeCharacter(
  45300. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45301. {
  45302. front: {
  45303. height: math.unit(5 + 4/12, "feet"),
  45304. weight: math.unit(236, "lb"),
  45305. name: "Front",
  45306. image: {
  45307. source: "./media/characters/zaina-khalil/front.svg",
  45308. extra: 1533/1485,
  45309. bottom: 94/1627
  45310. }
  45311. },
  45312. side: {
  45313. height: math.unit(5 + 4/12, "feet"),
  45314. weight: math.unit(236, "lb"),
  45315. name: "Side",
  45316. image: {
  45317. source: "./media/characters/zaina-khalil/side.svg",
  45318. extra: 1537/1498,
  45319. bottom: 66/1603
  45320. }
  45321. },
  45322. back: {
  45323. height: math.unit(5 + 4/12, "feet"),
  45324. weight: math.unit(236, "lb"),
  45325. name: "Back",
  45326. image: {
  45327. source: "./media/characters/zaina-khalil/back.svg",
  45328. extra: 1546/1494,
  45329. bottom: 89/1635
  45330. }
  45331. },
  45332. },
  45333. [
  45334. {
  45335. name: "Normal",
  45336. height: math.unit(5 + 4/12, "feet"),
  45337. default: true
  45338. },
  45339. ]
  45340. ))
  45341. characterMakers.push(() => makeCharacter(
  45342. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45343. {
  45344. side: {
  45345. height: math.unit(12, "feet"),
  45346. weight: math.unit(4000, "lb"),
  45347. name: "Side",
  45348. image: {
  45349. source: "./media/characters/terry/side.svg",
  45350. extra: 1518/1439,
  45351. bottom: 149/1667
  45352. }
  45353. },
  45354. },
  45355. [
  45356. {
  45357. name: "Normal",
  45358. height: math.unit(12, "feet"),
  45359. default: true
  45360. },
  45361. ]
  45362. ))
  45363. characterMakers.push(() => makeCharacter(
  45364. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45365. {
  45366. front: {
  45367. height: math.unit(12, "feet"),
  45368. weight: math.unit(1500, "lb"),
  45369. name: "Front",
  45370. image: {
  45371. source: "./media/characters/kahea/front.svg",
  45372. extra: 1722/1617,
  45373. bottom: 179/1901
  45374. }
  45375. },
  45376. },
  45377. [
  45378. {
  45379. name: "Normal",
  45380. height: math.unit(12, "feet"),
  45381. default: true
  45382. },
  45383. ]
  45384. ))
  45385. characterMakers.push(() => makeCharacter(
  45386. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45387. {
  45388. demonFront: {
  45389. height: math.unit(36, "feet"),
  45390. name: "Front",
  45391. image: {
  45392. source: "./media/characters/alex-xuria/demon-front.svg",
  45393. extra: 1705/1673,
  45394. bottom: 198/1903
  45395. },
  45396. form: "demon",
  45397. default: true
  45398. },
  45399. demonBack: {
  45400. height: math.unit(36, "feet"),
  45401. name: "Back",
  45402. image: {
  45403. source: "./media/characters/alex-xuria/demon-back.svg",
  45404. extra: 1725/1693,
  45405. bottom: 70/1795
  45406. },
  45407. form: "demon"
  45408. },
  45409. demonHead: {
  45410. height: math.unit(2.14, "meters"),
  45411. name: "Head",
  45412. image: {
  45413. source: "./media/characters/alex-xuria/demon-head.svg"
  45414. },
  45415. form: "demon"
  45416. },
  45417. demonHand: {
  45418. height: math.unit(1.61, "meters"),
  45419. name: "Hand",
  45420. image: {
  45421. source: "./media/characters/alex-xuria/demon-hand.svg"
  45422. },
  45423. form: "demon"
  45424. },
  45425. demonPaw: {
  45426. height: math.unit(1.35, "meters"),
  45427. name: "Paw",
  45428. image: {
  45429. source: "./media/characters/alex-xuria/demon-paw.svg"
  45430. },
  45431. form: "demon"
  45432. },
  45433. demonFoot: {
  45434. height: math.unit(2.2, "meters"),
  45435. name: "Foot",
  45436. image: {
  45437. source: "./media/characters/alex-xuria/demon-foot.svg"
  45438. },
  45439. form: "demon"
  45440. },
  45441. demonCock: {
  45442. height: math.unit(1.74, "meters"),
  45443. name: "Cock",
  45444. image: {
  45445. source: "./media/characters/alex-xuria/demon-cock.svg"
  45446. },
  45447. form: "demon"
  45448. },
  45449. demonTailClosed: {
  45450. height: math.unit(1.47, "meters"),
  45451. name: "Tail (Closed)",
  45452. image: {
  45453. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45454. },
  45455. form: "demon"
  45456. },
  45457. demonTailOpen: {
  45458. height: math.unit(2.85, "meters"),
  45459. name: "Tail (Open)",
  45460. image: {
  45461. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45462. },
  45463. form: "demon"
  45464. },
  45465. incubusFront: {
  45466. height: math.unit(12, "feet"),
  45467. name: "Front",
  45468. image: {
  45469. source: "./media/characters/alex-xuria/incubus-front.svg",
  45470. extra: 1754/1677,
  45471. bottom: 125/1879
  45472. },
  45473. form: "incubus",
  45474. default: true
  45475. },
  45476. incubusBack: {
  45477. height: math.unit(12, "feet"),
  45478. name: "Back",
  45479. image: {
  45480. source: "./media/characters/alex-xuria/incubus-back.svg",
  45481. extra: 1702/1647,
  45482. bottom: 30/1732
  45483. },
  45484. form: "incubus"
  45485. },
  45486. incubusHead: {
  45487. height: math.unit(3.45, "feet"),
  45488. name: "Head",
  45489. image: {
  45490. source: "./media/characters/alex-xuria/incubus-head.svg"
  45491. },
  45492. form: "incubus"
  45493. },
  45494. rabbitFront: {
  45495. height: math.unit(6, "feet"),
  45496. name: "Front",
  45497. image: {
  45498. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45499. extra: 1369/1349,
  45500. bottom: 45/1414
  45501. },
  45502. form: "rabbit",
  45503. default: true
  45504. },
  45505. rabbitSide: {
  45506. height: math.unit(6, "feet"),
  45507. name: "Side",
  45508. image: {
  45509. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45510. extra: 1370/1356,
  45511. bottom: 37/1407
  45512. },
  45513. form: "rabbit"
  45514. },
  45515. rabbitBack: {
  45516. height: math.unit(6, "feet"),
  45517. name: "Back",
  45518. image: {
  45519. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45520. extra: 1375/1358,
  45521. bottom: 43/1418
  45522. },
  45523. form: "rabbit"
  45524. },
  45525. },
  45526. [
  45527. {
  45528. name: "Normal",
  45529. height: math.unit(6, "feet"),
  45530. default: true,
  45531. form: "rabbit"
  45532. },
  45533. {
  45534. name: "Incubus",
  45535. height: math.unit(12, "feet"),
  45536. default: true,
  45537. form: "incubus"
  45538. },
  45539. {
  45540. name: "Demon",
  45541. height: math.unit(36, "feet"),
  45542. default: true,
  45543. form: "demon"
  45544. }
  45545. ],
  45546. {
  45547. "demon": {
  45548. name: "Demon",
  45549. default: true
  45550. },
  45551. "incubus": {
  45552. name: "Incubus",
  45553. },
  45554. "rabbit": {
  45555. name: "Rabbit"
  45556. }
  45557. }
  45558. ))
  45559. characterMakers.push(() => makeCharacter(
  45560. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45561. {
  45562. front: {
  45563. height: math.unit(7 + 5/12, "feet"),
  45564. weight: math.unit(510, "lb"),
  45565. name: "Front",
  45566. image: {
  45567. source: "./media/characters/syrup/front.svg",
  45568. extra: 932/916,
  45569. bottom: 26/958
  45570. }
  45571. },
  45572. },
  45573. [
  45574. {
  45575. name: "Normal",
  45576. height: math.unit(7 + 5/12, "feet"),
  45577. default: true
  45578. },
  45579. {
  45580. name: "Big",
  45581. height: math.unit(50, "feet")
  45582. },
  45583. {
  45584. name: "Macro",
  45585. height: math.unit(300, "feet")
  45586. },
  45587. {
  45588. name: "Megamacro",
  45589. height: math.unit(1, "mile")
  45590. },
  45591. ]
  45592. ))
  45593. characterMakers.push(() => makeCharacter(
  45594. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45595. {
  45596. front: {
  45597. height: math.unit(6 + 9/12, "feet"),
  45598. name: "Front",
  45599. image: {
  45600. source: "./media/characters/zeimne/front.svg",
  45601. extra: 1969/1806,
  45602. bottom: 53/2022
  45603. }
  45604. },
  45605. },
  45606. [
  45607. {
  45608. name: "Normal",
  45609. height: math.unit(6 + 9/12, "feet"),
  45610. default: true
  45611. },
  45612. {
  45613. name: "Giant",
  45614. height: math.unit(550, "feet")
  45615. },
  45616. {
  45617. name: "Mega",
  45618. height: math.unit(3, "miles")
  45619. },
  45620. {
  45621. name: "Giga",
  45622. height: math.unit(250, "miles")
  45623. },
  45624. {
  45625. name: "Tera",
  45626. height: math.unit(1, "AU")
  45627. },
  45628. ]
  45629. ))
  45630. characterMakers.push(() => makeCharacter(
  45631. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45632. {
  45633. front: {
  45634. height: math.unit(5 + 2/12, "feet"),
  45635. name: "Front",
  45636. image: {
  45637. source: "./media/characters/grar/front.svg",
  45638. extra: 1331/1119,
  45639. bottom: 60/1391
  45640. }
  45641. },
  45642. back: {
  45643. height: math.unit(5 + 2/12, "feet"),
  45644. name: "Back",
  45645. image: {
  45646. source: "./media/characters/grar/back.svg",
  45647. extra: 1385/1169,
  45648. bottom: 23/1408
  45649. }
  45650. },
  45651. },
  45652. [
  45653. {
  45654. name: "Normal",
  45655. height: math.unit(5 + 2/12, "feet"),
  45656. default: true
  45657. },
  45658. ]
  45659. ))
  45660. characterMakers.push(() => makeCharacter(
  45661. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45662. {
  45663. front: {
  45664. height: math.unit(13 + 7/12, "feet"),
  45665. weight: math.unit(2200, "lb"),
  45666. name: "Front",
  45667. image: {
  45668. source: "./media/characters/endraya/front.svg",
  45669. extra: 1289/1215,
  45670. bottom: 50/1339
  45671. }
  45672. },
  45673. nude: {
  45674. height: math.unit(13 + 7/12, "feet"),
  45675. weight: math.unit(2200, "lb"),
  45676. name: "Nude",
  45677. image: {
  45678. source: "./media/characters/endraya/nude.svg",
  45679. extra: 1247/1171,
  45680. bottom: 40/1287
  45681. }
  45682. },
  45683. head: {
  45684. height: math.unit(2.6, "feet"),
  45685. name: "Head",
  45686. image: {
  45687. source: "./media/characters/endraya/head.svg"
  45688. }
  45689. },
  45690. slit: {
  45691. height: math.unit(3.4, "feet"),
  45692. name: "Slit",
  45693. image: {
  45694. source: "./media/characters/endraya/slit.svg"
  45695. }
  45696. },
  45697. },
  45698. [
  45699. {
  45700. name: "Normal",
  45701. height: math.unit(13 + 7/12, "feet"),
  45702. default: true
  45703. },
  45704. {
  45705. name: "Macro",
  45706. height: math.unit(200, "feet")
  45707. },
  45708. ]
  45709. ))
  45710. characterMakers.push(() => makeCharacter(
  45711. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45712. {
  45713. front: {
  45714. height: math.unit(412, "meters"),
  45715. name: "Front",
  45716. image: {
  45717. source: "./media/characters/rodryana/front.svg",
  45718. extra: 2002/1921,
  45719. bottom: 53/2055
  45720. }
  45721. },
  45722. back: {
  45723. height: math.unit(412, "meters"),
  45724. name: "Back",
  45725. image: {
  45726. source: "./media/characters/rodryana/back.svg",
  45727. extra: 1993/1926,
  45728. bottom: 48/2041
  45729. }
  45730. },
  45731. maw: {
  45732. height: math.unit(45, "meters"),
  45733. name: "Maw",
  45734. image: {
  45735. source: "./media/characters/rodryana/maw.svg"
  45736. }
  45737. },
  45738. slit: {
  45739. height: math.unit(72, "meters"),
  45740. name: "Slit",
  45741. image: {
  45742. source: "./media/characters/rodryana/slit.svg"
  45743. }
  45744. },
  45745. },
  45746. [
  45747. {
  45748. name: "Macro",
  45749. height: math.unit(412, "meters"),
  45750. default: true
  45751. },
  45752. ]
  45753. ))
  45754. characterMakers.push(() => makeCharacter(
  45755. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45756. {
  45757. front: {
  45758. height: math.unit(6, "feet"),
  45759. weight: math.unit(1000, "lb"),
  45760. name: "Front",
  45761. image: {
  45762. source: "./media/characters/asaya/front.svg",
  45763. extra: 1460/1200,
  45764. bottom: 71/1531
  45765. }
  45766. },
  45767. },
  45768. [
  45769. {
  45770. name: "Normal",
  45771. height: math.unit(8, "km"),
  45772. default: true
  45773. },
  45774. ]
  45775. ))
  45776. characterMakers.push(() => makeCharacter(
  45777. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45778. {
  45779. front: {
  45780. height: math.unit(3.5, "meters"),
  45781. name: "Front",
  45782. image: {
  45783. source: "./media/characters/sarzu-and-israz/front.svg",
  45784. extra: 1570/1558,
  45785. bottom: 150/1720
  45786. },
  45787. },
  45788. back: {
  45789. height: math.unit(3.5, "meters"),
  45790. name: "Back",
  45791. image: {
  45792. source: "./media/characters/sarzu-and-israz/back.svg",
  45793. extra: 1523/1509,
  45794. bottom: 132/1655
  45795. },
  45796. },
  45797. frontFemale: {
  45798. height: math.unit(3.5, "meters"),
  45799. name: "Front (Female)",
  45800. image: {
  45801. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45802. extra: 1570/1558,
  45803. bottom: 150/1720
  45804. },
  45805. },
  45806. frontHerm: {
  45807. height: math.unit(3.5, "meters"),
  45808. name: "Front (Herm)",
  45809. image: {
  45810. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45811. extra: 1570/1558,
  45812. bottom: 150/1720
  45813. },
  45814. },
  45815. },
  45816. [
  45817. {
  45818. name: "Normal",
  45819. height: math.unit(3.5, "meters"),
  45820. default: true,
  45821. },
  45822. {
  45823. name: "Macro",
  45824. height: math.unit(65.5, "meters"),
  45825. },
  45826. ],
  45827. ))
  45828. characterMakers.push(() => makeCharacter(
  45829. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45830. {
  45831. front: {
  45832. height: math.unit(6, "feet"),
  45833. weight: math.unit(250, "lb"),
  45834. name: "Front",
  45835. image: {
  45836. source: "./media/characters/zenimma/front.svg",
  45837. extra: 1346/1320,
  45838. bottom: 58/1404
  45839. }
  45840. },
  45841. back: {
  45842. height: math.unit(6, "feet"),
  45843. weight: math.unit(250, "lb"),
  45844. name: "Back",
  45845. image: {
  45846. source: "./media/characters/zenimma/back.svg",
  45847. extra: 1324/1308,
  45848. bottom: 44/1368
  45849. }
  45850. },
  45851. dick: {
  45852. height: math.unit(1.44, "feet"),
  45853. name: "Dick",
  45854. image: {
  45855. source: "./media/characters/zenimma/dick.svg"
  45856. }
  45857. },
  45858. },
  45859. [
  45860. {
  45861. name: "Canon Height",
  45862. height: math.unit(66, "miles"),
  45863. default: true
  45864. },
  45865. ]
  45866. ))
  45867. characterMakers.push(() => makeCharacter(
  45868. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45869. {
  45870. nude: {
  45871. height: math.unit(6, "feet"),
  45872. weight: math.unit(150, "lb"),
  45873. name: "Nude",
  45874. image: {
  45875. source: "./media/characters/shavon/nude.svg",
  45876. extra: 1242/1096,
  45877. bottom: 98/1340
  45878. }
  45879. },
  45880. dressed: {
  45881. height: math.unit(6, "feet"),
  45882. weight: math.unit(150, "lb"),
  45883. name: "Dressed",
  45884. image: {
  45885. source: "./media/characters/shavon/dressed.svg",
  45886. extra: 1242/1096,
  45887. bottom: 98/1340
  45888. }
  45889. },
  45890. },
  45891. [
  45892. {
  45893. name: "Macro",
  45894. height: math.unit(255, "feet"),
  45895. default: true
  45896. },
  45897. ]
  45898. ))
  45899. characterMakers.push(() => makeCharacter(
  45900. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45901. {
  45902. front: {
  45903. height: math.unit(6, "feet"),
  45904. name: "Front",
  45905. image: {
  45906. source: "./media/characters/steph/front.svg",
  45907. extra: 1430/1330,
  45908. bottom: 54/1484
  45909. }
  45910. },
  45911. },
  45912. [
  45913. {
  45914. name: "Normal",
  45915. height: math.unit(6, "feet"),
  45916. default: true
  45917. },
  45918. ]
  45919. ))
  45920. characterMakers.push(() => makeCharacter(
  45921. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45922. {
  45923. front: {
  45924. height: math.unit(9, "feet"),
  45925. weight: math.unit(400, "lb"),
  45926. name: "Front",
  45927. image: {
  45928. source: "./media/characters/kil'aman/front.svg",
  45929. extra: 1210/1159,
  45930. bottom: 109/1319
  45931. }
  45932. },
  45933. head: {
  45934. height: math.unit(2.14, "feet"),
  45935. name: "Head",
  45936. image: {
  45937. source: "./media/characters/kil'aman/head.svg"
  45938. }
  45939. },
  45940. maw: {
  45941. height: math.unit(1.21, "feet"),
  45942. name: "Maw",
  45943. image: {
  45944. source: "./media/characters/kil'aman/maw.svg"
  45945. }
  45946. },
  45947. foot: {
  45948. height: math.unit(1.7, "feet"),
  45949. name: "Foot",
  45950. image: {
  45951. source: "./media/characters/kil'aman/foot.svg"
  45952. }
  45953. },
  45954. dick: {
  45955. height: math.unit(2.1, "feet"),
  45956. name: "Dick",
  45957. image: {
  45958. source: "./media/characters/kil'aman/dick.svg"
  45959. }
  45960. },
  45961. },
  45962. [
  45963. {
  45964. name: "Normal",
  45965. height: math.unit(9, "feet")
  45966. },
  45967. {
  45968. name: "Canon Height",
  45969. height: math.unit(10, "miles"),
  45970. default: true
  45971. },
  45972. {
  45973. name: "Maximum",
  45974. height: math.unit(6e9, "miles")
  45975. },
  45976. ]
  45977. ))
  45978. characterMakers.push(() => makeCharacter(
  45979. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45980. {
  45981. front: {
  45982. height: math.unit(90, "feet"),
  45983. weight: math.unit(675000, "lb"),
  45984. name: "Front",
  45985. image: {
  45986. source: "./media/characters/qadan/front.svg",
  45987. extra: 1012/1004,
  45988. bottom: 78/1090
  45989. }
  45990. },
  45991. back: {
  45992. height: math.unit(90, "feet"),
  45993. weight: math.unit(675000, "lb"),
  45994. name: "Back",
  45995. image: {
  45996. source: "./media/characters/qadan/back.svg",
  45997. extra: 1042/1031,
  45998. bottom: 55/1097
  45999. }
  46000. },
  46001. armored: {
  46002. height: math.unit(90, "feet"),
  46003. weight: math.unit(675000, "lb"),
  46004. name: "Armored",
  46005. image: {
  46006. source: "./media/characters/qadan/armored.svg",
  46007. extra: 1047/1037,
  46008. bottom: 48/1095
  46009. }
  46010. },
  46011. },
  46012. [
  46013. {
  46014. name: "Normal",
  46015. height: math.unit(90, "feet"),
  46016. default: true
  46017. },
  46018. ]
  46019. ))
  46020. characterMakers.push(() => makeCharacter(
  46021. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46022. {
  46023. front: {
  46024. height: math.unit(6, "feet"),
  46025. weight: math.unit(225, "lb"),
  46026. name: "Front",
  46027. image: {
  46028. source: "./media/characters/brooke/front.svg",
  46029. extra: 1050/1010,
  46030. bottom: 66/1116
  46031. }
  46032. },
  46033. back: {
  46034. height: math.unit(6, "feet"),
  46035. weight: math.unit(225, "lb"),
  46036. name: "Back",
  46037. image: {
  46038. source: "./media/characters/brooke/back.svg",
  46039. extra: 1053/1013,
  46040. bottom: 41/1094
  46041. }
  46042. },
  46043. dressed: {
  46044. height: math.unit(6, "feet"),
  46045. weight: math.unit(225, "lb"),
  46046. name: "Dressed",
  46047. image: {
  46048. source: "./media/characters/brooke/dressed.svg",
  46049. extra: 1050/1010,
  46050. bottom: 66/1116
  46051. }
  46052. },
  46053. },
  46054. [
  46055. {
  46056. name: "Canon Height",
  46057. height: math.unit(500, "miles"),
  46058. default: true
  46059. },
  46060. ]
  46061. ))
  46062. characterMakers.push(() => makeCharacter(
  46063. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46064. {
  46065. front: {
  46066. height: math.unit(6 + 2/12, "feet"),
  46067. weight: math.unit(210, "lb"),
  46068. name: "Front",
  46069. image: {
  46070. source: "./media/characters/wubs/front.svg",
  46071. extra: 1345/1325,
  46072. bottom: 70/1415
  46073. }
  46074. },
  46075. back: {
  46076. height: math.unit(6 + 2/12, "feet"),
  46077. weight: math.unit(210, "lb"),
  46078. name: "Back",
  46079. image: {
  46080. source: "./media/characters/wubs/back.svg",
  46081. extra: 1296/1275,
  46082. bottom: 58/1354
  46083. }
  46084. },
  46085. },
  46086. [
  46087. {
  46088. name: "Normal",
  46089. height: math.unit(6 + 2/12, "feet"),
  46090. default: true
  46091. },
  46092. {
  46093. name: "Macro",
  46094. height: math.unit(1000, "feet")
  46095. },
  46096. {
  46097. name: "Megamacro",
  46098. height: math.unit(1, "mile")
  46099. },
  46100. ]
  46101. ))
  46102. characterMakers.push(() => makeCharacter(
  46103. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46104. {
  46105. front: {
  46106. height: math.unit(4, "feet"),
  46107. weight: math.unit(120, "lb"),
  46108. name: "Front",
  46109. image: {
  46110. source: "./media/characters/blue/front.svg",
  46111. extra: 1636/1525,
  46112. bottom: 43/1679
  46113. }
  46114. },
  46115. back: {
  46116. height: math.unit(4, "feet"),
  46117. weight: math.unit(120, "lb"),
  46118. name: "Back",
  46119. image: {
  46120. source: "./media/characters/blue/back.svg",
  46121. extra: 1660/1560,
  46122. bottom: 57/1717
  46123. }
  46124. },
  46125. paws: {
  46126. height: math.unit(0.826, "feet"),
  46127. name: "Paws",
  46128. image: {
  46129. source: "./media/characters/blue/paws.svg"
  46130. }
  46131. },
  46132. },
  46133. [
  46134. {
  46135. name: "Micro",
  46136. height: math.unit(3, "inches")
  46137. },
  46138. {
  46139. name: "Normal",
  46140. height: math.unit(4, "feet"),
  46141. default: true
  46142. },
  46143. {
  46144. name: "Femenine Form",
  46145. height: math.unit(14, "feet")
  46146. },
  46147. {
  46148. name: "Werebat Form",
  46149. height: math.unit(18, "feet")
  46150. },
  46151. ]
  46152. ))
  46153. characterMakers.push(() => makeCharacter(
  46154. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46155. {
  46156. female: {
  46157. height: math.unit(7 + 4/12, "feet"),
  46158. weight: math.unit(243, "lb"),
  46159. name: "Female",
  46160. image: {
  46161. source: "./media/characters/kaya/female.svg",
  46162. extra: 975/898,
  46163. bottom: 34/1009
  46164. }
  46165. },
  46166. herm: {
  46167. height: math.unit(7 + 4/12, "feet"),
  46168. weight: math.unit(243, "lb"),
  46169. name: "Herm",
  46170. image: {
  46171. source: "./media/characters/kaya/herm.svg",
  46172. extra: 975/898,
  46173. bottom: 34/1009
  46174. }
  46175. },
  46176. },
  46177. [
  46178. {
  46179. name: "Normal",
  46180. height: math.unit(7 + 4/12, "feet"),
  46181. default: true
  46182. },
  46183. ]
  46184. ))
  46185. characterMakers.push(() => makeCharacter(
  46186. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46187. {
  46188. female: {
  46189. height: math.unit(9 + 4/12, "feet"),
  46190. weight: math.unit(398, "lb"),
  46191. name: "Female",
  46192. image: {
  46193. source: "./media/characters/kassandra/female.svg",
  46194. extra: 908/839,
  46195. bottom: 61/969
  46196. }
  46197. },
  46198. intersex: {
  46199. height: math.unit(9 + 4/12, "feet"),
  46200. weight: math.unit(398, "lb"),
  46201. name: "Intersex",
  46202. image: {
  46203. source: "./media/characters/kassandra/intersex.svg",
  46204. extra: 908/839,
  46205. bottom: 61/969
  46206. }
  46207. },
  46208. },
  46209. [
  46210. {
  46211. name: "Normal",
  46212. height: math.unit(9 + 4/12, "feet"),
  46213. default: true
  46214. },
  46215. ]
  46216. ))
  46217. characterMakers.push(() => makeCharacter(
  46218. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46219. {
  46220. front: {
  46221. height: math.unit(3, "meters"),
  46222. name: "Front",
  46223. image: {
  46224. source: "./media/characters/amy/front.svg",
  46225. extra: 1380/1343,
  46226. bottom: 70/1450
  46227. }
  46228. },
  46229. back: {
  46230. height: math.unit(3, "meters"),
  46231. name: "Back",
  46232. image: {
  46233. source: "./media/characters/amy/back.svg",
  46234. extra: 1380/1347,
  46235. bottom: 66/1446
  46236. }
  46237. },
  46238. },
  46239. [
  46240. {
  46241. name: "Normal",
  46242. height: math.unit(3, "meters"),
  46243. default: true
  46244. },
  46245. ]
  46246. ))
  46247. characterMakers.push(() => makeCharacter(
  46248. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46249. {
  46250. side: {
  46251. height: math.unit(47, "cm"),
  46252. weight: math.unit(10.8, "kg"),
  46253. name: "Side",
  46254. image: {
  46255. source: "./media/characters/alphaschakal/side.svg",
  46256. extra: 1058/568,
  46257. bottom: 62/1120
  46258. }
  46259. },
  46260. back: {
  46261. height: math.unit(78, "cm"),
  46262. weight: math.unit(10.8, "kg"),
  46263. name: "Back",
  46264. image: {
  46265. source: "./media/characters/alphaschakal/back.svg",
  46266. extra: 1102/942,
  46267. bottom: 185/1287
  46268. }
  46269. },
  46270. head: {
  46271. height: math.unit(28, "cm"),
  46272. name: "Head",
  46273. image: {
  46274. source: "./media/characters/alphaschakal/head.svg",
  46275. extra: 696/508,
  46276. bottom: 0/696
  46277. }
  46278. },
  46279. paw: {
  46280. height: math.unit(16, "cm"),
  46281. name: "Paw",
  46282. image: {
  46283. source: "./media/characters/alphaschakal/paw.svg"
  46284. }
  46285. },
  46286. },
  46287. [
  46288. {
  46289. name: "Normal",
  46290. height: math.unit(47, "cm"),
  46291. default: true
  46292. },
  46293. {
  46294. name: "Macro",
  46295. height: math.unit(340, "cm")
  46296. },
  46297. ]
  46298. ))
  46299. characterMakers.push(() => makeCharacter(
  46300. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46301. {
  46302. front: {
  46303. height: math.unit(36, "earths"),
  46304. name: "Front",
  46305. image: {
  46306. source: "./media/characters/ecobyss/front.svg",
  46307. extra: 1282/1215,
  46308. bottom: 11/1293
  46309. }
  46310. },
  46311. back: {
  46312. height: math.unit(36, "earths"),
  46313. name: "Back",
  46314. image: {
  46315. source: "./media/characters/ecobyss/back.svg",
  46316. extra: 1291/1222,
  46317. bottom: 8/1299
  46318. }
  46319. },
  46320. },
  46321. [
  46322. {
  46323. name: "Normal",
  46324. height: math.unit(36, "earths"),
  46325. default: true
  46326. },
  46327. ]
  46328. ))
  46329. characterMakers.push(() => makeCharacter(
  46330. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46331. {
  46332. front: {
  46333. height: math.unit(12, "feet"),
  46334. name: "Front",
  46335. image: {
  46336. source: "./media/characters/vasuk/front.svg",
  46337. extra: 1326/1207,
  46338. bottom: 64/1390
  46339. }
  46340. },
  46341. },
  46342. [
  46343. {
  46344. name: "Normal",
  46345. height: math.unit(12, "feet"),
  46346. default: true
  46347. },
  46348. ]
  46349. ))
  46350. characterMakers.push(() => makeCharacter(
  46351. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46352. {
  46353. side: {
  46354. height: math.unit(100, "feet"),
  46355. name: "Side",
  46356. image: {
  46357. source: "./media/characters/linneaus/side.svg",
  46358. extra: 987/807,
  46359. bottom: 47/1034
  46360. }
  46361. },
  46362. },
  46363. [
  46364. {
  46365. name: "Macro",
  46366. height: math.unit(100, "feet"),
  46367. default: true
  46368. },
  46369. ]
  46370. ))
  46371. characterMakers.push(() => makeCharacter(
  46372. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46373. {
  46374. front: {
  46375. height: math.unit(8, "feet"),
  46376. weight: math.unit(1200, "lb"),
  46377. name: "Front",
  46378. image: {
  46379. source: "./media/characters/nyterious-daligdig/front.svg",
  46380. extra: 1284/1094,
  46381. bottom: 84/1368
  46382. }
  46383. },
  46384. back: {
  46385. height: math.unit(8, "feet"),
  46386. weight: math.unit(1200, "lb"),
  46387. name: "Back",
  46388. image: {
  46389. source: "./media/characters/nyterious-daligdig/back.svg",
  46390. extra: 1301/1121,
  46391. bottom: 129/1430
  46392. }
  46393. },
  46394. mouth: {
  46395. height: math.unit(1.464, "feet"),
  46396. name: "Mouth",
  46397. image: {
  46398. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46399. }
  46400. },
  46401. },
  46402. [
  46403. {
  46404. name: "Small",
  46405. height: math.unit(8, "feet"),
  46406. default: true
  46407. },
  46408. {
  46409. name: "Normal",
  46410. height: math.unit(15, "feet")
  46411. },
  46412. {
  46413. name: "Macro",
  46414. height: math.unit(90, "feet")
  46415. },
  46416. ]
  46417. ))
  46418. characterMakers.push(() => makeCharacter(
  46419. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46420. {
  46421. front: {
  46422. height: math.unit(7 + 4/12, "feet"),
  46423. weight: math.unit(252, "lb"),
  46424. name: "Front",
  46425. image: {
  46426. source: "./media/characters/bandel/front.svg",
  46427. extra: 1946/1775,
  46428. bottom: 26/1972
  46429. }
  46430. },
  46431. back: {
  46432. height: math.unit(7 + 4/12, "feet"),
  46433. weight: math.unit(252, "lb"),
  46434. name: "Back",
  46435. image: {
  46436. source: "./media/characters/bandel/back.svg",
  46437. extra: 1940/1770,
  46438. bottom: 25/1965
  46439. }
  46440. },
  46441. maw: {
  46442. height: math.unit(2.15, "feet"),
  46443. name: "Maw",
  46444. image: {
  46445. source: "./media/characters/bandel/maw.svg"
  46446. }
  46447. },
  46448. stomach: {
  46449. height: math.unit(1.95, "feet"),
  46450. name: "Stomach",
  46451. image: {
  46452. source: "./media/characters/bandel/stomach.svg"
  46453. }
  46454. },
  46455. },
  46456. [
  46457. {
  46458. name: "Normal",
  46459. height: math.unit(7 + 4/12, "feet"),
  46460. default: true
  46461. },
  46462. ]
  46463. ))
  46464. characterMakers.push(() => makeCharacter(
  46465. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46466. {
  46467. front: {
  46468. height: math.unit(10 + 5/12, "feet"),
  46469. weight: math.unit(773.5, "kg"),
  46470. name: "Front",
  46471. image: {
  46472. source: "./media/characters/zed/front.svg",
  46473. extra: 987/941,
  46474. bottom: 52/1039
  46475. }
  46476. },
  46477. },
  46478. [
  46479. {
  46480. name: "Short",
  46481. height: math.unit(5 + 4/12, "feet")
  46482. },
  46483. {
  46484. name: "Average",
  46485. height: math.unit(10 + 5/12, "feet"),
  46486. default: true
  46487. },
  46488. {
  46489. name: "Mini-Macro",
  46490. height: math.unit(24 + 9/12, "feet")
  46491. },
  46492. {
  46493. name: "Macro",
  46494. height: math.unit(249, "feet")
  46495. },
  46496. {
  46497. name: "Mega-Macro",
  46498. height: math.unit(12490, "feet")
  46499. },
  46500. {
  46501. name: "Giga-Macro",
  46502. height: math.unit(24.9, "miles")
  46503. },
  46504. {
  46505. name: "Tera-Macro",
  46506. height: math.unit(24900, "miles")
  46507. },
  46508. {
  46509. name: "Cosmic Scale",
  46510. height: math.unit(38.9, "lightyears")
  46511. },
  46512. {
  46513. name: "Universal Scale",
  46514. height: math.unit(138e12, "lightyears")
  46515. },
  46516. ]
  46517. ))
  46518. characterMakers.push(() => makeCharacter(
  46519. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46520. {
  46521. front: {
  46522. height: math.unit(1561, "inches"),
  46523. name: "Front",
  46524. image: {
  46525. source: "./media/characters/ivan/front.svg",
  46526. extra: 1126/1071,
  46527. bottom: 26/1152
  46528. }
  46529. },
  46530. back: {
  46531. height: math.unit(1561, "inches"),
  46532. name: "Back",
  46533. image: {
  46534. source: "./media/characters/ivan/back.svg",
  46535. extra: 1134/1079,
  46536. bottom: 30/1164
  46537. }
  46538. },
  46539. },
  46540. [
  46541. {
  46542. name: "Normal",
  46543. height: math.unit(1561, "inches"),
  46544. default: true
  46545. },
  46546. ]
  46547. ))
  46548. characterMakers.push(() => makeCharacter(
  46549. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46550. {
  46551. front: {
  46552. height: math.unit(5 + 7/12, "feet"),
  46553. weight: math.unit(150, "lb"),
  46554. name: "Front",
  46555. image: {
  46556. source: "./media/characters/robin-arctic-hare/front.svg",
  46557. extra: 1148/974,
  46558. bottom: 20/1168
  46559. }
  46560. },
  46561. },
  46562. [
  46563. {
  46564. name: "Normal",
  46565. height: math.unit(5 + 7/12, "feet"),
  46566. default: true
  46567. },
  46568. ]
  46569. ))
  46570. characterMakers.push(() => makeCharacter(
  46571. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46572. {
  46573. side: {
  46574. height: math.unit(5, "feet"),
  46575. name: "Side",
  46576. image: {
  46577. source: "./media/characters/birch/side.svg",
  46578. extra: 985/796,
  46579. bottom: 111/1096
  46580. }
  46581. },
  46582. },
  46583. [
  46584. {
  46585. name: "Normal",
  46586. height: math.unit(5, "feet"),
  46587. default: true
  46588. },
  46589. ]
  46590. ))
  46591. characterMakers.push(() => makeCharacter(
  46592. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46593. {
  46594. front: {
  46595. height: math.unit(4, "feet"),
  46596. name: "Front",
  46597. image: {
  46598. source: "./media/characters/rasp/front.svg",
  46599. extra: 561/478,
  46600. bottom: 74/635
  46601. }
  46602. },
  46603. },
  46604. [
  46605. {
  46606. name: "Normal",
  46607. height: math.unit(4, "feet"),
  46608. default: true
  46609. },
  46610. ]
  46611. ))
  46612. characterMakers.push(() => makeCharacter(
  46613. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46614. {
  46615. front: {
  46616. height: math.unit(4 + 6/12, "feet"),
  46617. name: "Front",
  46618. image: {
  46619. source: "./media/characters/agatha/front.svg",
  46620. extra: 947/933,
  46621. bottom: 42/989
  46622. }
  46623. },
  46624. back: {
  46625. height: math.unit(4 + 6/12, "feet"),
  46626. name: "Back",
  46627. image: {
  46628. source: "./media/characters/agatha/back.svg",
  46629. extra: 935/922,
  46630. bottom: 48/983
  46631. }
  46632. },
  46633. },
  46634. [
  46635. {
  46636. name: "Normal",
  46637. height: math.unit(4 + 6 /12, "feet"),
  46638. default: true
  46639. },
  46640. {
  46641. name: "Max Size",
  46642. height: math.unit(500, "feet")
  46643. },
  46644. ]
  46645. ))
  46646. characterMakers.push(() => makeCharacter(
  46647. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46648. {
  46649. side: {
  46650. height: math.unit(30, "feet"),
  46651. name: "Side",
  46652. image: {
  46653. source: "./media/characters/roggy/side.svg",
  46654. extra: 909/643,
  46655. bottom: 63/972
  46656. }
  46657. },
  46658. lounging: {
  46659. height: math.unit(20, "feet"),
  46660. name: "Lounging",
  46661. image: {
  46662. source: "./media/characters/roggy/lounging.svg",
  46663. extra: 643/479,
  46664. bottom: 145/788
  46665. }
  46666. },
  46667. handpaw: {
  46668. height: math.unit(13.1, "feet"),
  46669. name: "Handpaw",
  46670. image: {
  46671. source: "./media/characters/roggy/handpaw.svg"
  46672. }
  46673. },
  46674. footpaw: {
  46675. height: math.unit(15.8, "feet"),
  46676. name: "Footpaw",
  46677. image: {
  46678. source: "./media/characters/roggy/footpaw.svg"
  46679. }
  46680. },
  46681. },
  46682. [
  46683. {
  46684. name: "Menacing",
  46685. height: math.unit(30, "feet"),
  46686. default: true
  46687. },
  46688. ]
  46689. ))
  46690. characterMakers.push(() => makeCharacter(
  46691. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  46692. {
  46693. front: {
  46694. height: math.unit(5 + 7/12, "feet"),
  46695. weight: math.unit(135, "lb"),
  46696. name: "Front",
  46697. image: {
  46698. source: "./media/characters/naomi/front.svg",
  46699. extra: 1209/1154,
  46700. bottom: 129/1338
  46701. }
  46702. },
  46703. back: {
  46704. height: math.unit(5 + 7/12, "feet"),
  46705. weight: math.unit(135, "lb"),
  46706. name: "Back",
  46707. image: {
  46708. source: "./media/characters/naomi/back.svg",
  46709. extra: 1252/1190,
  46710. bottom: 23/1275
  46711. }
  46712. },
  46713. },
  46714. [
  46715. {
  46716. name: "Normal",
  46717. height: math.unit(5 + 7 /12, "feet"),
  46718. default: true
  46719. },
  46720. ]
  46721. ))
  46722. characterMakers.push(() => makeCharacter(
  46723. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  46724. {
  46725. side: {
  46726. height: math.unit(35, "meters"),
  46727. name: "Side",
  46728. image: {
  46729. source: "./media/characters/kimpi/side.svg",
  46730. extra: 419/382,
  46731. bottom: 63/482
  46732. }
  46733. },
  46734. hand: {
  46735. height: math.unit(8.96, "meters"),
  46736. name: "Hand",
  46737. image: {
  46738. source: "./media/characters/kimpi/hand.svg"
  46739. }
  46740. },
  46741. },
  46742. [
  46743. {
  46744. name: "Normal",
  46745. height: math.unit(35, "meters"),
  46746. default: true
  46747. },
  46748. ]
  46749. ))
  46750. characterMakers.push(() => makeCharacter(
  46751. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  46752. {
  46753. front: {
  46754. height: math.unit(4 + 4/12, "feet"),
  46755. name: "Front",
  46756. image: {
  46757. source: "./media/characters/pepper-purrloin/front.svg",
  46758. extra: 1141/1024,
  46759. bottom: 21/1162
  46760. }
  46761. },
  46762. },
  46763. [
  46764. {
  46765. name: "Normal",
  46766. height: math.unit(4 + 4/12, "feet"),
  46767. default: true
  46768. },
  46769. ]
  46770. ))
  46771. characterMakers.push(() => makeCharacter(
  46772. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  46773. {
  46774. front: {
  46775. height: math.unit(6 + 2/12, "feet"),
  46776. name: "Front",
  46777. image: {
  46778. source: "./media/characters/raphael/front.svg",
  46779. extra: 1101/962,
  46780. bottom: 59/1160
  46781. }
  46782. },
  46783. },
  46784. [
  46785. {
  46786. name: "Normal",
  46787. height: math.unit(6 + 2/12, "feet"),
  46788. default: true
  46789. },
  46790. ]
  46791. ))
  46792. characterMakers.push(() => makeCharacter(
  46793. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  46794. {
  46795. front: {
  46796. height: math.unit(6, "feet"),
  46797. weight: math.unit(150, "lb"),
  46798. name: "Front",
  46799. image: {
  46800. source: "./media/characters/victor-williams/front.svg",
  46801. extra: 1894/1825,
  46802. bottom: 67/1961
  46803. }
  46804. },
  46805. },
  46806. [
  46807. {
  46808. name: "Normal",
  46809. height: math.unit(6, "feet"),
  46810. default: true
  46811. },
  46812. ]
  46813. ))
  46814. characterMakers.push(() => makeCharacter(
  46815. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  46816. {
  46817. front: {
  46818. height: math.unit(5 + 8/12, "feet"),
  46819. weight: math.unit(150, "lb"),
  46820. name: "Front",
  46821. image: {
  46822. source: "./media/characters/rachel/front.svg",
  46823. extra: 1902/1787,
  46824. bottom: 46/1948
  46825. }
  46826. },
  46827. },
  46828. [
  46829. {
  46830. name: "Base Height",
  46831. height: math.unit(5 + 8/12, "feet"),
  46832. default: true
  46833. },
  46834. {
  46835. name: "Macro",
  46836. height: math.unit(200, "feet")
  46837. },
  46838. {
  46839. name: "Mega Macro",
  46840. height: math.unit(1, "mile")
  46841. },
  46842. {
  46843. name: "Giga Macro",
  46844. height: math.unit(1500, "miles")
  46845. },
  46846. {
  46847. name: "Tera Macro",
  46848. height: math.unit(8000, "miles")
  46849. },
  46850. {
  46851. name: "Tera Macro+",
  46852. height: math.unit(2e5, "miles")
  46853. },
  46854. ]
  46855. ))
  46856. //characters
  46857. function makeCharacters() {
  46858. const results = [];
  46859. characterMakers.forEach(character => {
  46860. results.push(character());
  46861. });
  46862. return results;
  46863. }