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.
 
 
 

49456 lines
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. "ditto": {
  1904. name: "Ditto",
  1905. parents: ["pokemon", "goo"]
  1906. },
  1907. }
  1908. //species
  1909. function getSpeciesInfo(speciesList) {
  1910. let result = new Set();
  1911. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1912. result.add(entry)
  1913. });
  1914. return Array.from(result);
  1915. };
  1916. function getSpeciesInfoHelper(species) {
  1917. if (!speciesData[species]) {
  1918. console.warn(species + " doesn't exist");
  1919. return [];
  1920. }
  1921. if (speciesData[species].parents) {
  1922. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1923. } else {
  1924. return [species];
  1925. }
  1926. }
  1927. characterMakers.push(() => makeCharacter(
  1928. {
  1929. name: "Fen",
  1930. species: ["crux"],
  1931. description: {
  1932. title: "Bio",
  1933. text: "Very furry. Sheds on everything."
  1934. },
  1935. tags: [
  1936. "anthro",
  1937. "goo"
  1938. ]
  1939. },
  1940. {
  1941. front: {
  1942. height: math.unit(12, "feet"),
  1943. weight: math.unit(2400, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/fen/front.svg",
  1947. extra: 1804/1562,
  1948. bottom: 205/2009
  1949. }
  1950. },
  1951. diving: {
  1952. height: math.unit(4.9, "meters"),
  1953. weight: math.unit(2400, "lb"),
  1954. name: "Diving",
  1955. image: {
  1956. source: "./media/characters/fen/diving.svg"
  1957. }
  1958. },
  1959. goo: {
  1960. height: math.unit(12, "feet"),
  1961. weight: math.unit(3600, "lb"),
  1962. volume: math.unit(1000, "liters"),
  1963. capacity: math.unit(6, "people"),
  1964. name: "Goo",
  1965. image: {
  1966. source: "./media/characters/fen/goo.svg",
  1967. extra: 1307/1071,
  1968. bottom: 134/1441
  1969. }
  1970. },
  1971. maw: {
  1972. height: math.unit(5.03, "feet"),
  1973. name: "Maw",
  1974. image: {
  1975. source: "./media/characters/fen/maw.svg"
  1976. }
  1977. },
  1978. gooCeiling: {
  1979. height: math.unit(6.6, "feet"),
  1980. weight: math.unit(3000, "lb"),
  1981. volume: math.unit(1000, "liters"),
  1982. capacity: math.unit(6, "people"),
  1983. name: "Goo (Ceiling)",
  1984. image: {
  1985. source: "./media/characters/fen/goo-ceiling.svg"
  1986. }
  1987. },
  1988. back: {
  1989. height: math.unit(12, "feet"),
  1990. weight: math.unit(2400, "lb"),
  1991. name: "Back",
  1992. image: {
  1993. source: "./media/characters/fen/back.svg",
  1994. },
  1995. info: {
  1996. description: {
  1997. mode: "append",
  1998. text: "\n\nHe is not currently looking at you."
  1999. }
  2000. }
  2001. },
  2002. full: {
  2003. height: math.unit(1.6, "meter"),
  2004. weight: math.unit(3200, "lb"),
  2005. name: "Full",
  2006. image: {
  2007. source: "./media/characters/fen/full.svg",
  2008. extra: 1133/859,
  2009. bottom: 145/1278
  2010. },
  2011. info: {
  2012. description: {
  2013. mode: "append",
  2014. text: "\n\nMunch."
  2015. }
  2016. }
  2017. },
  2018. gooLounging: {
  2019. height: math.unit(4.53, "feet"),
  2020. weight: math.unit(3000, "lb"),
  2021. capacity: math.unit(6, "people"),
  2022. name: "Goo (Lounging)",
  2023. image: {
  2024. source: "./media/characters/fen/goo-lounging.svg",
  2025. bottom: 116 / 613
  2026. }
  2027. },
  2028. lounging: {
  2029. height: math.unit(10.52, "feet"),
  2030. weight: math.unit(2400, "lb"),
  2031. name: "Lounging",
  2032. image: {
  2033. source: "./media/characters/fen/lounging.svg"
  2034. }
  2035. },
  2036. },
  2037. [
  2038. {
  2039. name: "Small",
  2040. height: math.unit(2.2428, "meter")
  2041. },
  2042. {
  2043. name: "Normal",
  2044. height: math.unit(12, "feet"),
  2045. default: true,
  2046. },
  2047. {
  2048. name: "Big",
  2049. height: math.unit(20, "feet")
  2050. },
  2051. {
  2052. name: "Minimacro",
  2053. height: math.unit(40, "feet"),
  2054. info: {
  2055. description: {
  2056. mode: "append",
  2057. text: "\n\nTOO DAMN BIG"
  2058. }
  2059. }
  2060. },
  2061. {
  2062. name: "Macro",
  2063. height: math.unit(100, "feet"),
  2064. info: {
  2065. description: {
  2066. mode: "append",
  2067. text: "\n\nTOO DAMN BIG"
  2068. }
  2069. }
  2070. },
  2071. {
  2072. name: "Megamacro",
  2073. height: math.unit(2, "miles")
  2074. },
  2075. {
  2076. name: "Gigamacro",
  2077. height: math.unit(10, "earths")
  2078. },
  2079. ]
  2080. ))
  2081. characterMakers.push(() => makeCharacter(
  2082. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2083. {
  2084. front: {
  2085. height: math.unit(183, "cm"),
  2086. weight: math.unit(80, "kg"),
  2087. name: "Front",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/front.svg",
  2090. bottom: 0.01,
  2091. extra: 2154 / 2081
  2092. }
  2093. },
  2094. frontAlt: {
  2095. height: math.unit(183, "cm"),
  2096. weight: math.unit(80, "kg"),
  2097. name: "Front (alt)",
  2098. image: {
  2099. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2100. }
  2101. },
  2102. back: {
  2103. height: math.unit(183, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Back",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/back.svg"
  2108. }
  2109. },
  2110. kneeling: {
  2111. height: math.unit(125, "cm"),
  2112. weight: math.unit(80, "kg"),
  2113. name: "Kneeling",
  2114. image: {
  2115. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2116. extra: 1033 / 977,
  2117. bottom: 23.7 / 1057
  2118. }
  2119. },
  2120. maw: {
  2121. height: math.unit(183 / 5, "cm"),
  2122. name: "Maw",
  2123. image: {
  2124. source: "./media/characters/sofia-fluttertail/maw.svg"
  2125. }
  2126. },
  2127. mawcloseup: {
  2128. height: math.unit(183 / 5 * 0.41, "cm"),
  2129. name: "Maw (Closeup)",
  2130. image: {
  2131. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2132. }
  2133. },
  2134. paws: {
  2135. height: math.unit(1.17, "feet"),
  2136. name: "Paws",
  2137. image: {
  2138. source: "./media/characters/sofia-fluttertail/paws.svg",
  2139. extra: 851 / 851,
  2140. bottom: 17 / 868
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(1.83, "meter")
  2148. },
  2149. {
  2150. name: "Size Thief",
  2151. height: math.unit(18, "feet")
  2152. },
  2153. {
  2154. name: "50 Foot Collie",
  2155. height: math.unit(50, "feet")
  2156. },
  2157. {
  2158. name: "Macro",
  2159. height: math.unit(96, "feet"),
  2160. default: true
  2161. },
  2162. {
  2163. name: "Megamerger",
  2164. height: math.unit(650, "feet")
  2165. },
  2166. ]
  2167. ))
  2168. characterMakers.push(() => makeCharacter(
  2169. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2170. {
  2171. front: {
  2172. height: math.unit(7, "feet"),
  2173. weight: math.unit(100, "kg"),
  2174. name: "Front",
  2175. image: {
  2176. source: "./media/characters/march/front.svg",
  2177. extra: 1992/1851,
  2178. bottom: 39/2031
  2179. }
  2180. },
  2181. foot: {
  2182. height: math.unit(0.9, "feet"),
  2183. name: "Foot",
  2184. image: {
  2185. source: "./media/characters/march/foot.svg"
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(7.9, "feet")
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(220, "meters")
  2197. },
  2198. {
  2199. name: "Megamacro",
  2200. height: math.unit(2.98, "km"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Gigamacro",
  2205. height: math.unit(15963, "km")
  2206. },
  2207. {
  2208. name: "Teramacro",
  2209. height: math.unit(2980000000, "km")
  2210. },
  2211. {
  2212. name: "Examacro",
  2213. height: math.unit(250, "parsecs")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(6, "feet"),
  2222. weight: math.unit(60, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/noir/front.svg",
  2226. extra: 1,
  2227. bottom: 0.032
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(6.6, "feet")
  2235. },
  2236. {
  2237. name: "Macro",
  2238. height: math.unit(500, "feet")
  2239. },
  2240. {
  2241. name: "Megamacro",
  2242. height: math.unit(2.5, "km"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Gigamacro",
  2247. height: math.unit(22500, "km")
  2248. },
  2249. {
  2250. name: "Teramacro",
  2251. height: math.unit(2500000000, "km")
  2252. },
  2253. {
  2254. name: "Examacro",
  2255. height: math.unit(200, "parsecs")
  2256. },
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2261. {
  2262. front: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Front",
  2266. image: {
  2267. source: "./media/characters/okuri/front.svg",
  2268. extra: 739/665,
  2269. bottom: 39/778
  2270. }
  2271. },
  2272. back: {
  2273. height: math.unit(7, "feet"),
  2274. weight: math.unit(100, "kg"),
  2275. name: "Back",
  2276. image: {
  2277. source: "./media/characters/okuri/back.svg",
  2278. extra: 734/653,
  2279. bottom: 13/747
  2280. }
  2281. },
  2282. sitting: {
  2283. height: math.unit(2.95, "feet"),
  2284. weight: math.unit(100, "kg"),
  2285. name: "Sitting",
  2286. image: {
  2287. source: "./media/characters/okuri/sitting.svg",
  2288. extra: 370/318,
  2289. bottom: 99/469
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Smallest",
  2296. height: math.unit(5 + 2/12, "feet")
  2297. },
  2298. {
  2299. name: "Smaller",
  2300. height: math.unit(300, "feet")
  2301. },
  2302. {
  2303. name: "Small",
  2304. height: math.unit(1000, "feet")
  2305. },
  2306. {
  2307. name: "Macro",
  2308. height: math.unit(1, "mile")
  2309. },
  2310. {
  2311. name: "Mega Macro (Small)",
  2312. height: math.unit(20, "km")
  2313. },
  2314. {
  2315. name: "Mega Macro (Large)",
  2316. height: math.unit(600, "km")
  2317. },
  2318. {
  2319. name: "Giga Macro",
  2320. height: math.unit(10000, "km")
  2321. },
  2322. {
  2323. name: "Normal",
  2324. height: math.unit(577560, "km"),
  2325. default: true
  2326. },
  2327. {
  2328. name: "Large",
  2329. height: math.unit(4, "galaxies")
  2330. },
  2331. {
  2332. name: "Largest",
  2333. height: math.unit(15, "multiverses")
  2334. },
  2335. ]
  2336. ))
  2337. characterMakers.push(() => makeCharacter(
  2338. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2339. {
  2340. front: {
  2341. height: math.unit(7, "feet"),
  2342. weight: math.unit(100, "kg"),
  2343. name: "Front",
  2344. image: {
  2345. source: "./media/characters/manny/front.svg",
  2346. extra: 1,
  2347. bottom: 0.06
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(7, "feet"),
  2352. weight: math.unit(100, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/manny/back.svg",
  2356. extra: 1,
  2357. bottom: 0.014
  2358. }
  2359. },
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(7, "feet"),
  2365. },
  2366. {
  2367. name: "Macro",
  2368. height: math.unit(78, "feet"),
  2369. default: true
  2370. },
  2371. {
  2372. name: "Macro+",
  2373. height: math.unit(300, "meters")
  2374. },
  2375. {
  2376. name: "Macro++",
  2377. height: math.unit(2400, "meters")
  2378. },
  2379. {
  2380. name: "Megamacro",
  2381. height: math.unit(5167, "meters")
  2382. },
  2383. {
  2384. name: "Gigamacro",
  2385. height: math.unit(41769, "miles")
  2386. },
  2387. ]
  2388. ))
  2389. characterMakers.push(() => makeCharacter(
  2390. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2391. {
  2392. front: {
  2393. height: math.unit(7, "feet"),
  2394. weight: math.unit(100, "kg"),
  2395. name: "Front",
  2396. image: {
  2397. source: "./media/characters/adake/front-1.svg"
  2398. }
  2399. },
  2400. frontAlt: {
  2401. height: math.unit(7, "feet"),
  2402. weight: math.unit(100, "kg"),
  2403. name: "Front (Alt)",
  2404. image: {
  2405. source: "./media/characters/adake/front-2.svg",
  2406. extra: 1,
  2407. bottom: 0.01
  2408. }
  2409. },
  2410. back: {
  2411. height: math.unit(7, "feet"),
  2412. weight: math.unit(100, "kg"),
  2413. name: "Back",
  2414. image: {
  2415. source: "./media/characters/adake/back.svg",
  2416. }
  2417. },
  2418. kneel: {
  2419. height: math.unit(5.385, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Kneeling",
  2422. image: {
  2423. source: "./media/characters/adake/kneel.svg",
  2424. bottom: 0.052
  2425. }
  2426. },
  2427. },
  2428. [
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(7, "feet"),
  2432. },
  2433. {
  2434. name: "Macro",
  2435. height: math.unit(78, "feet"),
  2436. default: true
  2437. },
  2438. {
  2439. name: "Macro+",
  2440. height: math.unit(300, "meters")
  2441. },
  2442. {
  2443. name: "Macro++",
  2444. height: math.unit(2400, "meters")
  2445. },
  2446. {
  2447. name: "Megamacro",
  2448. height: math.unit(5167, "meters")
  2449. },
  2450. {
  2451. name: "Gigamacro",
  2452. height: math.unit(41769, "miles")
  2453. },
  2454. ]
  2455. ))
  2456. characterMakers.push(() => makeCharacter(
  2457. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2458. {
  2459. front: {
  2460. height: math.unit(1.65, "meters"),
  2461. weight: math.unit(50, "kg"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/elijah/front.svg",
  2465. extra: 858 / 830,
  2466. bottom: 95.5 / 953.8559
  2467. }
  2468. },
  2469. back: {
  2470. height: math.unit(1.65, "meters"),
  2471. weight: math.unit(50, "kg"),
  2472. name: "Back",
  2473. image: {
  2474. source: "./media/characters/elijah/back.svg",
  2475. extra: 895 / 850,
  2476. bottom: 5.3 / 897.956
  2477. }
  2478. },
  2479. frontNsfw: {
  2480. height: math.unit(1.65, "meters"),
  2481. weight: math.unit(50, "kg"),
  2482. name: "Front (NSFW)",
  2483. image: {
  2484. source: "./media/characters/elijah/front-nsfw.svg",
  2485. extra: 858 / 830,
  2486. bottom: 95.5 / 953.8559
  2487. }
  2488. },
  2489. backNsfw: {
  2490. height: math.unit(1.65, "meters"),
  2491. weight: math.unit(50, "kg"),
  2492. name: "Back (NSFW)",
  2493. image: {
  2494. source: "./media/characters/elijah/back-nsfw.svg",
  2495. extra: 895 / 850,
  2496. bottom: 5.3 / 897.956
  2497. }
  2498. },
  2499. dick: {
  2500. height: math.unit(1, "feet"),
  2501. name: "Dick",
  2502. image: {
  2503. source: "./media/characters/elijah/dick.svg"
  2504. }
  2505. },
  2506. beakOpen: {
  2507. height: math.unit(1.25, "feet"),
  2508. name: "Beak (Open)",
  2509. image: {
  2510. source: "./media/characters/elijah/beak-open.svg"
  2511. }
  2512. },
  2513. beakShut: {
  2514. height: math.unit(1.25, "feet"),
  2515. name: "Beak (Shut)",
  2516. image: {
  2517. source: "./media/characters/elijah/beak-shut.svg"
  2518. }
  2519. },
  2520. footFlexing: {
  2521. height: math.unit(1.61, "feet"),
  2522. name: "Foot (Flexing)",
  2523. image: {
  2524. source: "./media/characters/elijah/foot-flexing.svg"
  2525. }
  2526. },
  2527. footStepping: {
  2528. height: math.unit(1.44, "feet"),
  2529. name: "Foot (Stepping)",
  2530. image: {
  2531. source: "./media/characters/elijah/foot-stepping.svg"
  2532. }
  2533. },
  2534. plantigradeLeg: {
  2535. height: math.unit(2.34, "feet"),
  2536. name: "Plantigrade Leg",
  2537. image: {
  2538. source: "./media/characters/elijah/plantigrade-leg.svg"
  2539. }
  2540. },
  2541. plantigradeFootLeft: {
  2542. height: math.unit(0.9, "feet"),
  2543. name: "Plantigrade Foot (Left)",
  2544. image: {
  2545. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2546. }
  2547. },
  2548. plantigradeFootRight: {
  2549. height: math.unit(0.9, "feet"),
  2550. name: "Plantigrade Foot (Right)",
  2551. image: {
  2552. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Normal",
  2559. height: math.unit(1.65, "meters")
  2560. },
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(55, "meters"),
  2564. default: true
  2565. },
  2566. {
  2567. name: "Macro+",
  2568. height: math.unit(105, "meters")
  2569. },
  2570. ]
  2571. ))
  2572. characterMakers.push(() => makeCharacter(
  2573. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2574. {
  2575. front: {
  2576. height: math.unit(7 + 2/12, "feet"),
  2577. weight: math.unit(320, "kg"),
  2578. name: "Front",
  2579. image: {
  2580. source: "./media/characters/rai/front.svg",
  2581. extra: 1802/1696,
  2582. bottom: 68/1870
  2583. }
  2584. },
  2585. frontDressed: {
  2586. height: math.unit(7 + 2/12, "feet"),
  2587. weight: math.unit(320, "kg"),
  2588. name: "Front (Dressed)",
  2589. image: {
  2590. source: "./media/characters/rai/front-dressed.svg",
  2591. extra: 1802/1696,
  2592. bottom: 68/1870
  2593. }
  2594. },
  2595. side: {
  2596. height: math.unit(7 + 2/12, "feet"),
  2597. weight: math.unit(320, "kg"),
  2598. name: "Side",
  2599. image: {
  2600. source: "./media/characters/rai/side.svg",
  2601. extra: 1789/1710,
  2602. bottom: 115/1904
  2603. }
  2604. },
  2605. back: {
  2606. height: math.unit(7 + 2/12, "feet"),
  2607. weight: math.unit(320, "kg"),
  2608. name: "Back",
  2609. image: {
  2610. source: "./media/characters/rai/back.svg",
  2611. extra: 1770/1707,
  2612. bottom: 28/1798
  2613. }
  2614. },
  2615. feral: {
  2616. height: math.unit(9.5, "feet"),
  2617. weight: math.unit(640, "kg"),
  2618. name: "Feral",
  2619. image: {
  2620. source: "./media/characters/rai/feral.svg",
  2621. extra: 945/553,
  2622. bottom: 176/1121
  2623. }
  2624. },
  2625. dragon: {
  2626. height: math.unit(23, "feet"),
  2627. weight: math.unit(50000, "lb"),
  2628. name: "Dragon",
  2629. image: {
  2630. source: "./media/characters/rai/dragon.svg",
  2631. extra: 2498 / 2030,
  2632. bottom: 85.2 / 2584
  2633. }
  2634. },
  2635. maw: {
  2636. height: math.unit(1.69, "feet"),
  2637. name: "Maw",
  2638. image: {
  2639. source: "./media/characters/rai/maw.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(7 + 2/12, "feet")
  2647. },
  2648. {
  2649. name: "Big",
  2650. height: math.unit(11, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(302, "feet"),
  2655. default: true
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2661. {
  2662. frontDressed: {
  2663. height: math.unit(216, "feet"),
  2664. weight: math.unit(7000000, "lb"),
  2665. name: "Front (Dressed)",
  2666. image: {
  2667. source: "./media/characters/jazzy/front-dressed.svg",
  2668. extra: 2738 / 2651,
  2669. bottom: 41.8 / 2786
  2670. }
  2671. },
  2672. backDressed: {
  2673. height: math.unit(216, "feet"),
  2674. weight: math.unit(7000000, "lb"),
  2675. name: "Back (Dressed)",
  2676. image: {
  2677. source: "./media/characters/jazzy/back-dressed.svg",
  2678. extra: 2775 / 2673,
  2679. bottom: 36.8 / 2817
  2680. }
  2681. },
  2682. front: {
  2683. height: math.unit(216, "feet"),
  2684. weight: math.unit(7000000, "lb"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/jazzy/front.svg",
  2688. extra: 2738 / 2651,
  2689. bottom: 41.8 / 2786
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(216, "feet"),
  2694. weight: math.unit(7000000, "lb"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/jazzy/back.svg",
  2698. extra: 2775 / 2673,
  2699. bottom: 36.8 / 2817
  2700. }
  2701. },
  2702. maw: {
  2703. height: math.unit(20, "feet"),
  2704. name: "Maw",
  2705. image: {
  2706. source: "./media/characters/jazzy/maw.svg"
  2707. }
  2708. },
  2709. paws: {
  2710. height: math.unit(27.5, "feet"),
  2711. name: "Paws",
  2712. image: {
  2713. source: "./media/characters/jazzy/paws.svg"
  2714. }
  2715. },
  2716. eye: {
  2717. height: math.unit(4.4, "feet"),
  2718. name: "Eye",
  2719. image: {
  2720. source: "./media/characters/jazzy/eye.svg"
  2721. }
  2722. },
  2723. droneOffense: {
  2724. height: math.unit(9.5, "inches"),
  2725. name: "Drone (Offense)",
  2726. image: {
  2727. source: "./media/characters/jazzy/drone-offense.svg"
  2728. }
  2729. },
  2730. droneRecon: {
  2731. height: math.unit(9.5, "inches"),
  2732. name: "Drone (Recon)",
  2733. image: {
  2734. source: "./media/characters/jazzy/drone-recon.svg"
  2735. }
  2736. },
  2737. droneDefense: {
  2738. height: math.unit(9.5, "inches"),
  2739. name: "Drone (Defense)",
  2740. image: {
  2741. source: "./media/characters/jazzy/drone-defense.svg"
  2742. }
  2743. },
  2744. },
  2745. [
  2746. {
  2747. name: "Macro",
  2748. height: math.unit(216, "feet"),
  2749. default: true
  2750. },
  2751. ]
  2752. ))
  2753. characterMakers.push(() => makeCharacter(
  2754. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2755. {
  2756. front: {
  2757. height: math.unit(9 + 6/12, "feet"),
  2758. weight: math.unit(700, "lb"),
  2759. name: "Front",
  2760. image: {
  2761. source: "./media/characters/flamm/front.svg",
  2762. extra: 1751/1632,
  2763. bottom: 46/1797
  2764. }
  2765. },
  2766. buff: {
  2767. height: math.unit(9 + 6/12, "feet"),
  2768. weight: math.unit(950, "lb"),
  2769. name: "Buff",
  2770. image: {
  2771. source: "./media/characters/flamm/buff.svg",
  2772. extra: 3018/2874,
  2773. bottom: 221/3239
  2774. }
  2775. },
  2776. },
  2777. [
  2778. {
  2779. name: "Normal",
  2780. height: math.unit(9.5, "feet")
  2781. },
  2782. {
  2783. name: "Macro",
  2784. height: math.unit(200, "feet"),
  2785. default: true
  2786. },
  2787. ]
  2788. ))
  2789. characterMakers.push(() => makeCharacter(
  2790. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2791. {
  2792. front: {
  2793. height: math.unit(5 + 3/12, "feet"),
  2794. weight: math.unit(60, "kg"),
  2795. name: "Front",
  2796. image: {
  2797. source: "./media/characters/zephiro/front.svg",
  2798. extra: 2309 / 2162,
  2799. bottom: 0.069
  2800. }
  2801. },
  2802. side: {
  2803. height: math.unit(5 + 3/12, "feet"),
  2804. weight: math.unit(60, "kg"),
  2805. name: "Side",
  2806. image: {
  2807. source: "./media/characters/zephiro/side.svg",
  2808. extra: 2403 / 2279,
  2809. bottom: 0.015
  2810. }
  2811. },
  2812. back: {
  2813. height: math.unit(5 + 3/12, "feet"),
  2814. weight: math.unit(60, "kg"),
  2815. name: "Back",
  2816. image: {
  2817. source: "./media/characters/zephiro/back.svg",
  2818. extra: 2373 / 2244,
  2819. bottom: 0.013
  2820. }
  2821. },
  2822. hand: {
  2823. height: math.unit(0.68, "feet"),
  2824. name: "Hand",
  2825. image: {
  2826. source: "./media/characters/zephiro/hand.svg"
  2827. }
  2828. },
  2829. paw: {
  2830. height: math.unit(1, "feet"),
  2831. name: "Paw",
  2832. image: {
  2833. source: "./media/characters/zephiro/paw.svg"
  2834. }
  2835. },
  2836. beans: {
  2837. height: math.unit(0.93, "feet"),
  2838. name: "Beans",
  2839. image: {
  2840. source: "./media/characters/zephiro/beans.svg"
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Micro",
  2847. height: math.unit(3, "inches")
  2848. },
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(5 + 3 / 12, "feet"),
  2852. default: true
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(118, "feet")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(5, "feet"),
  2865. weight: math.unit(90, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/fory/front.svg",
  2869. extra: 2862 / 2674,
  2870. bottom: 180 / 3043.8
  2871. }
  2872. },
  2873. back: {
  2874. height: math.unit(5, "feet"),
  2875. weight: math.unit(90, "kg"),
  2876. name: "Back",
  2877. image: {
  2878. source: "./media/characters/fory/back.svg",
  2879. extra: 2962 / 2791,
  2880. bottom: 106 / 3071.8
  2881. }
  2882. },
  2883. foot: {
  2884. height: math.unit(2.14, "feet"),
  2885. name: "Foot",
  2886. image: {
  2887. source: "./media/characters/fory/foot.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Normal",
  2894. height: math.unit(5, "feet")
  2895. },
  2896. {
  2897. name: "Macro",
  2898. height: math.unit(50, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Megamacro",
  2903. height: math.unit(10, "miles")
  2904. },
  2905. {
  2906. name: "Gigamacro",
  2907. height: math.unit(5, "earths")
  2908. },
  2909. ]
  2910. ))
  2911. characterMakers.push(() => makeCharacter(
  2912. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2913. {
  2914. front: {
  2915. height: math.unit(7, "feet"),
  2916. weight: math.unit(90, "kg"),
  2917. name: "Front",
  2918. image: {
  2919. source: "./media/characters/kurrikage/front.svg",
  2920. extra: 1845/1733,
  2921. bottom: 119/1964
  2922. }
  2923. },
  2924. back: {
  2925. height: math.unit(7, "feet"),
  2926. weight: math.unit(90, "kg"),
  2927. name: "Back",
  2928. image: {
  2929. source: "./media/characters/kurrikage/back.svg",
  2930. extra: 1790/1677,
  2931. bottom: 61/1851
  2932. }
  2933. },
  2934. dressed: {
  2935. height: math.unit(7, "feet"),
  2936. weight: math.unit(90, "kg"),
  2937. name: "Dressed",
  2938. image: {
  2939. source: "./media/characters/kurrikage/dressed.svg",
  2940. extra: 1845/1733,
  2941. bottom: 119/1964
  2942. }
  2943. },
  2944. foot: {
  2945. height: math.unit(1.5, "feet"),
  2946. name: "Foot",
  2947. image: {
  2948. source: "./media/characters/kurrikage/foot.svg"
  2949. }
  2950. },
  2951. staff: {
  2952. height: math.unit(6.7, "feet"),
  2953. name: "Staff",
  2954. image: {
  2955. source: "./media/characters/kurrikage/staff.svg"
  2956. }
  2957. },
  2958. peek: {
  2959. height: math.unit(1.05, "feet"),
  2960. name: "Peeking",
  2961. image: {
  2962. source: "./media/characters/kurrikage/peek.svg",
  2963. bottom: 0.08
  2964. }
  2965. },
  2966. },
  2967. [
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(12, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Big",
  2975. height: math.unit(20, "feet")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(500, "feet")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(20, "miles")
  2984. },
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2989. {
  2990. front: {
  2991. height: math.unit(6, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/shingo/front.svg",
  2996. extra: 1900/1825,
  2997. bottom: 82/1982
  2998. }
  2999. },
  3000. side: {
  3001. height: math.unit(6, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Side",
  3004. image: {
  3005. source: "./media/characters/shingo/side.svg",
  3006. extra: 1930/1865,
  3007. bottom: 16/1946
  3008. }
  3009. },
  3010. back: {
  3011. height: math.unit(6, "feet"),
  3012. weight: math.unit(75, "kg"),
  3013. name: "Back",
  3014. image: {
  3015. source: "./media/characters/shingo/back.svg",
  3016. extra: 1922/1852,
  3017. bottom: 16/1938
  3018. }
  3019. },
  3020. frontDressed: {
  3021. height: math.unit(6, "feet"),
  3022. weight: math.unit(150, "lb"),
  3023. name: "Front-dressed",
  3024. image: {
  3025. source: "./media/characters/shingo/front-dressed.svg",
  3026. extra: 1900/1825,
  3027. bottom: 82/1982
  3028. }
  3029. },
  3030. paw: {
  3031. height: math.unit(1.29, "feet"),
  3032. name: "Paw",
  3033. image: {
  3034. source: "./media/characters/shingo/paw.svg"
  3035. }
  3036. },
  3037. hand: {
  3038. height: math.unit(1.07, "feet"),
  3039. name: "Hand",
  3040. image: {
  3041. source: "./media/characters/shingo/hand.svg"
  3042. }
  3043. },
  3044. frontAlt: {
  3045. height: math.unit(6, "feet"),
  3046. weight: math.unit(75, "kg"),
  3047. name: "Front (Alt)",
  3048. image: {
  3049. source: "./media/characters/shingo/front-alt.svg",
  3050. extra: 3511 / 3338,
  3051. bottom: 0.005
  3052. }
  3053. },
  3054. frontAlt2: {
  3055. height: math.unit(6, "feet"),
  3056. weight: math.unit(75, "kg"),
  3057. name: "Front (Alt 2)",
  3058. image: {
  3059. source: "./media/characters/shingo/front-alt-2.svg",
  3060. extra: 706/681,
  3061. bottom: 11/717
  3062. }
  3063. },
  3064. pawAlt: {
  3065. height: math.unit(1, "feet"),
  3066. name: "Paw (Alt)",
  3067. image: {
  3068. source: "./media/characters/shingo/paw-alt.svg"
  3069. }
  3070. },
  3071. },
  3072. [
  3073. {
  3074. name: "Micro",
  3075. height: math.unit(4, "inches")
  3076. },
  3077. {
  3078. name: "Normal",
  3079. height: math.unit(6, "feet"),
  3080. default: true
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(108, "feet")
  3085. },
  3086. {
  3087. name: "Macro+",
  3088. height: math.unit(1500, "feet")
  3089. },
  3090. ]
  3091. ))
  3092. characterMakers.push(() => makeCharacter(
  3093. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3094. {
  3095. side: {
  3096. height: math.unit(6, "feet"),
  3097. weight: math.unit(75, "kg"),
  3098. name: "Side",
  3099. image: {
  3100. source: "./media/characters/aigey/side.svg"
  3101. }
  3102. },
  3103. },
  3104. [
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(200, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(100, "miles")
  3113. },
  3114. ]
  3115. )
  3116. )
  3117. characterMakers.push(() => makeCharacter(
  3118. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3119. {
  3120. front: {
  3121. height: math.unit(5 + 5 / 12, "feet"),
  3122. weight: math.unit(75, "kg"),
  3123. name: "Front",
  3124. image: {
  3125. source: "./media/characters/natasha/front.svg",
  3126. extra: 859 / 824,
  3127. bottom: 23 / 879.6
  3128. }
  3129. },
  3130. frontNsfw: {
  3131. height: math.unit(5 + 5 / 12, "feet"),
  3132. weight: math.unit(75, "kg"),
  3133. name: "Front (NSFW)",
  3134. image: {
  3135. source: "./media/characters/natasha/front-nsfw.svg",
  3136. extra: 859 / 824,
  3137. bottom: 23 / 879.6
  3138. }
  3139. },
  3140. frontErect: {
  3141. height: math.unit(5 + 5 / 12, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Front (Erect)",
  3144. image: {
  3145. source: "./media/characters/natasha/front-erect.svg",
  3146. extra: 859 / 824,
  3147. bottom: 23 / 879.6
  3148. }
  3149. },
  3150. back: {
  3151. height: math.unit(5 + 5 / 12, "feet"),
  3152. weight: math.unit(75, "kg"),
  3153. name: "Back",
  3154. image: {
  3155. source: "./media/characters/natasha/back.svg",
  3156. extra: 887.9 / 852.6,
  3157. bottom: 9.7 / 896.4
  3158. }
  3159. },
  3160. backAlt: {
  3161. height: math.unit(5 + 5 / 12, "feet"),
  3162. weight: math.unit(75, "kg"),
  3163. name: "Back (Alt)",
  3164. image: {
  3165. source: "./media/characters/natasha/back-alt.svg",
  3166. extra: 1236.7 / 1192,
  3167. bottom: 22.3 / 1258.2
  3168. }
  3169. },
  3170. dick: {
  3171. height: math.unit(1.772, "feet"),
  3172. name: "Dick",
  3173. image: {
  3174. source: "./media/characters/natasha/dick.svg"
  3175. }
  3176. },
  3177. paw: {
  3178. height: math.unit(0.250, "meters"),
  3179. name: "Paw",
  3180. image: {
  3181. source: "./media/characters/natasha/paw.svg"
  3182. }
  3183. },
  3184. },
  3185. [
  3186. {
  3187. name: "Normal",
  3188. height: math.unit(5 + 5 / 12, "feet")
  3189. },
  3190. {
  3191. name: "Large",
  3192. height: math.unit(12, "feet")
  3193. },
  3194. {
  3195. name: "Macro",
  3196. height: math.unit(100, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro+",
  3201. height: math.unit(260, "feet")
  3202. },
  3203. {
  3204. name: "Macro++",
  3205. height: math.unit(1, "mile")
  3206. },
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/malik/front.svg"
  3218. }
  3219. },
  3220. side: {
  3221. height: math.unit(6, "feet"),
  3222. weight: math.unit(75, "kg"),
  3223. name: "Side",
  3224. image: {
  3225. source: "./media/characters/malik/side.svg",
  3226. extra: 1.1539
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(6, "feet"),
  3231. weight: math.unit(75, "kg"),
  3232. name: "Back",
  3233. image: {
  3234. source: "./media/characters/malik/back.svg"
  3235. }
  3236. },
  3237. },
  3238. [
  3239. {
  3240. name: "Macro",
  3241. height: math.unit(156, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Macro+",
  3246. height: math.unit(1188, "feet")
  3247. },
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(6, "feet"),
  3255. weight: math.unit(75, "kg"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/sefer/front.svg",
  3259. extra: 848 / 659,
  3260. bottom: 28.3 / 876.442
  3261. }
  3262. },
  3263. back: {
  3264. height: math.unit(6, "feet"),
  3265. weight: math.unit(75, "kg"),
  3266. name: "Back",
  3267. image: {
  3268. source: "./media/characters/sefer/back.svg",
  3269. extra: 864 / 695,
  3270. bottom: 10 / 871
  3271. }
  3272. },
  3273. frontDressed: {
  3274. height: math.unit(6, "feet"),
  3275. weight: math.unit(75, "kg"),
  3276. name: "Front (Dressed)",
  3277. image: {
  3278. source: "./media/characters/sefer/front-dressed.svg",
  3279. extra: 839 / 653,
  3280. bottom: 37.6 / 878
  3281. }
  3282. },
  3283. },
  3284. [
  3285. {
  3286. name: "Normal",
  3287. height: math.unit(6, "feet"),
  3288. default: true
  3289. },
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3294. {
  3295. body: {
  3296. height: math.unit(2.2428, "meter"),
  3297. weight: math.unit(124.738, "kg"),
  3298. name: "Body",
  3299. image: {
  3300. extra: 1225 / 1050,
  3301. source: "./media/characters/north/front.svg"
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Micro",
  3308. height: math.unit(4, "inches")
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(63, "meters")
  3313. },
  3314. {
  3315. name: "Megamacro",
  3316. height: math.unit(101, "miles"),
  3317. default: true
  3318. }
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3323. {
  3324. angled: {
  3325. height: math.unit(4, "meter"),
  3326. weight: math.unit(150, "kg"),
  3327. name: "Angled",
  3328. image: {
  3329. source: "./media/characters/talan/angled-sfw.svg",
  3330. bottom: 29 / 3734
  3331. }
  3332. },
  3333. angledNsfw: {
  3334. height: math.unit(4, "meter"),
  3335. weight: math.unit(150, "kg"),
  3336. name: "Angled (NSFW)",
  3337. image: {
  3338. source: "./media/characters/talan/angled-nsfw.svg",
  3339. bottom: 29 / 3734
  3340. }
  3341. },
  3342. frontNsfw: {
  3343. height: math.unit(4, "meter"),
  3344. weight: math.unit(150, "kg"),
  3345. name: "Front (NSFW)",
  3346. image: {
  3347. source: "./media/characters/talan/front-nsfw.svg",
  3348. bottom: 29 / 3734
  3349. }
  3350. },
  3351. sideNsfw: {
  3352. height: math.unit(4, "meter"),
  3353. weight: math.unit(150, "kg"),
  3354. name: "Side (NSFW)",
  3355. image: {
  3356. source: "./media/characters/talan/side-nsfw.svg",
  3357. bottom: 29 / 3734
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(4, "meter"),
  3362. weight: math.unit(150, "kg"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/talan/back.svg"
  3366. }
  3367. },
  3368. dickBottom: {
  3369. height: math.unit(0.621, "meter"),
  3370. name: "Dick (Bottom)",
  3371. image: {
  3372. source: "./media/characters/talan/dick-bottom.svg"
  3373. }
  3374. },
  3375. dickTop: {
  3376. height: math.unit(0.621, "meter"),
  3377. name: "Dick (Top)",
  3378. image: {
  3379. source: "./media/characters/talan/dick-top.svg"
  3380. }
  3381. },
  3382. dickSide: {
  3383. height: math.unit(0.305, "meter"),
  3384. name: "Dick (Side)",
  3385. image: {
  3386. source: "./media/characters/talan/dick-side.svg"
  3387. }
  3388. },
  3389. dickFront: {
  3390. height: math.unit(0.305, "meter"),
  3391. name: "Dick (Front)",
  3392. image: {
  3393. source: "./media/characters/talan/dick-front.svg"
  3394. }
  3395. },
  3396. },
  3397. [
  3398. {
  3399. name: "Normal",
  3400. height: math.unit(4, "meters")
  3401. },
  3402. {
  3403. name: "Macro",
  3404. height: math.unit(100, "meters")
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(2, "miles"),
  3409. default: true
  3410. },
  3411. {
  3412. name: "Gigamacro",
  3413. height: math.unit(5000, "miles")
  3414. },
  3415. {
  3416. name: "Teramacro",
  3417. height: math.unit(100, "parsecs")
  3418. }
  3419. ]
  3420. ))
  3421. characterMakers.push(() => makeCharacter(
  3422. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3423. {
  3424. front: {
  3425. height: math.unit(2, "meter"),
  3426. weight: math.unit(90, "kg"),
  3427. name: "Front",
  3428. image: {
  3429. source: "./media/characters/gael'rathus/front.svg"
  3430. }
  3431. },
  3432. frontAlt: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(90, "kg"),
  3435. name: "Front (alt)",
  3436. image: {
  3437. source: "./media/characters/gael'rathus/front-alt.svg"
  3438. }
  3439. },
  3440. frontAlt2: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(90, "kg"),
  3443. name: "Front (alt 2)",
  3444. image: {
  3445. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3446. }
  3447. }
  3448. },
  3449. [
  3450. {
  3451. name: "Normal",
  3452. height: math.unit(9, "feet"),
  3453. default: true
  3454. },
  3455. {
  3456. name: "Large",
  3457. height: math.unit(25, "feet")
  3458. },
  3459. {
  3460. name: "Macro",
  3461. height: math.unit(0.25, "miles")
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(10, "miles")
  3466. }
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3471. {
  3472. side: {
  3473. height: math.unit(2, "meter"),
  3474. weight: math.unit(140, "kg"),
  3475. name: "Side",
  3476. image: {
  3477. source: "./media/characters/sosha/side.svg",
  3478. bottom: 0.042
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(12, "feet"),
  3486. default: true
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3492. {
  3493. side: {
  3494. height: math.unit(5 + 5 / 12, "feet"),
  3495. weight: math.unit(170, "kg"),
  3496. name: "Side",
  3497. image: {
  3498. source: "./media/characters/runnola/side.svg",
  3499. extra: 741 / 448,
  3500. bottom: 0.05
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Small",
  3507. height: math.unit(3, "feet")
  3508. },
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(5 + 5 / 12, "feet"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Big",
  3516. height: math.unit(10, "feet")
  3517. },
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(50, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/kurribird/front.svg",
  3529. bottom: 0.015
  3530. }
  3531. },
  3532. frontAlt: {
  3533. height: math.unit(1.5, "meter"),
  3534. weight: math.unit(50, "kg"),
  3535. name: "Front (Alt)",
  3536. image: {
  3537. source: "./media/characters/kurribird/front-alt.svg",
  3538. extra: 1.45
  3539. }
  3540. },
  3541. },
  3542. [
  3543. {
  3544. name: "Normal",
  3545. height: math.unit(7, "feet")
  3546. },
  3547. {
  3548. name: "Big",
  3549. height: math.unit(12, "feet"),
  3550. default: true
  3551. },
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(1500, "feet")
  3555. },
  3556. {
  3557. name: "Megamacro",
  3558. height: math.unit(2, "miles")
  3559. }
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3564. {
  3565. front: {
  3566. height: math.unit(2, "meter"),
  3567. weight: math.unit(80, "kg"),
  3568. name: "Front",
  3569. image: {
  3570. source: "./media/characters/elbial/front.svg",
  3571. extra: 1643 / 1556,
  3572. bottom: 60.2 / 1696
  3573. }
  3574. },
  3575. side: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(80, "kg"),
  3578. name: "Side",
  3579. image: {
  3580. source: "./media/characters/elbial/side.svg",
  3581. extra: 1601/1528,
  3582. bottom: 97/1698
  3583. }
  3584. },
  3585. back: {
  3586. height: math.unit(2, "meter"),
  3587. weight: math.unit(80, "kg"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/elbial/back.svg",
  3591. extra: 1653/1569,
  3592. bottom: 20/1673
  3593. }
  3594. },
  3595. frontDressed: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(80, "kg"),
  3598. name: "Front (Dressed)",
  3599. image: {
  3600. source: "./media/characters/elbial/front-dressed.svg",
  3601. extra: 1638/1569,
  3602. bottom: 70/1708
  3603. }
  3604. },
  3605. genitals: {
  3606. height: math.unit(2 / 3.367, "meter"),
  3607. name: "Genitals",
  3608. image: {
  3609. source: "./media/characters/elbial/genitals.svg"
  3610. }
  3611. },
  3612. },
  3613. [
  3614. {
  3615. name: "Large",
  3616. height: math.unit(100, "feet")
  3617. },
  3618. {
  3619. name: "Macro",
  3620. height: math.unit(500, "feet"),
  3621. default: true
  3622. },
  3623. {
  3624. name: "Megamacro",
  3625. height: math.unit(10, "miles")
  3626. },
  3627. {
  3628. name: "Gigamacro",
  3629. height: math.unit(25000, "miles")
  3630. },
  3631. {
  3632. name: "Full-Size",
  3633. height: math.unit(8000000, "gigaparsecs")
  3634. }
  3635. ]
  3636. ))
  3637. characterMakers.push(() => makeCharacter(
  3638. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3639. {
  3640. front: {
  3641. height: math.unit(2, "meter"),
  3642. weight: math.unit(60, "kg"),
  3643. name: "Front",
  3644. image: {
  3645. source: "./media/characters/noah/front.svg"
  3646. }
  3647. },
  3648. talons: {
  3649. height: math.unit(0.315, "meter"),
  3650. name: "Talons",
  3651. image: {
  3652. source: "./media/characters/noah/talons.svg"
  3653. }
  3654. }
  3655. },
  3656. [
  3657. {
  3658. name: "Large",
  3659. height: math.unit(50, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(750, "feet"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Megamacro",
  3668. height: math.unit(50, "miles")
  3669. },
  3670. {
  3671. name: "Gigamacro",
  3672. height: math.unit(100000, "miles")
  3673. },
  3674. {
  3675. name: "Full-Size",
  3676. height: math.unit(3000000000, "miles")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(80, "kg"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/natalya/front.svg"
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(80, "kg"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/natalya/back.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(150, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(5, "miles")
  3709. },
  3710. {
  3711. name: "Full-Size",
  3712. height: math.unit(600, "kiloparsecs")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3718. {
  3719. front: {
  3720. height: math.unit(2, "meter"),
  3721. weight: math.unit(50, "kg"),
  3722. name: "Front",
  3723. image: {
  3724. source: "./media/characters/erestrebah/front.svg",
  3725. extra: 1262/1162,
  3726. bottom: 96/1358
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(50, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/erestrebah/back.svg",
  3735. extra: 1257/1139,
  3736. bottom: 13/1270
  3737. }
  3738. },
  3739. wing: {
  3740. height: math.unit(2, "meter"),
  3741. weight: math.unit(50, "kg"),
  3742. name: "Wing",
  3743. image: {
  3744. source: "./media/characters/erestrebah/wing.svg",
  3745. extra: 1262/1162,
  3746. bottom: 96/1358
  3747. }
  3748. },
  3749. mouth: {
  3750. height: math.unit(0.39, "feet"),
  3751. name: "Mouth",
  3752. image: {
  3753. source: "./media/characters/erestrebah/mouth.svg"
  3754. }
  3755. }
  3756. },
  3757. [
  3758. {
  3759. name: "Normal",
  3760. height: math.unit(10, "feet")
  3761. },
  3762. {
  3763. name: "Large",
  3764. height: math.unit(50, "feet"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Macro",
  3769. height: math.unit(300, "feet")
  3770. },
  3771. {
  3772. name: "Macro+",
  3773. height: math.unit(750, "feet")
  3774. },
  3775. {
  3776. name: "Megamacro",
  3777. height: math.unit(3, "miles")
  3778. }
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(2, "meter"),
  3786. weight: math.unit(80, "kg"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/jennifer/front.svg",
  3790. bottom: 0.11,
  3791. extra: 1.16
  3792. }
  3793. },
  3794. frontAlt: {
  3795. height: math.unit(2, "meter"),
  3796. weight: math.unit(80, "kg"),
  3797. name: "Front (Alt)",
  3798. image: {
  3799. source: "./media/characters/jennifer/front-alt.svg"
  3800. }
  3801. }
  3802. },
  3803. [
  3804. {
  3805. name: "Canon Height",
  3806. height: math.unit(120, "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Macro+",
  3811. height: math.unit(300, "feet")
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(20000, "feet")
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(50, "kg"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/kalista/front.svg",
  3828. extra: 1314/1145,
  3829. bottom: 101/1415
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(2, "meter"),
  3834. weight: math.unit(50, "kg"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/kalista/back.svg",
  3838. extra: 1366 / 1156,
  3839. bottom: 33.9 / 1362.78
  3840. }
  3841. }
  3842. },
  3843. [
  3844. {
  3845. name: "Uncomfortably Small",
  3846. height: math.unit(10, "feet")
  3847. },
  3848. {
  3849. name: "Small",
  3850. height: math.unit(30, "feet")
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(100, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Macro+",
  3859. height: math.unit(2000, "feet")
  3860. },
  3861. {
  3862. name: "True Form",
  3863. height: math.unit(8924, "miles")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(120, "kg"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/ggv/front.svg"
  3876. }
  3877. },
  3878. side: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(120, "kg"),
  3881. name: "Side",
  3882. image: {
  3883. source: "./media/characters/ggv/side.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Extremely Puny",
  3890. height: math.unit(9 + 5 / 12, "feet")
  3891. },
  3892. {
  3893. name: "Horribly Small",
  3894. height: math.unit(47.7, "miles"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Reasonably Sized",
  3899. height: math.unit(25000, "parsecs")
  3900. },
  3901. {
  3902. name: "Slightly Uncompressed",
  3903. height: math.unit(7.77e31, "parsecs")
  3904. },
  3905. {
  3906. name: "Omniversal",
  3907. height: math.unit(1e300, "meters")
  3908. },
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3913. {
  3914. front: {
  3915. height: math.unit(2, "meter"),
  3916. weight: math.unit(75, "lb"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/napalm/front.svg"
  3920. }
  3921. },
  3922. back: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(75, "lb"),
  3925. name: "Back",
  3926. image: {
  3927. source: "./media/characters/napalm/back.svg"
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Standard",
  3934. height: math.unit(55, "feet"),
  3935. default: true
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(7 + 5 / 6, "feet"),
  3944. weight: math.unit(325, "lb"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/asana/front.svg",
  3948. extra: 1133 / 1060,
  3949. bottom: 15.2 / 1148.6
  3950. }
  3951. },
  3952. back: {
  3953. height: math.unit(7 + 5 / 6, "feet"),
  3954. weight: math.unit(325, "lb"),
  3955. name: "Back",
  3956. image: {
  3957. source: "./media/characters/asana/back.svg",
  3958. extra: 1114 / 1043,
  3959. bottom: 5 / 1120
  3960. }
  3961. },
  3962. dressedDark: {
  3963. height: math.unit(7 + 5 / 6, "feet"),
  3964. weight: math.unit(325, "lb"),
  3965. name: "Dressed (Dark)",
  3966. image: {
  3967. source: "./media/characters/asana/dressed-dark.svg",
  3968. extra: 1133 / 1060,
  3969. bottom: 15.2 / 1148.6
  3970. }
  3971. },
  3972. dressedLight: {
  3973. height: math.unit(7 + 5 / 6, "feet"),
  3974. weight: math.unit(325, "lb"),
  3975. name: "Dressed (Light)",
  3976. image: {
  3977. source: "./media/characters/asana/dressed-light.svg",
  3978. extra: 1133 / 1060,
  3979. bottom: 15.2 / 1148.6
  3980. }
  3981. },
  3982. },
  3983. [
  3984. {
  3985. name: "Standard",
  3986. height: math.unit(7 + 5 / 6, "feet"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Large",
  3991. height: math.unit(10, "meters")
  3992. },
  3993. {
  3994. name: "Macro",
  3995. height: math.unit(2500, "meters")
  3996. },
  3997. {
  3998. name: "Megamacro",
  3999. height: math.unit(5e6, "meters")
  4000. },
  4001. {
  4002. name: "Examacro",
  4003. height: math.unit(5e12, "lightyears")
  4004. },
  4005. {
  4006. name: "Max Size",
  4007. height: math.unit(1e31, "lightyears")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(60, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/ebony/front.svg",
  4020. bottom: 0.03,
  4021. extra: 1045 / 810 + 0.03
  4022. }
  4023. },
  4024. side: {
  4025. height: math.unit(2, "meter"),
  4026. weight: math.unit(60, "kg"),
  4027. name: "Side",
  4028. image: {
  4029. source: "./media/characters/ebony/side.svg",
  4030. bottom: 0.03,
  4031. extra: 1045 / 810 + 0.03
  4032. }
  4033. },
  4034. back: {
  4035. height: math.unit(2, "meter"),
  4036. weight: math.unit(60, "kg"),
  4037. name: "Back",
  4038. image: {
  4039. source: "./media/characters/ebony/back.svg",
  4040. bottom: 0.01,
  4041. extra: 1045 / 810 + 0.01
  4042. }
  4043. },
  4044. },
  4045. [
  4046. // TODO check why I did this lol
  4047. {
  4048. name: "Standard",
  4049. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(200, "feet")
  4055. },
  4056. {
  4057. name: "Gigamacro",
  4058. height: math.unit(13000, "km")
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(175, "lb"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/mountain/front.svg",
  4071. extra: 972 / 955,
  4072. bottom: 64 / 1036.6
  4073. }
  4074. },
  4075. back: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(175, "lb"),
  4078. name: "Back",
  4079. image: {
  4080. source: "./media/characters/mountain/back.svg",
  4081. extra: 970 / 950,
  4082. bottom: 28.25 / 999
  4083. }
  4084. },
  4085. },
  4086. [
  4087. {
  4088. name: "Large",
  4089. height: math.unit(20, "meters")
  4090. },
  4091. {
  4092. name: "Macro",
  4093. height: math.unit(300, "meters")
  4094. },
  4095. {
  4096. name: "Gigamacro",
  4097. height: math.unit(10000, "km"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Examacro",
  4102. height: math.unit(10e9, "lightyears")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(8, "feet"),
  4111. weight: math.unit(500, "lb"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/rick/front.svg"
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(8, "feet"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(5, "km")
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(8, "feet"),
  4135. weight: math.unit(120, "lb"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/ona/front.svg"
  4139. }
  4140. },
  4141. frontAlt: {
  4142. height: math.unit(8, "feet"),
  4143. weight: math.unit(120, "lb"),
  4144. name: "Front (Alt)",
  4145. image: {
  4146. source: "./media/characters/ona/front-alt.svg"
  4147. }
  4148. },
  4149. back: {
  4150. height: math.unit(8, "feet"),
  4151. weight: math.unit(120, "lb"),
  4152. name: "Back",
  4153. image: {
  4154. source: "./media/characters/ona/back.svg"
  4155. }
  4156. },
  4157. foot: {
  4158. height: math.unit(1.1, "feet"),
  4159. name: "Foot",
  4160. image: {
  4161. source: "./media/characters/ona/foot.svg"
  4162. }
  4163. }
  4164. },
  4165. [
  4166. {
  4167. name: "Megamacro",
  4168. height: math.unit(70, "km"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Gigamacro",
  4173. height: math.unit(681818, "miles")
  4174. },
  4175. {
  4176. name: "Examacro",
  4177. height: math.unit(3800000, "lightyears")
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(12, "feet"),
  4186. weight: math.unit(3000, "lb"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/mech/front.svg",
  4190. extra: 2900 / 2770,
  4191. bottom: 110 / 3010
  4192. }
  4193. },
  4194. back: {
  4195. height: math.unit(12, "feet"),
  4196. weight: math.unit(3000, "lb"),
  4197. name: "Back",
  4198. image: {
  4199. source: "./media/characters/mech/back.svg",
  4200. extra: 3011 / 2890,
  4201. bottom: 94 / 3105
  4202. }
  4203. },
  4204. maw: {
  4205. height: math.unit(3.07, "feet"),
  4206. name: "Maw",
  4207. image: {
  4208. source: "./media/characters/mech/maw.svg"
  4209. }
  4210. },
  4211. head: {
  4212. height: math.unit(2.82, "feet"),
  4213. name: "Head",
  4214. image: {
  4215. source: "./media/characters/mech/head.svg"
  4216. }
  4217. },
  4218. dick: {
  4219. height: math.unit(1.43, "feet"),
  4220. name: "Dick",
  4221. image: {
  4222. source: "./media/characters/mech/dick.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(12, "feet")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(300, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Macro+",
  4238. height: math.unit(1500, "feet")
  4239. },
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4244. {
  4245. front: {
  4246. height: math.unit(1.3, "meter"),
  4247. weight: math.unit(30, "kg"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/gregory/front.svg",
  4251. }
  4252. }
  4253. },
  4254. [
  4255. {
  4256. name: "Normal",
  4257. height: math.unit(1.3, "meter"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Macro",
  4262. height: math.unit(20, "meter")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(2.8, "meter"),
  4271. weight: math.unit(200, "kg"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/elory/front.svg",
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(2.8, "meter"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Macro",
  4286. height: math.unit(38, "meter")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(470, "feet"),
  4295. weight: math.unit(924, "tons"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/angelpatamon/front.svg",
  4299. }
  4300. }
  4301. },
  4302. [
  4303. {
  4304. name: "Normal",
  4305. height: math.unit(470, "feet"),
  4306. default: true
  4307. },
  4308. {
  4309. name: "Deity Size I",
  4310. height: math.unit(28651.2, "km")
  4311. },
  4312. {
  4313. name: "Deity Size II",
  4314. height: math.unit(171907.2, "km")
  4315. }
  4316. ]
  4317. ))
  4318. characterMakers.push(() => makeCharacter(
  4319. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4320. {
  4321. side: {
  4322. height: math.unit(7.2, "meter"),
  4323. weight: math.unit(8.2, "tons"),
  4324. name: "Side",
  4325. image: {
  4326. source: "./media/characters/cryae/side.svg",
  4327. extra: 3500 / 1500
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Normal",
  4334. height: math.unit(7.2, "meter"),
  4335. default: true
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(175, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/xera/front.svg",
  4348. extra: 2377 / 1972,
  4349. bottom: 75.5 / 2452
  4350. }
  4351. },
  4352. side: {
  4353. height: math.unit(6, "feet"),
  4354. weight: math.unit(175, "lb"),
  4355. name: "Side",
  4356. image: {
  4357. source: "./media/characters/xera/side.svg",
  4358. extra: 2345 / 2019,
  4359. bottom: 39.7 / 2384
  4360. }
  4361. },
  4362. back: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(175, "lb"),
  4365. name: "Back",
  4366. image: {
  4367. source: "./media/characters/xera/back.svg",
  4368. extra: 2095 / 1984,
  4369. bottom: 67 / 2166
  4370. }
  4371. },
  4372. },
  4373. [
  4374. {
  4375. name: "Small",
  4376. height: math.unit(10, "feet")
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(500, "meters"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Macro+",
  4385. height: math.unit(10, "km")
  4386. },
  4387. {
  4388. name: "Gigamacro",
  4389. height: math.unit(25000, "km")
  4390. },
  4391. {
  4392. name: "Teramacro",
  4393. height: math.unit(3e6, "km")
  4394. }
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4399. {
  4400. front: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(175, "lb"),
  4403. name: "Front",
  4404. image: {
  4405. source: "./media/characters/nebula/front.svg",
  4406. extra: 2566 / 2362,
  4407. bottom: 81 / 2644
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Small",
  4414. height: math.unit(4.5, "meters")
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(1500, "meters"),
  4419. default: true
  4420. },
  4421. {
  4422. name: "Megamacro",
  4423. height: math.unit(150, "km")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(27000, "km")
  4428. }
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4433. {
  4434. front: {
  4435. height: math.unit(6, "feet"),
  4436. weight: math.unit(225, "lb"),
  4437. name: "Front",
  4438. image: {
  4439. source: "./media/characters/abysgar/front.svg"
  4440. }
  4441. }
  4442. },
  4443. [
  4444. {
  4445. name: "Small",
  4446. height: math.unit(4.5, "meters")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(1250, "meters"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Megamacro",
  4455. height: math.unit(125, "km")
  4456. },
  4457. {
  4458. name: "Gigamacro",
  4459. height: math.unit(26000, "km")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(180, "lb"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/yakuz/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Small",
  4478. height: math.unit(5, "meters")
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(1500, "meters"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Megamacro",
  4487. height: math.unit(200, "km")
  4488. },
  4489. {
  4490. name: "Gigamacro",
  4491. height: math.unit(100000, "km")
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(6, "feet"),
  4500. weight: math.unit(175, "lb"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/mirova/front.svg",
  4504. extra: 3334 / 3071,
  4505. bottom: 42 / 3375.6
  4506. }
  4507. }
  4508. },
  4509. [
  4510. {
  4511. name: "Small",
  4512. height: math.unit(5, "meters")
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(900, "meters"),
  4517. default: true
  4518. },
  4519. {
  4520. name: "Megamacro",
  4521. height: math.unit(135, "km")
  4522. },
  4523. {
  4524. name: "Gigamacro",
  4525. height: math.unit(20000, "km")
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4531. {
  4532. side: {
  4533. height: math.unit(28.35, "feet"),
  4534. weight: math.unit(99.75, "tons"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/asana-mech/side.svg",
  4538. extra: 923 / 699,
  4539. bottom: 50 / 975
  4540. }
  4541. },
  4542. chaingun: {
  4543. height: math.unit(7, "feet"),
  4544. weight: math.unit(2400, "lb"),
  4545. name: "Chaingun",
  4546. image: {
  4547. source: "./media/characters/asana-mech/chaingun.svg"
  4548. }
  4549. },
  4550. laser: {
  4551. height: math.unit(7.12, "feet"),
  4552. weight: math.unit(2000, "lb"),
  4553. name: "Laser",
  4554. image: {
  4555. source: "./media/characters/asana-mech/laser.svg"
  4556. }
  4557. },
  4558. },
  4559. [
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(28.35, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(2500, "feet")
  4568. },
  4569. {
  4570. name: "Megamacro",
  4571. height: math.unit(25, "miles")
  4572. },
  4573. {
  4574. name: "Examacro",
  4575. height: math.unit(6e8, "lightyears")
  4576. },
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(5, "meters"),
  4584. weight: math.unit(1000, "kg"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/asche/front.svg",
  4588. extra: 1258 / 1190,
  4589. bottom: 47 / 1305
  4590. }
  4591. },
  4592. frontUnderwear: {
  4593. height: math.unit(5, "meters"),
  4594. weight: math.unit(1000, "kg"),
  4595. name: "Front (Underwear)",
  4596. image: {
  4597. source: "./media/characters/asche/front-underwear.svg",
  4598. extra: 1258 / 1190,
  4599. bottom: 47 / 1305
  4600. }
  4601. },
  4602. frontDressed: {
  4603. height: math.unit(5, "meters"),
  4604. weight: math.unit(1000, "kg"),
  4605. name: "Front (Dressed)",
  4606. image: {
  4607. source: "./media/characters/asche/front-dressed.svg",
  4608. extra: 1258 / 1190,
  4609. bottom: 47 / 1305
  4610. }
  4611. },
  4612. frontArmor: {
  4613. height: math.unit(5, "meters"),
  4614. weight: math.unit(1000, "kg"),
  4615. name: "Front (Armored)",
  4616. image: {
  4617. source: "./media/characters/asche/front-armored.svg",
  4618. extra: 1374 / 1308,
  4619. bottom: 23 / 1397
  4620. }
  4621. },
  4622. mp724: {
  4623. height: math.unit(0.96, "meters"),
  4624. weight: math.unit(38, "kg"),
  4625. name: "H&K MP724",
  4626. image: {
  4627. source: "./media/characters/asche/h&k-mp724.svg"
  4628. }
  4629. },
  4630. side: {
  4631. height: math.unit(5, "meters"),
  4632. weight: math.unit(1000, "kg"),
  4633. name: "Side",
  4634. image: {
  4635. source: "./media/characters/asche/side.svg",
  4636. extra: 1717 / 1609,
  4637. bottom: 0.005
  4638. }
  4639. },
  4640. back: {
  4641. height: math.unit(5, "meters"),
  4642. weight: math.unit(1000, "kg"),
  4643. name: "Back",
  4644. image: {
  4645. source: "./media/characters/asche/back.svg",
  4646. extra: 1570 / 1501
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "DEFCON 5",
  4653. height: math.unit(5, "meters")
  4654. },
  4655. {
  4656. name: "DEFCON 4",
  4657. height: math.unit(500, "meters"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "DEFCON 3",
  4662. height: math.unit(5, "km")
  4663. },
  4664. {
  4665. name: "DEFCON 2",
  4666. height: math.unit(500, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 1",
  4670. height: math.unit(500000, "km")
  4671. },
  4672. {
  4673. name: "DEFCON 0",
  4674. height: math.unit(3, "gigaparsecs")
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(2, "meters"),
  4683. weight: math.unit(76, "kg"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/gale/front.svg"
  4687. }
  4688. },
  4689. frontAlt1: {
  4690. height: math.unit(2, "meters"),
  4691. weight: math.unit(76, "kg"),
  4692. name: "Front (Alt 1)",
  4693. image: {
  4694. source: "./media/characters/gale/front-alt-1.svg"
  4695. }
  4696. },
  4697. frontAlt2: {
  4698. height: math.unit(2, "meters"),
  4699. weight: math.unit(76, "kg"),
  4700. name: "Front (Alt 2)",
  4701. image: {
  4702. source: "./media/characters/gale/front-alt-2.svg"
  4703. }
  4704. },
  4705. },
  4706. [
  4707. {
  4708. name: "Normal",
  4709. height: math.unit(7, "feet")
  4710. },
  4711. {
  4712. name: "Macro",
  4713. height: math.unit(150, "feet"),
  4714. default: true
  4715. },
  4716. {
  4717. name: "Macro+",
  4718. height: math.unit(300, "feet")
  4719. },
  4720. ]
  4721. ))
  4722. characterMakers.push(() => makeCharacter(
  4723. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4724. {
  4725. front: {
  4726. height: math.unit(5 + 10/12, "feet"),
  4727. weight: math.unit(67, "kg"),
  4728. name: "Front",
  4729. image: {
  4730. source: "./media/characters/draylen/front.svg",
  4731. extra: 832/777,
  4732. bottom: 85/917
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(5 + 10/12, "feet")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(150, "feet"),
  4744. default: true
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(7 + 9 / 12, "feet"),
  4753. weight: math.unit(379, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/chez/front.svg"
  4757. }
  4758. },
  4759. side: {
  4760. height: math.unit(7 + 9 / 12, "feet"),
  4761. weight: math.unit(379, "lbs"),
  4762. name: "Side",
  4763. image: {
  4764. source: "./media/characters/chez/side.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Normal",
  4771. height: math.unit(7 + 9 / 12, "feet"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "God King",
  4776. height: math.unit(9750000, "meters")
  4777. }
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4782. {
  4783. front: {
  4784. height: math.unit(6, "feet"),
  4785. weight: math.unit(275, "lbs"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/kaylum/front.svg",
  4789. bottom: 0.01,
  4790. extra: 1166 / 1031
  4791. }
  4792. },
  4793. frontWingless: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(275, "lbs"),
  4796. name: "Front (Wingless)",
  4797. image: {
  4798. source: "./media/characters/kaylum/front-wingless.svg",
  4799. bottom: 0.01,
  4800. extra: 1117 / 1031
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(3.05, "meters")
  4808. },
  4809. {
  4810. name: "Master",
  4811. height: math.unit(5.5, "meters")
  4812. },
  4813. {
  4814. name: "Rampage",
  4815. height: math.unit(19, "meters")
  4816. },
  4817. {
  4818. name: "Macro Lite",
  4819. height: math.unit(37, "meters")
  4820. },
  4821. {
  4822. name: "Hyper Predator",
  4823. height: math.unit(61, "meters")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(138, "meters"),
  4828. default: true
  4829. }
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(150, "lbs"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/geta/front.svg"
  4841. }
  4842. }
  4843. },
  4844. [
  4845. {
  4846. name: "Micro",
  4847. height: math.unit(3, "inches"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Normal",
  4852. height: math.unit(5 + 5 / 12, "feet")
  4853. }
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(300, "lbs"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/tyrnn/front.svg"
  4865. }
  4866. }
  4867. },
  4868. [
  4869. {
  4870. name: "Main Height",
  4871. height: math.unit(355, "feet"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Fave. Height",
  4876. height: math.unit(2400, "feet")
  4877. }
  4878. ]
  4879. ))
  4880. characterMakers.push(() => makeCharacter(
  4881. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4882. {
  4883. front: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(300, "lbs"),
  4886. name: "Front",
  4887. image: {
  4888. source: "./media/characters/appledectomy/front.svg"
  4889. }
  4890. }
  4891. },
  4892. [
  4893. {
  4894. name: "Macro",
  4895. height: math.unit(2500, "feet")
  4896. },
  4897. {
  4898. name: "Megamacro",
  4899. height: math.unit(50, "miles"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Gigamacro",
  4904. height: math.unit(5000, "miles")
  4905. },
  4906. {
  4907. name: "Teramacro",
  4908. height: math.unit(250000, "miles")
  4909. },
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4914. {
  4915. front: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(200, "lbs"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/vulpes/front.svg",
  4921. extra: 573 / 543,
  4922. bottom: 0.033
  4923. }
  4924. },
  4925. side: {
  4926. height: math.unit(6, "feet"),
  4927. weight: math.unit(200, "lbs"),
  4928. name: "Side",
  4929. image: {
  4930. source: "./media/characters/vulpes/side.svg",
  4931. extra: 577 / 549,
  4932. bottom: 11 / 588
  4933. }
  4934. },
  4935. back: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(200, "lbs"),
  4938. name: "Back",
  4939. image: {
  4940. source: "./media/characters/vulpes/back.svg",
  4941. extra: 573 / 549,
  4942. bottom: 20 / 593
  4943. }
  4944. },
  4945. feet: {
  4946. height: math.unit(1.276, "feet"),
  4947. name: "Feet",
  4948. image: {
  4949. source: "./media/characters/vulpes/feet.svg"
  4950. }
  4951. },
  4952. maw: {
  4953. height: math.unit(1.18, "feet"),
  4954. name: "Maw",
  4955. image: {
  4956. source: "./media/characters/vulpes/maw.svg"
  4957. }
  4958. },
  4959. },
  4960. [
  4961. {
  4962. name: "Micro",
  4963. height: math.unit(2, "inches")
  4964. },
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(6.3, "feet")
  4968. },
  4969. {
  4970. name: "Macro",
  4971. height: math.unit(850, "feet")
  4972. },
  4973. {
  4974. name: "Megamacro",
  4975. height: math.unit(7500, "feet"),
  4976. default: true
  4977. },
  4978. {
  4979. name: "Gigamacro",
  4980. height: math.unit(570000, "miles")
  4981. }
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4986. {
  4987. front: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(210, "lbs"),
  4990. name: "Front",
  4991. image: {
  4992. source: "./media/characters/rain-fallen/front.svg"
  4993. }
  4994. },
  4995. side: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(210, "lbs"),
  4998. name: "Side",
  4999. image: {
  5000. source: "./media/characters/rain-fallen/side.svg"
  5001. }
  5002. },
  5003. back: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(210, "lbs"),
  5006. name: "Back",
  5007. image: {
  5008. source: "./media/characters/rain-fallen/back.svg"
  5009. }
  5010. },
  5011. feral: {
  5012. height: math.unit(9, "feet"),
  5013. weight: math.unit(700, "lbs"),
  5014. name: "Feral",
  5015. image: {
  5016. source: "./media/characters/rain-fallen/feral.svg"
  5017. }
  5018. },
  5019. },
  5020. [
  5021. {
  5022. name: "Meddling with Mortals",
  5023. height: math.unit(8 + 8/12, "feet")
  5024. },
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(5, "meter")
  5028. },
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(150, "meter"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Megamacro",
  5036. height: math.unit(278e6, "meter")
  5037. },
  5038. {
  5039. name: "Gigamacro",
  5040. height: math.unit(2e9, "meter")
  5041. },
  5042. {
  5043. name: "Teramacro",
  5044. height: math.unit(8e12, "meter")
  5045. },
  5046. {
  5047. name: "Devourer",
  5048. height: math.unit(14, "zettameters")
  5049. },
  5050. {
  5051. name: "Scarlet King",
  5052. height: math.unit(18, "yottameters")
  5053. },
  5054. {
  5055. name: "Void",
  5056. height: math.unit(1e88, "yottameters")
  5057. }
  5058. ]
  5059. ))
  5060. characterMakers.push(() => makeCharacter(
  5061. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5062. {
  5063. standing: {
  5064. height: math.unit(6, "feet"),
  5065. weight: math.unit(180, "lbs"),
  5066. name: "Standing",
  5067. image: {
  5068. source: "./media/characters/zaakira/standing.svg",
  5069. extra: 1599/1504,
  5070. bottom: 39/1638
  5071. }
  5072. },
  5073. laying: {
  5074. height: math.unit(3, "feet"),
  5075. weight: math.unit(180, "lbs"),
  5076. name: "Laying",
  5077. image: {
  5078. source: "./media/characters/zaakira/laying.svg"
  5079. }
  5080. },
  5081. },
  5082. [
  5083. {
  5084. name: "Normal",
  5085. height: math.unit(12, "feet")
  5086. },
  5087. {
  5088. name: "Macro",
  5089. height: math.unit(279, "feet"),
  5090. default: true
  5091. }
  5092. ]
  5093. ))
  5094. characterMakers.push(() => makeCharacter(
  5095. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5096. {
  5097. femSfw: {
  5098. height: math.unit(8, "feet"),
  5099. weight: math.unit(350, "lb"),
  5100. name: "Fem",
  5101. image: {
  5102. source: "./media/characters/sigvald/fem-sfw.svg",
  5103. extra: 182 / 164,
  5104. bottom: 8.7 / 190.5
  5105. }
  5106. },
  5107. femNsfw: {
  5108. height: math.unit(8, "feet"),
  5109. weight: math.unit(350, "lb"),
  5110. name: "Fem (NSFW)",
  5111. image: {
  5112. source: "./media/characters/sigvald/fem-nsfw.svg",
  5113. extra: 182 / 164,
  5114. bottom: 8.7 / 190.5
  5115. }
  5116. },
  5117. maleNsfw: {
  5118. height: math.unit(8, "feet"),
  5119. weight: math.unit(350, "lb"),
  5120. name: "Male (NSFW)",
  5121. image: {
  5122. source: "./media/characters/sigvald/male-nsfw.svg",
  5123. extra: 182 / 164,
  5124. bottom: 8.7 / 190.5
  5125. }
  5126. },
  5127. hermNsfw: {
  5128. height: math.unit(8, "feet"),
  5129. weight: math.unit(350, "lb"),
  5130. name: "Herm (NSFW)",
  5131. image: {
  5132. source: "./media/characters/sigvald/herm-nsfw.svg",
  5133. extra: 182 / 164,
  5134. bottom: 8.7 / 190.5
  5135. }
  5136. },
  5137. dick: {
  5138. height: math.unit(2.36, "feet"),
  5139. name: "Dick",
  5140. image: {
  5141. source: "./media/characters/sigvald/dick.svg"
  5142. }
  5143. },
  5144. eye: {
  5145. height: math.unit(0.31, "feet"),
  5146. name: "Eye",
  5147. image: {
  5148. source: "./media/characters/sigvald/eye.svg"
  5149. }
  5150. },
  5151. mouth: {
  5152. height: math.unit(0.92, "feet"),
  5153. name: "Mouth",
  5154. image: {
  5155. source: "./media/characters/sigvald/mouth.svg"
  5156. }
  5157. },
  5158. paws: {
  5159. height: math.unit(2.2, "feet"),
  5160. name: "Paws",
  5161. image: {
  5162. source: "./media/characters/sigvald/paws.svg"
  5163. }
  5164. }
  5165. },
  5166. [
  5167. {
  5168. name: "Normal",
  5169. height: math.unit(8, "feet")
  5170. },
  5171. {
  5172. name: "Large",
  5173. height: math.unit(12, "feet")
  5174. },
  5175. {
  5176. name: "Larger",
  5177. height: math.unit(20, "feet")
  5178. },
  5179. {
  5180. name: "Macro",
  5181. height: math.unit(150, "feet")
  5182. },
  5183. {
  5184. name: "Macro+",
  5185. height: math.unit(200, "feet"),
  5186. default: true
  5187. },
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5192. {
  5193. side: {
  5194. height: math.unit(12, "feet"),
  5195. weight: math.unit(2000, "kg"),
  5196. name: "Side",
  5197. image: {
  5198. source: "./media/characters/scott/side.svg",
  5199. extra: 754 / 724,
  5200. bottom: 0.069
  5201. }
  5202. },
  5203. upright: {
  5204. height: math.unit(12, "feet"),
  5205. weight: math.unit(2000, "kg"),
  5206. name: "Upright",
  5207. image: {
  5208. source: "./media/characters/scott/upright.svg",
  5209. extra: 3881 / 3722,
  5210. bottom: 0.05
  5211. }
  5212. },
  5213. },
  5214. [
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(12, "feet"),
  5218. default: true
  5219. },
  5220. ]
  5221. ))
  5222. characterMakers.push(() => makeCharacter(
  5223. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5224. {
  5225. side: {
  5226. height: math.unit(8, "meters"),
  5227. weight: math.unit(84755, "lbs"),
  5228. name: "Side",
  5229. image: {
  5230. source: "./media/characters/tobias/side.svg",
  5231. extra: 1474 / 1096,
  5232. bottom: 38.9 / 1513.1235
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Normal",
  5239. height: math.unit(8, "meters"),
  5240. default: true
  5241. },
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5246. {
  5247. front: {
  5248. height: math.unit(5.5, "feet"),
  5249. weight: math.unit(400, "lbs"),
  5250. name: "Front",
  5251. image: {
  5252. source: "./media/characters/kieran/front.svg",
  5253. extra: 2694 / 2364,
  5254. bottom: 217 / 2908
  5255. }
  5256. },
  5257. side: {
  5258. height: math.unit(5.5, "feet"),
  5259. weight: math.unit(400, "lbs"),
  5260. name: "Side",
  5261. image: {
  5262. source: "./media/characters/kieran/side.svg",
  5263. extra: 875 / 777,
  5264. bottom: 84.6 / 959
  5265. }
  5266. },
  5267. },
  5268. [
  5269. {
  5270. name: "Normal",
  5271. height: math.unit(5.5, "feet"),
  5272. default: true
  5273. },
  5274. ]
  5275. ))
  5276. characterMakers.push(() => makeCharacter(
  5277. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5278. {
  5279. side: {
  5280. height: math.unit(2, "meters"),
  5281. weight: math.unit(70, "kg"),
  5282. name: "Side",
  5283. image: {
  5284. source: "./media/characters/sanya/side.svg",
  5285. bottom: 0.02,
  5286. extra: 1.02
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "Small",
  5293. height: math.unit(2, "meters")
  5294. },
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(3, "meters")
  5298. },
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(16, "meters"),
  5302. default: true
  5303. },
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(2, "meters"),
  5311. weight: math.unit(120, "kg"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/miranda/front.svg",
  5315. extra: 195 / 185,
  5316. bottom: 10.9 / 206.5
  5317. }
  5318. },
  5319. back: {
  5320. height: math.unit(2, "meters"),
  5321. weight: math.unit(120, "kg"),
  5322. name: "Back",
  5323. image: {
  5324. source: "./media/characters/miranda/back.svg",
  5325. extra: 201 / 193,
  5326. bottom: 2.3 / 203.7
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Normal",
  5333. height: math.unit(10, "feet"),
  5334. default: true
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "James", species: ["deer"], tags: ["anthro"] },
  5340. {
  5341. side: {
  5342. height: math.unit(2, "meters"),
  5343. weight: math.unit(100, "kg"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/james/front.svg",
  5347. extra: 10 / 8.5
  5348. }
  5349. },
  5350. },
  5351. [
  5352. {
  5353. name: "Normal",
  5354. height: math.unit(8.5, "feet"),
  5355. default: true
  5356. }
  5357. ]
  5358. ))
  5359. characterMakers.push(() => makeCharacter(
  5360. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5361. {
  5362. side: {
  5363. height: math.unit(9.5, "feet"),
  5364. weight: math.unit(2500, "lbs"),
  5365. name: "Side",
  5366. image: {
  5367. source: "./media/characters/heather/side.svg"
  5368. }
  5369. },
  5370. },
  5371. [
  5372. {
  5373. name: "Normal",
  5374. height: math.unit(9.5, "feet"),
  5375. default: true
  5376. }
  5377. ]
  5378. ))
  5379. characterMakers.push(() => makeCharacter(
  5380. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5381. {
  5382. side: {
  5383. height: math.unit(6.5, "feet"),
  5384. weight: math.unit(400, "lbs"),
  5385. name: "Side",
  5386. image: {
  5387. source: "./media/characters/lukas/side.svg",
  5388. extra: 7.25 / 6.5
  5389. }
  5390. },
  5391. },
  5392. [
  5393. {
  5394. name: "Normal",
  5395. height: math.unit(6.5, "feet"),
  5396. default: true
  5397. }
  5398. ]
  5399. ))
  5400. characterMakers.push(() => makeCharacter(
  5401. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5402. {
  5403. side: {
  5404. height: math.unit(5, "feet"),
  5405. weight: math.unit(3000, "lbs"),
  5406. name: "Side",
  5407. image: {
  5408. source: "./media/characters/louise/side.svg"
  5409. }
  5410. },
  5411. },
  5412. [
  5413. {
  5414. name: "Normal",
  5415. height: math.unit(5, "feet"),
  5416. default: true
  5417. }
  5418. ]
  5419. ))
  5420. characterMakers.push(() => makeCharacter(
  5421. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5422. {
  5423. side: {
  5424. height: math.unit(6, "feet"),
  5425. weight: math.unit(150, "lbs"),
  5426. name: "Side",
  5427. image: {
  5428. source: "./media/characters/ramona/side.svg",
  5429. extra: 871/854,
  5430. bottom: 41/912
  5431. }
  5432. },
  5433. },
  5434. [
  5435. {
  5436. name: "Normal",
  5437. height: math.unit(5.3, "meters"),
  5438. default: true
  5439. },
  5440. {
  5441. name: "Macro",
  5442. height: math.unit(20, "stories")
  5443. },
  5444. {
  5445. name: "Macro+",
  5446. height: math.unit(50, "stories")
  5447. },
  5448. ]
  5449. ))
  5450. characterMakers.push(() => makeCharacter(
  5451. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5452. {
  5453. standing: {
  5454. height: math.unit(5.75, "feet"),
  5455. weight: math.unit(160, "lbs"),
  5456. name: "Standing",
  5457. image: {
  5458. source: "./media/characters/deerpuff/standing.svg",
  5459. extra: 682 / 624
  5460. }
  5461. },
  5462. sitting: {
  5463. height: math.unit(5.75 / 1.79, "feet"),
  5464. weight: math.unit(160, "lbs"),
  5465. name: "Sitting",
  5466. image: {
  5467. source: "./media/characters/deerpuff/sitting.svg",
  5468. bottom: 44 / 400,
  5469. extra: 1
  5470. }
  5471. },
  5472. taurLaying: {
  5473. height: math.unit(6, "feet"),
  5474. weight: math.unit(400, "lbs"),
  5475. name: "Taur (Laying)",
  5476. image: {
  5477. source: "./media/characters/deerpuff/taur-laying.svg"
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Puffball",
  5484. height: math.unit(6, "inches")
  5485. },
  5486. {
  5487. name: "Normalpuff",
  5488. height: math.unit(5.75, "feet")
  5489. },
  5490. {
  5491. name: "Macropuff",
  5492. height: math.unit(1500, "feet"),
  5493. default: true
  5494. },
  5495. {
  5496. name: "Megapuff",
  5497. height: math.unit(500, "miles")
  5498. },
  5499. {
  5500. name: "Gigapuff",
  5501. height: math.unit(250000, "miles")
  5502. },
  5503. {
  5504. name: "Omegapuff",
  5505. height: math.unit(1000, "lightyears")
  5506. },
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5511. {
  5512. stomping: {
  5513. height: math.unit(6, "feet"),
  5514. weight: math.unit(170, "lbs"),
  5515. name: "Stomping",
  5516. image: {
  5517. source: "./media/characters/vivian/stomping.svg"
  5518. }
  5519. },
  5520. sitting: {
  5521. height: math.unit(6 / 1.75, "feet"),
  5522. weight: math.unit(170, "lbs"),
  5523. name: "Sitting",
  5524. image: {
  5525. source: "./media/characters/vivian/sitting.svg",
  5526. bottom: 1 / 6.4,
  5527. extra: 1,
  5528. }
  5529. },
  5530. },
  5531. [
  5532. {
  5533. name: "Normal",
  5534. height: math.unit(7, "feet"),
  5535. default: true
  5536. },
  5537. {
  5538. name: "Macro",
  5539. height: math.unit(10, "stories")
  5540. },
  5541. {
  5542. name: "Macro+",
  5543. height: math.unit(30, "stories")
  5544. },
  5545. {
  5546. name: "Megamacro",
  5547. height: math.unit(10, "miles")
  5548. },
  5549. {
  5550. name: "Megamacro+",
  5551. height: math.unit(2750000, "meters")
  5552. },
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5557. {
  5558. front: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(160, "lbs"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/prince/front.svg",
  5564. extra: 3400 / 3000
  5565. }
  5566. },
  5567. jumping: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(160, "lbs"),
  5570. name: "Jumping",
  5571. image: {
  5572. source: "./media/characters/prince/jump.svg",
  5573. extra: 2555 / 2134
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(7.75, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Not cute",
  5585. height: math.unit(17, "feet")
  5586. },
  5587. {
  5588. name: "I said NOT",
  5589. height: math.unit(91, "feet")
  5590. },
  5591. {
  5592. name: "Please stop",
  5593. height: math.unit(560, "feet")
  5594. },
  5595. {
  5596. name: "What have you done",
  5597. height: math.unit(2200, "feet")
  5598. },
  5599. {
  5600. name: "Deer God",
  5601. height: math.unit(3.6, "miles")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5607. {
  5608. standing: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(300, "lbs"),
  5611. name: "Standing",
  5612. image: {
  5613. source: "./media/characters/psymon/standing.svg",
  5614. extra: 1888 / 1810,
  5615. bottom: 0.05
  5616. }
  5617. },
  5618. slithering: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(300, "lbs"),
  5621. name: "Slithering",
  5622. image: {
  5623. source: "./media/characters/psymon/slithering.svg",
  5624. extra: 1330 / 1224
  5625. }
  5626. },
  5627. slitheringAlt: {
  5628. height: math.unit(6, "feet"),
  5629. weight: math.unit(300, "lbs"),
  5630. name: "Slithering (Alt)",
  5631. image: {
  5632. source: "./media/characters/psymon/slithering-alt.svg",
  5633. extra: 1330 / 1224
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(11.25, "feet"),
  5641. default: true
  5642. },
  5643. {
  5644. name: "Large",
  5645. height: math.unit(27, "feet")
  5646. },
  5647. {
  5648. name: "Giant",
  5649. height: math.unit(87, "feet")
  5650. },
  5651. {
  5652. name: "Macro",
  5653. height: math.unit(365, "feet")
  5654. },
  5655. {
  5656. name: "Megamacro",
  5657. height: math.unit(3, "miles")
  5658. },
  5659. {
  5660. name: "World Serpent",
  5661. height: math.unit(8000, "miles")
  5662. },
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(180, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/daimos/front.svg",
  5674. extra: 4160 / 3897,
  5675. bottom: 0.021
  5676. }
  5677. }
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(8, "feet"),
  5683. default: true
  5684. },
  5685. {
  5686. name: "Big Dog",
  5687. height: math.unit(22, "feet")
  5688. },
  5689. {
  5690. name: "Macro",
  5691. height: math.unit(127, "feet")
  5692. },
  5693. {
  5694. name: "Megamacro",
  5695. height: math.unit(3600, "feet")
  5696. },
  5697. ]
  5698. ))
  5699. characterMakers.push(() => makeCharacter(
  5700. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5701. {
  5702. side: {
  5703. height: math.unit(6, "feet"),
  5704. weight: math.unit(180, "lbs"),
  5705. name: "Side",
  5706. image: {
  5707. source: "./media/characters/blake/side.svg",
  5708. extra: 1212 / 1120,
  5709. bottom: 0.05
  5710. }
  5711. },
  5712. crouched: {
  5713. height: math.unit(6 * 0.57, "feet"),
  5714. weight: math.unit(180, "lbs"),
  5715. name: "Crouched",
  5716. image: {
  5717. source: "./media/characters/blake/crouched.svg",
  5718. extra: 840 / 587,
  5719. bottom: 0.04
  5720. }
  5721. },
  5722. bent: {
  5723. height: math.unit(6 * 0.75, "feet"),
  5724. weight: math.unit(180, "lbs"),
  5725. name: "Bent",
  5726. image: {
  5727. source: "./media/characters/blake/bent.svg",
  5728. extra: 592 / 544,
  5729. bottom: 0.035
  5730. }
  5731. },
  5732. },
  5733. [
  5734. {
  5735. name: "Normal",
  5736. height: math.unit(8 + 1 / 6, "feet"),
  5737. default: true
  5738. },
  5739. {
  5740. name: "Big Backside",
  5741. height: math.unit(37, "feet")
  5742. },
  5743. {
  5744. name: "Subway Shredder",
  5745. height: math.unit(72, "feet")
  5746. },
  5747. {
  5748. name: "City Carver",
  5749. height: math.unit(1675, "feet")
  5750. },
  5751. {
  5752. name: "Tectonic Tweaker",
  5753. height: math.unit(2300, "miles")
  5754. },
  5755. ]
  5756. ))
  5757. characterMakers.push(() => makeCharacter(
  5758. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5759. {
  5760. front: {
  5761. height: math.unit(6, "feet"),
  5762. weight: math.unit(180, "lbs"),
  5763. name: "Front",
  5764. image: {
  5765. source: "./media/characters/guisetto/front.svg",
  5766. extra: 856 / 817,
  5767. bottom: 0.06
  5768. }
  5769. },
  5770. airborne: {
  5771. height: math.unit(6, "feet"),
  5772. weight: math.unit(180, "lbs"),
  5773. name: "Airborne",
  5774. image: {
  5775. source: "./media/characters/guisetto/airborne.svg",
  5776. extra: 584 / 525
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(10 + 11 / 12, "feet"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Large",
  5788. height: math.unit(35, "feet")
  5789. },
  5790. {
  5791. name: "Macro",
  5792. height: math.unit(475, "feet")
  5793. },
  5794. ]
  5795. ))
  5796. characterMakers.push(() => makeCharacter(
  5797. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5798. {
  5799. front: {
  5800. height: math.unit(6, "feet"),
  5801. weight: math.unit(180, "lbs"),
  5802. name: "Front",
  5803. image: {
  5804. source: "./media/characters/luxor/front.svg",
  5805. extra: 2940 / 2152
  5806. }
  5807. },
  5808. back: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(180, "lbs"),
  5811. name: "Back",
  5812. image: {
  5813. source: "./media/characters/luxor/back.svg",
  5814. extra: 1083 / 960
  5815. }
  5816. },
  5817. },
  5818. [
  5819. {
  5820. name: "Normal",
  5821. height: math.unit(5 + 5 / 6, "feet"),
  5822. default: true
  5823. },
  5824. {
  5825. name: "Lamp",
  5826. height: math.unit(50, "feet")
  5827. },
  5828. {
  5829. name: "Lämp",
  5830. height: math.unit(300, "feet")
  5831. },
  5832. {
  5833. name: "The sun is a lamp",
  5834. height: math.unit(250000, "miles")
  5835. },
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5840. {
  5841. front: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(50, "lbs"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/huoyan/front.svg"
  5847. }
  5848. },
  5849. side: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(180, "lbs"),
  5852. name: "Side",
  5853. image: {
  5854. source: "./media/characters/huoyan/side.svg"
  5855. }
  5856. },
  5857. },
  5858. [
  5859. {
  5860. name: "Chef",
  5861. height: math.unit(9, "feet")
  5862. },
  5863. {
  5864. name: "Normal",
  5865. height: math.unit(65, "feet"),
  5866. default: true
  5867. },
  5868. {
  5869. name: "Macro",
  5870. height: math.unit(780, "feet")
  5871. },
  5872. {
  5873. name: "Flaming Mountain",
  5874. height: math.unit(4.8, "miles")
  5875. },
  5876. {
  5877. name: "Celestial",
  5878. height: math.unit(765000, "miles")
  5879. },
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5884. {
  5885. front: {
  5886. height: math.unit(5 + 3 / 4, "feet"),
  5887. weight: math.unit(120, "lbs"),
  5888. name: "Front",
  5889. image: {
  5890. source: "./media/characters/tails/front.svg"
  5891. }
  5892. }
  5893. },
  5894. [
  5895. {
  5896. name: "Normal",
  5897. height: math.unit(5 + 3 / 4, "feet"),
  5898. default: true
  5899. }
  5900. ]
  5901. ))
  5902. characterMakers.push(() => makeCharacter(
  5903. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5904. {
  5905. front: {
  5906. height: math.unit(4, "feet"),
  5907. weight: math.unit(50, "lbs"),
  5908. name: "Front",
  5909. image: {
  5910. source: "./media/characters/rainy/front.svg"
  5911. }
  5912. }
  5913. },
  5914. [
  5915. {
  5916. name: "Macro",
  5917. height: math.unit(800, "feet"),
  5918. default: true
  5919. }
  5920. ]
  5921. ))
  5922. characterMakers.push(() => makeCharacter(
  5923. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5924. {
  5925. front: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(150, "lbs"),
  5928. name: "Front",
  5929. image: {
  5930. source: "./media/characters/rainier/front.svg"
  5931. }
  5932. }
  5933. },
  5934. [
  5935. {
  5936. name: "Micro",
  5937. height: math.unit(2, "mm"),
  5938. default: true
  5939. }
  5940. ]
  5941. ))
  5942. characterMakers.push(() => makeCharacter(
  5943. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5944. {
  5945. front: {
  5946. height: math.unit(8 + 4/12, "feet"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/andy-renard/front.svg",
  5950. extra: 1839/1726,
  5951. bottom: 134/1973
  5952. }
  5953. },
  5954. back: {
  5955. height: math.unit(8 + 4/12, "feet"),
  5956. name: "Back",
  5957. image: {
  5958. source: "./media/characters/andy-renard/back.svg",
  5959. extra: 1838/1710,
  5960. bottom: 105/1943
  5961. }
  5962. },
  5963. },
  5964. [
  5965. {
  5966. name: "Tall",
  5967. height: math.unit(8 + 4/12, "feet")
  5968. },
  5969. {
  5970. name: "Mini Macro",
  5971. height: math.unit(15, "feet"),
  5972. default: true
  5973. },
  5974. {
  5975. name: "Macro",
  5976. height: math.unit(100, "feet")
  5977. },
  5978. {
  5979. name: "Mega Macro",
  5980. height: math.unit(1000, "feet")
  5981. },
  5982. {
  5983. name: "Giga Macro",
  5984. height: math.unit(10, "miles")
  5985. },
  5986. {
  5987. name: "God Macro",
  5988. height: math.unit(1, "multiverse")
  5989. },
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5994. {
  5995. front: {
  5996. height: math.unit(6, "feet"),
  5997. weight: math.unit(210, "lbs"),
  5998. name: "Front",
  5999. image: {
  6000. source: "./media/characters/cimmaron/front-sfw.svg",
  6001. extra: 701 / 676,
  6002. bottom: 0.046
  6003. }
  6004. },
  6005. back: {
  6006. height: math.unit(6, "feet"),
  6007. weight: math.unit(210, "lbs"),
  6008. name: "Back",
  6009. image: {
  6010. source: "./media/characters/cimmaron/back-sfw.svg",
  6011. extra: 701 / 676,
  6012. bottom: 0.046
  6013. }
  6014. },
  6015. frontNsfw: {
  6016. height: math.unit(6, "feet"),
  6017. weight: math.unit(210, "lbs"),
  6018. name: "Front (NSFW)",
  6019. image: {
  6020. source: "./media/characters/cimmaron/front-nsfw.svg",
  6021. extra: 701 / 676,
  6022. bottom: 0.046
  6023. }
  6024. },
  6025. backNsfw: {
  6026. height: math.unit(6, "feet"),
  6027. weight: math.unit(210, "lbs"),
  6028. name: "Back (NSFW)",
  6029. image: {
  6030. source: "./media/characters/cimmaron/back-nsfw.svg",
  6031. extra: 701 / 676,
  6032. bottom: 0.046
  6033. }
  6034. },
  6035. dick: {
  6036. height: math.unit(1.714, "feet"),
  6037. name: "Dick",
  6038. image: {
  6039. source: "./media/characters/cimmaron/dick.svg"
  6040. }
  6041. },
  6042. },
  6043. [
  6044. {
  6045. name: "Normal",
  6046. height: math.unit(6, "feet"),
  6047. default: true
  6048. },
  6049. {
  6050. name: "Macro Mayor",
  6051. height: math.unit(350, "meters")
  6052. },
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(6, "feet"),
  6060. weight: math.unit(200, "lbs"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/akari/front.svg",
  6064. extra: 962 / 901,
  6065. bottom: 0.04
  6066. }
  6067. }
  6068. },
  6069. [
  6070. {
  6071. name: "Micro",
  6072. height: math.unit(5, "inches"),
  6073. default: true
  6074. },
  6075. {
  6076. name: "Normal",
  6077. height: math.unit(7, "feet")
  6078. },
  6079. ]
  6080. ))
  6081. characterMakers.push(() => makeCharacter(
  6082. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6083. {
  6084. front: {
  6085. height: math.unit(6, "feet"),
  6086. weight: math.unit(140, "lbs"),
  6087. name: "Front",
  6088. image: {
  6089. source: "./media/characters/cynosura/front.svg",
  6090. extra: 896 / 847
  6091. }
  6092. },
  6093. back: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(140, "lbs"),
  6096. name: "Back",
  6097. image: {
  6098. source: "./media/characters/cynosura/back.svg",
  6099. extra: 1365 / 1250
  6100. }
  6101. },
  6102. },
  6103. [
  6104. {
  6105. name: "Micro",
  6106. height: math.unit(4, "inches")
  6107. },
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(5.75, "feet"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Tall",
  6115. height: math.unit(10, "feet")
  6116. },
  6117. {
  6118. name: "Big",
  6119. height: math.unit(20, "feet")
  6120. },
  6121. {
  6122. name: "Macro",
  6123. height: math.unit(50, "feet")
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6129. {
  6130. front: {
  6131. height: math.unit(13 + 2/12, "feet"),
  6132. weight: math.unit(800, "kg"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/gin/front.svg",
  6136. extra: 1312/1191,
  6137. bottom: 45/1357
  6138. }
  6139. },
  6140. mouth: {
  6141. height: math.unit(2.39 * 1.8, "feet"),
  6142. name: "Mouth",
  6143. image: {
  6144. source: "./media/characters/gin/mouth.svg"
  6145. }
  6146. },
  6147. hand: {
  6148. height: math.unit(1.57 * 2.19, "feet"),
  6149. name: "Hand",
  6150. image: {
  6151. source: "./media/characters/gin/hand.svg"
  6152. }
  6153. },
  6154. foot: {
  6155. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6156. name: "Foot",
  6157. image: {
  6158. source: "./media/characters/gin/foot.svg"
  6159. }
  6160. },
  6161. sole: {
  6162. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6163. name: "Sole",
  6164. image: {
  6165. source: "./media/characters/gin/sole.svg"
  6166. }
  6167. },
  6168. },
  6169. [
  6170. {
  6171. name: "Very Small",
  6172. height: math.unit(13 + 2 / 12, "feet")
  6173. },
  6174. {
  6175. name: "Micro",
  6176. height: math.unit(600, "miles")
  6177. },
  6178. {
  6179. name: "Regular",
  6180. height: math.unit(20, "earths"),
  6181. default: true
  6182. },
  6183. {
  6184. name: "Macro",
  6185. height: math.unit(2.2, "solarradii")
  6186. },
  6187. {
  6188. name: "Teramacro",
  6189. height: math.unit(1.2, "galaxies")
  6190. },
  6191. {
  6192. name: "Omegamacro",
  6193. height: math.unit(200, "universes")
  6194. },
  6195. ]
  6196. ))
  6197. characterMakers.push(() => makeCharacter(
  6198. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6199. {
  6200. front: {
  6201. height: math.unit(6 + 1 / 6, "feet"),
  6202. weight: math.unit(178, "lbs"),
  6203. name: "Front",
  6204. image: {
  6205. source: "./media/characters/guy/front.svg"
  6206. }
  6207. }
  6208. },
  6209. [
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(6 + 1 / 6, "feet"),
  6213. default: true
  6214. },
  6215. {
  6216. name: "Large",
  6217. height: math.unit(25 + 7 / 12, "feet")
  6218. },
  6219. {
  6220. name: "Macro",
  6221. height: math.unit(60 + 9 / 12, "feet")
  6222. },
  6223. {
  6224. name: "Macro+",
  6225. height: math.unit(246, "feet")
  6226. },
  6227. {
  6228. name: "Macro++",
  6229. height: math.unit(878, "feet")
  6230. }
  6231. ]
  6232. ))
  6233. characterMakers.push(() => makeCharacter(
  6234. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6235. {
  6236. front: {
  6237. height: math.unit(9, "feet"),
  6238. weight: math.unit(800, "lbs"),
  6239. name: "Front",
  6240. image: {
  6241. source: "./media/characters/tiberius/front.svg",
  6242. extra: 2295 / 2071
  6243. }
  6244. },
  6245. back: {
  6246. height: math.unit(9, "feet"),
  6247. weight: math.unit(800, "lbs"),
  6248. name: "Back",
  6249. image: {
  6250. source: "./media/characters/tiberius/back.svg",
  6251. extra: 2373 / 2160
  6252. }
  6253. },
  6254. },
  6255. [
  6256. {
  6257. name: "Normal",
  6258. height: math.unit(9, "feet"),
  6259. default: true
  6260. }
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6265. {
  6266. front: {
  6267. height: math.unit(6, "feet"),
  6268. weight: math.unit(600, "lbs"),
  6269. name: "Front",
  6270. image: {
  6271. source: "./media/characters/surgo/front.svg",
  6272. extra: 3591 / 2227
  6273. }
  6274. },
  6275. back: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(600, "lbs"),
  6278. name: "Back",
  6279. image: {
  6280. source: "./media/characters/surgo/back.svg",
  6281. extra: 3557 / 2228
  6282. }
  6283. },
  6284. laying: {
  6285. height: math.unit(6 * 0.85, "feet"),
  6286. weight: math.unit(600, "lbs"),
  6287. name: "Laying",
  6288. image: {
  6289. source: "./media/characters/surgo/laying.svg"
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Normal",
  6296. height: math.unit(6, "feet"),
  6297. default: true
  6298. }
  6299. ]
  6300. ))
  6301. characterMakers.push(() => makeCharacter(
  6302. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6303. {
  6304. side: {
  6305. height: math.unit(6, "feet"),
  6306. weight: math.unit(150, "lbs"),
  6307. name: "Side",
  6308. image: {
  6309. source: "./media/characters/cibus/side.svg",
  6310. extra: 800 / 400
  6311. }
  6312. },
  6313. },
  6314. [
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(6, "feet"),
  6318. default: true
  6319. }
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(240, "lbs"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/nibbles/front.svg"
  6331. }
  6332. },
  6333. side: {
  6334. height: math.unit(6, "feet"),
  6335. weight: math.unit(240, "lbs"),
  6336. name: "Side",
  6337. image: {
  6338. source: "./media/characters/nibbles/side.svg"
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Normal",
  6345. height: math.unit(9, "feet"),
  6346. default: true
  6347. }
  6348. ]
  6349. ))
  6350. characterMakers.push(() => makeCharacter(
  6351. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6352. {
  6353. side: {
  6354. height: math.unit(5 + 1 / 6, "feet"),
  6355. weight: math.unit(130, "lbs"),
  6356. name: "Side",
  6357. image: {
  6358. source: "./media/characters/rikky/side.svg",
  6359. extra: 851 / 801
  6360. }
  6361. },
  6362. },
  6363. [
  6364. {
  6365. name: "Normal",
  6366. height: math.unit(5 + 1 / 6, "feet")
  6367. },
  6368. {
  6369. name: "Macro",
  6370. height: math.unit(152, "feet"),
  6371. default: true
  6372. },
  6373. {
  6374. name: "Megamacro",
  6375. height: math.unit(7, "miles")
  6376. }
  6377. ]
  6378. ))
  6379. characterMakers.push(() => makeCharacter(
  6380. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6381. {
  6382. side: {
  6383. height: math.unit(370, "cm"),
  6384. weight: math.unit(350, "lbs"),
  6385. name: "Side",
  6386. image: {
  6387. source: "./media/characters/malfressa/side.svg"
  6388. }
  6389. },
  6390. walking: {
  6391. height: math.unit(370, "cm"),
  6392. weight: math.unit(350, "lbs"),
  6393. name: "Walking",
  6394. image: {
  6395. source: "./media/characters/malfressa/walking.svg"
  6396. }
  6397. },
  6398. feral: {
  6399. height: math.unit(2500, "cm"),
  6400. weight: math.unit(100000, "lbs"),
  6401. name: "Feral",
  6402. image: {
  6403. source: "./media/characters/malfressa/feral.svg",
  6404. extra: 2108 / 837,
  6405. bottom: 0.02
  6406. }
  6407. },
  6408. },
  6409. [
  6410. {
  6411. name: "Normal",
  6412. height: math.unit(370, "cm")
  6413. },
  6414. {
  6415. name: "Macro",
  6416. height: math.unit(300, "meters"),
  6417. default: true
  6418. }
  6419. ]
  6420. ))
  6421. characterMakers.push(() => makeCharacter(
  6422. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6423. {
  6424. front: {
  6425. height: math.unit(6, "feet"),
  6426. weight: math.unit(60, "kg"),
  6427. name: "Front",
  6428. image: {
  6429. source: "./media/characters/jaro/front.svg",
  6430. extra: 845/817,
  6431. bottom: 45/890
  6432. }
  6433. },
  6434. back: {
  6435. height: math.unit(6, "feet"),
  6436. weight: math.unit(60, "kg"),
  6437. name: "Back",
  6438. image: {
  6439. source: "./media/characters/jaro/back.svg",
  6440. extra: 847/817,
  6441. bottom: 34/881
  6442. }
  6443. },
  6444. },
  6445. [
  6446. {
  6447. name: "Micro",
  6448. height: math.unit(7, "inches")
  6449. },
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(5.5, "feet"),
  6453. default: true
  6454. },
  6455. {
  6456. name: "Minimacro",
  6457. height: math.unit(20, "feet")
  6458. },
  6459. {
  6460. name: "Macro",
  6461. height: math.unit(200, "meters")
  6462. }
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6467. {
  6468. front: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(195, "lb"),
  6471. name: "Front",
  6472. image: {
  6473. source: "./media/characters/rogue/front.svg"
  6474. }
  6475. },
  6476. },
  6477. [
  6478. {
  6479. name: "Macro",
  6480. height: math.unit(90, "feet"),
  6481. default: true
  6482. },
  6483. ]
  6484. ))
  6485. characterMakers.push(() => makeCharacter(
  6486. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6487. {
  6488. front: {
  6489. height: math.unit(5 + 8 / 12, "feet"),
  6490. weight: math.unit(140, "lb"),
  6491. name: "Front",
  6492. image: {
  6493. source: "./media/characters/piper/front.svg",
  6494. extra: 3948/3655,
  6495. bottom: 0/3948
  6496. }
  6497. },
  6498. },
  6499. [
  6500. {
  6501. name: "Micro",
  6502. height: math.unit(2, "inches")
  6503. },
  6504. {
  6505. name: "Normal",
  6506. height: math.unit(5 + 8 / 12, "feet")
  6507. },
  6508. {
  6509. name: "Macro",
  6510. height: math.unit(250, "feet"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Megamacro",
  6515. height: math.unit(7, "miles")
  6516. },
  6517. ]
  6518. ))
  6519. characterMakers.push(() => makeCharacter(
  6520. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6521. {
  6522. front: {
  6523. height: math.unit(6, "feet"),
  6524. weight: math.unit(220, "lb"),
  6525. name: "Front",
  6526. image: {
  6527. source: "./media/characters/gemini/front.svg"
  6528. }
  6529. },
  6530. back: {
  6531. height: math.unit(6, "feet"),
  6532. weight: math.unit(220, "lb"),
  6533. name: "Back",
  6534. image: {
  6535. source: "./media/characters/gemini/back.svg"
  6536. }
  6537. },
  6538. kneeling: {
  6539. height: math.unit(6 / 1.5, "feet"),
  6540. weight: math.unit(220, "lb"),
  6541. name: "Kneeling",
  6542. image: {
  6543. source: "./media/characters/gemini/kneeling.svg",
  6544. bottom: 0.02
  6545. }
  6546. },
  6547. },
  6548. [
  6549. {
  6550. name: "Macro",
  6551. height: math.unit(300, "meters"),
  6552. default: true
  6553. },
  6554. {
  6555. name: "Megamacro",
  6556. height: math.unit(6900, "meters")
  6557. },
  6558. ]
  6559. ))
  6560. characterMakers.push(() => makeCharacter(
  6561. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6562. {
  6563. anthro: {
  6564. height: math.unit(2.35, "meters"),
  6565. weight: math.unit(73, "kg"),
  6566. name: "Anthro",
  6567. image: {
  6568. source: "./media/characters/alicia/anthro.svg",
  6569. extra: 2571 / 2385,
  6570. bottom: 75 / 2648
  6571. }
  6572. },
  6573. paw: {
  6574. height: math.unit(1.32, "feet"),
  6575. name: "Paw",
  6576. image: {
  6577. source: "./media/characters/alicia/paw.svg"
  6578. }
  6579. },
  6580. feral: {
  6581. height: math.unit(1.69, "meters"),
  6582. weight: math.unit(73, "kg"),
  6583. name: "Feral",
  6584. image: {
  6585. source: "./media/characters/alicia/feral.svg",
  6586. extra: 2123 / 1715,
  6587. bottom: 222 / 2349
  6588. }
  6589. },
  6590. },
  6591. [
  6592. {
  6593. name: "Normal",
  6594. height: math.unit(2.35, "meters")
  6595. },
  6596. {
  6597. name: "Macro",
  6598. height: math.unit(60, "meters"),
  6599. default: true
  6600. },
  6601. {
  6602. name: "Megamacro",
  6603. height: math.unit(10000, "kilometers")
  6604. },
  6605. ]
  6606. ))
  6607. characterMakers.push(() => makeCharacter(
  6608. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6609. {
  6610. front: {
  6611. height: math.unit(7, "feet"),
  6612. weight: math.unit(250, "lbs"),
  6613. name: "Front",
  6614. image: {
  6615. source: "./media/characters/archy/front.svg"
  6616. }
  6617. }
  6618. },
  6619. [
  6620. {
  6621. name: "Micro",
  6622. height: math.unit(1, "inch")
  6623. },
  6624. {
  6625. name: "Shorty",
  6626. height: math.unit(5, "feet")
  6627. },
  6628. {
  6629. name: "Normal",
  6630. height: math.unit(7, "feet")
  6631. },
  6632. {
  6633. name: "Macro",
  6634. height: math.unit(600, "meters"),
  6635. default: true
  6636. },
  6637. {
  6638. name: "Megamacro",
  6639. height: math.unit(1, "mile")
  6640. },
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6645. {
  6646. front: {
  6647. height: math.unit(1.65, "meters"),
  6648. weight: math.unit(74, "kg"),
  6649. name: "Front",
  6650. image: {
  6651. source: "./media/characters/berri/front.svg",
  6652. extra: 857 / 837,
  6653. bottom: 18 / 877
  6654. }
  6655. },
  6656. bum: {
  6657. height: math.unit(1.46, "feet"),
  6658. name: "Bum",
  6659. image: {
  6660. source: "./media/characters/berri/bum.svg"
  6661. }
  6662. },
  6663. mouth: {
  6664. height: math.unit(0.44, "feet"),
  6665. name: "Mouth",
  6666. image: {
  6667. source: "./media/characters/berri/mouth.svg"
  6668. }
  6669. },
  6670. paw: {
  6671. height: math.unit(0.826, "feet"),
  6672. name: "Paw",
  6673. image: {
  6674. source: "./media/characters/berri/paw.svg"
  6675. }
  6676. },
  6677. },
  6678. [
  6679. {
  6680. name: "Normal",
  6681. height: math.unit(1.65, "meters")
  6682. },
  6683. {
  6684. name: "Macro",
  6685. height: math.unit(60, "m"),
  6686. default: true
  6687. },
  6688. {
  6689. name: "Megamacro",
  6690. height: math.unit(9.213, "km")
  6691. },
  6692. {
  6693. name: "Planet Eater",
  6694. height: math.unit(489, "megameters")
  6695. },
  6696. {
  6697. name: "Teramacro",
  6698. height: math.unit(2471635000000, "meters")
  6699. },
  6700. {
  6701. name: "Examacro",
  6702. height: math.unit(8.0624e+26, "meters")
  6703. }
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(1.72, "meters"),
  6711. weight: math.unit(68, "kg"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/lexi/front.svg"
  6715. }
  6716. }
  6717. },
  6718. [
  6719. {
  6720. name: "Very Smol",
  6721. height: math.unit(10, "mm")
  6722. },
  6723. {
  6724. name: "Micro",
  6725. height: math.unit(6.8, "cm"),
  6726. default: true
  6727. },
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(1.72, "m")
  6731. }
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6736. {
  6737. front: {
  6738. height: math.unit(1.69, "meters"),
  6739. weight: math.unit(68, "kg"),
  6740. name: "Front",
  6741. image: {
  6742. source: "./media/characters/martin/front.svg",
  6743. extra: 596 / 581
  6744. }
  6745. }
  6746. },
  6747. [
  6748. {
  6749. name: "Micro",
  6750. height: math.unit(6.85, "cm"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Normal",
  6755. height: math.unit(1.69, "m")
  6756. }
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(1.69, "meters"),
  6764. weight: math.unit(68, "kg"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/juno/front.svg"
  6768. }
  6769. }
  6770. },
  6771. [
  6772. {
  6773. name: "Micro",
  6774. height: math.unit(7, "cm")
  6775. },
  6776. {
  6777. name: "Normal",
  6778. height: math.unit(1.89, "m")
  6779. },
  6780. {
  6781. name: "Macro",
  6782. height: math.unit(353, "meters"),
  6783. default: true
  6784. }
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6789. {
  6790. front: {
  6791. height: math.unit(1.93, "meters"),
  6792. weight: math.unit(83, "kg"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/samantha/front.svg"
  6796. }
  6797. },
  6798. frontClothed: {
  6799. height: math.unit(1.93, "meters"),
  6800. weight: math.unit(83, "kg"),
  6801. name: "Front (Clothed)",
  6802. image: {
  6803. source: "./media/characters/samantha/front-clothed.svg"
  6804. }
  6805. },
  6806. back: {
  6807. height: math.unit(1.93, "meters"),
  6808. weight: math.unit(83, "kg"),
  6809. name: "Back",
  6810. image: {
  6811. source: "./media/characters/samantha/back.svg"
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Normal",
  6818. height: math.unit(1.93, "m")
  6819. },
  6820. {
  6821. name: "Macro",
  6822. height: math.unit(74, "meters"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Macro+",
  6827. height: math.unit(223, "meters"),
  6828. },
  6829. {
  6830. name: "Megamacro",
  6831. height: math.unit(8381, "meters"),
  6832. },
  6833. {
  6834. name: "Megamacro+",
  6835. height: math.unit(12000, "kilometers")
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(1.92, "meters"),
  6844. weight: math.unit(80, "kg"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/dr-clay/front.svg"
  6848. }
  6849. },
  6850. frontClothed: {
  6851. height: math.unit(1.92, "meters"),
  6852. weight: math.unit(80, "kg"),
  6853. name: "Front (Clothed)",
  6854. image: {
  6855. source: "./media/characters/dr-clay/front-clothed.svg"
  6856. }
  6857. }
  6858. },
  6859. [
  6860. {
  6861. name: "Normal",
  6862. height: math.unit(1.92, "m")
  6863. },
  6864. {
  6865. name: "Macro",
  6866. height: math.unit(214, "meters"),
  6867. default: true
  6868. },
  6869. {
  6870. name: "Macro+",
  6871. height: math.unit(12.237, "meters"),
  6872. },
  6873. {
  6874. name: "Megamacro",
  6875. height: math.unit(557, "megameters"),
  6876. },
  6877. {
  6878. name: "Unimaginable",
  6879. height: math.unit(120e9, "lightyears")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(2, "meters"),
  6888. weight: math.unit(80, "kg"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6892. }
  6893. }
  6894. },
  6895. [
  6896. {
  6897. name: "Teramacro",
  6898. height: math.unit(500000, "lightyears"),
  6899. default: true
  6900. },
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6905. {
  6906. crux: {
  6907. height: math.unit(2, "meters"),
  6908. weight: math.unit(150, "kg"),
  6909. name: "Crux",
  6910. image: {
  6911. source: "./media/characters/vemus/crux.svg",
  6912. extra: 1074/936,
  6913. bottom: 23/1097
  6914. }
  6915. },
  6916. skunkTanuki: {
  6917. height: math.unit(2, "meters"),
  6918. weight: math.unit(150, "kg"),
  6919. name: "Skunk-Tanuki",
  6920. image: {
  6921. source: "./media/characters/vemus/skunk-tanuki.svg",
  6922. extra: 926/893,
  6923. bottom: 20/946
  6924. }
  6925. },
  6926. },
  6927. [
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(3.75, "meters"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Big",
  6935. height: math.unit(8, "meters")
  6936. },
  6937. {
  6938. name: "Macro",
  6939. height: math.unit(100, "meters")
  6940. },
  6941. {
  6942. name: "Macro+",
  6943. height: math.unit(1500, "meters")
  6944. },
  6945. {
  6946. name: "Stellar",
  6947. height: math.unit(14e8, "meters")
  6948. },
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(2, "meters"),
  6956. weight: math.unit(70, "kg"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/beherit/front.svg",
  6960. extra: 1234/1109,
  6961. bottom: 55/1289
  6962. }
  6963. }
  6964. },
  6965. [
  6966. {
  6967. name: "Normal",
  6968. height: math.unit(6, "feet")
  6969. },
  6970. {
  6971. name: "Lorg",
  6972. height: math.unit(25, "feet"),
  6973. default: true
  6974. },
  6975. {
  6976. name: "Lorger",
  6977. height: math.unit(75, "feet")
  6978. },
  6979. {
  6980. name: "Macro",
  6981. height: math.unit(200, "meters")
  6982. },
  6983. ]
  6984. ))
  6985. characterMakers.push(() => makeCharacter(
  6986. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6987. {
  6988. front: {
  6989. height: math.unit(2, "meters"),
  6990. weight: math.unit(150, "kg"),
  6991. name: "Front",
  6992. image: {
  6993. source: "./media/characters/everett/front.svg",
  6994. extra: 1017/866,
  6995. bottom: 86/1103
  6996. }
  6997. },
  6998. paw: {
  6999. height: math.unit(2 / 3.6, "meters"),
  7000. name: "Paw",
  7001. image: {
  7002. source: "./media/characters/everett/paw.svg"
  7003. }
  7004. },
  7005. },
  7006. [
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(15, "feet"),
  7010. default: true
  7011. },
  7012. {
  7013. name: "Lorg",
  7014. height: math.unit(70, "feet"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Lorger",
  7019. height: math.unit(250, "feet")
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(500, "meters")
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(2, "meters"),
  7032. weight: math.unit(86, "kg"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/rose/front.svg",
  7036. extra: 1785/1636,
  7037. bottom: 30/1815
  7038. }
  7039. },
  7040. frontSporty: {
  7041. height: math.unit(2, "meters"),
  7042. weight: math.unit(86, "kg"),
  7043. name: "Front (Sporty)",
  7044. image: {
  7045. source: "./media/characters/rose/front-sporty.svg",
  7046. extra: 350/335,
  7047. bottom: 10/360
  7048. }
  7049. },
  7050. frontAlt: {
  7051. height: math.unit(1.6, "meters"),
  7052. weight: math.unit(86, "kg"),
  7053. name: "Front (Alt)",
  7054. image: {
  7055. source: "./media/characters/rose/front-alt.svg",
  7056. extra: 299/283,
  7057. bottom: 3/302
  7058. }
  7059. },
  7060. plush: {
  7061. height: math.unit(2, "meters"),
  7062. weight: math.unit(86/3, "kg"),
  7063. name: "Plush",
  7064. image: {
  7065. source: "./media/characters/rose/plush.svg",
  7066. extra: 361/337,
  7067. bottom: 11/372
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "True Micro",
  7074. height: math.unit(9, "cm")
  7075. },
  7076. {
  7077. name: "Micro",
  7078. height: math.unit(16, "cm")
  7079. },
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(1.85, "meters"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Mini-Macro",
  7087. height: math.unit(5, "meters")
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(15, "meters")
  7092. },
  7093. {
  7094. name: "True Macro",
  7095. height: math.unit(40, "meters")
  7096. },
  7097. {
  7098. name: "City Scale",
  7099. height: math.unit(1, "km")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(2, "meters"),
  7108. weight: math.unit(350, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/regal/front.svg"
  7112. }
  7113. },
  7114. back: {
  7115. height: math.unit(2, "meters"),
  7116. weight: math.unit(350, "lbs"),
  7117. name: "Back",
  7118. image: {
  7119. source: "./media/characters/regal/back.svg"
  7120. }
  7121. },
  7122. },
  7123. [
  7124. {
  7125. name: "Macro",
  7126. height: math.unit(350, "feet"),
  7127. default: true
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(4 + 11 / 12, "feet"),
  7136. weight: math.unit(100, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/opal/front.svg"
  7140. }
  7141. },
  7142. frontAlt: {
  7143. height: math.unit(4 + 11 / 12, "feet"),
  7144. weight: math.unit(100, "lbs"),
  7145. name: "Front (Alt)",
  7146. image: {
  7147. source: "./media/characters/opal/front-alt.svg"
  7148. }
  7149. },
  7150. },
  7151. [
  7152. {
  7153. name: "Small",
  7154. height: math.unit(4 + 11 / 12, "feet")
  7155. },
  7156. {
  7157. name: "Normal",
  7158. height: math.unit(20, "feet"),
  7159. default: true
  7160. },
  7161. {
  7162. name: "Macro",
  7163. height: math.unit(120, "feet")
  7164. },
  7165. {
  7166. name: "Megamacro",
  7167. height: math.unit(80, "miles")
  7168. },
  7169. {
  7170. name: "True Size",
  7171. height: math.unit(100000, "lightyears")
  7172. },
  7173. ]
  7174. ))
  7175. characterMakers.push(() => makeCharacter(
  7176. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7177. {
  7178. front: {
  7179. height: math.unit(6, "feet"),
  7180. weight: math.unit(200, "lbs"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/vector-wuff/front.svg"
  7184. }
  7185. }
  7186. },
  7187. [
  7188. {
  7189. name: "Normal",
  7190. height: math.unit(2.8, "meters")
  7191. },
  7192. {
  7193. name: "Macro",
  7194. height: math.unit(450, "meters"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Megamacro",
  7199. height: math.unit(15, "kilometers")
  7200. }
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(256, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/dannik/front.svg"
  7212. }
  7213. }
  7214. },
  7215. [
  7216. {
  7217. name: "Macro",
  7218. height: math.unit(69.57, "meters"),
  7219. default: true
  7220. },
  7221. ]
  7222. ))
  7223. characterMakers.push(() => makeCharacter(
  7224. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7225. {
  7226. front: {
  7227. height: math.unit(6, "feet"),
  7228. weight: math.unit(120, "lbs"),
  7229. name: "Front",
  7230. image: {
  7231. source: "./media/characters/azura-saharah/front.svg"
  7232. }
  7233. },
  7234. back: {
  7235. height: math.unit(6, "feet"),
  7236. weight: math.unit(120, "lbs"),
  7237. name: "Back",
  7238. image: {
  7239. source: "./media/characters/azura-saharah/back.svg"
  7240. }
  7241. },
  7242. },
  7243. [
  7244. {
  7245. name: "Macro",
  7246. height: math.unit(100, "feet"),
  7247. default: true
  7248. },
  7249. ]
  7250. ))
  7251. characterMakers.push(() => makeCharacter(
  7252. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7253. {
  7254. side: {
  7255. height: math.unit(5 + 4 / 12, "feet"),
  7256. weight: math.unit(163, "lbs"),
  7257. name: "Side",
  7258. image: {
  7259. source: "./media/characters/kennedy/side.svg"
  7260. }
  7261. }
  7262. },
  7263. [
  7264. {
  7265. name: "Standard Doggo",
  7266. height: math.unit(5 + 4 / 12, "feet")
  7267. },
  7268. {
  7269. name: "Big Doggo",
  7270. height: math.unit(25 + 3 / 12, "feet"),
  7271. default: true
  7272. },
  7273. ]
  7274. ))
  7275. characterMakers.push(() => makeCharacter(
  7276. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7277. {
  7278. front: {
  7279. height: math.unit(5 + 5/12, "feet"),
  7280. weight: math.unit(100, "lbs"),
  7281. name: "Front",
  7282. image: {
  7283. source: "./media/characters/odios-de-lunar/front.svg",
  7284. extra: 1468/1323,
  7285. bottom: 22/1490
  7286. }
  7287. }
  7288. },
  7289. [
  7290. {
  7291. name: "Micro",
  7292. height: math.unit(3, "inches")
  7293. },
  7294. {
  7295. name: "Normal",
  7296. height: math.unit(5.5, "feet"),
  7297. default: true
  7298. },
  7299. {
  7300. name: "Macro",
  7301. height: math.unit(100, "feet")
  7302. },
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7307. {
  7308. back: {
  7309. height: math.unit(6, "feet"),
  7310. weight: math.unit(220, "lbs"),
  7311. name: "Back",
  7312. image: {
  7313. source: "./media/characters/mandake/back.svg"
  7314. }
  7315. }
  7316. },
  7317. [
  7318. {
  7319. name: "Normal",
  7320. height: math.unit(7, "feet"),
  7321. default: true
  7322. },
  7323. {
  7324. name: "Macro",
  7325. height: math.unit(78, "feet")
  7326. },
  7327. {
  7328. name: "Macro+",
  7329. height: math.unit(300, "meters")
  7330. },
  7331. {
  7332. name: "Macro++",
  7333. height: math.unit(2400, "feet")
  7334. },
  7335. {
  7336. name: "Megamacro",
  7337. height: math.unit(5167, "meters")
  7338. },
  7339. {
  7340. name: "Gigamacro",
  7341. height: math.unit(41769, "miles")
  7342. },
  7343. ]
  7344. ))
  7345. characterMakers.push(() => makeCharacter(
  7346. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7347. {
  7348. front: {
  7349. height: math.unit(6, "feet"),
  7350. weight: math.unit(120, "lbs"),
  7351. name: "Front",
  7352. image: {
  7353. source: "./media/characters/yozey/front.svg"
  7354. }
  7355. },
  7356. frontAlt: {
  7357. height: math.unit(6, "feet"),
  7358. weight: math.unit(120, "lbs"),
  7359. name: "Front (Alt)",
  7360. image: {
  7361. source: "./media/characters/yozey/front-alt.svg"
  7362. }
  7363. },
  7364. side: {
  7365. height: math.unit(6, "feet"),
  7366. weight: math.unit(120, "lbs"),
  7367. name: "Side",
  7368. image: {
  7369. source: "./media/characters/yozey/side.svg"
  7370. }
  7371. },
  7372. },
  7373. [
  7374. {
  7375. name: "Micro",
  7376. height: math.unit(3, "inches"),
  7377. default: true
  7378. },
  7379. {
  7380. name: "Normal",
  7381. height: math.unit(6, "feet")
  7382. }
  7383. ]
  7384. ))
  7385. characterMakers.push(() => makeCharacter(
  7386. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7387. {
  7388. front: {
  7389. height: math.unit(6, "feet"),
  7390. weight: math.unit(103, "lbs"),
  7391. name: "Front",
  7392. image: {
  7393. source: "./media/characters/valeska-voss/front.svg"
  7394. }
  7395. }
  7396. },
  7397. [
  7398. {
  7399. name: "Mini-Sized Sub",
  7400. height: math.unit(3.1, "inches")
  7401. },
  7402. {
  7403. name: "Mid-Sized Sub",
  7404. height: math.unit(6.2, "inches")
  7405. },
  7406. {
  7407. name: "Full-Sized Sub",
  7408. height: math.unit(9.3, "inches")
  7409. },
  7410. {
  7411. name: "Normal",
  7412. height: math.unit(5 + 2 / 12, "foot"),
  7413. default: true
  7414. },
  7415. ]
  7416. ))
  7417. characterMakers.push(() => makeCharacter(
  7418. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7419. {
  7420. front: {
  7421. height: math.unit(6, "feet"),
  7422. weight: math.unit(160, "lbs"),
  7423. name: "Front",
  7424. image: {
  7425. source: "./media/characters/gene-zeta/front.svg",
  7426. extra: 3006 / 2826,
  7427. bottom: 182 / 3188
  7428. }
  7429. }
  7430. },
  7431. [
  7432. {
  7433. name: "Micro",
  7434. height: math.unit(6, "inches")
  7435. },
  7436. {
  7437. name: "Normal",
  7438. height: math.unit(5 + 11 / 12, "foot"),
  7439. default: true
  7440. },
  7441. {
  7442. name: "Macro",
  7443. height: math.unit(140, "feet")
  7444. },
  7445. {
  7446. name: "Supercharged",
  7447. height: math.unit(2500, "feet")
  7448. },
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7453. {
  7454. front: {
  7455. height: math.unit(6, "feet"),
  7456. weight: math.unit(350, "lbs"),
  7457. name: "Front",
  7458. image: {
  7459. source: "./media/characters/razinox/front.svg",
  7460. extra: 1686 / 1548,
  7461. bottom: 28.2 / 1868
  7462. }
  7463. },
  7464. back: {
  7465. height: math.unit(6, "feet"),
  7466. weight: math.unit(350, "lbs"),
  7467. name: "Back",
  7468. image: {
  7469. source: "./media/characters/razinox/back.svg",
  7470. extra: 1660 / 1590,
  7471. bottom: 15 / 1665
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(10 + 8 / 12, "foot")
  7479. },
  7480. {
  7481. name: "Minimacro",
  7482. height: math.unit(15, "foot")
  7483. },
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(60, "foot"),
  7487. default: true
  7488. },
  7489. {
  7490. name: "Megamacro",
  7491. height: math.unit(5, "miles")
  7492. },
  7493. {
  7494. name: "Gigamacro",
  7495. height: math.unit(6000, "miles")
  7496. },
  7497. ]
  7498. ))
  7499. characterMakers.push(() => makeCharacter(
  7500. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7501. {
  7502. front: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(150, "lbs"),
  7505. name: "Front",
  7506. image: {
  7507. source: "./media/characters/cobalt/front.svg"
  7508. }
  7509. }
  7510. },
  7511. [
  7512. {
  7513. name: "Normal",
  7514. height: math.unit(8 + 1 / 12, "foot")
  7515. },
  7516. {
  7517. name: "Macro",
  7518. height: math.unit(111, "foot"),
  7519. default: true
  7520. },
  7521. {
  7522. name: "Supracosmic",
  7523. height: math.unit(1e42, "feet")
  7524. },
  7525. ]
  7526. ))
  7527. characterMakers.push(() => makeCharacter(
  7528. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7529. {
  7530. front: {
  7531. height: math.unit(6, "feet"),
  7532. weight: math.unit(140, "lbs"),
  7533. name: "Front",
  7534. image: {
  7535. source: "./media/characters/amanda/front.svg"
  7536. }
  7537. }
  7538. },
  7539. [
  7540. {
  7541. name: "Micro",
  7542. height: math.unit(5, "inches"),
  7543. default: true
  7544. },
  7545. ]
  7546. ))
  7547. characterMakers.push(() => makeCharacter(
  7548. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7549. {
  7550. front: {
  7551. height: math.unit(2.75, "meters"),
  7552. weight: math.unit(1200, "lb"),
  7553. name: "Front",
  7554. image: {
  7555. source: "./media/characters/teal/front.svg",
  7556. extra: 2463 / 2320,
  7557. bottom: 166 / 2629
  7558. }
  7559. },
  7560. back: {
  7561. height: math.unit(2.75, "meters"),
  7562. weight: math.unit(1200, "lb"),
  7563. name: "Back",
  7564. image: {
  7565. source: "./media/characters/teal/back.svg",
  7566. extra: 2580 / 2489,
  7567. bottom: 151 / 2731
  7568. }
  7569. },
  7570. sitting: {
  7571. height: math.unit(1.9, "meters"),
  7572. weight: math.unit(1200, "lb"),
  7573. name: "Sitting",
  7574. image: {
  7575. source: "./media/characters/teal/sitting.svg",
  7576. extra: 623 / 590,
  7577. bottom: 121 / 744
  7578. }
  7579. },
  7580. standing: {
  7581. height: math.unit(2.75, "meters"),
  7582. weight: math.unit(1200, "lb"),
  7583. name: "Standing",
  7584. image: {
  7585. source: "./media/characters/teal/standing.svg",
  7586. extra: 923 / 893,
  7587. bottom: 60 / 983
  7588. }
  7589. },
  7590. stretching: {
  7591. height: math.unit(3.65, "meters"),
  7592. weight: math.unit(1200, "lb"),
  7593. name: "Stretching",
  7594. image: {
  7595. source: "./media/characters/teal/stretching.svg",
  7596. extra: 1276 / 1244,
  7597. bottom: 0 / 1276
  7598. }
  7599. },
  7600. legged: {
  7601. height: math.unit(1.3, "meters"),
  7602. weight: math.unit(100, "lb"),
  7603. name: "Legged",
  7604. image: {
  7605. source: "./media/characters/teal/legged.svg",
  7606. extra: 462 / 437,
  7607. bottom: 24 / 486
  7608. }
  7609. },
  7610. naga: {
  7611. height: math.unit(5.4, "meters"),
  7612. weight: math.unit(4000, "lb"),
  7613. name: "Naga",
  7614. image: {
  7615. source: "./media/characters/teal/naga.svg",
  7616. extra: 1902 / 1858,
  7617. bottom: 0 / 1902
  7618. }
  7619. },
  7620. hand: {
  7621. height: math.unit(0.52, "meters"),
  7622. name: "Hand",
  7623. image: {
  7624. source: "./media/characters/teal/hand.svg"
  7625. }
  7626. },
  7627. maw: {
  7628. height: math.unit(0.43, "meters"),
  7629. name: "Maw",
  7630. image: {
  7631. source: "./media/characters/teal/maw.svg"
  7632. }
  7633. },
  7634. slit: {
  7635. height: math.unit(0.25, "meters"),
  7636. name: "Slit",
  7637. image: {
  7638. source: "./media/characters/teal/slit.svg"
  7639. }
  7640. },
  7641. },
  7642. [
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(2.75, "meters"),
  7646. default: true
  7647. },
  7648. {
  7649. name: "Macro",
  7650. height: math.unit(300, "feet")
  7651. },
  7652. {
  7653. name: "Macro+",
  7654. height: math.unit(2000, "feet")
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7660. {
  7661. frontCat: {
  7662. height: math.unit(6, "feet"),
  7663. weight: math.unit(180, "lbs"),
  7664. name: "Front (Cat)",
  7665. image: {
  7666. source: "./media/characters/ravin-amulet/front-cat.svg"
  7667. }
  7668. },
  7669. frontCatAlt: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(180, "lbs"),
  7672. name: "Front (Alt, Cat)",
  7673. image: {
  7674. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7675. }
  7676. },
  7677. frontWerewolf: {
  7678. height: math.unit(6 * 1.2, "feet"),
  7679. weight: math.unit(225, "lbs"),
  7680. name: "Front (Werewolf)",
  7681. image: {
  7682. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7683. }
  7684. },
  7685. backWerewolf: {
  7686. height: math.unit(6 * 1.2, "feet"),
  7687. weight: math.unit(225, "lbs"),
  7688. name: "Back (Werewolf)",
  7689. image: {
  7690. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Nano",
  7697. height: math.unit(1, "micrometer")
  7698. },
  7699. {
  7700. name: "Micro",
  7701. height: math.unit(1, "inch")
  7702. },
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(6, "feet"),
  7706. default: true
  7707. },
  7708. {
  7709. name: "Macro",
  7710. height: math.unit(60, "feet")
  7711. }
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(6, "feet"),
  7719. weight: math.unit(165, "lbs"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/fluoresce/front.svg"
  7723. }
  7724. }
  7725. },
  7726. [
  7727. {
  7728. name: "Micro",
  7729. height: math.unit(6, "cm")
  7730. },
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(5 + 7 / 12, "feet"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Macro",
  7738. height: math.unit(56, "feet")
  7739. },
  7740. {
  7741. name: "Megamacro",
  7742. height: math.unit(1.9, "miles")
  7743. },
  7744. ]
  7745. ))
  7746. characterMakers.push(() => makeCharacter(
  7747. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7748. {
  7749. front: {
  7750. height: math.unit(9 + 6 / 12, "feet"),
  7751. weight: math.unit(523, "lbs"),
  7752. name: "Side",
  7753. image: {
  7754. source: "./media/characters/aurora/side.svg"
  7755. }
  7756. }
  7757. },
  7758. [
  7759. {
  7760. name: "Normal",
  7761. height: math.unit(9 + 6 / 12, "feet")
  7762. },
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(96, "feet"),
  7766. default: true
  7767. },
  7768. {
  7769. name: "Macro+",
  7770. height: math.unit(243, "feet")
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7776. {
  7777. front: {
  7778. height: math.unit(194, "cm"),
  7779. weight: math.unit(90, "kg"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/ranek/front.svg",
  7783. extra: 1862/1791,
  7784. bottom: 80/1942
  7785. }
  7786. },
  7787. back: {
  7788. height: math.unit(194, "cm"),
  7789. weight: math.unit(90, "kg"),
  7790. name: "Back",
  7791. image: {
  7792. source: "./media/characters/ranek/back.svg",
  7793. extra: 1853/1787,
  7794. bottom: 74/1927
  7795. }
  7796. },
  7797. feral: {
  7798. height: math.unit(30, "cm"),
  7799. weight: math.unit(1.6, "lbs"),
  7800. name: "Feral",
  7801. image: {
  7802. source: "./media/characters/ranek/feral.svg",
  7803. extra: 990/631,
  7804. bottom: 29/1019
  7805. }
  7806. },
  7807. },
  7808. [
  7809. {
  7810. name: "Normal",
  7811. height: math.unit(194, "cm"),
  7812. default: true
  7813. },
  7814. {
  7815. name: "Macro",
  7816. height: math.unit(100, "meters")
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(5 + 6 / 12, "feet"),
  7825. weight: math.unit(153, "lbs"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/andrew-cooper/front.svg"
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Nano",
  7835. height: math.unit(1, "mm")
  7836. },
  7837. {
  7838. name: "Micro",
  7839. height: math.unit(2, "inches")
  7840. },
  7841. {
  7842. name: "Normal",
  7843. height: math.unit(5 + 6 / 12, "feet"),
  7844. default: true
  7845. }
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(6, "feet"),
  7853. weight: math.unit(180, "lbs"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/akane-sato/front.svg",
  7857. extra: 1219 / 1140
  7858. }
  7859. },
  7860. back: {
  7861. height: math.unit(6, "feet"),
  7862. weight: math.unit(180, "lbs"),
  7863. name: "Back",
  7864. image: {
  7865. source: "./media/characters/akane-sato/back.svg",
  7866. extra: 1219 / 1170
  7867. }
  7868. },
  7869. },
  7870. [
  7871. {
  7872. name: "Normal",
  7873. height: math.unit(2.5, "meters")
  7874. },
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(250, "meters"),
  7878. default: true
  7879. },
  7880. {
  7881. name: "Megamacro",
  7882. height: math.unit(25, "km")
  7883. },
  7884. ]
  7885. ))
  7886. characterMakers.push(() => makeCharacter(
  7887. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7888. {
  7889. front: {
  7890. height: math.unit(6, "feet"),
  7891. weight: math.unit(65, "kg"),
  7892. name: "Front",
  7893. image: {
  7894. source: "./media/characters/rook/front.svg",
  7895. extra: 960 / 950
  7896. }
  7897. }
  7898. },
  7899. [
  7900. {
  7901. name: "Normal",
  7902. height: math.unit(8.8, "feet")
  7903. },
  7904. {
  7905. name: "Macro",
  7906. height: math.unit(88, "feet"),
  7907. default: true
  7908. },
  7909. {
  7910. name: "Megamacro",
  7911. height: math.unit(8, "miles")
  7912. },
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7917. {
  7918. front: {
  7919. height: math.unit(12 + 2 / 12, "feet"),
  7920. weight: math.unit(808, "lbs"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/prodigy/front.svg"
  7924. }
  7925. }
  7926. },
  7927. [
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(12 + 2 / 12, "feet"),
  7931. default: true
  7932. },
  7933. {
  7934. name: "Macro",
  7935. height: math.unit(143, "feet")
  7936. },
  7937. {
  7938. name: "Macro+",
  7939. height: math.unit(400, "feet")
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(6, "feet"),
  7948. weight: math.unit(225, "lbs"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/daniel/front.svg"
  7952. }
  7953. },
  7954. leaning: {
  7955. height: math.unit(6, "feet"),
  7956. weight: math.unit(225, "lbs"),
  7957. name: "Leaning",
  7958. image: {
  7959. source: "./media/characters/daniel/leaning.svg"
  7960. }
  7961. },
  7962. },
  7963. [
  7964. {
  7965. name: "Macro",
  7966. height: math.unit(1000, "feet"),
  7967. default: true
  7968. },
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7973. {
  7974. front: {
  7975. height: math.unit(6, "feet"),
  7976. weight: math.unit(88, "lbs"),
  7977. name: "Front",
  7978. image: {
  7979. source: "./media/characters/chiros/front.svg",
  7980. extra: 306 / 226
  7981. }
  7982. },
  7983. side: {
  7984. height: math.unit(6, "feet"),
  7985. weight: math.unit(88, "lbs"),
  7986. name: "Side",
  7987. image: {
  7988. source: "./media/characters/chiros/side.svg",
  7989. extra: 306 / 226
  7990. }
  7991. },
  7992. },
  7993. [
  7994. {
  7995. name: "Normal",
  7996. height: math.unit(6, "cm"),
  7997. default: true
  7998. },
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8003. {
  8004. front: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(100, "lbs"),
  8007. name: "Front",
  8008. image: {
  8009. source: "./media/characters/selka/front.svg",
  8010. extra: 947 / 887
  8011. }
  8012. }
  8013. },
  8014. [
  8015. {
  8016. name: "Normal",
  8017. height: math.unit(5, "cm"),
  8018. default: true
  8019. },
  8020. ]
  8021. ))
  8022. characterMakers.push(() => makeCharacter(
  8023. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8024. {
  8025. front: {
  8026. height: math.unit(8 + 3 / 12, "feet"),
  8027. weight: math.unit(424, "lbs"),
  8028. name: "Front",
  8029. image: {
  8030. source: "./media/characters/verin/front.svg",
  8031. extra: 1845 / 1550
  8032. }
  8033. },
  8034. frontArmored: {
  8035. height: math.unit(8 + 3 / 12, "feet"),
  8036. weight: math.unit(424, "lbs"),
  8037. name: "Front (Armored)",
  8038. image: {
  8039. source: "./media/characters/verin/front-armor.svg",
  8040. extra: 1845 / 1550,
  8041. bottom: 0.01
  8042. }
  8043. },
  8044. back: {
  8045. height: math.unit(8 + 3 / 12, "feet"),
  8046. weight: math.unit(424, "lbs"),
  8047. name: "Back",
  8048. image: {
  8049. source: "./media/characters/verin/back.svg",
  8050. bottom: 0.1,
  8051. extra: 1
  8052. }
  8053. },
  8054. foot: {
  8055. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8056. name: "Foot",
  8057. image: {
  8058. source: "./media/characters/verin/foot.svg"
  8059. }
  8060. },
  8061. },
  8062. [
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(8 + 3 / 12, "feet")
  8066. },
  8067. {
  8068. name: "Minimacro",
  8069. height: math.unit(21, "feet"),
  8070. default: true
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(626, "feet")
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(2.718, "meters"),
  8083. weight: math.unit(150, "lbs"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/sovrim-terraquian/front.svg",
  8087. extra: 1752/1689,
  8088. bottom: 36/1788
  8089. }
  8090. },
  8091. back: {
  8092. height: math.unit(2.718, "meters"),
  8093. weight: math.unit(150, "lbs"),
  8094. name: "Back",
  8095. image: {
  8096. source: "./media/characters/sovrim-terraquian/back.svg",
  8097. extra: 1698/1657,
  8098. bottom: 58/1756
  8099. }
  8100. },
  8101. tongue: {
  8102. height: math.unit(2.865, "feet"),
  8103. name: "Tongue",
  8104. image: {
  8105. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8106. }
  8107. },
  8108. hand: {
  8109. height: math.unit(1.61, "feet"),
  8110. name: "Hand",
  8111. image: {
  8112. source: "./media/characters/sovrim-terraquian/hand.svg"
  8113. }
  8114. },
  8115. foot: {
  8116. height: math.unit(1.05, "feet"),
  8117. name: "Foot",
  8118. image: {
  8119. source: "./media/characters/sovrim-terraquian/foot.svg"
  8120. }
  8121. },
  8122. footAlt: {
  8123. height: math.unit(0.88, "feet"),
  8124. name: "Foot (Alt)",
  8125. image: {
  8126. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8127. }
  8128. },
  8129. },
  8130. [
  8131. {
  8132. name: "Micro",
  8133. height: math.unit(2, "inches")
  8134. },
  8135. {
  8136. name: "Small",
  8137. height: math.unit(1, "meter")
  8138. },
  8139. {
  8140. name: "Normal",
  8141. height: math.unit(Math.E, "meters"),
  8142. default: true
  8143. },
  8144. {
  8145. name: "Macro",
  8146. height: math.unit(20, "meters")
  8147. },
  8148. {
  8149. name: "Macro+",
  8150. height: math.unit(400, "meters")
  8151. },
  8152. ]
  8153. ))
  8154. characterMakers.push(() => makeCharacter(
  8155. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8156. {
  8157. front: {
  8158. height: math.unit(7, "feet"),
  8159. weight: math.unit(489, "lbs"),
  8160. name: "Front",
  8161. image: {
  8162. source: "./media/characters/reece-silvermane/front.svg",
  8163. bottom: 0.02,
  8164. extra: 1
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Macro",
  8171. height: math.unit(1.5, "miles"),
  8172. default: true
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8178. {
  8179. front: {
  8180. height: math.unit(6, "feet"),
  8181. weight: math.unit(78, "kg"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/kane/front.svg",
  8185. extra: 978 / 899
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Normal",
  8192. height: math.unit(2.1, "m"),
  8193. },
  8194. {
  8195. name: "Macro",
  8196. height: math.unit(1, "km"),
  8197. default: true
  8198. },
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8203. {
  8204. front: {
  8205. height: math.unit(6, "feet"),
  8206. weight: math.unit(200, "kg"),
  8207. name: "Front",
  8208. image: {
  8209. source: "./media/characters/tegon/front.svg",
  8210. bottom: 0.01,
  8211. extra: 1
  8212. }
  8213. },
  8214. },
  8215. [
  8216. {
  8217. name: "Micro",
  8218. height: math.unit(1, "inch")
  8219. },
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(6 + 3 / 12, "feet"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Macro",
  8227. height: math.unit(300, "feet")
  8228. },
  8229. {
  8230. name: "Megamacro",
  8231. height: math.unit(69, "miles")
  8232. },
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8237. {
  8238. side: {
  8239. height: math.unit(6, "feet"),
  8240. weight: math.unit(2304, "lbs"),
  8241. name: "Side",
  8242. image: {
  8243. source: "./media/characters/arcturax/side.svg",
  8244. extra: 790 / 376,
  8245. bottom: 0.01
  8246. }
  8247. },
  8248. },
  8249. [
  8250. {
  8251. name: "Micro",
  8252. height: math.unit(2, "inch")
  8253. },
  8254. {
  8255. name: "Normal",
  8256. height: math.unit(6, "feet")
  8257. },
  8258. {
  8259. name: "Macro",
  8260. height: math.unit(39, "feet"),
  8261. default: true
  8262. },
  8263. {
  8264. name: "Megamacro",
  8265. height: math.unit(7, "miles")
  8266. },
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8271. {
  8272. front: {
  8273. height: math.unit(6, "feet"),
  8274. weight: math.unit(50, "lbs"),
  8275. name: "Front",
  8276. image: {
  8277. source: "./media/characters/sentri/front.svg",
  8278. extra: 1750 / 1570,
  8279. bottom: 0.025
  8280. }
  8281. },
  8282. frontAlt: {
  8283. height: math.unit(6, "feet"),
  8284. weight: math.unit(50, "lbs"),
  8285. name: "Front (Alt)",
  8286. image: {
  8287. source: "./media/characters/sentri/front-alt.svg",
  8288. extra: 1750 / 1570,
  8289. bottom: 0.025
  8290. }
  8291. },
  8292. },
  8293. [
  8294. {
  8295. name: "Normal",
  8296. height: math.unit(15, "feet"),
  8297. default: true
  8298. },
  8299. {
  8300. name: "Macro",
  8301. height: math.unit(2500, "feet")
  8302. }
  8303. ]
  8304. ))
  8305. characterMakers.push(() => makeCharacter(
  8306. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8307. {
  8308. front: {
  8309. height: math.unit(5 + 8 / 12, "feet"),
  8310. weight: math.unit(130, "lbs"),
  8311. name: "Front",
  8312. image: {
  8313. source: "./media/characters/corvin/front.svg",
  8314. extra: 1803 / 1629
  8315. }
  8316. },
  8317. frontShirt: {
  8318. height: math.unit(5 + 8 / 12, "feet"),
  8319. weight: math.unit(130, "lbs"),
  8320. name: "Front (Shirt)",
  8321. image: {
  8322. source: "./media/characters/corvin/front-shirt.svg",
  8323. extra: 1803 / 1629
  8324. }
  8325. },
  8326. frontPoncho: {
  8327. height: math.unit(5 + 8 / 12, "feet"),
  8328. weight: math.unit(130, "lbs"),
  8329. name: "Front (Poncho)",
  8330. image: {
  8331. source: "./media/characters/corvin/front-poncho.svg",
  8332. extra: 1803 / 1629
  8333. }
  8334. },
  8335. side: {
  8336. height: math.unit(5 + 8 / 12, "feet"),
  8337. weight: math.unit(130, "lbs"),
  8338. name: "Side",
  8339. image: {
  8340. source: "./media/characters/corvin/side.svg",
  8341. extra: 1012 / 945
  8342. }
  8343. },
  8344. back: {
  8345. height: math.unit(5 + 8 / 12, "feet"),
  8346. weight: math.unit(130, "lbs"),
  8347. name: "Back",
  8348. image: {
  8349. source: "./media/characters/corvin/back.svg",
  8350. extra: 1803 / 1629
  8351. }
  8352. },
  8353. },
  8354. [
  8355. {
  8356. name: "Micro",
  8357. height: math.unit(3, "inches")
  8358. },
  8359. {
  8360. name: "Normal",
  8361. height: math.unit(5 + 8 / 12, "feet")
  8362. },
  8363. {
  8364. name: "Macro",
  8365. height: math.unit(300, "feet"),
  8366. default: true
  8367. },
  8368. {
  8369. name: "Megamacro",
  8370. height: math.unit(500, "miles")
  8371. }
  8372. ]
  8373. ))
  8374. characterMakers.push(() => makeCharacter(
  8375. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8376. {
  8377. front: {
  8378. height: math.unit(6, "feet"),
  8379. weight: math.unit(135, "lbs"),
  8380. name: "Front",
  8381. image: {
  8382. source: "./media/characters/q/front.svg",
  8383. extra: 854 / 752,
  8384. bottom: 0.005
  8385. }
  8386. },
  8387. back: {
  8388. height: math.unit(6, "feet"),
  8389. weight: math.unit(130, "lbs"),
  8390. name: "Back",
  8391. image: {
  8392. source: "./media/characters/q/back.svg",
  8393. extra: 854 / 752
  8394. }
  8395. },
  8396. },
  8397. [
  8398. {
  8399. name: "Macro",
  8400. height: math.unit(90, "feet"),
  8401. default: true
  8402. },
  8403. {
  8404. name: "Extra Macro",
  8405. height: math.unit(300, "feet"),
  8406. },
  8407. {
  8408. name: "BIG WALF",
  8409. height: math.unit(750, "feet"),
  8410. },
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8415. {
  8416. front: {
  8417. height: math.unit(6, "feet"),
  8418. weight: math.unit(150, "lbs"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/carley/front.svg",
  8422. extra: 3927 / 3540,
  8423. bottom: 29.2 / 735
  8424. }
  8425. }
  8426. },
  8427. [
  8428. {
  8429. name: "Normal",
  8430. height: math.unit(6 + 3 / 12, "feet")
  8431. },
  8432. {
  8433. name: "Macro",
  8434. height: math.unit(185, "feet"),
  8435. default: true
  8436. },
  8437. {
  8438. name: "Megamacro",
  8439. height: math.unit(8, "miles"),
  8440. },
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(3, "feet"),
  8448. weight: math.unit(28, "lbs"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/citrine/front.svg"
  8452. }
  8453. }
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(3, "feet"),
  8459. default: true
  8460. }
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8465. {
  8466. front: {
  8467. height: math.unit(14, "feet"),
  8468. weight: math.unit(1450, "kg"),
  8469. capacity: math.unit(15, "people"),
  8470. name: "Front",
  8471. image: {
  8472. source: "./media/characters/aura-starwind/front.svg",
  8473. extra: 1440/1327,
  8474. bottom: 11/1451
  8475. }
  8476. },
  8477. side: {
  8478. height: math.unit(14, "feet"),
  8479. weight: math.unit(1450, "kg"),
  8480. capacity: math.unit(15, "people"),
  8481. name: "Side",
  8482. image: {
  8483. source: "./media/characters/aura-starwind/side.svg",
  8484. extra: 1654 / 1497
  8485. }
  8486. },
  8487. taur: {
  8488. height: math.unit(18, "feet"),
  8489. weight: math.unit(5500, "kg"),
  8490. capacity: math.unit(50, "people"),
  8491. name: "Taur",
  8492. image: {
  8493. source: "./media/characters/aura-starwind/taur.svg",
  8494. extra: 1760 / 1650
  8495. }
  8496. },
  8497. feral: {
  8498. height: math.unit(46, "feet"),
  8499. weight: math.unit(25000, "kg"),
  8500. capacity: math.unit(120, "people"),
  8501. name: "Feral",
  8502. image: {
  8503. source: "./media/characters/aura-starwind/feral.svg"
  8504. }
  8505. },
  8506. },
  8507. [
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(14, "feet"),
  8511. default: true
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(50, "meters")
  8516. },
  8517. {
  8518. name: "Megamacro",
  8519. height: math.unit(5000, "meters")
  8520. },
  8521. {
  8522. name: "Gigamacro",
  8523. height: math.unit(100000, "kilometers")
  8524. },
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8529. {
  8530. front: {
  8531. height: math.unit(2 + 7 / 12, "feet"),
  8532. weight: math.unit(32, "lbs"),
  8533. name: "Front",
  8534. image: {
  8535. source: "./media/characters/rivet/front.svg",
  8536. extra: 1716 / 1658,
  8537. bottom: 0.03
  8538. }
  8539. },
  8540. foot: {
  8541. height: math.unit(0.551, "feet"),
  8542. name: "Rivet's Foot",
  8543. image: {
  8544. source: "./media/characters/rivet/foot.svg"
  8545. },
  8546. rename: true
  8547. }
  8548. },
  8549. [
  8550. {
  8551. name: "Micro",
  8552. height: math.unit(1.5, "inches"),
  8553. },
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(2 + 7 / 12, "feet"),
  8557. default: true
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(85, "feet")
  8562. },
  8563. {
  8564. name: "Megamacro",
  8565. height: math.unit(2.2, "km")
  8566. }
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8571. {
  8572. front: {
  8573. height: math.unit(5 + 9 / 12, "feet"),
  8574. weight: math.unit(150, "lbs"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/coffee/front.svg",
  8578. extra: 3666 / 3032,
  8579. bottom: 0.04
  8580. }
  8581. },
  8582. foot: {
  8583. height: math.unit(1.29, "feet"),
  8584. name: "Foot",
  8585. image: {
  8586. source: "./media/characters/coffee/foot.svg"
  8587. }
  8588. },
  8589. },
  8590. [
  8591. {
  8592. name: "Micro",
  8593. height: math.unit(2, "inches"),
  8594. },
  8595. {
  8596. name: "Normal",
  8597. height: math.unit(5 + 9 / 12, "feet"),
  8598. default: true
  8599. },
  8600. {
  8601. name: "Macro",
  8602. height: math.unit(800, "feet")
  8603. },
  8604. {
  8605. name: "Megamacro",
  8606. height: math.unit(25, "miles")
  8607. }
  8608. ]
  8609. ))
  8610. characterMakers.push(() => makeCharacter(
  8611. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8612. {
  8613. front: {
  8614. height: math.unit(6, "feet"),
  8615. weight: math.unit(200, "lbs"),
  8616. name: "Front",
  8617. image: {
  8618. source: "./media/characters/chari-gal/front.svg",
  8619. extra: 1568 / 1385,
  8620. bottom: 0.047
  8621. }
  8622. },
  8623. gigantamax: {
  8624. height: math.unit(6 * 16, "feet"),
  8625. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8626. name: "Gigantamax",
  8627. image: {
  8628. source: "./media/characters/chari-gal/gigantamax.svg",
  8629. extra: 1124 / 888,
  8630. bottom: 0.03
  8631. }
  8632. },
  8633. },
  8634. [
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(5 + 7 / 12, "feet")
  8638. },
  8639. {
  8640. name: "Macro",
  8641. height: math.unit(200, "feet"),
  8642. default: true
  8643. }
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8648. {
  8649. front: {
  8650. height: math.unit(6, "feet"),
  8651. weight: math.unit(150, "lbs"),
  8652. name: "Front",
  8653. image: {
  8654. source: "./media/characters/nova/front.svg",
  8655. extra: 5000 / 4722,
  8656. bottom: 0.02
  8657. }
  8658. }
  8659. },
  8660. [
  8661. {
  8662. name: "Micro-",
  8663. height: math.unit(0.8, "inches")
  8664. },
  8665. {
  8666. name: "Micro",
  8667. height: math.unit(2, "inches"),
  8668. default: true
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8674. {
  8675. front: {
  8676. height: math.unit(3 + 1 / 12, "feet"),
  8677. weight: math.unit(21.7, "lbs"),
  8678. name: "Front",
  8679. image: {
  8680. source: "./media/characters/argent/front.svg",
  8681. extra: 1471 / 1331,
  8682. bottom: 100.8 / 1575.5
  8683. }
  8684. }
  8685. },
  8686. [
  8687. {
  8688. name: "Micro",
  8689. height: math.unit(2, "inches")
  8690. },
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(3 + 1 / 12, "feet"),
  8694. default: true
  8695. },
  8696. {
  8697. name: "Macro",
  8698. height: math.unit(120, "feet")
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8704. {
  8705. lamp: {
  8706. height: math.unit(7 * 1559 / 989, "feet"),
  8707. name: "Magic Lamp",
  8708. image: {
  8709. source: "./media/characters/mira-al-cul/lamp.svg",
  8710. extra: 1617 / 1559
  8711. }
  8712. },
  8713. front: {
  8714. height: math.unit(7, "feet"),
  8715. name: "Front",
  8716. image: {
  8717. source: "./media/characters/mira-al-cul/front.svg",
  8718. extra: 1044 / 990
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Heavily Restricted",
  8725. height: math.unit(7 * 1559 / 989, "feet")
  8726. },
  8727. {
  8728. name: "Freshly Freed",
  8729. height: math.unit(50 * 1559 / 989, "feet")
  8730. },
  8731. {
  8732. name: "World Encompassing",
  8733. height: math.unit(10000 * 1559 / 989, "miles")
  8734. },
  8735. {
  8736. name: "Galactic",
  8737. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8738. },
  8739. {
  8740. name: "Palmed Universe",
  8741. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8742. default: true
  8743. },
  8744. {
  8745. name: "Multiversal Matriarch",
  8746. height: math.unit(8.87e10, "yottameters")
  8747. },
  8748. {
  8749. name: "Void Mother",
  8750. height: math.unit(3.14e110, "yottaparsecs")
  8751. },
  8752. {
  8753. name: "Toying with Transcendence",
  8754. height: math.unit(1e307, "meters")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8760. {
  8761. front: {
  8762. height: math.unit(17 + 1 / 12, "feet"),
  8763. weight: math.unit(476.2 * 5, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/kuro-shi-uchū/front.svg",
  8767. extra: 2329 / 1835,
  8768. bottom: 0.02
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Micro",
  8775. height: math.unit(2, "inches")
  8776. },
  8777. {
  8778. name: "Normal",
  8779. height: math.unit(12, "meters")
  8780. },
  8781. {
  8782. name: "Planetary",
  8783. height: math.unit(0.00929, "AU"),
  8784. default: true
  8785. },
  8786. {
  8787. name: "Universal",
  8788. height: math.unit(20, "gigaparsecs")
  8789. },
  8790. ]
  8791. ))
  8792. characterMakers.push(() => makeCharacter(
  8793. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8794. {
  8795. front: {
  8796. height: math.unit(5 + 2 / 12, "feet"),
  8797. weight: math.unit(120, "lbs"),
  8798. name: "Front",
  8799. image: {
  8800. source: "./media/characters/katherine/front.svg",
  8801. extra: 2075 / 1969
  8802. }
  8803. },
  8804. dress: {
  8805. height: math.unit(5 + 2 / 12, "feet"),
  8806. weight: math.unit(120, "lbs"),
  8807. name: "Dress",
  8808. image: {
  8809. source: "./media/characters/katherine/dress.svg",
  8810. extra: 2258 / 2064
  8811. }
  8812. },
  8813. },
  8814. [
  8815. {
  8816. name: "Micro",
  8817. height: math.unit(1, "inches"),
  8818. default: true
  8819. },
  8820. {
  8821. name: "Normal",
  8822. height: math.unit(5 + 2 / 12, "feet")
  8823. },
  8824. {
  8825. name: "Macro",
  8826. height: math.unit(100, "meters")
  8827. },
  8828. {
  8829. name: "Megamacro",
  8830. height: math.unit(80, "miles")
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(7 + 8 / 12, "feet"),
  8839. weight: math.unit(250, "lbs"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/yevis/front.svg",
  8843. extra: 1938 / 1755
  8844. }
  8845. }
  8846. },
  8847. [
  8848. {
  8849. name: "Mortal",
  8850. height: math.unit(7 + 8 / 12, "feet")
  8851. },
  8852. {
  8853. name: "Battle",
  8854. height: math.unit(25 + 11 / 12, "feet")
  8855. },
  8856. {
  8857. name: "Wrath",
  8858. height: math.unit(1654 + 11 / 12, "feet")
  8859. },
  8860. {
  8861. name: "Planet Destroyer",
  8862. height: math.unit(12000, "miles")
  8863. },
  8864. {
  8865. name: "Galaxy Conqueror",
  8866. height: math.unit(1.45, "zettameters"),
  8867. default: true
  8868. },
  8869. {
  8870. name: "Universal War",
  8871. height: math.unit(184, "gigaparsecs")
  8872. },
  8873. {
  8874. name: "Eternity War",
  8875. height: math.unit(1.98e55, "yottaparsecs")
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(5 + 8 / 12, "feet"),
  8884. weight: math.unit(63, "kg"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/xavier/front.svg",
  8888. extra: 944 / 883
  8889. }
  8890. },
  8891. frontStretch: {
  8892. height: math.unit(5 + 8 / 12, "feet"),
  8893. weight: math.unit(63, "kg"),
  8894. name: "Stretching",
  8895. image: {
  8896. source: "./media/characters/xavier/front-stretch.svg",
  8897. extra: 962 / 820
  8898. }
  8899. },
  8900. },
  8901. [
  8902. {
  8903. name: "Normal",
  8904. height: math.unit(5 + 8 / 12, "feet")
  8905. },
  8906. {
  8907. name: "Macro",
  8908. height: math.unit(100, "meters"),
  8909. default: true
  8910. },
  8911. {
  8912. name: "McLargeHuge",
  8913. height: math.unit(10, "miles")
  8914. },
  8915. ]
  8916. ))
  8917. characterMakers.push(() => makeCharacter(
  8918. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8919. {
  8920. front: {
  8921. height: math.unit(5 + 5 / 12, "feet"),
  8922. weight: math.unit(150, "lb"),
  8923. name: "Front",
  8924. image: {
  8925. source: "./media/characters/joshii/front.svg",
  8926. extra: 765 / 653,
  8927. bottom: 51 / 816
  8928. }
  8929. },
  8930. foot: {
  8931. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8932. name: "Foot",
  8933. image: {
  8934. source: "./media/characters/joshii/foot.svg"
  8935. }
  8936. },
  8937. },
  8938. [
  8939. {
  8940. name: "Micro",
  8941. height: math.unit(2, "inches"),
  8942. default: true
  8943. },
  8944. {
  8945. name: "Normal",
  8946. height: math.unit(5 + 5 / 12, "feet")
  8947. },
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(785, "feet")
  8951. },
  8952. {
  8953. name: "Megamacro",
  8954. height: math.unit(24.5, "miles")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8960. {
  8961. front: {
  8962. height: math.unit(6, "feet"),
  8963. weight: math.unit(150, "lb"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/goddess-elizabeth/front.svg",
  8967. extra: 1800 / 1525,
  8968. bottom: 0.005
  8969. }
  8970. },
  8971. foot: {
  8972. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8973. name: "Foot",
  8974. image: {
  8975. source: "./media/characters/goddess-elizabeth/foot.svg"
  8976. }
  8977. },
  8978. mouth: {
  8979. height: math.unit(6, "feet"),
  8980. name: "Mouth",
  8981. image: {
  8982. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8983. }
  8984. },
  8985. },
  8986. [
  8987. {
  8988. name: "Micro",
  8989. height: math.unit(12, "feet")
  8990. },
  8991. {
  8992. name: "Normal",
  8993. height: math.unit(80, "miles"),
  8994. default: true
  8995. },
  8996. {
  8997. name: "Macro",
  8998. height: math.unit(15000, "parsecs")
  8999. },
  9000. ]
  9001. ))
  9002. characterMakers.push(() => makeCharacter(
  9003. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9004. {
  9005. front: {
  9006. height: math.unit(5 + 9 / 12, "feet"),
  9007. weight: math.unit(144, "lb"),
  9008. name: "Front",
  9009. image: {
  9010. source: "./media/characters/kara/front.svg"
  9011. }
  9012. },
  9013. feet: {
  9014. height: math.unit(6 / 6.765, "feet"),
  9015. name: "Kara's Feet",
  9016. rename: true,
  9017. image: {
  9018. source: "./media/characters/kara/feet.svg"
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Normal",
  9025. height: math.unit(5 + 9 / 12, "feet")
  9026. },
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(174, "feet"),
  9030. default: true
  9031. },
  9032. ]
  9033. ))
  9034. characterMakers.push(() => makeCharacter(
  9035. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9036. {
  9037. front: {
  9038. height: math.unit(18, "feet"),
  9039. weight: math.unit(4050, "lb"),
  9040. name: "Front",
  9041. image: {
  9042. source: "./media/characters/tyrone/front.svg",
  9043. extra: 2405 / 2270,
  9044. bottom: 182 / 2587
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(18, "feet"),
  9052. default: true
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(300, "feet")
  9057. },
  9058. {
  9059. name: "Megamacro",
  9060. height: math.unit(15, "km")
  9061. },
  9062. {
  9063. name: "Gigamacro",
  9064. height: math.unit(500, "km")
  9065. },
  9066. {
  9067. name: "Teramacro",
  9068. height: math.unit(0.5, "gigameters")
  9069. },
  9070. {
  9071. name: "Omnimacro",
  9072. height: math.unit(1e252, "yottauniverse")
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(7 + 8 / 12, "feet"),
  9081. weight: math.unit(120, "lb"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/danny/front.svg",
  9085. extra: 1490 / 1350
  9086. }
  9087. },
  9088. back: {
  9089. height: math.unit(7 + 8 / 12, "feet"),
  9090. weight: math.unit(120, "lb"),
  9091. name: "Back",
  9092. image: {
  9093. source: "./media/characters/danny/back.svg",
  9094. extra: 1490 / 1350
  9095. }
  9096. },
  9097. },
  9098. [
  9099. {
  9100. name: "Normal",
  9101. height: math.unit(7 + 8 / 12, "feet"),
  9102. default: true
  9103. },
  9104. ]
  9105. ))
  9106. characterMakers.push(() => makeCharacter(
  9107. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9108. {
  9109. front: {
  9110. height: math.unit(3.5, "inches"),
  9111. weight: math.unit(19, "grams"),
  9112. name: "Front",
  9113. image: {
  9114. source: "./media/characters/mallow/front.svg",
  9115. extra: 471 / 431
  9116. }
  9117. },
  9118. back: {
  9119. height: math.unit(3.5, "inches"),
  9120. weight: math.unit(19, "grams"),
  9121. name: "Back",
  9122. image: {
  9123. source: "./media/characters/mallow/back.svg",
  9124. extra: 471 / 431
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Normal",
  9131. height: math.unit(3.5, "inches"),
  9132. default: true
  9133. },
  9134. ]
  9135. ))
  9136. characterMakers.push(() => makeCharacter(
  9137. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9138. {
  9139. front: {
  9140. height: math.unit(9, "feet"),
  9141. weight: math.unit(230, "kg"),
  9142. name: "Front",
  9143. image: {
  9144. source: "./media/characters/starry-aqua/front.svg"
  9145. }
  9146. },
  9147. back: {
  9148. height: math.unit(9, "feet"),
  9149. weight: math.unit(230, "kg"),
  9150. name: "Back",
  9151. image: {
  9152. source: "./media/characters/starry-aqua/back.svg"
  9153. }
  9154. },
  9155. hand: {
  9156. height: math.unit(9 * 0.1168, "feet"),
  9157. name: "Hand",
  9158. image: {
  9159. source: "./media/characters/starry-aqua/hand.svg"
  9160. }
  9161. },
  9162. foot: {
  9163. height: math.unit(9 * 0.18, "feet"),
  9164. name: "Foot",
  9165. image: {
  9166. source: "./media/characters/starry-aqua/foot.svg"
  9167. }
  9168. }
  9169. },
  9170. [
  9171. {
  9172. name: "Micro",
  9173. height: math.unit(3, "inches")
  9174. },
  9175. {
  9176. name: "Normal",
  9177. height: math.unit(9, "feet")
  9178. },
  9179. {
  9180. name: "Macro",
  9181. height: math.unit(300, "feet"),
  9182. default: true
  9183. },
  9184. {
  9185. name: "Megamacro",
  9186. height: math.unit(3200, "feet")
  9187. }
  9188. ]
  9189. ))
  9190. characterMakers.push(() => makeCharacter(
  9191. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9192. {
  9193. front: {
  9194. height: math.unit(15, "feet"),
  9195. weight: math.unit(5026, "lb"),
  9196. name: "Front",
  9197. image: {
  9198. source: "./media/characters/luka-towers/front.svg",
  9199. extra: 1269/1133,
  9200. bottom: 51/1320
  9201. }
  9202. },
  9203. },
  9204. [
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(15, "feet"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "Minimacro",
  9212. height: math.unit(25, "feet")
  9213. },
  9214. {
  9215. name: "Macro",
  9216. height: math.unit(320, "feet")
  9217. },
  9218. {
  9219. name: "Megamacro",
  9220. height: math.unit(35000, "feet")
  9221. },
  9222. {
  9223. name: "Gigamacro",
  9224. height: math.unit(4000, "miles")
  9225. },
  9226. {
  9227. name: "Teramacro",
  9228. height: math.unit(15000, "miles")
  9229. },
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9234. {
  9235. front: {
  9236. height: math.unit(6, "feet"),
  9237. weight: math.unit(150, "lb"),
  9238. name: "Front",
  9239. image: {
  9240. source: "./media/characters/natalie-nightring/front.svg",
  9241. extra: 1,
  9242. bottom: 0.06
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Uh Oh",
  9249. height: math.unit(0.1, "mm")
  9250. },
  9251. {
  9252. name: "Small",
  9253. height: math.unit(3, "inches")
  9254. },
  9255. {
  9256. name: "Human Scale",
  9257. height: math.unit(6, "feet")
  9258. },
  9259. {
  9260. name: "Librarian",
  9261. height: math.unit(50, "feet"),
  9262. default: true
  9263. },
  9264. {
  9265. name: "Immense",
  9266. height: math.unit(200, "miles")
  9267. },
  9268. ]
  9269. ))
  9270. characterMakers.push(() => makeCharacter(
  9271. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9272. {
  9273. front: {
  9274. height: math.unit(6, "feet"),
  9275. weight: math.unit(180, "lbs"),
  9276. name: "Front",
  9277. image: {
  9278. source: "./media/characters/danni-rosie/front.svg",
  9279. extra: 1260 / 1128,
  9280. bottom: 0.022
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Micro",
  9287. height: math.unit(2, "inches"),
  9288. default: true
  9289. },
  9290. ]
  9291. ))
  9292. characterMakers.push(() => makeCharacter(
  9293. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9294. {
  9295. front: {
  9296. height: math.unit(5 + 9 / 12, "feet"),
  9297. weight: math.unit(220, "lb"),
  9298. name: "Front",
  9299. image: {
  9300. source: "./media/characters/samantha-kruse/front.svg",
  9301. extra: (985 / 935),
  9302. bottom: 0.03
  9303. }
  9304. },
  9305. frontUndressed: {
  9306. height: math.unit(5 + 9 / 12, "feet"),
  9307. weight: math.unit(220, "lb"),
  9308. name: "Front (Undressed)",
  9309. image: {
  9310. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9311. extra: (973 / 923),
  9312. bottom: 0.025
  9313. }
  9314. },
  9315. fat: {
  9316. height: math.unit(5 + 9 / 12, "feet"),
  9317. weight: math.unit(900, "lb"),
  9318. name: "Front (Fat)",
  9319. image: {
  9320. source: "./media/characters/samantha-kruse/fat.svg",
  9321. extra: 2688 / 2561
  9322. }
  9323. },
  9324. },
  9325. [
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(5 + 9 / 12, "feet"),
  9329. default: true
  9330. }
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9335. {
  9336. back: {
  9337. height: math.unit(5 + 4 / 12, "feet"),
  9338. weight: math.unit(4963, "lb"),
  9339. name: "Back",
  9340. image: {
  9341. source: "./media/characters/amelia-rosie/back.svg",
  9342. extra: 1113 / 963,
  9343. bottom: 0.01
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Level 0",
  9350. height: math.unit(5 + 4 / 12, "feet")
  9351. },
  9352. {
  9353. name: "Level 1",
  9354. height: math.unit(164597, "feet"),
  9355. default: true
  9356. },
  9357. {
  9358. name: "Level 2",
  9359. height: math.unit(956243, "miles")
  9360. },
  9361. {
  9362. name: "Level 3",
  9363. height: math.unit(29421709423, "miles")
  9364. },
  9365. {
  9366. name: "Level 4",
  9367. height: math.unit(154, "lightyears")
  9368. },
  9369. {
  9370. name: "Level 5",
  9371. height: math.unit(4738272, "lightyears")
  9372. },
  9373. {
  9374. name: "Level 6",
  9375. height: math.unit(145787152896, "lightyears")
  9376. },
  9377. ]
  9378. ))
  9379. characterMakers.push(() => makeCharacter(
  9380. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9381. {
  9382. front: {
  9383. height: math.unit(5 + 11 / 12, "feet"),
  9384. weight: math.unit(65, "kg"),
  9385. name: "Front",
  9386. image: {
  9387. source: "./media/characters/rook-kitara/front.svg",
  9388. extra: 1347 / 1274,
  9389. bottom: 0.005
  9390. }
  9391. },
  9392. },
  9393. [
  9394. {
  9395. name: "Totally Unfair",
  9396. height: math.unit(1.8, "mm")
  9397. },
  9398. {
  9399. name: "Lap Rookie",
  9400. height: math.unit(1.4, "feet")
  9401. },
  9402. {
  9403. name: "Normal",
  9404. height: math.unit(5 + 11 / 12, "feet"),
  9405. default: true
  9406. },
  9407. {
  9408. name: "How Did This Happen",
  9409. height: math.unit(80, "miles")
  9410. }
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(7, "feet"),
  9418. weight: math.unit(300, "lb"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/pisces/front.svg",
  9422. extra: 2255 / 2115,
  9423. bottom: 0.03
  9424. }
  9425. },
  9426. back: {
  9427. height: math.unit(7, "feet"),
  9428. weight: math.unit(300, "lb"),
  9429. name: "Back",
  9430. image: {
  9431. source: "./media/characters/pisces/back.svg",
  9432. extra: 2146 / 2055,
  9433. bottom: 0.04
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(7, "feet"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Swimming Pool",
  9445. height: math.unit(12.2, "meters")
  9446. },
  9447. {
  9448. name: "Olympic Swimming Pool",
  9449. height: math.unit(56.3, "meters")
  9450. },
  9451. {
  9452. name: "Lake Superior",
  9453. height: math.unit(93900, "meters")
  9454. },
  9455. {
  9456. name: "Mediterranean Sea",
  9457. height: math.unit(644457, "meters")
  9458. },
  9459. {
  9460. name: "World's Oceans",
  9461. height: math.unit(4567491, "meters")
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(2.3, "meters"),
  9470. weight: math.unit(120, "kg"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/zelas/front.svg"
  9474. }
  9475. },
  9476. side: {
  9477. height: math.unit(2.3, "meters"),
  9478. weight: math.unit(120, "kg"),
  9479. name: "Side",
  9480. image: {
  9481. source: "./media/characters/zelas/side.svg"
  9482. }
  9483. },
  9484. back: {
  9485. height: math.unit(2.3, "meters"),
  9486. weight: math.unit(120, "kg"),
  9487. name: "Back",
  9488. image: {
  9489. source: "./media/characters/zelas/back.svg"
  9490. }
  9491. },
  9492. foot: {
  9493. height: math.unit(1.116, "feet"),
  9494. name: "Foot",
  9495. image: {
  9496. source: "./media/characters/zelas/foot.svg"
  9497. }
  9498. },
  9499. },
  9500. [
  9501. {
  9502. name: "Normal",
  9503. height: math.unit(2.3, "meters")
  9504. },
  9505. {
  9506. name: "Macro",
  9507. height: math.unit(30, "meters"),
  9508. default: true
  9509. },
  9510. ]
  9511. ))
  9512. characterMakers.push(() => makeCharacter(
  9513. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9514. {
  9515. front: {
  9516. height: math.unit(1, "inch"),
  9517. weight: math.unit(0.21, "grams"),
  9518. name: "Front",
  9519. image: {
  9520. source: "./media/characters/talbot/front.svg",
  9521. extra: 594 / 544
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Micro",
  9528. height: math.unit(1, "inch"),
  9529. default: true
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9535. {
  9536. front: {
  9537. height: math.unit(3 + 3 / 12, "feet"),
  9538. weight: math.unit(51.8, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/fliss/front.svg",
  9542. extra: 840 / 640
  9543. }
  9544. },
  9545. },
  9546. [
  9547. {
  9548. name: "Teeny Tiny",
  9549. height: math.unit(1, "mm")
  9550. },
  9551. {
  9552. name: "Small",
  9553. height: math.unit(1, "inch"),
  9554. default: true
  9555. },
  9556. {
  9557. name: "Standard Sylveon",
  9558. height: math.unit(3 + 3 / 12, "feet")
  9559. },
  9560. {
  9561. name: "Large Nuisance",
  9562. height: math.unit(33, "feet")
  9563. },
  9564. {
  9565. name: "City Filler",
  9566. height: math.unit(3000, "feet")
  9567. },
  9568. {
  9569. name: "New Horizon",
  9570. height: math.unit(6000, "miles")
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9576. {
  9577. front: {
  9578. height: math.unit(5, "cm"),
  9579. weight: math.unit(1.94, "g"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/fleta/front.svg",
  9583. extra: 835 / 803
  9584. }
  9585. },
  9586. back: {
  9587. height: math.unit(5, "cm"),
  9588. weight: math.unit(1.94, "g"),
  9589. name: "Back",
  9590. image: {
  9591. source: "./media/characters/fleta/back.svg",
  9592. extra: 835 / 803
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Micro",
  9599. height: math.unit(5, "cm"),
  9600. default: true
  9601. },
  9602. ]
  9603. ))
  9604. characterMakers.push(() => makeCharacter(
  9605. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9606. {
  9607. front: {
  9608. height: math.unit(6, "feet"),
  9609. weight: math.unit(225, "lb"),
  9610. name: "Front",
  9611. image: {
  9612. source: "./media/characters/dominic/front.svg",
  9613. extra: 1770 / 1620,
  9614. bottom: 0.025
  9615. }
  9616. },
  9617. back: {
  9618. height: math.unit(6, "feet"),
  9619. weight: math.unit(225, "lb"),
  9620. name: "Back",
  9621. image: {
  9622. source: "./media/characters/dominic/back.svg",
  9623. extra: 1745 / 1620,
  9624. bottom: 0.065
  9625. }
  9626. },
  9627. },
  9628. [
  9629. {
  9630. name: "Nano",
  9631. height: math.unit(0.1, "mm")
  9632. },
  9633. {
  9634. name: "Micro-",
  9635. height: math.unit(1, "mm")
  9636. },
  9637. {
  9638. name: "Micro",
  9639. height: math.unit(4, "inches")
  9640. },
  9641. {
  9642. name: "Normal",
  9643. height: math.unit(6 + 4 / 12, "feet"),
  9644. default: true
  9645. },
  9646. {
  9647. name: "Macro",
  9648. height: math.unit(115, "feet")
  9649. },
  9650. {
  9651. name: "Macro+",
  9652. height: math.unit(955, "feet")
  9653. },
  9654. {
  9655. name: "Megamacro",
  9656. height: math.unit(8990, "feet")
  9657. },
  9658. {
  9659. name: "Gigmacro",
  9660. height: math.unit(9310, "miles")
  9661. },
  9662. {
  9663. name: "Teramacro",
  9664. height: math.unit(1567005010, "miles")
  9665. },
  9666. {
  9667. name: "Examacro",
  9668. height: math.unit(1425, "parsecs")
  9669. },
  9670. ]
  9671. ))
  9672. characterMakers.push(() => makeCharacter(
  9673. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9674. {
  9675. front: {
  9676. height: math.unit(400, "feet"),
  9677. weight: math.unit(44444444, "lb"),
  9678. name: "Front",
  9679. image: {
  9680. source: "./media/characters/major-colonel/front.svg"
  9681. }
  9682. },
  9683. back: {
  9684. height: math.unit(400, "feet"),
  9685. weight: math.unit(44444444, "lb"),
  9686. name: "Back",
  9687. image: {
  9688. source: "./media/characters/major-colonel/back.svg"
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Macro",
  9695. height: math.unit(400, "feet"),
  9696. default: true
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9702. {
  9703. catFront: {
  9704. height: math.unit(6, "feet"),
  9705. weight: math.unit(120, "lb"),
  9706. name: "Front (Cat Side)",
  9707. image: {
  9708. source: "./media/characters/axel-lycan/cat-front.svg",
  9709. extra: 430 / 402,
  9710. bottom: 43 / 472.35
  9711. }
  9712. },
  9713. catBack: {
  9714. height: math.unit(6, "feet"),
  9715. weight: math.unit(120, "lb"),
  9716. name: "Back (Cat Side)",
  9717. image: {
  9718. source: "./media/characters/axel-lycan/cat-back.svg",
  9719. extra: 447 / 419,
  9720. bottom: 23.3 / 469
  9721. }
  9722. },
  9723. wolfFront: {
  9724. height: math.unit(6, "feet"),
  9725. weight: math.unit(120, "lb"),
  9726. name: "Front (Wolf Side)",
  9727. image: {
  9728. source: "./media/characters/axel-lycan/wolf-front.svg",
  9729. extra: 485 / 456,
  9730. bottom: 19 / 504
  9731. }
  9732. },
  9733. wolfBack: {
  9734. height: math.unit(6, "feet"),
  9735. weight: math.unit(120, "lb"),
  9736. name: "Back (Wolf Side)",
  9737. image: {
  9738. source: "./media/characters/axel-lycan/wolf-back.svg",
  9739. extra: 475 / 438,
  9740. bottom: 39.2 / 514
  9741. }
  9742. },
  9743. },
  9744. [
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(1, "km"),
  9748. default: true
  9749. },
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9754. {
  9755. front: {
  9756. height: math.unit(5 + 9 / 12, "feet"),
  9757. weight: math.unit(175, "lb"),
  9758. name: "Front",
  9759. image: {
  9760. source: "./media/characters/vanrel-hyena/front.svg",
  9761. extra: 1086 / 1010,
  9762. bottom: 0.04
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Normal",
  9769. height: math.unit(5 + 9 / 12, "feet"),
  9770. default: true
  9771. },
  9772. ]
  9773. ))
  9774. characterMakers.push(() => makeCharacter(
  9775. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9776. {
  9777. front: {
  9778. height: math.unit(6, "feet"),
  9779. weight: math.unit(103, "lb"),
  9780. name: "Front",
  9781. image: {
  9782. source: "./media/characters/abbott-absol/front.svg",
  9783. extra: 2010 / 1842
  9784. }
  9785. },
  9786. },
  9787. [
  9788. {
  9789. name: "Megamicro",
  9790. height: math.unit(0.1, "mm")
  9791. },
  9792. {
  9793. name: "Micro",
  9794. height: math.unit(1, "inch")
  9795. },
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(6, "feet"),
  9799. default: true
  9800. },
  9801. ]
  9802. ))
  9803. characterMakers.push(() => makeCharacter(
  9804. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9805. {
  9806. front: {
  9807. height: math.unit(6, "feet"),
  9808. weight: math.unit(264, "lb"),
  9809. name: "Front",
  9810. image: {
  9811. source: "./media/characters/hector/front.svg",
  9812. extra: 2280 / 2130,
  9813. bottom: 0.07
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(12.25, "foot"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(160, "feet")
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(150, "lb"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/sal/front.svg",
  9838. extra: 1846 / 1699,
  9839. bottom: 0.04
  9840. }
  9841. },
  9842. },
  9843. [
  9844. {
  9845. name: "Megamacro",
  9846. height: math.unit(10, "miles"),
  9847. default: true
  9848. },
  9849. ]
  9850. ))
  9851. characterMakers.push(() => makeCharacter(
  9852. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9853. {
  9854. front: {
  9855. height: math.unit(3, "meters"),
  9856. weight: math.unit(450, "kg"),
  9857. name: "front",
  9858. image: {
  9859. source: "./media/characters/ranger/front.svg",
  9860. extra: 2401 / 2243,
  9861. bottom: 0.05
  9862. }
  9863. },
  9864. },
  9865. [
  9866. {
  9867. name: "Normal",
  9868. height: math.unit(3, "meters"),
  9869. default: true
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(14, "feet"),
  9878. weight: math.unit(800, "kg"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/theresa/front.svg",
  9882. extra: 3575 / 3346,
  9883. bottom: 0.03
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Normal",
  9890. height: math.unit(14, "feet"),
  9891. default: true
  9892. },
  9893. ]
  9894. ))
  9895. characterMakers.push(() => makeCharacter(
  9896. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9897. {
  9898. front: {
  9899. height: math.unit(6, "feet"),
  9900. weight: math.unit(3, "kg"),
  9901. name: "Front",
  9902. image: {
  9903. source: "./media/characters/ine/front.svg",
  9904. extra: 678 / 539,
  9905. bottom: 0.023
  9906. }
  9907. },
  9908. },
  9909. [
  9910. {
  9911. name: "Normal",
  9912. height: math.unit(2.265, "feet"),
  9913. default: true
  9914. },
  9915. ]
  9916. ))
  9917. characterMakers.push(() => makeCharacter(
  9918. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9919. {
  9920. front: {
  9921. height: math.unit(5, "feet"),
  9922. weight: math.unit(30, "kg"),
  9923. name: "Front",
  9924. image: {
  9925. source: "./media/characters/vial/front.svg",
  9926. extra: 1365 / 1277,
  9927. bottom: 0.04
  9928. }
  9929. },
  9930. },
  9931. [
  9932. {
  9933. name: "Normal",
  9934. height: math.unit(5, "feet"),
  9935. default: true
  9936. },
  9937. ]
  9938. ))
  9939. characterMakers.push(() => makeCharacter(
  9940. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9941. {
  9942. side: {
  9943. height: math.unit(3.4, "meters"),
  9944. weight: math.unit(1000, "lb"),
  9945. name: "Side",
  9946. image: {
  9947. source: "./media/characters/rovoska/side.svg",
  9948. extra: 4403 / 1515
  9949. }
  9950. },
  9951. },
  9952. [
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(3.4, "meters"),
  9956. default: true
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(8, "feet"),
  9965. weight: math.unit(315, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/gunner-rotthbauer/front.svg"
  9969. }
  9970. },
  9971. back: {
  9972. height: math.unit(8, "feet"),
  9973. weight: math.unit(315, "lb"),
  9974. name: "Back",
  9975. image: {
  9976. source: "./media/characters/gunner-rotthbauer/back.svg"
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Micro",
  9983. height: math.unit(3.5, "inches")
  9984. },
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(8, "feet"),
  9988. default: true
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(250, "feet")
  9993. },
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(1, "AU")
  9997. },
  9998. ]
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10002. {
  10003. front: {
  10004. height: math.unit(5 + 5 / 12, "feet"),
  10005. weight: math.unit(140, "lb"),
  10006. name: "Front",
  10007. image: {
  10008. source: "./media/characters/allatia/front.svg",
  10009. extra: 1227 / 1180,
  10010. bottom: 0.027
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Normal",
  10017. height: math.unit(5 + 5 / 12, "feet")
  10018. },
  10019. {
  10020. name: "Macro",
  10021. height: math.unit(250, "feet"),
  10022. default: true
  10023. },
  10024. {
  10025. name: "Megamacro",
  10026. height: math.unit(8, "miles")
  10027. }
  10028. ]
  10029. ))
  10030. characterMakers.push(() => makeCharacter(
  10031. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10032. {
  10033. front: {
  10034. height: math.unit(6, "feet"),
  10035. weight: math.unit(120, "lb"),
  10036. name: "Front",
  10037. image: {
  10038. source: "./media/characters/tene/front.svg",
  10039. extra: 814/750,
  10040. bottom: 36/850
  10041. }
  10042. },
  10043. stomping: {
  10044. height: math.unit(2.025, "meters"),
  10045. weight: math.unit(120, "lb"),
  10046. name: "Stomping",
  10047. image: {
  10048. source: "./media/characters/tene/stomping.svg",
  10049. extra: 885/821,
  10050. bottom: 15/900
  10051. }
  10052. },
  10053. sitting: {
  10054. height: math.unit(1, "meter"),
  10055. weight: math.unit(120, "lb"),
  10056. name: "Sitting",
  10057. image: {
  10058. source: "./media/characters/tene/sitting.svg",
  10059. extra: 396/366,
  10060. bottom: 79/475
  10061. }
  10062. },
  10063. smiling: {
  10064. height: math.unit(1.2, "feet"),
  10065. name: "Smiling",
  10066. image: {
  10067. source: "./media/characters/tene/smiling.svg",
  10068. extra: 1364/1071,
  10069. bottom: 0/1364
  10070. }
  10071. },
  10072. smug: {
  10073. height: math.unit(1.3, "feet"),
  10074. name: "Smug",
  10075. image: {
  10076. source: "./media/characters/tene/smug.svg",
  10077. extra: 1323/1082,
  10078. bottom: 0/1323
  10079. }
  10080. },
  10081. feral: {
  10082. height: math.unit(3.9, "feet"),
  10083. weight: math.unit(250, "lb"),
  10084. name: "Feral",
  10085. image: {
  10086. source: "./media/characters/tene/feral.svg",
  10087. extra: 717 / 458,
  10088. bottom: 0.179
  10089. }
  10090. },
  10091. },
  10092. [
  10093. {
  10094. name: "Normal",
  10095. height: math.unit(6, "feet")
  10096. },
  10097. {
  10098. name: "Macro",
  10099. height: math.unit(300, "feet"),
  10100. default: true
  10101. },
  10102. {
  10103. name: "Megamacro",
  10104. height: math.unit(5, "miles")
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10110. {
  10111. side: {
  10112. height: math.unit(6, "feet"),
  10113. name: "Side",
  10114. image: {
  10115. source: "./media/characters/evander/side.svg",
  10116. extra: 877 / 477
  10117. }
  10118. },
  10119. },
  10120. [
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(0.83, "meters"),
  10124. default: true
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(12, "feet"),
  10133. weight: math.unit(1000, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10137. extra: 1762 / 1611
  10138. }
  10139. },
  10140. back: {
  10141. height: math.unit(12, "feet"),
  10142. weight: math.unit(1000, "lb"),
  10143. name: "Back",
  10144. image: {
  10145. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10146. extra: 1762 / 1611
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Normal",
  10153. height: math.unit(12, "feet"),
  10154. default: true
  10155. },
  10156. {
  10157. name: "Kaiju",
  10158. height: math.unit(150, "feet")
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(6, "feet"),
  10167. weight: math.unit(150, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/zero-alurus/front.svg"
  10171. }
  10172. },
  10173. back: {
  10174. height: math.unit(6, "feet"),
  10175. weight: math.unit(150, "lb"),
  10176. name: "Back",
  10177. image: {
  10178. source: "./media/characters/zero-alurus/back.svg"
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Normal",
  10185. height: math.unit(5 + 10 / 12, "feet")
  10186. },
  10187. {
  10188. name: "Macro",
  10189. height: math.unit(60, "feet"),
  10190. default: true
  10191. },
  10192. {
  10193. name: "Macro+",
  10194. height: math.unit(450, "feet")
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(6, "feet"),
  10203. weight: math.unit(200, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/mega-shi/front.svg",
  10207. extra: 1279 / 1250,
  10208. bottom: 0.02
  10209. }
  10210. },
  10211. back: {
  10212. height: math.unit(6, "feet"),
  10213. weight: math.unit(200, "lb"),
  10214. name: "Back",
  10215. image: {
  10216. source: "./media/characters/mega-shi/back.svg",
  10217. extra: 1279 / 1250,
  10218. bottom: 0.02
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Micro",
  10225. height: math.unit(16 + 6 / 12, "feet")
  10226. },
  10227. {
  10228. name: "Third Dimension",
  10229. height: math.unit(40, "meters")
  10230. },
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(660, "feet"),
  10234. default: true
  10235. },
  10236. {
  10237. name: "Megamacro",
  10238. height: math.unit(10, "miles")
  10239. },
  10240. {
  10241. name: "Planetary Launch",
  10242. height: math.unit(500, "miles")
  10243. },
  10244. {
  10245. name: "Interstellar",
  10246. height: math.unit(1e9, "miles")
  10247. },
  10248. {
  10249. name: "Leaving the Universe",
  10250. height: math.unit(1, "gigaparsec")
  10251. },
  10252. {
  10253. name: "Travelling Universes",
  10254. height: math.unit(30e15, "parsecs")
  10255. },
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10260. {
  10261. front: {
  10262. height: math.unit(5 + 4/12, "feet"),
  10263. weight: math.unit(120, "lb"),
  10264. name: "Front",
  10265. image: {
  10266. source: "./media/characters/odyssey/front.svg",
  10267. extra: 1747/1571,
  10268. bottom: 47/1794
  10269. }
  10270. },
  10271. side: {
  10272. height: math.unit(5.1, "feet"),
  10273. weight: math.unit(120, "lb"),
  10274. name: "Side",
  10275. image: {
  10276. source: "./media/characters/odyssey/side.svg",
  10277. extra: 1847/1619,
  10278. bottom: 47/1894
  10279. }
  10280. },
  10281. lounging: {
  10282. height: math.unit(1.464, "feet"),
  10283. weight: math.unit(120, "lb"),
  10284. name: "Lounging",
  10285. image: {
  10286. source: "./media/characters/odyssey/lounging.svg",
  10287. extra: 1235/837,
  10288. bottom: 551/1786
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(5 + 4 / 12, "feet")
  10296. },
  10297. {
  10298. name: "Macro",
  10299. height: math.unit(1, "km")
  10300. },
  10301. {
  10302. name: "Megamacro",
  10303. height: math.unit(3000, "km")
  10304. },
  10305. {
  10306. name: "Gigamacro",
  10307. height: math.unit(1, "AU"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Omniversal",
  10312. height: math.unit(100e14, "lightyears")
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10318. {
  10319. front: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(300, "lb"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/mekuto/front.svg",
  10325. extra: 921 / 832,
  10326. bottom: 0.03
  10327. }
  10328. },
  10329. hand: {
  10330. height: math.unit(6 / 10.24, "feet"),
  10331. name: "Hand",
  10332. image: {
  10333. source: "./media/characters/mekuto/hand.svg"
  10334. }
  10335. },
  10336. foot: {
  10337. height: math.unit(6 / 5.05, "feet"),
  10338. name: "Foot",
  10339. image: {
  10340. source: "./media/characters/mekuto/foot.svg"
  10341. }
  10342. },
  10343. },
  10344. [
  10345. {
  10346. name: "Minimicro",
  10347. height: math.unit(0.2, "inches")
  10348. },
  10349. {
  10350. name: "Micro",
  10351. height: math.unit(1.5, "inches")
  10352. },
  10353. {
  10354. name: "Normal",
  10355. height: math.unit(5 + 11 / 12, "feet"),
  10356. default: true
  10357. },
  10358. {
  10359. name: "Minimacro",
  10360. height: math.unit(17 + 9 / 12, "feet")
  10361. },
  10362. {
  10363. name: "Macro",
  10364. height: math.unit(177.5, "feet")
  10365. },
  10366. {
  10367. name: "Megamacro",
  10368. height: math.unit(152, "miles")
  10369. },
  10370. ]
  10371. ))
  10372. characterMakers.push(() => makeCharacter(
  10373. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10374. {
  10375. front: {
  10376. height: math.unit(6.5, "inches"),
  10377. weight: math.unit(13, "oz"),
  10378. name: "Front",
  10379. image: {
  10380. source: "./media/characters/dafydd-tomos/front.svg",
  10381. extra: 2990 / 2603,
  10382. bottom: 0.03
  10383. }
  10384. },
  10385. },
  10386. [
  10387. {
  10388. name: "Micro",
  10389. height: math.unit(6.5, "inches"),
  10390. default: true
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10396. {
  10397. front: {
  10398. height: math.unit(6, "feet"),
  10399. weight: math.unit(150, "lb"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/splinter/front.svg",
  10403. extra: 2990 / 2882,
  10404. bottom: 0.04
  10405. }
  10406. },
  10407. back: {
  10408. height: math.unit(6, "feet"),
  10409. weight: math.unit(150, "lb"),
  10410. name: "Back",
  10411. image: {
  10412. source: "./media/characters/splinter/back.svg",
  10413. extra: 2990 / 2882,
  10414. bottom: 0.04
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Normal",
  10421. height: math.unit(6, "feet")
  10422. },
  10423. {
  10424. name: "Macro",
  10425. height: math.unit(230, "meters"),
  10426. default: true
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10432. {
  10433. front: {
  10434. height: math.unit(4 + 10 / 12, "feet"),
  10435. weight: math.unit(480, "lb"),
  10436. name: "Front",
  10437. image: {
  10438. source: "./media/characters/snow-gabumon/front.svg",
  10439. extra: 1140 / 963,
  10440. bottom: 0.058
  10441. }
  10442. },
  10443. back: {
  10444. height: math.unit(4 + 10 / 12, "feet"),
  10445. weight: math.unit(480, "lb"),
  10446. name: "Back",
  10447. image: {
  10448. source: "./media/characters/snow-gabumon/back.svg",
  10449. extra: 1115 / 962,
  10450. bottom: 0.041
  10451. }
  10452. },
  10453. frontUndresed: {
  10454. height: math.unit(4 + 10 / 12, "feet"),
  10455. weight: math.unit(480, "lb"),
  10456. name: "Front (Undressed)",
  10457. image: {
  10458. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10459. extra: 1061 / 960,
  10460. bottom: 0.045
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Micro",
  10467. height: math.unit(1, "inch")
  10468. },
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(4 + 10 / 12, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Macro",
  10476. height: math.unit(200, "feet")
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(120, "miles")
  10481. },
  10482. {
  10483. name: "Gigamacro",
  10484. height: math.unit(9800, "miles")
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(1.7, "meters"),
  10493. weight: math.unit(140, "lb"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/moody/front.svg",
  10497. extra: 3226 / 3007,
  10498. bottom: 0.087
  10499. }
  10500. },
  10501. },
  10502. [
  10503. {
  10504. name: "Micro",
  10505. height: math.unit(1, "mm")
  10506. },
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(1.7, "meters"),
  10510. default: true
  10511. },
  10512. {
  10513. name: "Macro",
  10514. height: math.unit(80, "meters")
  10515. },
  10516. {
  10517. name: "Macro+",
  10518. height: math.unit(500, "meters")
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10524. {
  10525. front: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(150, "lb"),
  10528. name: "Front",
  10529. image: {
  10530. source: "./media/characters/zyas/front.svg",
  10531. extra: 1180 / 1120,
  10532. bottom: 0.045
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Normal",
  10539. height: math.unit(10, "feet"),
  10540. default: true
  10541. },
  10542. {
  10543. name: "Macro",
  10544. height: math.unit(500, "feet")
  10545. },
  10546. {
  10547. name: "Megamacro",
  10548. height: math.unit(5, "miles")
  10549. },
  10550. {
  10551. name: "Teramacro",
  10552. height: math.unit(150000, "miles")
  10553. },
  10554. ]
  10555. ))
  10556. characterMakers.push(() => makeCharacter(
  10557. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10558. {
  10559. front: {
  10560. height: math.unit(6, "feet"),
  10561. weight: math.unit(150, "lb"),
  10562. name: "Front",
  10563. image: {
  10564. source: "./media/characters/cuon/front.svg",
  10565. extra: 1390 / 1320,
  10566. bottom: 0.008
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Micro",
  10573. height: math.unit(3, "inches")
  10574. },
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(18 + 9 / 12, "feet"),
  10578. default: true
  10579. },
  10580. {
  10581. name: "Macro",
  10582. height: math.unit(360, "feet")
  10583. },
  10584. {
  10585. name: "Megamacro",
  10586. height: math.unit(360, "miles")
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(2.4, "meters"),
  10595. weight: math.unit(70, "kg"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/nyanuxk/front.svg",
  10599. extra: 1172 / 1084,
  10600. bottom: 0.065
  10601. }
  10602. },
  10603. side: {
  10604. height: math.unit(2.4, "meters"),
  10605. weight: math.unit(70, "kg"),
  10606. name: "Side",
  10607. image: {
  10608. source: "./media/characters/nyanuxk/side.svg",
  10609. extra: 1190 / 1132,
  10610. bottom: 0.007
  10611. }
  10612. },
  10613. back: {
  10614. height: math.unit(2.4, "meters"),
  10615. weight: math.unit(70, "kg"),
  10616. name: "Back",
  10617. image: {
  10618. source: "./media/characters/nyanuxk/back.svg",
  10619. extra: 1200 / 1141,
  10620. bottom: 0.015
  10621. }
  10622. },
  10623. foot: {
  10624. height: math.unit(0.52, "meters"),
  10625. name: "Foot",
  10626. image: {
  10627. source: "./media/characters/nyanuxk/foot.svg"
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Micro",
  10634. height: math.unit(2, "cm")
  10635. },
  10636. {
  10637. name: "Normal",
  10638. height: math.unit(2.4, "meters"),
  10639. default: true
  10640. },
  10641. {
  10642. name: "Smaller Macro",
  10643. height: math.unit(120, "meters")
  10644. },
  10645. {
  10646. name: "Bigger Macro",
  10647. height: math.unit(1.2, "km")
  10648. },
  10649. {
  10650. name: "Megamacro",
  10651. height: math.unit(15, "kilometers")
  10652. },
  10653. {
  10654. name: "Gigamacro",
  10655. height: math.unit(2000, "km")
  10656. },
  10657. {
  10658. name: "Teramacro",
  10659. height: math.unit(500000, "km")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10665. {
  10666. side: {
  10667. height: math.unit(6, "feet"),
  10668. name: "Side",
  10669. image: {
  10670. source: "./media/characters/ailbhe/side.svg",
  10671. extra: 757 / 464,
  10672. bottom: 0.041
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(1.07, "meters"),
  10680. default: true
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(6, "feet"),
  10689. weight: math.unit(120, "kg"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/zevulfius/front.svg",
  10693. extra: 965 / 903
  10694. }
  10695. },
  10696. side: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(120, "kg"),
  10699. name: "Side",
  10700. image: {
  10701. source: "./media/characters/zevulfius/side.svg",
  10702. extra: 939 / 900
  10703. }
  10704. },
  10705. back: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(120, "kg"),
  10708. name: "Back",
  10709. image: {
  10710. source: "./media/characters/zevulfius/back.svg",
  10711. extra: 918 / 854,
  10712. bottom: 0.005
  10713. }
  10714. },
  10715. foot: {
  10716. height: math.unit(6 / 3.72, "feet"),
  10717. name: "Foot",
  10718. image: {
  10719. source: "./media/characters/zevulfius/foot.svg"
  10720. }
  10721. },
  10722. },
  10723. [
  10724. {
  10725. name: "Macro",
  10726. height: math.unit(750, "meters")
  10727. },
  10728. {
  10729. name: "Megamacro",
  10730. height: math.unit(20, "km"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "Gigamacro",
  10735. height: math.unit(2000, "km")
  10736. },
  10737. {
  10738. name: "Teramacro",
  10739. height: math.unit(250000, "km")
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10745. {
  10746. front: {
  10747. height: math.unit(100, "feet"),
  10748. weight: math.unit(350, "kg"),
  10749. name: "Front",
  10750. image: {
  10751. source: "./media/characters/rikes/front.svg",
  10752. extra: 1565 / 1483,
  10753. bottom: 0.017
  10754. }
  10755. },
  10756. },
  10757. [
  10758. {
  10759. name: "Macro",
  10760. height: math.unit(100, "feet"),
  10761. default: true
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10767. {
  10768. front: {
  10769. height: math.unit(8, "feet"),
  10770. weight: math.unit(356, "lb"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/adam-silver-mane/front.svg",
  10774. extra: 1036/937,
  10775. bottom: 63/1099
  10776. }
  10777. },
  10778. side: {
  10779. height: math.unit(8, "feet"),
  10780. weight: math.unit(356, "lb"),
  10781. name: "Side",
  10782. image: {
  10783. source: "./media/characters/adam-silver-mane/side.svg",
  10784. extra: 997/901,
  10785. bottom: 59/1056
  10786. }
  10787. },
  10788. frontNsfw: {
  10789. height: math.unit(8, "feet"),
  10790. weight: math.unit(356, "lb"),
  10791. name: "Front (NSFW)",
  10792. image: {
  10793. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10794. extra: 1036/937,
  10795. bottom: 63/1099
  10796. }
  10797. },
  10798. sideNsfw: {
  10799. height: math.unit(8, "feet"),
  10800. weight: math.unit(356, "lb"),
  10801. name: "Side (NSFW)",
  10802. image: {
  10803. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10804. extra: 997/901,
  10805. bottom: 59/1056
  10806. }
  10807. },
  10808. dick: {
  10809. height: math.unit(2.1, "feet"),
  10810. name: "Dick",
  10811. image: {
  10812. source: "./media/characters/adam-silver-mane/dick.svg"
  10813. }
  10814. },
  10815. taur: {
  10816. height: math.unit(16, "feet"),
  10817. weight: math.unit(1500, "kg"),
  10818. name: "Taur",
  10819. image: {
  10820. source: "./media/characters/adam-silver-mane/taur.svg",
  10821. extra: 1713 / 1571,
  10822. bottom: 0.01
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(8, "feet")
  10830. },
  10831. {
  10832. name: "Minimacro",
  10833. height: math.unit(80, "feet")
  10834. },
  10835. {
  10836. name: "MDA",
  10837. height: math.unit(80, "meters")
  10838. },
  10839. {
  10840. name: "Macro",
  10841. height: math.unit(800, "feet"),
  10842. default: true
  10843. },
  10844. {
  10845. name: "Megamacro",
  10846. height: math.unit(8000, "feet")
  10847. },
  10848. {
  10849. name: "Gigamacro",
  10850. height: math.unit(800, "miles")
  10851. },
  10852. {
  10853. name: "Teramacro",
  10854. height: math.unit(80000, "miles")
  10855. },
  10856. {
  10857. name: "Celestial",
  10858. height: math.unit(8e6, "miles")
  10859. },
  10860. {
  10861. name: "Star Dragon",
  10862. height: math.unit(800000, "parsecs")
  10863. },
  10864. {
  10865. name: "Godly",
  10866. height: math.unit(800, "teraparsecs")
  10867. },
  10868. ]
  10869. ))
  10870. characterMakers.push(() => makeCharacter(
  10871. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10872. {
  10873. front: {
  10874. height: math.unit(6, "feet"),
  10875. weight: math.unit(150, "lb"),
  10876. name: "Front",
  10877. image: {
  10878. source: "./media/characters/ky'owin/front.svg",
  10879. extra: 3888 / 3068,
  10880. bottom: 0.015
  10881. }
  10882. },
  10883. },
  10884. [
  10885. {
  10886. name: "Normal",
  10887. height: math.unit(6 + 8 / 12, "feet")
  10888. },
  10889. {
  10890. name: "Large",
  10891. height: math.unit(68, "feet")
  10892. },
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(132, "feet")
  10896. },
  10897. {
  10898. name: "Macro+",
  10899. height: math.unit(340, "feet")
  10900. },
  10901. {
  10902. name: "Macro++",
  10903. height: math.unit(680, "feet"),
  10904. default: true
  10905. },
  10906. {
  10907. name: "Megamacro",
  10908. height: math.unit(1, "mile")
  10909. },
  10910. {
  10911. name: "Megamacro+",
  10912. height: math.unit(10, "miles")
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(4, "feet"),
  10921. weight: math.unit(50, "lb"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/mal/front.svg",
  10925. extra: 785 / 724,
  10926. bottom: 0.07
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Micro",
  10933. height: math.unit(4, "inches")
  10934. },
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(4, "feet"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(200, "feet")
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10948. {
  10949. front: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(150, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/jordan-deware/front.svg",
  10955. extra: 1191 / 1012
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Nano",
  10962. height: math.unit(0.01, "mm")
  10963. },
  10964. {
  10965. name: "Minimicro",
  10966. height: math.unit(1, "mm")
  10967. },
  10968. {
  10969. name: "Micro",
  10970. height: math.unit(0.5, "inches")
  10971. },
  10972. {
  10973. name: "Normal",
  10974. height: math.unit(4, "feet"),
  10975. default: true
  10976. },
  10977. {
  10978. name: "Minimacro",
  10979. height: math.unit(40, "meters")
  10980. },
  10981. {
  10982. name: "Small Macro",
  10983. height: math.unit(400, "meters")
  10984. },
  10985. {
  10986. name: "Macro",
  10987. height: math.unit(4, "miles")
  10988. },
  10989. {
  10990. name: "Megamacro",
  10991. height: math.unit(40, "miles")
  10992. },
  10993. {
  10994. name: "Megamacro+",
  10995. height: math.unit(400, "miles")
  10996. },
  10997. {
  10998. name: "Gigamacro",
  10999. height: math.unit(400000, "miles")
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11005. {
  11006. side: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(150, "lb"),
  11009. name: "Side",
  11010. image: {
  11011. source: "./media/characters/kimiko/side.svg",
  11012. extra: 600 / 358
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(15, "feet"),
  11020. default: true
  11021. },
  11022. {
  11023. name: "Macro",
  11024. height: math.unit(220, "feet")
  11025. },
  11026. {
  11027. name: "Macro+",
  11028. height: math.unit(1450, "feet")
  11029. },
  11030. {
  11031. name: "Megamacro",
  11032. height: math.unit(11500, "feet")
  11033. },
  11034. {
  11035. name: "Gigamacro",
  11036. height: math.unit(9500, "miles")
  11037. },
  11038. {
  11039. name: "Teramacro",
  11040. height: math.unit(2208005005, "miles")
  11041. },
  11042. {
  11043. name: "Examacro",
  11044. height: math.unit(2750, "parsecs")
  11045. },
  11046. {
  11047. name: "Zettamacro",
  11048. height: math.unit(101500, "parsecs")
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11054. {
  11055. front: {
  11056. height: math.unit(6, "feet"),
  11057. weight: math.unit(70, "kg"),
  11058. name: "Front",
  11059. image: {
  11060. source: "./media/characters/andrew-sleepy/front.svg"
  11061. }
  11062. },
  11063. side: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(70, "kg"),
  11066. name: "Side",
  11067. image: {
  11068. source: "./media/characters/andrew-sleepy/side.svg"
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Micro",
  11075. height: math.unit(1, "mm"),
  11076. default: true
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(6, "feet"),
  11085. weight: math.unit(150, "lb"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/judio/front.svg",
  11089. extra: 1258 / 1110
  11090. }
  11091. },
  11092. },
  11093. [
  11094. {
  11095. name: "Normal",
  11096. height: math.unit(5 + 6 / 12, "feet")
  11097. },
  11098. {
  11099. name: "Macro",
  11100. height: math.unit(1000, "feet"),
  11101. default: true
  11102. },
  11103. {
  11104. name: "Megamacro",
  11105. height: math.unit(10, "miles")
  11106. },
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11111. {
  11112. frontDressed: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(68, "kg"),
  11115. name: "Front (Dressed)",
  11116. image: {
  11117. source: "./media/characters/nomaxice/front-dressed.svg",
  11118. extra: 1137/824,
  11119. bottom: 74/1211
  11120. }
  11121. },
  11122. frontShorts: {
  11123. height: math.unit(6, "feet"),
  11124. weight: math.unit(68, "kg"),
  11125. name: "Front (Shorts)",
  11126. image: {
  11127. source: "./media/characters/nomaxice/front-shorts.svg",
  11128. extra: 1137/824,
  11129. bottom: 74/1211
  11130. }
  11131. },
  11132. back: {
  11133. height: math.unit(6, "feet"),
  11134. weight: math.unit(68, "kg"),
  11135. name: "Back",
  11136. image: {
  11137. source: "./media/characters/nomaxice/back.svg",
  11138. extra: 822/786,
  11139. bottom: 39/861
  11140. }
  11141. },
  11142. hand: {
  11143. height: math.unit(0.565, "feet"),
  11144. name: "Hand",
  11145. image: {
  11146. source: "./media/characters/nomaxice/hand.svg"
  11147. }
  11148. },
  11149. foot: {
  11150. height: math.unit(1, "feet"),
  11151. name: "Foot",
  11152. image: {
  11153. source: "./media/characters/nomaxice/foot.svg"
  11154. }
  11155. },
  11156. },
  11157. [
  11158. {
  11159. name: "Micro",
  11160. height: math.unit(8, "cm")
  11161. },
  11162. {
  11163. name: "Norm",
  11164. height: math.unit(1.82, "m")
  11165. },
  11166. {
  11167. name: "Norm+",
  11168. height: math.unit(8.8, "feet"),
  11169. default: true
  11170. },
  11171. {
  11172. name: "Big",
  11173. height: math.unit(8, "meters")
  11174. },
  11175. {
  11176. name: "Macro",
  11177. height: math.unit(18, "meters")
  11178. },
  11179. {
  11180. name: "Macro+",
  11181. height: math.unit(88, "meters")
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11187. {
  11188. front: {
  11189. height: math.unit(12, "feet"),
  11190. weight: math.unit(1.5, "tons"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/dydros/front.svg",
  11194. extra: 863 / 800,
  11195. bottom: 0.015
  11196. }
  11197. },
  11198. back: {
  11199. height: math.unit(12, "feet"),
  11200. weight: math.unit(1.5, "tons"),
  11201. name: "Back",
  11202. image: {
  11203. source: "./media/characters/dydros/back.svg",
  11204. extra: 900 / 843,
  11205. bottom: 0.005
  11206. }
  11207. },
  11208. },
  11209. [
  11210. {
  11211. name: "Normal",
  11212. height: math.unit(12, "feet"),
  11213. default: true
  11214. },
  11215. ]
  11216. ))
  11217. characterMakers.push(() => makeCharacter(
  11218. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11219. {
  11220. front: {
  11221. height: math.unit(6, "feet"),
  11222. weight: math.unit(100, "kg"),
  11223. name: "Front",
  11224. image: {
  11225. source: "./media/characters/riggi/front.svg",
  11226. extra: 5787 / 5303
  11227. }
  11228. },
  11229. hyper: {
  11230. height: math.unit(6 * 5 / 3, "feet"),
  11231. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11232. name: "Hyper",
  11233. image: {
  11234. source: "./media/characters/riggi/hyper.svg",
  11235. extra: 3595 / 3485
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Small Macro",
  11242. height: math.unit(50, "feet")
  11243. },
  11244. {
  11245. name: "Default",
  11246. height: math.unit(200, "feet"),
  11247. default: true
  11248. },
  11249. {
  11250. name: "Loom",
  11251. height: math.unit(10000, "feet")
  11252. },
  11253. {
  11254. name: "Cruising Altitude",
  11255. height: math.unit(30000, "feet")
  11256. },
  11257. {
  11258. name: "Megamacro",
  11259. height: math.unit(100, "miles")
  11260. },
  11261. {
  11262. name: "Continent Sized",
  11263. height: math.unit(2800, "miles")
  11264. },
  11265. {
  11266. name: "Earth Sized",
  11267. height: math.unit(8000, "miles")
  11268. },
  11269. ]
  11270. ))
  11271. characterMakers.push(() => makeCharacter(
  11272. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11273. {
  11274. front: {
  11275. height: math.unit(6, "feet"),
  11276. weight: math.unit(250, "lb"),
  11277. name: "Front",
  11278. image: {
  11279. source: "./media/characters/alexi/front.svg",
  11280. extra: 3483 / 3291,
  11281. bottom: 0.04
  11282. }
  11283. },
  11284. back: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(250, "lb"),
  11287. name: "Back",
  11288. image: {
  11289. source: "./media/characters/alexi/back.svg",
  11290. extra: 3533 / 3356,
  11291. bottom: 0.021
  11292. }
  11293. },
  11294. frontTransforming: {
  11295. height: math.unit(8.58, "feet"),
  11296. weight: math.unit(1300, "lb"),
  11297. name: "Transforming",
  11298. image: {
  11299. source: "./media/characters/alexi/front-transforming.svg",
  11300. extra: 437 / 409,
  11301. bottom: 19 / 458.66
  11302. }
  11303. },
  11304. frontTransformed: {
  11305. height: math.unit(12.5, "feet"),
  11306. weight: math.unit(4000, "lb"),
  11307. name: "Transformed",
  11308. image: {
  11309. source: "./media/characters/alexi/front-transformed.svg",
  11310. extra: 639 / 614,
  11311. bottom: 30.55 / 671
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(14, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Minimacro",
  11323. height: math.unit(30, "meters")
  11324. },
  11325. {
  11326. name: "Macro",
  11327. height: math.unit(500, "meters")
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(9000, "km")
  11332. },
  11333. {
  11334. name: "Teramacro",
  11335. height: math.unit(384000, "km")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(6, "feet"),
  11344. weight: math.unit(150, "lb"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/kayroo/front.svg",
  11348. extra: 1153 / 1038,
  11349. bottom: 0.06
  11350. }
  11351. },
  11352. foot: {
  11353. height: math.unit(6, "feet"),
  11354. weight: math.unit(150, "lb"),
  11355. name: "Foot",
  11356. image: {
  11357. source: "./media/characters/kayroo/foot.svg"
  11358. }
  11359. },
  11360. },
  11361. [
  11362. {
  11363. name: "Normal",
  11364. height: math.unit(8, "feet"),
  11365. default: true
  11366. },
  11367. {
  11368. name: "Minimacro",
  11369. height: math.unit(250, "feet")
  11370. },
  11371. {
  11372. name: "Macro",
  11373. height: math.unit(2800, "feet")
  11374. },
  11375. {
  11376. name: "Megamacro",
  11377. height: math.unit(5200, "feet")
  11378. },
  11379. {
  11380. name: "Gigamacro",
  11381. height: math.unit(27000, "feet")
  11382. },
  11383. {
  11384. name: "Omega",
  11385. height: math.unit(45000, "feet")
  11386. },
  11387. ]
  11388. ))
  11389. characterMakers.push(() => makeCharacter(
  11390. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11391. {
  11392. front: {
  11393. height: math.unit(18, "feet"),
  11394. weight: math.unit(5800, "lb"),
  11395. name: "Front",
  11396. image: {
  11397. source: "./media/characters/rhys/front.svg",
  11398. extra: 3386 / 3090,
  11399. bottom: 0.07
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Normal",
  11406. height: math.unit(18, "feet"),
  11407. default: true
  11408. },
  11409. {
  11410. name: "Working Size",
  11411. height: math.unit(200, "feet")
  11412. },
  11413. {
  11414. name: "Demolition Size",
  11415. height: math.unit(2000, "feet")
  11416. },
  11417. {
  11418. name: "Maximum Licensed Size",
  11419. height: math.unit(5, "miles")
  11420. },
  11421. {
  11422. name: "Maximum Observed Size",
  11423. height: math.unit(10, "yottameters")
  11424. },
  11425. ]
  11426. ))
  11427. characterMakers.push(() => makeCharacter(
  11428. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11429. {
  11430. front: {
  11431. height: math.unit(6, "feet"),
  11432. weight: math.unit(250, "lb"),
  11433. name: "Front",
  11434. image: {
  11435. source: "./media/characters/toto/front.svg",
  11436. extra: 527 / 479,
  11437. bottom: 0.05
  11438. }
  11439. },
  11440. },
  11441. [
  11442. {
  11443. name: "Micro",
  11444. height: math.unit(3, "feet")
  11445. },
  11446. {
  11447. name: "Normal",
  11448. height: math.unit(10, "feet")
  11449. },
  11450. {
  11451. name: "Macro",
  11452. height: math.unit(150, "feet"),
  11453. default: true
  11454. },
  11455. {
  11456. name: "Megamacro",
  11457. height: math.unit(1200, "feet")
  11458. },
  11459. ]
  11460. ))
  11461. characterMakers.push(() => makeCharacter(
  11462. { name: "King", species: ["lion"], tags: ["anthro"] },
  11463. {
  11464. back: {
  11465. height: math.unit(6, "feet"),
  11466. weight: math.unit(150, "lb"),
  11467. name: "Back",
  11468. image: {
  11469. source: "./media/characters/king/back.svg"
  11470. }
  11471. },
  11472. },
  11473. [
  11474. {
  11475. name: "Micro",
  11476. height: math.unit(2, "inches")
  11477. },
  11478. {
  11479. name: "Normal",
  11480. height: math.unit(8, "feet")
  11481. },
  11482. {
  11483. name: "Macro",
  11484. height: math.unit(200, "feet"),
  11485. default: true
  11486. },
  11487. {
  11488. name: "Megamacro",
  11489. height: math.unit(50, "miles")
  11490. },
  11491. ]
  11492. ))
  11493. characterMakers.push(() => makeCharacter(
  11494. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11495. {
  11496. front: {
  11497. height: math.unit(11, "feet"),
  11498. weight: math.unit(1400, "lb"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/cordite/front.svg",
  11502. extra: 1919/1827,
  11503. bottom: 40/1959
  11504. }
  11505. },
  11506. side: {
  11507. height: math.unit(11, "feet"),
  11508. weight: math.unit(1400, "lb"),
  11509. name: "Side",
  11510. image: {
  11511. source: "./media/characters/cordite/side.svg",
  11512. extra: 1908/1793,
  11513. bottom: 38/1946
  11514. }
  11515. },
  11516. back: {
  11517. height: math.unit(11, "feet"),
  11518. weight: math.unit(1400, "lb"),
  11519. name: "Back",
  11520. image: {
  11521. source: "./media/characters/cordite/back.svg",
  11522. extra: 1938/1837,
  11523. bottom: 10/1948
  11524. }
  11525. },
  11526. feral: {
  11527. height: math.unit(2, "feet"),
  11528. weight: math.unit(90, "lb"),
  11529. name: "Feral",
  11530. image: {
  11531. source: "./media/characters/cordite/feral.svg",
  11532. extra: 1260 / 755,
  11533. bottom: 0.05
  11534. }
  11535. },
  11536. },
  11537. [
  11538. {
  11539. name: "Normal",
  11540. height: math.unit(11, "feet"),
  11541. default: true
  11542. },
  11543. ]
  11544. ))
  11545. characterMakers.push(() => makeCharacter(
  11546. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11547. {
  11548. front: {
  11549. height: math.unit(6, "feet"),
  11550. weight: math.unit(150, "lb"),
  11551. name: "Front",
  11552. image: {
  11553. source: "./media/characters/pianostrong/front.svg",
  11554. extra: 6577 / 6254,
  11555. bottom: 0.02
  11556. }
  11557. },
  11558. side: {
  11559. height: math.unit(6, "feet"),
  11560. weight: math.unit(150, "lb"),
  11561. name: "Side",
  11562. image: {
  11563. source: "./media/characters/pianostrong/side.svg",
  11564. extra: 6106 / 5730
  11565. }
  11566. },
  11567. back: {
  11568. height: math.unit(6, "feet"),
  11569. weight: math.unit(150, "lb"),
  11570. name: "Back",
  11571. image: {
  11572. source: "./media/characters/pianostrong/back.svg",
  11573. extra: 6085 / 5733,
  11574. bottom: 0.01
  11575. }
  11576. },
  11577. },
  11578. [
  11579. {
  11580. name: "Macro",
  11581. height: math.unit(100, "feet")
  11582. },
  11583. {
  11584. name: "Macro+",
  11585. height: math.unit(300, "feet"),
  11586. default: true
  11587. },
  11588. {
  11589. name: "Macro++",
  11590. height: math.unit(1000, "feet")
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11596. {
  11597. front: {
  11598. height: math.unit(6, "feet"),
  11599. weight: math.unit(150, "lb"),
  11600. name: "Front",
  11601. image: {
  11602. source: "./media/characters/kona/front.svg",
  11603. extra: 2960 / 2629,
  11604. bottom: 0.005
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(11 + 8 / 12, "feet")
  11612. },
  11613. {
  11614. name: "Macro",
  11615. height: math.unit(850, "feet"),
  11616. default: true
  11617. },
  11618. {
  11619. name: "Macro+",
  11620. height: math.unit(1.5, "km"),
  11621. default: true
  11622. },
  11623. {
  11624. name: "Megamacro",
  11625. height: math.unit(80, "miles")
  11626. },
  11627. {
  11628. name: "Gigamacro",
  11629. height: math.unit(3500, "miles")
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11635. {
  11636. side: {
  11637. height: math.unit(1.9, "meters"),
  11638. weight: math.unit(326, "kg"),
  11639. name: "Side",
  11640. image: {
  11641. source: "./media/characters/levi/side.svg",
  11642. extra: 1704 / 1334,
  11643. bottom: 0.02
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Normal",
  11650. height: math.unit(1.9, "meters"),
  11651. default: true
  11652. },
  11653. {
  11654. name: "Macro",
  11655. height: math.unit(20, "meters")
  11656. },
  11657. {
  11658. name: "Macro+",
  11659. height: math.unit(200, "meters")
  11660. },
  11661. {
  11662. name: "Megamacro",
  11663. height: math.unit(2, "km")
  11664. },
  11665. {
  11666. name: "Megamacro+",
  11667. height: math.unit(20, "km")
  11668. },
  11669. {
  11670. name: "Gigamacro",
  11671. height: math.unit(2500, "km")
  11672. },
  11673. {
  11674. name: "Gigamacro+",
  11675. height: math.unit(120000, "km")
  11676. },
  11677. {
  11678. name: "Teramacro",
  11679. height: math.unit(7.77e6, "km")
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11685. {
  11686. front: {
  11687. height: math.unit(6 + 4/12, "feet"),
  11688. weight: math.unit(190, "lb"),
  11689. name: "Front",
  11690. image: {
  11691. source: "./media/characters/bmc/front.svg",
  11692. extra: 1626/1472,
  11693. bottom: 79/1705
  11694. }
  11695. },
  11696. back: {
  11697. height: math.unit(6 + 4/12, "feet"),
  11698. weight: math.unit(190, "lb"),
  11699. name: "Back",
  11700. image: {
  11701. source: "./media/characters/bmc/back.svg",
  11702. extra: 1640/1479,
  11703. bottom: 45/1685
  11704. }
  11705. },
  11706. frontArmor: {
  11707. height: math.unit(6 + 4/12, "feet"),
  11708. weight: math.unit(190, "lb"),
  11709. name: "Front-armor",
  11710. image: {
  11711. source: "./media/characters/bmc/front-armor.svg",
  11712. extra: 1538/1468,
  11713. bottom: 79/1617
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Human-sized",
  11720. height: math.unit(6 + 4 / 12, "feet")
  11721. },
  11722. {
  11723. name: "Interactive Size",
  11724. height: math.unit(25, "feet")
  11725. },
  11726. {
  11727. name: "Small",
  11728. height: math.unit(250, "feet")
  11729. },
  11730. {
  11731. name: "Normal",
  11732. height: math.unit(1250, "feet"),
  11733. default: true
  11734. },
  11735. {
  11736. name: "Good Day",
  11737. height: math.unit(88, "miles")
  11738. },
  11739. {
  11740. name: "Largest Measured Size",
  11741. height: math.unit(105.960, "galaxies")
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11747. {
  11748. front: {
  11749. height: math.unit(20, "feet"),
  11750. weight: math.unit(2016, "kg"),
  11751. name: "Front",
  11752. image: {
  11753. source: "./media/characters/sven-the-kaiju/front.svg",
  11754. extra: 1277/1250,
  11755. bottom: 35/1312
  11756. }
  11757. },
  11758. mouth: {
  11759. height: math.unit(1.85, "feet"),
  11760. name: "Mouth",
  11761. image: {
  11762. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11763. }
  11764. },
  11765. },
  11766. [
  11767. {
  11768. name: "Fairy",
  11769. height: math.unit(6, "inches")
  11770. },
  11771. {
  11772. name: "Normal",
  11773. height: math.unit(20, "feet"),
  11774. default: true
  11775. },
  11776. {
  11777. name: "Rampage",
  11778. height: math.unit(200, "feet")
  11779. },
  11780. {
  11781. name: "Archfey Forest Guardian",
  11782. height: math.unit(1, "mile")
  11783. },
  11784. ]
  11785. ))
  11786. characterMakers.push(() => makeCharacter(
  11787. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11788. {
  11789. front: {
  11790. height: math.unit(4, "meters"),
  11791. weight: math.unit(2, "tons"),
  11792. name: "Front",
  11793. image: {
  11794. source: "./media/characters/marik/front.svg",
  11795. extra: 1057 / 1003,
  11796. bottom: 0.08
  11797. }
  11798. },
  11799. },
  11800. [
  11801. {
  11802. name: "Normal",
  11803. height: math.unit(4, "meters"),
  11804. default: true
  11805. },
  11806. {
  11807. name: "Macro",
  11808. height: math.unit(20, "meters")
  11809. },
  11810. {
  11811. name: "Megamacro",
  11812. height: math.unit(50, "km")
  11813. },
  11814. {
  11815. name: "Gigamacro",
  11816. height: math.unit(100, "km")
  11817. },
  11818. {
  11819. name: "Alpha Macro",
  11820. height: math.unit(7.88e7, "yottameters")
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11826. {
  11827. front: {
  11828. height: math.unit(6, "feet"),
  11829. weight: math.unit(110, "lb"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/mel/front.svg",
  11833. extra: 736 / 617,
  11834. bottom: 0.017
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Pico",
  11841. height: math.unit(3, "pm")
  11842. },
  11843. {
  11844. name: "Nano",
  11845. height: math.unit(3, "nm")
  11846. },
  11847. {
  11848. name: "Micro",
  11849. height: math.unit(0.3, "mm"),
  11850. default: true
  11851. },
  11852. {
  11853. name: "Micro+",
  11854. height: math.unit(3, "mm")
  11855. },
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(5 + 10.5 / 12, "feet")
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11864. {
  11865. kaiju: {
  11866. height: math.unit(1.75, "meters"),
  11867. weight: math.unit(55, "kg"),
  11868. name: "Kaiju",
  11869. image: {
  11870. source: "./media/characters/lykonous/kaiju.svg",
  11871. extra: 1055 / 946,
  11872. bottom: 0.135
  11873. }
  11874. },
  11875. },
  11876. [
  11877. {
  11878. name: "Normal",
  11879. height: math.unit(2.5, "meters"),
  11880. default: true
  11881. },
  11882. {
  11883. name: "Kaiju Dragon",
  11884. height: math.unit(60, "meters")
  11885. },
  11886. {
  11887. name: "Mega Kaiju",
  11888. height: math.unit(120, "km")
  11889. },
  11890. {
  11891. name: "Giga Kaiju",
  11892. height: math.unit(200, "megameters")
  11893. },
  11894. {
  11895. name: "Terra Kaiju",
  11896. height: math.unit(400, "gigameters")
  11897. },
  11898. {
  11899. name: "Kaiju Dragon God",
  11900. height: math.unit(13000, "exaparsecs")
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11906. {
  11907. front: {
  11908. height: math.unit(6, "feet"),
  11909. weight: math.unit(150, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/blü/front.svg",
  11913. extra: 1883 / 1564,
  11914. bottom: 0.031
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Normal",
  11921. height: math.unit(13, "feet"),
  11922. default: true
  11923. },
  11924. {
  11925. name: "Big Boi",
  11926. height: math.unit(150, "meters")
  11927. },
  11928. {
  11929. name: "Mini Stomper",
  11930. height: math.unit(300, "meters")
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(1000, "meters")
  11935. },
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(11000, "meters")
  11939. },
  11940. {
  11941. name: "Gigamacro",
  11942. height: math.unit(11000, "km")
  11943. },
  11944. {
  11945. name: "Teramacro",
  11946. height: math.unit(420000, "km")
  11947. },
  11948. {
  11949. name: "Examacro",
  11950. height: math.unit(120, "parsecs")
  11951. },
  11952. {
  11953. name: "God Tho",
  11954. height: math.unit(98000000000, "parsecs")
  11955. },
  11956. ]
  11957. ))
  11958. characterMakers.push(() => makeCharacter(
  11959. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11960. {
  11961. taurFront: {
  11962. height: math.unit(6, "feet"),
  11963. weight: math.unit(200, "lb"),
  11964. name: "Taur (Front)",
  11965. image: {
  11966. source: "./media/characters/scales/taur-front.svg",
  11967. extra: 1,
  11968. bottom: 0.05
  11969. }
  11970. },
  11971. taurBack: {
  11972. height: math.unit(6, "feet"),
  11973. weight: math.unit(200, "lb"),
  11974. name: "Taur (Back)",
  11975. image: {
  11976. source: "./media/characters/scales/taur-back.svg",
  11977. extra: 1,
  11978. bottom: 0.08
  11979. }
  11980. },
  11981. anthro: {
  11982. height: math.unit(6 * 7 / 12, "feet"),
  11983. weight: math.unit(100, "lb"),
  11984. name: "Anthro",
  11985. image: {
  11986. source: "./media/characters/scales/anthro.svg",
  11987. extra: 1,
  11988. bottom: 0.06
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Normal",
  11995. height: math.unit(12, "feet"),
  11996. default: true
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12002. {
  12003. front: {
  12004. height: math.unit(6, "feet"),
  12005. weight: math.unit(150, "lb"),
  12006. name: "Front",
  12007. image: {
  12008. source: "./media/characters/koragos/front.svg",
  12009. extra: 841 / 794,
  12010. bottom: 0.035
  12011. }
  12012. },
  12013. back: {
  12014. height: math.unit(6, "feet"),
  12015. weight: math.unit(150, "lb"),
  12016. name: "Back",
  12017. image: {
  12018. source: "./media/characters/koragos/back.svg",
  12019. extra: 841 / 810,
  12020. bottom: 0.022
  12021. }
  12022. },
  12023. },
  12024. [
  12025. {
  12026. name: "Normal",
  12027. height: math.unit(6 + 11 / 12, "feet"),
  12028. default: true
  12029. },
  12030. {
  12031. name: "Macro",
  12032. height: math.unit(490, "feet")
  12033. },
  12034. {
  12035. name: "Megamacro",
  12036. height: math.unit(10, "miles")
  12037. },
  12038. {
  12039. name: "Gigamacro",
  12040. height: math.unit(50, "miles")
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(6, "feet"),
  12049. weight: math.unit(250, "lb"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/xylrem/front.svg",
  12053. extra: 3323 / 3050,
  12054. bottom: 0.065
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Micro",
  12061. height: math.unit(4, "feet")
  12062. },
  12063. {
  12064. name: "Normal",
  12065. height: math.unit(16, "feet"),
  12066. default: true
  12067. },
  12068. {
  12069. name: "Macro",
  12070. height: math.unit(2720, "feet")
  12071. },
  12072. {
  12073. name: "Megamacro",
  12074. height: math.unit(25000, "miles")
  12075. },
  12076. ]
  12077. ))
  12078. characterMakers.push(() => makeCharacter(
  12079. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12080. {
  12081. front: {
  12082. height: math.unit(8, "feet"),
  12083. weight: math.unit(250, "kg"),
  12084. name: "Front",
  12085. image: {
  12086. source: "./media/characters/ikideru/front.svg",
  12087. extra: 930 / 870,
  12088. bottom: 0.087
  12089. }
  12090. },
  12091. back: {
  12092. height: math.unit(8, "feet"),
  12093. weight: math.unit(250, "kg"),
  12094. name: "Back",
  12095. image: {
  12096. source: "./media/characters/ikideru/back.svg",
  12097. extra: 919 / 852,
  12098. bottom: 0.055
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Rare",
  12105. height: math.unit(8, "feet"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Playful Loom",
  12110. height: math.unit(80, "feet")
  12111. },
  12112. {
  12113. name: "City Leaner",
  12114. height: math.unit(230, "feet")
  12115. },
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(2500, "feet")
  12119. },
  12120. {
  12121. name: "Gigamacro",
  12122. height: math.unit(26400, "feet")
  12123. },
  12124. {
  12125. name: "Tectonic Shifter",
  12126. height: math.unit(1.7, "megameters")
  12127. },
  12128. {
  12129. name: "Planet Carer",
  12130. height: math.unit(21, "megameters")
  12131. },
  12132. {
  12133. name: "God",
  12134. height: math.unit(11157.22, "parsecs")
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(6, "feet"),
  12143. weight: math.unit(120, "lb"),
  12144. name: "Front",
  12145. image: {
  12146. source: "./media/characters/neo/front.svg"
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Micro",
  12153. height: math.unit(2, "inches"),
  12154. default: true
  12155. },
  12156. {
  12157. name: "Human Size",
  12158. height: math.unit(5 + 8 / 12, "feet")
  12159. },
  12160. ]
  12161. ))
  12162. characterMakers.push(() => makeCharacter(
  12163. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12164. {
  12165. front: {
  12166. height: math.unit(13 + 10 / 12, "feet"),
  12167. weight: math.unit(5320, "lb"),
  12168. name: "Front",
  12169. image: {
  12170. source: "./media/characters/chauncey-chantz/front.svg",
  12171. extra: 1587 / 1435,
  12172. bottom: 0.02
  12173. }
  12174. },
  12175. },
  12176. [
  12177. {
  12178. name: "Normal",
  12179. height: math.unit(13 + 10 / 12, "feet"),
  12180. default: true
  12181. },
  12182. {
  12183. name: "Macro",
  12184. height: math.unit(45, "feet")
  12185. },
  12186. {
  12187. name: "Megamacro",
  12188. height: math.unit(250, "miles")
  12189. },
  12190. {
  12191. name: "Planetary",
  12192. height: math.unit(10000, "miles")
  12193. },
  12194. {
  12195. name: "Galactic",
  12196. height: math.unit(40000, "parsecs")
  12197. },
  12198. {
  12199. name: "Universal",
  12200. height: math.unit(1, "yottameter")
  12201. },
  12202. ]
  12203. ))
  12204. characterMakers.push(() => makeCharacter(
  12205. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12206. {
  12207. front: {
  12208. height: math.unit(6, "feet"),
  12209. weight: math.unit(150, "lb"),
  12210. name: "Front",
  12211. image: {
  12212. source: "./media/characters/epifox/front.svg",
  12213. extra: 1,
  12214. bottom: 0.075
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Micro",
  12221. height: math.unit(6, "inches")
  12222. },
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(12, "feet"),
  12226. default: true
  12227. },
  12228. {
  12229. name: "Macro",
  12230. height: math.unit(3810, "feet")
  12231. },
  12232. {
  12233. name: "Megamacro",
  12234. height: math.unit(500, "miles")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(1.8796, "m"),
  12243. weight: math.unit(230, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/colin-t/front.svg",
  12247. extra: 1272 / 1193,
  12248. bottom: 0.07
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Micro",
  12255. height: math.unit(0.571, "meters")
  12256. },
  12257. {
  12258. name: "Normal",
  12259. height: math.unit(1.8796, "meters"),
  12260. default: true
  12261. },
  12262. {
  12263. name: "Tall",
  12264. height: math.unit(4, "meters")
  12265. },
  12266. {
  12267. name: "Macro",
  12268. height: math.unit(67.241, "meters")
  12269. },
  12270. {
  12271. name: "Megamacro",
  12272. height: math.unit(371.856, "meters")
  12273. },
  12274. {
  12275. name: "Planetary",
  12276. height: math.unit(12631.5689, "km")
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12282. {
  12283. front: {
  12284. height: math.unit(1.85, "meters"),
  12285. weight: math.unit(80, "kg"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/matvei/front.svg",
  12289. extra: 614 / 594,
  12290. bottom: 0.01
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Normal",
  12297. height: math.unit(1.85, "meters"),
  12298. default: true
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(5 + 9 / 12, "feet"),
  12307. weight: math.unit(70, "lb"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/quincy/front.svg",
  12311. extra: 3041 / 2751
  12312. }
  12313. },
  12314. back: {
  12315. height: math.unit(5 + 9 / 12, "feet"),
  12316. weight: math.unit(70, "lb"),
  12317. name: "Back",
  12318. image: {
  12319. source: "./media/characters/quincy/back.svg",
  12320. extra: 3041 / 2751
  12321. }
  12322. },
  12323. flying: {
  12324. height: math.unit(5 + 4 / 12, "feet"),
  12325. weight: math.unit(70, "lb"),
  12326. name: "Flying",
  12327. image: {
  12328. source: "./media/characters/quincy/flying.svg",
  12329. extra: 1044 / 930
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Micro",
  12336. height: math.unit(3, "cm")
  12337. },
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(5 + 9 / 12, "feet")
  12341. },
  12342. {
  12343. name: "Macro",
  12344. height: math.unit(200, "meters"),
  12345. default: true
  12346. },
  12347. {
  12348. name: "Megamacro",
  12349. height: math.unit(1000, "meters")
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12355. {
  12356. front: {
  12357. height: math.unit(3 + 11/12, "feet"),
  12358. weight: math.unit(50, "lb"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/vanrel/front.svg",
  12362. extra: 1104/949,
  12363. bottom: 52/1156
  12364. }
  12365. },
  12366. back: {
  12367. height: math.unit(3 + 11/12, "feet"),
  12368. weight: math.unit(50, "lb"),
  12369. name: "Back",
  12370. image: {
  12371. source: "./media/characters/vanrel/back.svg",
  12372. extra: 1119/976,
  12373. bottom: 37/1156
  12374. }
  12375. },
  12376. tome: {
  12377. height: math.unit(1.35, "feet"),
  12378. weight: math.unit(10, "lb"),
  12379. name: "Vanrel's Tome",
  12380. rename: true,
  12381. image: {
  12382. source: "./media/characters/vanrel/tome.svg"
  12383. }
  12384. },
  12385. beans: {
  12386. height: math.unit(0.89, "feet"),
  12387. name: "Beans",
  12388. image: {
  12389. source: "./media/characters/vanrel/beans.svg"
  12390. }
  12391. },
  12392. },
  12393. [
  12394. {
  12395. name: "Normal",
  12396. height: math.unit(3 + 11/12, "feet"),
  12397. default: true
  12398. },
  12399. ]
  12400. ))
  12401. characterMakers.push(() => makeCharacter(
  12402. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12403. {
  12404. front: {
  12405. height: math.unit(7 + 5 / 12, "feet"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/kuiper-vanrel/front.svg",
  12409. extra: 1219/1169,
  12410. bottom: 69/1288
  12411. }
  12412. },
  12413. back: {
  12414. height: math.unit(7 + 5 / 12, "feet"),
  12415. name: "Back",
  12416. image: {
  12417. source: "./media/characters/kuiper-vanrel/back.svg",
  12418. extra: 1236/1193,
  12419. bottom: 27/1263
  12420. }
  12421. },
  12422. foot: {
  12423. height: math.unit(0.55, "meters"),
  12424. name: "Foot",
  12425. image: {
  12426. source: "./media/characters/kuiper-vanrel/foot.svg",
  12427. }
  12428. },
  12429. battle: {
  12430. height: math.unit(6.824, "feet"),
  12431. name: "Battle",
  12432. image: {
  12433. source: "./media/characters/kuiper-vanrel/battle.svg",
  12434. extra: 1466 / 1327,
  12435. bottom: 29 / 1492.5
  12436. }
  12437. },
  12438. meerkui: {
  12439. height: math.unit(18, "inches"),
  12440. name: "Meerkui",
  12441. image: {
  12442. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12443. extra: 1354/1289,
  12444. bottom: 69/1423
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Normal",
  12451. height: math.unit(7 + 5 / 12, "feet"),
  12452. default: true
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(8 + 5 / 12, "feet"),
  12461. name: "Front",
  12462. image: {
  12463. source: "./media/characters/keset-vanrel/front.svg",
  12464. extra: 1231/1148,
  12465. bottom: 82/1313
  12466. }
  12467. },
  12468. back: {
  12469. height: math.unit(8 + 5 / 12, "feet"),
  12470. name: "Back",
  12471. image: {
  12472. source: "./media/characters/keset-vanrel/back.svg",
  12473. extra: 1240/1174,
  12474. bottom: 33/1273
  12475. }
  12476. },
  12477. hand: {
  12478. height: math.unit(0.6, "meters"),
  12479. name: "Hand",
  12480. image: {
  12481. source: "./media/characters/keset-vanrel/hand.svg"
  12482. }
  12483. },
  12484. foot: {
  12485. height: math.unit(0.94978, "meters"),
  12486. name: "Foot",
  12487. image: {
  12488. source: "./media/characters/keset-vanrel/foot.svg"
  12489. }
  12490. },
  12491. battle: {
  12492. height: math.unit(7.408, "feet"),
  12493. name: "Battle",
  12494. image: {
  12495. source: "./media/characters/keset-vanrel/battle.svg",
  12496. extra: 1890 / 1386,
  12497. bottom: 73.28 / 1970
  12498. }
  12499. },
  12500. },
  12501. [
  12502. {
  12503. name: "Normal",
  12504. height: math.unit(8 + 5 / 12, "feet"),
  12505. default: true
  12506. },
  12507. ]
  12508. ))
  12509. characterMakers.push(() => makeCharacter(
  12510. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12511. {
  12512. front: {
  12513. height: math.unit(6, "feet"),
  12514. weight: math.unit(150, "lb"),
  12515. name: "Front",
  12516. image: {
  12517. source: "./media/characters/neos/front.svg",
  12518. extra: 1696 / 992,
  12519. bottom: 0.14
  12520. }
  12521. },
  12522. },
  12523. [
  12524. {
  12525. name: "Normal",
  12526. height: math.unit(54, "cm"),
  12527. default: true
  12528. },
  12529. {
  12530. name: "Macro",
  12531. height: math.unit(100, "m")
  12532. },
  12533. {
  12534. name: "Megamacro",
  12535. height: math.unit(10, "km")
  12536. },
  12537. {
  12538. name: "Megamacro+",
  12539. height: math.unit(100, "km")
  12540. },
  12541. {
  12542. name: "Gigamacro",
  12543. height: math.unit(100, "Mm")
  12544. },
  12545. {
  12546. name: "Teramacro",
  12547. height: math.unit(100, "Gm")
  12548. },
  12549. {
  12550. name: "Examacro",
  12551. height: math.unit(100, "Em")
  12552. },
  12553. {
  12554. name: "Godly",
  12555. height: math.unit(10000, "Ym")
  12556. },
  12557. {
  12558. name: "Beyond Godly",
  12559. height: math.unit(25, "multiverses")
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12565. {
  12566. feminine: {
  12567. height: math.unit(5, "feet"),
  12568. weight: math.unit(100, "lb"),
  12569. name: "Feminine",
  12570. image: {
  12571. source: "./media/characters/sammy-mouse/feminine.svg",
  12572. extra: 2526 / 2425,
  12573. bottom: 0.123
  12574. }
  12575. },
  12576. masculine: {
  12577. height: math.unit(5, "feet"),
  12578. weight: math.unit(100, "lb"),
  12579. name: "Masculine",
  12580. image: {
  12581. source: "./media/characters/sammy-mouse/masculine.svg",
  12582. extra: 2526 / 2425,
  12583. bottom: 0.123
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Micro",
  12590. height: math.unit(5, "inches")
  12591. },
  12592. {
  12593. name: "Normal",
  12594. height: math.unit(5, "feet"),
  12595. default: true
  12596. },
  12597. {
  12598. name: "Macro",
  12599. height: math.unit(60, "feet")
  12600. },
  12601. ]
  12602. ))
  12603. characterMakers.push(() => makeCharacter(
  12604. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12605. {
  12606. front: {
  12607. height: math.unit(4, "feet"),
  12608. weight: math.unit(50, "lb"),
  12609. name: "Front",
  12610. image: {
  12611. source: "./media/characters/kole/front.svg",
  12612. extra: 1423 / 1303,
  12613. bottom: 0.025
  12614. }
  12615. },
  12616. back: {
  12617. height: math.unit(4, "feet"),
  12618. weight: math.unit(50, "lb"),
  12619. name: "Back",
  12620. image: {
  12621. source: "./media/characters/kole/back.svg",
  12622. extra: 1426 / 1280,
  12623. bottom: 0.02
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(4, "feet"),
  12631. default: true
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(2.5, "feet"),
  12640. weight: math.unit(32, "lb"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/rufran/front.svg",
  12644. extra: 1313/885,
  12645. bottom: 94/1407
  12646. }
  12647. },
  12648. side: {
  12649. height: math.unit(2.5, "feet"),
  12650. weight: math.unit(32, "lb"),
  12651. name: "Side",
  12652. image: {
  12653. source: "./media/characters/rufran/side.svg",
  12654. extra: 1109/852,
  12655. bottom: 118/1227
  12656. }
  12657. },
  12658. back: {
  12659. height: math.unit(2.5, "feet"),
  12660. weight: math.unit(32, "lb"),
  12661. name: "Back",
  12662. image: {
  12663. source: "./media/characters/rufran/back.svg",
  12664. extra: 1280/878,
  12665. bottom: 131/1411
  12666. }
  12667. },
  12668. mouth: {
  12669. height: math.unit(1.13, "feet"),
  12670. name: "Mouth",
  12671. image: {
  12672. source: "./media/characters/rufran/mouth.svg"
  12673. }
  12674. },
  12675. foot: {
  12676. height: math.unit(1.33, "feet"),
  12677. name: "Foot",
  12678. image: {
  12679. source: "./media/characters/rufran/foot.svg"
  12680. }
  12681. },
  12682. koboldFront: {
  12683. height: math.unit(2 + 6 / 12, "feet"),
  12684. weight: math.unit(20, "lb"),
  12685. name: "Front (Kobold)",
  12686. image: {
  12687. source: "./media/characters/rufran/kobold-front.svg",
  12688. extra: 2041 / 1839,
  12689. bottom: 0.055
  12690. }
  12691. },
  12692. koboldBack: {
  12693. height: math.unit(2 + 6 / 12, "feet"),
  12694. weight: math.unit(20, "lb"),
  12695. name: "Back (Kobold)",
  12696. image: {
  12697. source: "./media/characters/rufran/kobold-back.svg",
  12698. extra: 2054 / 1839,
  12699. bottom: 0.01
  12700. }
  12701. },
  12702. koboldHand: {
  12703. height: math.unit(0.2166, "meters"),
  12704. name: "Hand (Kobold)",
  12705. image: {
  12706. source: "./media/characters/rufran/kobold-hand.svg"
  12707. }
  12708. },
  12709. koboldFoot: {
  12710. height: math.unit(0.185, "meters"),
  12711. name: "Foot (Kobold)",
  12712. image: {
  12713. source: "./media/characters/rufran/kobold-foot.svg"
  12714. }
  12715. },
  12716. },
  12717. [
  12718. {
  12719. name: "Micro",
  12720. height: math.unit(1, "inch")
  12721. },
  12722. {
  12723. name: "Normal",
  12724. height: math.unit(2 + 6 / 12, "feet"),
  12725. default: true
  12726. },
  12727. {
  12728. name: "Big",
  12729. height: math.unit(60, "feet")
  12730. },
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(325, "feet")
  12734. },
  12735. ]
  12736. ))
  12737. characterMakers.push(() => makeCharacter(
  12738. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12739. {
  12740. front: {
  12741. height: math.unit(0.3, "meters"),
  12742. weight: math.unit(3.5, "kg"),
  12743. name: "Front",
  12744. image: {
  12745. source: "./media/characters/chip/front.svg",
  12746. extra: 748 / 674
  12747. }
  12748. },
  12749. },
  12750. [
  12751. {
  12752. name: "Micro",
  12753. height: math.unit(1, "inch"),
  12754. default: true
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12760. {
  12761. side: {
  12762. height: math.unit(2.3, "meters"),
  12763. weight: math.unit(3500, "lb"),
  12764. name: "Side",
  12765. image: {
  12766. source: "./media/characters/torvid/side.svg",
  12767. extra: 1972 / 722,
  12768. bottom: 0.035
  12769. }
  12770. },
  12771. },
  12772. [
  12773. {
  12774. name: "Normal",
  12775. height: math.unit(2.3, "meters"),
  12776. default: true
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(2, "meters"),
  12785. weight: math.unit(150.5, "kg"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/susan/front.svg",
  12789. extra: 693 / 635,
  12790. bottom: 0.05
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Megamacro",
  12797. height: math.unit(505, "miles"),
  12798. default: true
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12804. {
  12805. front: {
  12806. height: math.unit(6, "feet"),
  12807. weight: math.unit(150, "lb"),
  12808. name: "Front",
  12809. image: {
  12810. source: "./media/characters/raindrops/front.svg",
  12811. extra: 2655 / 2461,
  12812. bottom: 49 / 2705
  12813. }
  12814. },
  12815. back: {
  12816. height: math.unit(6, "feet"),
  12817. weight: math.unit(150, "lb"),
  12818. name: "Back",
  12819. image: {
  12820. source: "./media/characters/raindrops/back.svg",
  12821. extra: 2574 / 2400,
  12822. bottom: 65 / 2634
  12823. }
  12824. },
  12825. },
  12826. [
  12827. {
  12828. name: "Micro",
  12829. height: math.unit(6, "inches")
  12830. },
  12831. {
  12832. name: "Normal",
  12833. height: math.unit(6 + 2 / 12, "feet")
  12834. },
  12835. {
  12836. name: "Macro",
  12837. height: math.unit(131, "feet"),
  12838. default: true
  12839. },
  12840. {
  12841. name: "Megamacro",
  12842. height: math.unit(15, "miles")
  12843. },
  12844. {
  12845. name: "Gigamacro",
  12846. height: math.unit(4000, "miles")
  12847. },
  12848. {
  12849. name: "Teramacro",
  12850. height: math.unit(315000, "miles")
  12851. },
  12852. ]
  12853. ))
  12854. characterMakers.push(() => makeCharacter(
  12855. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12856. {
  12857. front: {
  12858. height: math.unit(2.794, "meters"),
  12859. weight: math.unit(325, "kg"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/tezwa/front.svg",
  12863. extra: 2083 / 1906,
  12864. bottom: 0.031
  12865. }
  12866. },
  12867. foot: {
  12868. height: math.unit(0.687, "meters"),
  12869. name: "Foot",
  12870. image: {
  12871. source: "./media/characters/tezwa/foot.svg"
  12872. }
  12873. },
  12874. },
  12875. [
  12876. {
  12877. name: "Normal",
  12878. height: math.unit(9 + 2 / 12, "feet"),
  12879. default: true
  12880. },
  12881. ]
  12882. ))
  12883. characterMakers.push(() => makeCharacter(
  12884. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12885. {
  12886. front: {
  12887. height: math.unit(58, "feet"),
  12888. weight: math.unit(89000, "lb"),
  12889. name: "Front",
  12890. image: {
  12891. source: "./media/characters/typhus/front.svg",
  12892. extra: 816 / 800,
  12893. bottom: 0.065
  12894. }
  12895. },
  12896. },
  12897. [
  12898. {
  12899. name: "Macro",
  12900. height: math.unit(58, "feet"),
  12901. default: true
  12902. },
  12903. ]
  12904. ))
  12905. characterMakers.push(() => makeCharacter(
  12906. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12907. {
  12908. front: {
  12909. height: math.unit(12, "feet"),
  12910. weight: math.unit(6, "tonnes"),
  12911. name: "Front",
  12912. image: {
  12913. source: "./media/characters/lyra-von-wulf/front.svg",
  12914. extra: 1,
  12915. bottom: 0.10
  12916. }
  12917. },
  12918. frontMecha: {
  12919. height: math.unit(12, "feet"),
  12920. weight: math.unit(12, "tonnes"),
  12921. name: "Front (Mecha)",
  12922. image: {
  12923. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12924. extra: 1,
  12925. bottom: 0.042
  12926. }
  12927. },
  12928. maw: {
  12929. height: math.unit(2.2, "feet"),
  12930. name: "Maw",
  12931. image: {
  12932. source: "./media/characters/lyra-von-wulf/maw.svg"
  12933. }
  12934. },
  12935. },
  12936. [
  12937. {
  12938. name: "Normal",
  12939. height: math.unit(12, "feet"),
  12940. default: true
  12941. },
  12942. {
  12943. name: "Classic",
  12944. height: math.unit(50, "feet")
  12945. },
  12946. {
  12947. name: "Macro",
  12948. height: math.unit(500, "feet")
  12949. },
  12950. {
  12951. name: "Megamacro",
  12952. height: math.unit(1, "mile")
  12953. },
  12954. {
  12955. name: "Gigamacro",
  12956. height: math.unit(400, "miles")
  12957. },
  12958. {
  12959. name: "Teramacro",
  12960. height: math.unit(22000, "miles")
  12961. },
  12962. {
  12963. name: "Solarmacro",
  12964. height: math.unit(8600000, "miles")
  12965. },
  12966. {
  12967. name: "Galactic",
  12968. height: math.unit(1057000, "lightyears")
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12974. {
  12975. front: {
  12976. height: math.unit(6 + 10 / 12, "feet"),
  12977. weight: math.unit(150, "lb"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/dixon/front.svg",
  12981. extra: 3361 / 3209,
  12982. bottom: 0.01
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(6 + 10 / 12, "feet"),
  12990. default: true
  12991. },
  12992. {
  12993. name: "Big",
  12994. height: math.unit(12, "meters")
  12995. },
  12996. {
  12997. name: "Macro",
  12998. height: math.unit(500, "meters")
  12999. },
  13000. {
  13001. name: "Megamacro",
  13002. height: math.unit(2, "km")
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13008. {
  13009. front: {
  13010. height: math.unit(185, "cm"),
  13011. weight: math.unit(68, "kg"),
  13012. name: "Front",
  13013. image: {
  13014. source: "./media/characters/kauko/front.svg",
  13015. extra: 1455 / 1421,
  13016. bottom: 0.03
  13017. }
  13018. },
  13019. back: {
  13020. height: math.unit(185, "cm"),
  13021. weight: math.unit(68, "kg"),
  13022. name: "Back",
  13023. image: {
  13024. source: "./media/characters/kauko/back.svg",
  13025. extra: 1455 / 1421,
  13026. bottom: 0.004
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Normal",
  13033. height: math.unit(185, "cm"),
  13034. default: true
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13040. {
  13041. front: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(150, "kg"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/varg/front.svg",
  13047. extra: 1108 / 1018,
  13048. bottom: 0.0375
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(5, "meters")
  13056. },
  13057. {
  13058. name: "Macro",
  13059. height: math.unit(200, "meters")
  13060. },
  13061. {
  13062. name: "Megamacro",
  13063. height: math.unit(20, "kilometers")
  13064. },
  13065. {
  13066. name: "True Size",
  13067. height: math.unit(211, "km"),
  13068. default: true
  13069. },
  13070. {
  13071. name: "Gigamacro",
  13072. height: math.unit(1000, "km")
  13073. },
  13074. {
  13075. name: "Gigamacro+",
  13076. height: math.unit(8000, "km")
  13077. },
  13078. {
  13079. name: "Teramacro",
  13080. height: math.unit(1000000, "km")
  13081. },
  13082. ]
  13083. ))
  13084. characterMakers.push(() => makeCharacter(
  13085. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13086. {
  13087. front: {
  13088. height: math.unit(7 + 7 / 12, "feet"),
  13089. weight: math.unit(267, "lb"),
  13090. name: "Front",
  13091. image: {
  13092. source: "./media/characters/dayza/front.svg",
  13093. extra: 1262 / 1200,
  13094. bottom: 0.035
  13095. }
  13096. },
  13097. side: {
  13098. height: math.unit(7 + 7 / 12, "feet"),
  13099. weight: math.unit(267, "lb"),
  13100. name: "Side",
  13101. image: {
  13102. source: "./media/characters/dayza/side.svg",
  13103. extra: 1295 / 1245,
  13104. bottom: 0.05
  13105. }
  13106. },
  13107. back: {
  13108. height: math.unit(7 + 7 / 12, "feet"),
  13109. weight: math.unit(267, "lb"),
  13110. name: "Back",
  13111. image: {
  13112. source: "./media/characters/dayza/back.svg",
  13113. extra: 1241 / 1170
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Normal",
  13120. height: math.unit(7 + 7 / 12, "feet"),
  13121. default: true
  13122. },
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(155, "feet")
  13126. },
  13127. ]
  13128. ))
  13129. characterMakers.push(() => makeCharacter(
  13130. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13131. {
  13132. front: {
  13133. height: math.unit(6 + 5 / 12, "feet"),
  13134. weight: math.unit(160, "lb"),
  13135. name: "Front",
  13136. image: {
  13137. source: "./media/characters/xanthos/front.svg",
  13138. extra: 1,
  13139. bottom: 0.04
  13140. }
  13141. },
  13142. back: {
  13143. height: math.unit(6 + 5 / 12, "feet"),
  13144. weight: math.unit(160, "lb"),
  13145. name: "Back",
  13146. image: {
  13147. source: "./media/characters/xanthos/back.svg",
  13148. extra: 1,
  13149. bottom: 0.03
  13150. }
  13151. },
  13152. hand: {
  13153. height: math.unit(0.928, "feet"),
  13154. name: "Hand",
  13155. image: {
  13156. source: "./media/characters/xanthos/hand.svg"
  13157. }
  13158. },
  13159. foot: {
  13160. height: math.unit(1.286, "feet"),
  13161. name: "Foot",
  13162. image: {
  13163. source: "./media/characters/xanthos/foot.svg"
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(6 + 5 / 12, "feet"),
  13171. default: true
  13172. },
  13173. {
  13174. name: "Normal+",
  13175. height: math.unit(6, "meters")
  13176. },
  13177. {
  13178. name: "Macro",
  13179. height: math.unit(40, "feet")
  13180. },
  13181. {
  13182. name: "Macro+",
  13183. height: math.unit(200, "meters")
  13184. },
  13185. {
  13186. name: "Megamacro",
  13187. height: math.unit(20, "km")
  13188. },
  13189. {
  13190. name: "Megamacro+",
  13191. height: math.unit(100, "km")
  13192. },
  13193. {
  13194. name: "Gigamacro",
  13195. height: math.unit(200, "megameters")
  13196. },
  13197. {
  13198. name: "Gigamacro+",
  13199. height: math.unit(1.5, "gigameters")
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(6 + 3 / 12, "feet"),
  13208. weight: math.unit(215, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/grynn/front.svg",
  13212. extra: 4627 / 4209,
  13213. bottom: 0.047
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Micro",
  13220. height: math.unit(6, "inches")
  13221. },
  13222. {
  13223. name: "Normal",
  13224. height: math.unit(6 + 3 / 12, "feet"),
  13225. default: true
  13226. },
  13227. {
  13228. name: "Big",
  13229. height: math.unit(104, "feet")
  13230. },
  13231. {
  13232. name: "Macro",
  13233. height: math.unit(944, "feet")
  13234. },
  13235. {
  13236. name: "Macro+",
  13237. height: math.unit(9480, "feet")
  13238. },
  13239. {
  13240. name: "Megamacro",
  13241. height: math.unit(78752, "feet")
  13242. },
  13243. {
  13244. name: "Megamacro+",
  13245. height: math.unit(630128, "feet")
  13246. },
  13247. {
  13248. name: "Megamacro++",
  13249. height: math.unit(3150695, "feet")
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13255. {
  13256. front: {
  13257. height: math.unit(7 + 5 / 12, "feet"),
  13258. weight: math.unit(450, "lb"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/mocha-aura/front.svg",
  13262. extra: 1907 / 1817,
  13263. bottom: 0.04
  13264. }
  13265. },
  13266. back: {
  13267. height: math.unit(7 + 5 / 12, "feet"),
  13268. weight: math.unit(450, "lb"),
  13269. name: "Back",
  13270. image: {
  13271. source: "./media/characters/mocha-aura/back.svg",
  13272. extra: 1900 / 1825,
  13273. bottom: 0.045
  13274. }
  13275. },
  13276. },
  13277. [
  13278. {
  13279. name: "Nano",
  13280. height: math.unit(1, "nm")
  13281. },
  13282. {
  13283. name: "Megamicro",
  13284. height: math.unit(1, "mm")
  13285. },
  13286. {
  13287. name: "Micro",
  13288. height: math.unit(3, "inches")
  13289. },
  13290. {
  13291. name: "Normal",
  13292. height: math.unit(7 + 5 / 12, "feet"),
  13293. default: true
  13294. },
  13295. {
  13296. name: "Macro",
  13297. height: math.unit(30, "feet")
  13298. },
  13299. {
  13300. name: "Megamacro",
  13301. height: math.unit(3500, "feet")
  13302. },
  13303. {
  13304. name: "Teramacro",
  13305. height: math.unit(500000, "miles")
  13306. },
  13307. {
  13308. name: "Petamacro",
  13309. height: math.unit(50000000000000000, "parsecs")
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(6, "feet"),
  13318. weight: math.unit(150, "lb"),
  13319. name: "Front",
  13320. image: {
  13321. source: "./media/characters/ilisha-devya/front.svg",
  13322. extra: 1053/1049,
  13323. bottom: 270/1323
  13324. }
  13325. },
  13326. back: {
  13327. height: math.unit(6, "feet"),
  13328. weight: math.unit(150, "lb"),
  13329. name: "Back",
  13330. image: {
  13331. source: "./media/characters/ilisha-devya/back.svg",
  13332. extra: 1131/1128,
  13333. bottom: 39/1170
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Macro",
  13340. height: math.unit(500, "feet"),
  13341. default: true
  13342. },
  13343. {
  13344. name: "Megamacro",
  13345. height: math.unit(10, "miles")
  13346. },
  13347. {
  13348. name: "Gigamacro",
  13349. height: math.unit(100000, "miles")
  13350. },
  13351. {
  13352. name: "Examacro",
  13353. height: math.unit(1e9, "lightyears")
  13354. },
  13355. {
  13356. name: "Omniversal",
  13357. height: math.unit(1e33, "lightyears")
  13358. },
  13359. {
  13360. name: "Beyond Infinite",
  13361. height: math.unit(1e100, "lightyears")
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13367. {
  13368. Side: {
  13369. height: math.unit(6, "feet"),
  13370. weight: math.unit(150, "lb"),
  13371. name: "Side",
  13372. image: {
  13373. source: "./media/characters/mira/side.svg",
  13374. extra: 900 / 799,
  13375. bottom: 0.02
  13376. }
  13377. },
  13378. },
  13379. [
  13380. {
  13381. name: "Human Size",
  13382. height: math.unit(6, "feet")
  13383. },
  13384. {
  13385. name: "Macro",
  13386. height: math.unit(100, "feet"),
  13387. default: true
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(10, "miles")
  13392. },
  13393. {
  13394. name: "Gigamacro",
  13395. height: math.unit(25000, "miles")
  13396. },
  13397. {
  13398. name: "Teramacro",
  13399. height: math.unit(300, "AU")
  13400. },
  13401. {
  13402. name: "Full Size",
  13403. height: math.unit(4.5e10, "lightyears")
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13409. {
  13410. front: {
  13411. height: math.unit(6, "feet"),
  13412. weight: math.unit(150, "lb"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/holly/front.svg",
  13416. extra: 639 / 606
  13417. }
  13418. },
  13419. back: {
  13420. height: math.unit(6, "feet"),
  13421. weight: math.unit(150, "lb"),
  13422. name: "Back",
  13423. image: {
  13424. source: "./media/characters/holly/back.svg",
  13425. extra: 623 / 598
  13426. }
  13427. },
  13428. frontWorking: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(150, "lb"),
  13431. name: "Front (Working)",
  13432. image: {
  13433. source: "./media/characters/holly/front-working.svg",
  13434. extra: 607 / 577,
  13435. bottom: 0.048
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Normal",
  13442. height: math.unit(12 + 3 / 12, "feet"),
  13443. default: true
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13449. {
  13450. front: {
  13451. height: math.unit(6, "feet"),
  13452. weight: math.unit(150, "lb"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/porter/front.svg",
  13456. extra: 1,
  13457. bottom: 0.01
  13458. }
  13459. },
  13460. frontRobes: {
  13461. height: math.unit(6, "feet"),
  13462. weight: math.unit(150, "lb"),
  13463. name: "Front (Robes)",
  13464. image: {
  13465. source: "./media/characters/porter/front-robes.svg",
  13466. extra: 1.01,
  13467. bottom: 0.01
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Normal",
  13474. height: math.unit(11 + 9 / 12, "feet"),
  13475. default: true
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13481. {
  13482. legendary: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(150, "lb"),
  13485. name: "Legendary",
  13486. image: {
  13487. source: "./media/characters/lucy/legendary.svg",
  13488. extra: 1355 / 1100,
  13489. bottom: 0.045
  13490. }
  13491. },
  13492. },
  13493. [
  13494. {
  13495. name: "Legendary",
  13496. height: math.unit(86882 * 2, "miles"),
  13497. default: true
  13498. },
  13499. ]
  13500. ))
  13501. characterMakers.push(() => makeCharacter(
  13502. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13503. {
  13504. front: {
  13505. height: math.unit(6, "feet"),
  13506. weight: math.unit(150, "lb"),
  13507. name: "Front",
  13508. image: {
  13509. source: "./media/characters/drusilla/front.svg",
  13510. extra: 678 / 635,
  13511. bottom: 0.03
  13512. }
  13513. },
  13514. back: {
  13515. height: math.unit(6, "feet"),
  13516. weight: math.unit(150, "lb"),
  13517. name: "Back",
  13518. image: {
  13519. source: "./media/characters/drusilla/back.svg",
  13520. extra: 678 / 635,
  13521. bottom: 0.005
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Macro",
  13528. height: math.unit(100, "feet")
  13529. },
  13530. {
  13531. name: "Canon Height",
  13532. height: math.unit(2000, "feet"),
  13533. default: true
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(6, "feet"),
  13542. weight: math.unit(180, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/renard-thatch/front.svg",
  13546. extra: 2411 / 2275,
  13547. bottom: 0.01
  13548. }
  13549. },
  13550. frontPosing: {
  13551. height: math.unit(6, "feet"),
  13552. weight: math.unit(180, "lb"),
  13553. name: "Front (Posing)",
  13554. image: {
  13555. source: "./media/characters/renard-thatch/front-posing.svg",
  13556. extra: 2381 / 2261,
  13557. bottom: 0.01
  13558. }
  13559. },
  13560. back: {
  13561. height: math.unit(6, "feet"),
  13562. weight: math.unit(180, "lb"),
  13563. name: "Back",
  13564. image: {
  13565. source: "./media/characters/renard-thatch/back.svg",
  13566. extra: 2428 / 2288
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Micro",
  13573. height: math.unit(3, "inches")
  13574. },
  13575. {
  13576. name: "Default",
  13577. height: math.unit(6, "feet"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Macro",
  13582. height: math.unit(75, "feet")
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(1450, "feet"),
  13591. weight: math.unit(1.21e6, "tons"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/sekvra/front.svg",
  13595. extra: 1193/1190,
  13596. bottom: 78/1271
  13597. }
  13598. },
  13599. side: {
  13600. height: math.unit(1450, "feet"),
  13601. weight: math.unit(1.21e6, "tons"),
  13602. name: "Side",
  13603. image: {
  13604. source: "./media/characters/sekvra/side.svg",
  13605. extra: 1193/1190,
  13606. bottom: 52/1245
  13607. }
  13608. },
  13609. back: {
  13610. height: math.unit(1450, "feet"),
  13611. weight: math.unit(1.21e6, "tons"),
  13612. name: "Back",
  13613. image: {
  13614. source: "./media/characters/sekvra/back.svg",
  13615. extra: 1219/1216,
  13616. bottom: 21/1240
  13617. }
  13618. },
  13619. frontClothed: {
  13620. height: math.unit(1450, "feet"),
  13621. weight: math.unit(1.21e6, "tons"),
  13622. name: "Front (Clothed)",
  13623. image: {
  13624. source: "./media/characters/sekvra/front-clothed.svg",
  13625. extra: 1192/1189,
  13626. bottom: 79/1271
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Macro",
  13633. height: math.unit(1450, "feet"),
  13634. default: true
  13635. },
  13636. {
  13637. name: "Megamacro",
  13638. height: math.unit(15000, "feet")
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(150, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/carmine/front.svg",
  13651. extra: 1,
  13652. bottom: 0.035
  13653. }
  13654. },
  13655. frontArmor: {
  13656. height: math.unit(6, "feet"),
  13657. weight: math.unit(150, "lb"),
  13658. name: "Front (Armor)",
  13659. image: {
  13660. source: "./media/characters/carmine/front-armor.svg",
  13661. extra: 1,
  13662. bottom: 0.035
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Large",
  13669. height: math.unit(1, "mile")
  13670. },
  13671. {
  13672. name: "Huge",
  13673. height: math.unit(40, "miles"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Colossal",
  13678. height: math.unit(2500, "miles")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/elyssia/front.svg",
  13691. extra: 2201 / 2035,
  13692. bottom: 0.05
  13693. }
  13694. },
  13695. frontClothed: {
  13696. height: math.unit(6, "feet"),
  13697. weight: math.unit(150, "lb"),
  13698. name: "Front (Clothed)",
  13699. image: {
  13700. source: "./media/characters/elyssia/front-clothed.svg",
  13701. extra: 2201 / 2035,
  13702. bottom: 0.05
  13703. }
  13704. },
  13705. back: {
  13706. height: math.unit(6, "feet"),
  13707. weight: math.unit(150, "lb"),
  13708. name: "Back",
  13709. image: {
  13710. source: "./media/characters/elyssia/back.svg",
  13711. extra: 2201 / 2035,
  13712. bottom: 0.013
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Smaller",
  13719. height: math.unit(150, "feet")
  13720. },
  13721. {
  13722. name: "Standard",
  13723. height: math.unit(1400, "feet"),
  13724. default: true
  13725. },
  13726. {
  13727. name: "Distracted",
  13728. height: math.unit(15000, "feet")
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13734. {
  13735. front: {
  13736. height: math.unit(7 + 4/12, "feet"),
  13737. weight: math.unit(690, "lb"),
  13738. name: "Front",
  13739. image: {
  13740. source: "./media/characters/geno-maxwell/front.svg",
  13741. extra: 984/856,
  13742. bottom: 87/1071
  13743. }
  13744. },
  13745. back: {
  13746. height: math.unit(7 + 4/12, "feet"),
  13747. weight: math.unit(690, "lb"),
  13748. name: "Back",
  13749. image: {
  13750. source: "./media/characters/geno-maxwell/back.svg",
  13751. extra: 981/854,
  13752. bottom: 57/1038
  13753. }
  13754. },
  13755. frontCostume: {
  13756. height: math.unit(7 + 4/12, "feet"),
  13757. weight: math.unit(690, "lb"),
  13758. name: "Front (Costume)",
  13759. image: {
  13760. source: "./media/characters/geno-maxwell/front-costume.svg",
  13761. extra: 984/856,
  13762. bottom: 87/1071
  13763. }
  13764. },
  13765. backcostume: {
  13766. height: math.unit(7 + 4/12, "feet"),
  13767. weight: math.unit(690, "lb"),
  13768. name: "Back (Costume)",
  13769. image: {
  13770. source: "./media/characters/geno-maxwell/back-costume.svg",
  13771. extra: 981/854,
  13772. bottom: 57/1038
  13773. }
  13774. },
  13775. },
  13776. [
  13777. {
  13778. name: "Micro",
  13779. height: math.unit(3, "inches")
  13780. },
  13781. {
  13782. name: "Normal",
  13783. height: math.unit(7 + 4 / 12, "feet"),
  13784. default: true
  13785. },
  13786. {
  13787. name: "Macro",
  13788. height: math.unit(220, "feet")
  13789. },
  13790. {
  13791. name: "Megamacro",
  13792. height: math.unit(11, "miles")
  13793. },
  13794. ]
  13795. ))
  13796. characterMakers.push(() => makeCharacter(
  13797. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13798. {
  13799. front: {
  13800. height: math.unit(7 + 4/12, "feet"),
  13801. weight: math.unit(750, "lb"),
  13802. name: "Front",
  13803. image: {
  13804. source: "./media/characters/regena-maxwell/front.svg",
  13805. extra: 984/856,
  13806. bottom: 87/1071
  13807. }
  13808. },
  13809. back: {
  13810. height: math.unit(7 + 4/12, "feet"),
  13811. weight: math.unit(750, "lb"),
  13812. name: "Back",
  13813. image: {
  13814. source: "./media/characters/regena-maxwell/back.svg",
  13815. extra: 981/854,
  13816. bottom: 57/1038
  13817. }
  13818. },
  13819. frontCostume: {
  13820. height: math.unit(7 + 4/12, "feet"),
  13821. weight: math.unit(750, "lb"),
  13822. name: "Front (Costume)",
  13823. image: {
  13824. source: "./media/characters/regena-maxwell/front-costume.svg",
  13825. extra: 984/856,
  13826. bottom: 87/1071
  13827. }
  13828. },
  13829. backcostume: {
  13830. height: math.unit(7 + 4/12, "feet"),
  13831. weight: math.unit(750, "lb"),
  13832. name: "Back (Costume)",
  13833. image: {
  13834. source: "./media/characters/regena-maxwell/back-costume.svg",
  13835. extra: 981/854,
  13836. bottom: 57/1038
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Normal",
  13843. height: math.unit(7 + 4 / 12, "feet"),
  13844. default: true
  13845. },
  13846. {
  13847. name: "Macro",
  13848. height: math.unit(220, "feet")
  13849. },
  13850. {
  13851. name: "Megamacro",
  13852. height: math.unit(11, "miles")
  13853. },
  13854. ]
  13855. ))
  13856. characterMakers.push(() => makeCharacter(
  13857. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13858. {
  13859. front: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(150, "lb"),
  13862. name: "Front",
  13863. image: {
  13864. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13865. extra: 860 / 690,
  13866. bottom: 0.03
  13867. }
  13868. },
  13869. },
  13870. [
  13871. {
  13872. name: "Normal",
  13873. height: math.unit(1.7, "meters"),
  13874. default: true
  13875. },
  13876. ]
  13877. ))
  13878. characterMakers.push(() => makeCharacter(
  13879. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13880. {
  13881. front: {
  13882. height: math.unit(6, "feet"),
  13883. weight: math.unit(150, "lb"),
  13884. name: "Front",
  13885. image: {
  13886. source: "./media/characters/quilly/front.svg",
  13887. extra: 890 / 776
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Gigamacro",
  13894. height: math.unit(404090, "miles"),
  13895. default: true
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13901. {
  13902. front: {
  13903. height: math.unit(7 + 8 / 12, "feet"),
  13904. weight: math.unit(350, "lb"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/tempest/front.svg",
  13908. extra: 1175 / 1086,
  13909. bottom: 0.02
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Normal",
  13916. height: math.unit(7 + 8 / 12, "feet"),
  13917. default: true
  13918. },
  13919. ]
  13920. ))
  13921. characterMakers.push(() => makeCharacter(
  13922. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13923. {
  13924. side: {
  13925. height: math.unit(4 + 5 / 12, "feet"),
  13926. weight: math.unit(80, "lb"),
  13927. name: "Side",
  13928. image: {
  13929. source: "./media/characters/rodger/side.svg",
  13930. extra: 1235 / 1118
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Micro",
  13937. height: math.unit(1, "inch")
  13938. },
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(4 + 5 / 12, "feet"),
  13942. default: true
  13943. },
  13944. {
  13945. name: "Macro",
  13946. height: math.unit(120, "feet")
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13952. {
  13953. front: {
  13954. height: math.unit(6, "feet"),
  13955. weight: math.unit(150, "lb"),
  13956. name: "Front",
  13957. image: {
  13958. source: "./media/characters/danyel/front.svg",
  13959. extra: 1185 / 1123,
  13960. bottom: 0.05
  13961. }
  13962. },
  13963. },
  13964. [
  13965. {
  13966. name: "Shrunken",
  13967. height: math.unit(0.5, "mm")
  13968. },
  13969. {
  13970. name: "Micro",
  13971. height: math.unit(1, "mm"),
  13972. default: true
  13973. },
  13974. {
  13975. name: "Upsized",
  13976. height: math.unit(5 + 5 / 12, "feet")
  13977. },
  13978. ]
  13979. ))
  13980. characterMakers.push(() => makeCharacter(
  13981. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13982. {
  13983. front: {
  13984. height: math.unit(5 + 6 / 12, "feet"),
  13985. weight: math.unit(200, "lb"),
  13986. name: "Front",
  13987. image: {
  13988. source: "./media/characters/vivian-bijoux/front.svg",
  13989. extra: 1217/1209,
  13990. bottom: 76/1293
  13991. }
  13992. },
  13993. back: {
  13994. height: math.unit(5 + 6 / 12, "feet"),
  13995. weight: math.unit(200, "lb"),
  13996. name: "Back",
  13997. image: {
  13998. source: "./media/characters/vivian-bijoux/back.svg",
  13999. extra: 1214/1208,
  14000. bottom: 51/1265
  14001. }
  14002. },
  14003. dressed: {
  14004. height: math.unit(5 + 6 / 12, "feet"),
  14005. weight: math.unit(200, "lb"),
  14006. name: "Dressed",
  14007. image: {
  14008. source: "./media/characters/vivian-bijoux/dressed.svg",
  14009. extra: 1217/1209,
  14010. bottom: 76/1293
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Normal",
  14017. height: math.unit(5 + 6 / 12, "feet"),
  14018. default: true
  14019. },
  14020. {
  14021. name: "Bad Dream",
  14022. height: math.unit(500, "feet")
  14023. },
  14024. {
  14025. name: "Nightmare",
  14026. height: math.unit(500, "miles")
  14027. },
  14028. ]
  14029. ))
  14030. characterMakers.push(() => makeCharacter(
  14031. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14032. {
  14033. front: {
  14034. height: math.unit(6 + 1 / 12, "feet"),
  14035. weight: math.unit(260, "lb"),
  14036. name: "Front",
  14037. image: {
  14038. source: "./media/characters/zeta/front.svg",
  14039. extra: 1968 / 1889,
  14040. bottom: 0.06
  14041. }
  14042. },
  14043. back: {
  14044. height: math.unit(6 + 1 / 12, "feet"),
  14045. weight: math.unit(260, "lb"),
  14046. name: "Back",
  14047. image: {
  14048. source: "./media/characters/zeta/back.svg",
  14049. extra: 1944 / 1858,
  14050. bottom: 0.03
  14051. }
  14052. },
  14053. hand: {
  14054. height: math.unit(1.112, "feet"),
  14055. name: "Hand",
  14056. image: {
  14057. source: "./media/characters/zeta/hand.svg"
  14058. }
  14059. },
  14060. foot: {
  14061. height: math.unit(1.48, "feet"),
  14062. name: "Foot",
  14063. image: {
  14064. source: "./media/characters/zeta/foot.svg"
  14065. }
  14066. },
  14067. },
  14068. [
  14069. {
  14070. name: "Micro",
  14071. height: math.unit(6, "inches")
  14072. },
  14073. {
  14074. name: "Normal",
  14075. height: math.unit(6 + 1 / 12, "feet"),
  14076. default: true
  14077. },
  14078. {
  14079. name: "Macro",
  14080. height: math.unit(20, "feet")
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14086. {
  14087. front: {
  14088. height: math.unit(6, "feet"),
  14089. weight: math.unit(150, "lb"),
  14090. name: "Front",
  14091. image: {
  14092. source: "./media/characters/jamie-larsen/front.svg",
  14093. extra: 962 / 933,
  14094. bottom: 0.02
  14095. }
  14096. },
  14097. back: {
  14098. height: math.unit(6, "feet"),
  14099. weight: math.unit(150, "lb"),
  14100. name: "Back",
  14101. image: {
  14102. source: "./media/characters/jamie-larsen/back.svg",
  14103. extra: 997 / 946
  14104. }
  14105. },
  14106. },
  14107. [
  14108. {
  14109. name: "Macro",
  14110. height: math.unit(28 + 7 / 12, "feet"),
  14111. default: true
  14112. },
  14113. {
  14114. name: "Macro+",
  14115. height: math.unit(180, "feet")
  14116. },
  14117. {
  14118. name: "Megamacro",
  14119. height: math.unit(10, "miles")
  14120. },
  14121. {
  14122. name: "Gigamacro",
  14123. height: math.unit(200000, "miles")
  14124. },
  14125. ]
  14126. ))
  14127. characterMakers.push(() => makeCharacter(
  14128. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14129. {
  14130. front: {
  14131. height: math.unit(6, "feet"),
  14132. weight: math.unit(120, "lb"),
  14133. name: "Front",
  14134. image: {
  14135. source: "./media/characters/vance/front.svg",
  14136. extra: 1980 / 1890,
  14137. bottom: 0.09
  14138. }
  14139. },
  14140. back: {
  14141. height: math.unit(6, "feet"),
  14142. weight: math.unit(120, "lb"),
  14143. name: "Back",
  14144. image: {
  14145. source: "./media/characters/vance/back.svg",
  14146. extra: 2081 / 1994,
  14147. bottom: 0.014
  14148. }
  14149. },
  14150. hand: {
  14151. height: math.unit(0.88, "feet"),
  14152. name: "Hand",
  14153. image: {
  14154. source: "./media/characters/vance/hand.svg"
  14155. }
  14156. },
  14157. foot: {
  14158. height: math.unit(0.64, "feet"),
  14159. name: "Foot",
  14160. image: {
  14161. source: "./media/characters/vance/foot.svg"
  14162. }
  14163. },
  14164. },
  14165. [
  14166. {
  14167. name: "Small",
  14168. height: math.unit(90, "feet"),
  14169. default: true
  14170. },
  14171. {
  14172. name: "Macro",
  14173. height: math.unit(100, "meters")
  14174. },
  14175. {
  14176. name: "Megamacro",
  14177. height: math.unit(15, "miles")
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14183. {
  14184. front: {
  14185. height: math.unit(6, "feet"),
  14186. weight: math.unit(180, "lb"),
  14187. name: "Front",
  14188. image: {
  14189. source: "./media/characters/xochitl/front.svg",
  14190. extra: 2297 / 2261,
  14191. bottom: 0.065
  14192. }
  14193. },
  14194. back: {
  14195. height: math.unit(6, "feet"),
  14196. weight: math.unit(180, "lb"),
  14197. name: "Back",
  14198. image: {
  14199. source: "./media/characters/xochitl/back.svg",
  14200. extra: 2386 / 2354,
  14201. bottom: 0.01
  14202. }
  14203. },
  14204. foot: {
  14205. height: math.unit(6 / 5 * 1.15, "feet"),
  14206. weight: math.unit(150, "lb"),
  14207. name: "Foot",
  14208. image: {
  14209. source: "./media/characters/xochitl/foot.svg"
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Macro",
  14216. height: math.unit(80, "feet")
  14217. },
  14218. {
  14219. name: "Macro+",
  14220. height: math.unit(400, "feet"),
  14221. default: true
  14222. },
  14223. {
  14224. name: "Gigamacro",
  14225. height: math.unit(80000, "miles")
  14226. },
  14227. {
  14228. name: "Gigamacro+",
  14229. height: math.unit(400000, "miles")
  14230. },
  14231. {
  14232. name: "Teramacro",
  14233. height: math.unit(300, "AU")
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(6, "feet"),
  14242. weight: math.unit(150, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/vincent/front.svg",
  14246. extra: 1130 / 1080,
  14247. bottom: 0.055
  14248. }
  14249. },
  14250. beak: {
  14251. height: math.unit(6 * 0.1, "feet"),
  14252. name: "Beak",
  14253. image: {
  14254. source: "./media/characters/vincent/beak.svg"
  14255. }
  14256. },
  14257. hand: {
  14258. height: math.unit(6 * 0.85, "feet"),
  14259. weight: math.unit(150, "lb"),
  14260. name: "Hand",
  14261. image: {
  14262. source: "./media/characters/vincent/hand.svg"
  14263. }
  14264. },
  14265. foot: {
  14266. height: math.unit(6 * 0.19, "feet"),
  14267. weight: math.unit(150, "lb"),
  14268. name: "Foot",
  14269. image: {
  14270. source: "./media/characters/vincent/foot.svg"
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Base",
  14277. height: math.unit(6 + 5 / 12, "feet"),
  14278. default: true
  14279. },
  14280. {
  14281. name: "Macro",
  14282. height: math.unit(300, "feet")
  14283. },
  14284. {
  14285. name: "Megamacro",
  14286. height: math.unit(2, "miles")
  14287. },
  14288. {
  14289. name: "Gigamacro",
  14290. height: math.unit(1000, "miles")
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(2, "meters"),
  14299. weight: math.unit(500, "kg"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/coatl/front.svg",
  14303. extra: 3948 / 3500,
  14304. bottom: 0.082
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Normal",
  14311. height: math.unit(4, "meters")
  14312. },
  14313. {
  14314. name: "Macro",
  14315. height: math.unit(100, "meters"),
  14316. default: true
  14317. },
  14318. {
  14319. name: "Macro+",
  14320. height: math.unit(300, "meters")
  14321. },
  14322. {
  14323. name: "Megamacro",
  14324. height: math.unit(3, "gigameters")
  14325. },
  14326. {
  14327. name: "Megamacro+",
  14328. height: math.unit(300, "terameters")
  14329. },
  14330. {
  14331. name: "Megamacro++",
  14332. height: math.unit(3, "lightyears")
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14338. {
  14339. front: {
  14340. height: math.unit(6, "feet"),
  14341. weight: math.unit(50, "kg"),
  14342. name: "front",
  14343. image: {
  14344. source: "./media/characters/shiroryu/front.svg",
  14345. extra: 1990 / 1935
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Mortal Mingling",
  14352. height: math.unit(3, "meters")
  14353. },
  14354. {
  14355. name: "Kaiju-ish",
  14356. height: math.unit(250, "meters")
  14357. },
  14358. {
  14359. name: "Somewhat Godly",
  14360. height: math.unit(400, "km"),
  14361. default: true
  14362. },
  14363. {
  14364. name: "Planetary",
  14365. height: math.unit(300, "megameters")
  14366. },
  14367. {
  14368. name: "Galaxy-dwarfing",
  14369. height: math.unit(450, "kiloparsecs")
  14370. },
  14371. {
  14372. name: "Universe Eater",
  14373. height: math.unit(150, "gigaparsecs")
  14374. },
  14375. {
  14376. name: "Almost Immeasurable",
  14377. height: math.unit(1.3e266, "yottaparsecs")
  14378. },
  14379. ]
  14380. ))
  14381. characterMakers.push(() => makeCharacter(
  14382. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14383. {
  14384. front: {
  14385. height: math.unit(6, "feet"),
  14386. weight: math.unit(150, "lb"),
  14387. name: "Front",
  14388. image: {
  14389. source: "./media/characters/umeko/front.svg",
  14390. extra: 1,
  14391. bottom: 0.019
  14392. }
  14393. },
  14394. frontArmored: {
  14395. height: math.unit(6, "feet"),
  14396. weight: math.unit(150, "lb"),
  14397. name: "Front (Armored)",
  14398. image: {
  14399. source: "./media/characters/umeko/front-armored.svg",
  14400. extra: 1,
  14401. bottom: 0.021
  14402. }
  14403. },
  14404. },
  14405. [
  14406. {
  14407. name: "Macro",
  14408. height: math.unit(220, "feet"),
  14409. default: true
  14410. },
  14411. {
  14412. name: "Guardian Dragon",
  14413. height: math.unit(50, "miles")
  14414. },
  14415. {
  14416. name: "Cosmic",
  14417. height: math.unit(800000, "miles")
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14423. {
  14424. front: {
  14425. height: math.unit(6, "feet"),
  14426. weight: math.unit(150, "lb"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/cassidy/front.svg",
  14430. extra: 810/808,
  14431. bottom: 41/851
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Canon Height",
  14438. height: math.unit(120, "feet"),
  14439. default: true
  14440. },
  14441. {
  14442. name: "Macro+",
  14443. height: math.unit(400, "feet")
  14444. },
  14445. {
  14446. name: "Macro++",
  14447. height: math.unit(4000, "feet")
  14448. },
  14449. {
  14450. name: "Megamacro",
  14451. height: math.unit(3, "miles")
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(6, "feet"),
  14460. weight: math.unit(150, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/isaac/front.svg",
  14464. extra: 896 / 815,
  14465. bottom: 0.11
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Human Size",
  14472. height: math.unit(8, "feet"),
  14473. default: true
  14474. },
  14475. {
  14476. name: "Macro",
  14477. height: math.unit(400, "feet")
  14478. },
  14479. {
  14480. name: "Megamacro",
  14481. height: math.unit(50, "miles")
  14482. },
  14483. {
  14484. name: "Canon Height",
  14485. height: math.unit(200, "AU")
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(6, "feet"),
  14494. weight: math.unit(72, "kg"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/sleekit/front.svg",
  14498. extra: 4693 / 4487,
  14499. bottom: 0.012
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Minimum Height",
  14506. height: math.unit(10, "meters")
  14507. },
  14508. {
  14509. name: "Smaller",
  14510. height: math.unit(25, "meters")
  14511. },
  14512. {
  14513. name: "Larger",
  14514. height: math.unit(38, "meters"),
  14515. default: true
  14516. },
  14517. {
  14518. name: "Maximum height",
  14519. height: math.unit(100, "meters")
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(6, "feet"),
  14528. weight: math.unit(150, "lb"),
  14529. name: "Front",
  14530. image: {
  14531. source: "./media/characters/nillia/front.svg",
  14532. extra: 2195 / 2037,
  14533. bottom: 0.005
  14534. }
  14535. },
  14536. back: {
  14537. height: math.unit(6, "feet"),
  14538. weight: math.unit(150, "lb"),
  14539. name: "Back",
  14540. image: {
  14541. source: "./media/characters/nillia/back.svg",
  14542. extra: 2195 / 2037,
  14543. bottom: 0.005
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Canon Height",
  14550. height: math.unit(489, "feet"),
  14551. default: true
  14552. }
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14557. {
  14558. front: {
  14559. height: math.unit(6, "feet"),
  14560. weight: math.unit(150, "lb"),
  14561. name: "Front",
  14562. image: {
  14563. source: "./media/characters/mesmyriza/front.svg",
  14564. extra: 2067 / 1784,
  14565. bottom: 0.035
  14566. }
  14567. },
  14568. foot: {
  14569. height: math.unit(6 / (250 / 35), "feet"),
  14570. name: "Foot",
  14571. image: {
  14572. source: "./media/characters/mesmyriza/foot.svg"
  14573. }
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Macro",
  14579. height: math.unit(457, "meters"),
  14580. default: true
  14581. },
  14582. {
  14583. name: "Megamacro",
  14584. height: math.unit(8, "megameters")
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(250, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/saudade/front.svg",
  14597. extra: 1172 / 1139,
  14598. bottom: 0.035
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Micro",
  14605. height: math.unit(3, "inches")
  14606. },
  14607. {
  14608. name: "Normal",
  14609. height: math.unit(6, "feet"),
  14610. default: true
  14611. },
  14612. {
  14613. name: "Macro",
  14614. height: math.unit(50, "feet")
  14615. },
  14616. {
  14617. name: "Megamacro",
  14618. height: math.unit(2800, "feet")
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(5 + 4 / 12, "feet"),
  14627. weight: math.unit(100, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/keireer/front.svg",
  14631. extra: 716 / 666,
  14632. bottom: 0.05
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(5 + 4 / 12, "feet"),
  14640. default: true
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14646. {
  14647. front: {
  14648. height: math.unit(6, "feet"),
  14649. weight: math.unit(90, "kg"),
  14650. name: "Front",
  14651. image: {
  14652. source: "./media/characters/mirja/front.svg",
  14653. extra: 1789 / 1683,
  14654. bottom: 0.05
  14655. }
  14656. },
  14657. frontDressed: {
  14658. height: math.unit(6, "feet"),
  14659. weight: math.unit(90, "lb"),
  14660. name: "Front (Dressed)",
  14661. image: {
  14662. source: "./media/characters/mirja/front-dressed.svg",
  14663. extra: 1789 / 1683,
  14664. bottom: 0.05
  14665. }
  14666. },
  14667. back: {
  14668. height: math.unit(6, "feet"),
  14669. weight: math.unit(90, "lb"),
  14670. name: "Back",
  14671. image: {
  14672. source: "./media/characters/mirja/back.svg",
  14673. extra: 953 / 917,
  14674. bottom: 0.017
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "\"Incognito\"",
  14681. height: math.unit(3, "meters")
  14682. },
  14683. {
  14684. name: "Strolling Size",
  14685. height: math.unit(15, "km")
  14686. },
  14687. {
  14688. name: "Larger Strolling Size",
  14689. height: math.unit(400, "km")
  14690. },
  14691. {
  14692. name: "Preferred Size",
  14693. height: math.unit(5000, "km")
  14694. },
  14695. {
  14696. name: "True Size",
  14697. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14698. default: true
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(15, "feet"),
  14707. weight: math.unit(880, "kg"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/nightraver/front.svg",
  14711. extra: 2444 / 2160,
  14712. bottom: 0.027
  14713. }
  14714. },
  14715. back: {
  14716. height: math.unit(15, "feet"),
  14717. weight: math.unit(880, "kg"),
  14718. name: "Back",
  14719. image: {
  14720. source: "./media/characters/nightraver/back.svg",
  14721. extra: 2309 / 2180,
  14722. bottom: 0.005
  14723. }
  14724. },
  14725. sole: {
  14726. height: math.unit(2.878, "feet"),
  14727. name: "Sole",
  14728. image: {
  14729. source: "./media/characters/nightraver/sole.svg"
  14730. }
  14731. },
  14732. foot: {
  14733. height: math.unit(2.285, "feet"),
  14734. name: "Foot",
  14735. image: {
  14736. source: "./media/characters/nightraver/foot.svg"
  14737. }
  14738. },
  14739. maw: {
  14740. height: math.unit(2.67, "feet"),
  14741. name: "Maw",
  14742. image: {
  14743. source: "./media/characters/nightraver/maw.svg"
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Micro",
  14750. height: math.unit(1, "cm")
  14751. },
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(15, "feet"),
  14755. default: true
  14756. },
  14757. {
  14758. name: "Macro",
  14759. height: math.unit(300, "feet")
  14760. },
  14761. {
  14762. name: "Megamacro",
  14763. height: math.unit(300, "miles")
  14764. },
  14765. {
  14766. name: "Gigamacro",
  14767. height: math.unit(10000, "miles")
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14773. {
  14774. side: {
  14775. height: math.unit(2, "inches"),
  14776. weight: math.unit(5, "grams"),
  14777. name: "Side",
  14778. image: {
  14779. source: "./media/characters/arc/side.svg"
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Micro",
  14786. height: math.unit(2, "inches"),
  14787. default: true
  14788. },
  14789. ]
  14790. ))
  14791. characterMakers.push(() => makeCharacter(
  14792. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14793. {
  14794. front: {
  14795. height: math.unit(1.1938, "meters"),
  14796. weight: math.unit(54, "kg"),
  14797. name: "Front",
  14798. image: {
  14799. source: "./media/characters/nebula-shahar/front.svg",
  14800. extra: 1642 / 1436,
  14801. bottom: 0.06
  14802. }
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Megamicro",
  14808. height: math.unit(0.3, "mm")
  14809. },
  14810. {
  14811. name: "Micro",
  14812. height: math.unit(3, "cm")
  14813. },
  14814. {
  14815. name: "Normal",
  14816. height: math.unit(138, "cm"),
  14817. default: true
  14818. },
  14819. {
  14820. name: "Macro",
  14821. height: math.unit(30, "m")
  14822. },
  14823. ]
  14824. ))
  14825. characterMakers.push(() => makeCharacter(
  14826. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14827. {
  14828. front: {
  14829. height: math.unit(5.24, "feet"),
  14830. weight: math.unit(150, "lb"),
  14831. name: "Front",
  14832. image: {
  14833. source: "./media/characters/shayla/front.svg",
  14834. extra: 1512 / 1414,
  14835. bottom: 0.01
  14836. }
  14837. },
  14838. back: {
  14839. height: math.unit(5.24, "feet"),
  14840. weight: math.unit(150, "lb"),
  14841. name: "Back",
  14842. image: {
  14843. source: "./media/characters/shayla/back.svg",
  14844. extra: 1512 / 1414
  14845. }
  14846. },
  14847. hand: {
  14848. height: math.unit(0.7781496062992126, "feet"),
  14849. name: "Hand",
  14850. image: {
  14851. source: "./media/characters/shayla/hand.svg"
  14852. }
  14853. },
  14854. foot: {
  14855. height: math.unit(1.4206036745406823, "feet"),
  14856. name: "Foot",
  14857. image: {
  14858. source: "./media/characters/shayla/foot.svg"
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Micro",
  14865. height: math.unit(0.32, "feet")
  14866. },
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(5.24, "feet"),
  14870. default: true
  14871. },
  14872. {
  14873. name: "Macro",
  14874. height: math.unit(492.12, "feet")
  14875. },
  14876. {
  14877. name: "Megamacro",
  14878. height: math.unit(186.41, "miles")
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14884. {
  14885. front: {
  14886. height: math.unit(2.2, "m"),
  14887. weight: math.unit(120, "kg"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/pia-jr/front.svg",
  14891. extra: 1000 / 970,
  14892. bottom: 0.035
  14893. }
  14894. },
  14895. hand: {
  14896. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14897. name: "Hand",
  14898. image: {
  14899. source: "./media/characters/pia-jr/hand.svg"
  14900. }
  14901. },
  14902. paw: {
  14903. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14904. name: "Paw",
  14905. image: {
  14906. source: "./media/characters/pia-jr/paw.svg"
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Micro",
  14913. height: math.unit(1.2, "cm")
  14914. },
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(2.2, "m"),
  14918. default: true
  14919. },
  14920. {
  14921. name: "Macro",
  14922. height: math.unit(180, "m")
  14923. },
  14924. {
  14925. name: "Megamacro",
  14926. height: math.unit(420, "km")
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14932. {
  14933. front: {
  14934. height: math.unit(2, "m"),
  14935. weight: math.unit(115, "kg"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/pia-sr/front.svg",
  14939. extra: 760 / 730,
  14940. bottom: 0.015
  14941. }
  14942. },
  14943. back: {
  14944. height: math.unit(2, "m"),
  14945. weight: math.unit(115, "kg"),
  14946. name: "Back",
  14947. image: {
  14948. source: "./media/characters/pia-sr/back.svg",
  14949. extra: 760 / 730,
  14950. bottom: 0.01
  14951. }
  14952. },
  14953. hand: {
  14954. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14955. name: "Hand",
  14956. image: {
  14957. source: "./media/characters/pia-sr/hand.svg"
  14958. }
  14959. },
  14960. foot: {
  14961. height: math.unit(1.83, "feet"),
  14962. name: "Foot",
  14963. image: {
  14964. source: "./media/characters/pia-sr/foot.svg"
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Micro",
  14971. height: math.unit(88, "mm")
  14972. },
  14973. {
  14974. name: "Normal",
  14975. height: math.unit(2, "m"),
  14976. default: true
  14977. },
  14978. {
  14979. name: "Macro",
  14980. height: math.unit(200, "m")
  14981. },
  14982. {
  14983. name: "Megamacro",
  14984. height: math.unit(420, "km")
  14985. },
  14986. ]
  14987. ))
  14988. characterMakers.push(() => makeCharacter(
  14989. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14990. {
  14991. front: {
  14992. height: math.unit(8 + 2 / 12, "feet"),
  14993. weight: math.unit(300, "lb"),
  14994. name: "Front",
  14995. image: {
  14996. source: "./media/characters/kibibyte/front.svg",
  14997. extra: 2221 / 2098,
  14998. bottom: 0.04
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(8 + 2 / 12, "feet"),
  15006. default: true
  15007. },
  15008. {
  15009. name: "Socialable Macro",
  15010. height: math.unit(50, "feet")
  15011. },
  15012. {
  15013. name: "Macro",
  15014. height: math.unit(300, "feet")
  15015. },
  15016. {
  15017. name: "Megamacro",
  15018. height: math.unit(500, "miles")
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(150, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/felix/front.svg",
  15031. extra: 762 / 722,
  15032. bottom: 0.02
  15033. }
  15034. },
  15035. frontClothed: {
  15036. height: math.unit(6, "feet"),
  15037. weight: math.unit(150, "lb"),
  15038. name: "Front (Clothed)",
  15039. image: {
  15040. source: "./media/characters/felix/front-clothed.svg",
  15041. extra: 762 / 722,
  15042. bottom: 0.02
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Normal",
  15049. height: math.unit(6 + 8 / 12, "feet"),
  15050. default: true
  15051. },
  15052. {
  15053. name: "Macro",
  15054. height: math.unit(2600, "feet")
  15055. },
  15056. {
  15057. name: "Megamacro",
  15058. height: math.unit(450, "miles")
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15064. {
  15065. front: {
  15066. height: math.unit(6 + 1 / 12, "feet"),
  15067. weight: math.unit(250, "lb"),
  15068. name: "Front",
  15069. image: {
  15070. source: "./media/characters/tobo/front.svg",
  15071. extra: 608 / 586,
  15072. bottom: 0.023
  15073. }
  15074. },
  15075. back: {
  15076. height: math.unit(6 + 1 / 12, "feet"),
  15077. weight: math.unit(250, "lb"),
  15078. name: "Back",
  15079. image: {
  15080. source: "./media/characters/tobo/back.svg",
  15081. extra: 608 / 586
  15082. }
  15083. },
  15084. },
  15085. [
  15086. {
  15087. name: "Nano",
  15088. height: math.unit(2, "nm")
  15089. },
  15090. {
  15091. name: "Megamicro",
  15092. height: math.unit(0.1, "mm")
  15093. },
  15094. {
  15095. name: "Micro",
  15096. height: math.unit(1, "inch"),
  15097. default: true
  15098. },
  15099. {
  15100. name: "Human-sized",
  15101. height: math.unit(6 + 1 / 12, "feet")
  15102. },
  15103. {
  15104. name: "Macro",
  15105. height: math.unit(250, "feet")
  15106. },
  15107. {
  15108. name: "Megamacro",
  15109. height: math.unit(75, "miles")
  15110. },
  15111. {
  15112. name: "Texas-sized",
  15113. height: math.unit(750, "miles")
  15114. },
  15115. {
  15116. name: "Teramacro",
  15117. height: math.unit(50000, "miles")
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(6, "feet"),
  15126. weight: math.unit(269, "lb"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/danny-kapowsky/front.svg",
  15130. extra: 766 / 736,
  15131. bottom: 0.044
  15132. }
  15133. },
  15134. back: {
  15135. height: math.unit(6, "feet"),
  15136. weight: math.unit(269, "lb"),
  15137. name: "Back",
  15138. image: {
  15139. source: "./media/characters/danny-kapowsky/back.svg",
  15140. extra: 797 / 760,
  15141. bottom: 0.025
  15142. }
  15143. },
  15144. },
  15145. [
  15146. {
  15147. name: "Macro",
  15148. height: math.unit(150, "feet"),
  15149. default: true
  15150. },
  15151. {
  15152. name: "Macro+",
  15153. height: math.unit(200, "feet")
  15154. },
  15155. {
  15156. name: "Macro++",
  15157. height: math.unit(300, "feet")
  15158. },
  15159. {
  15160. name: "Macro+++",
  15161. height: math.unit(400, "feet")
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15167. {
  15168. side: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(170, "lb"),
  15171. name: "Side",
  15172. image: {
  15173. source: "./media/characters/finn/side.svg",
  15174. extra: 1953 / 1807,
  15175. bottom: 0.057
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Megamacro",
  15182. height: math.unit(14445, "feet"),
  15183. default: true
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15189. {
  15190. front: {
  15191. height: math.unit(5 + 6 / 12, "feet"),
  15192. weight: math.unit(125, "lb"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/roy/front.svg",
  15196. extra: 1,
  15197. bottom: 0.11
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Micro",
  15204. height: math.unit(3, "inches"),
  15205. default: true
  15206. },
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(5 + 6 / 12, "feet")
  15210. },
  15211. {
  15212. name: "Lesser Macro",
  15213. height: math.unit(60, "feet")
  15214. },
  15215. {
  15216. name: "Greater Macro",
  15217. height: math.unit(120, "feet")
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(6, "feet"),
  15226. weight: math.unit(100, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/aevsivs/front.svg",
  15230. extra: 1,
  15231. bottom: 0.03
  15232. }
  15233. },
  15234. back: {
  15235. height: math.unit(6, "feet"),
  15236. weight: math.unit(100, "lb"),
  15237. name: "Back",
  15238. image: {
  15239. source: "./media/characters/aevsivs/back.svg"
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Micro",
  15246. height: math.unit(2, "inches"),
  15247. default: true
  15248. },
  15249. {
  15250. name: "Normal",
  15251. height: math.unit(5, "feet")
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(5 + 7 / 12, "feet"),
  15260. weight: math.unit(159, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/hildegard/front.svg",
  15264. extra: 289 / 269,
  15265. bottom: 7.63 / 297.8
  15266. }
  15267. },
  15268. back: {
  15269. height: math.unit(5 + 7 / 12, "feet"),
  15270. weight: math.unit(159, "lb"),
  15271. name: "Back",
  15272. image: {
  15273. source: "./media/characters/hildegard/back.svg",
  15274. extra: 280 / 260,
  15275. bottom: 2.3 / 282
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(5 + 7 / 12, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15289. {
  15290. bernard: {
  15291. height: math.unit(2 + 7 / 12, "feet"),
  15292. weight: math.unit(66, "lb"),
  15293. name: "Bernard",
  15294. rename: true,
  15295. image: {
  15296. source: "./media/characters/bernard-wilder/bernard.svg",
  15297. extra: 192 / 128,
  15298. bottom: 0.05
  15299. }
  15300. },
  15301. wilder: {
  15302. height: math.unit(5 + 8 / 12, "feet"),
  15303. weight: math.unit(143, "lb"),
  15304. name: "Wilder",
  15305. rename: true,
  15306. image: {
  15307. source: "./media/characters/bernard-wilder/wilder.svg",
  15308. extra: 361 / 312,
  15309. bottom: 0.02
  15310. }
  15311. },
  15312. },
  15313. [
  15314. {
  15315. name: "Normal",
  15316. height: math.unit(2 + 7 / 12, "feet"),
  15317. default: true
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15323. {
  15324. anthro: {
  15325. height: math.unit(6 + 1 / 12, "feet"),
  15326. weight: math.unit(155, "lb"),
  15327. name: "Anthro",
  15328. image: {
  15329. source: "./media/characters/hearth/anthro.svg",
  15330. extra: 1178/1136,
  15331. bottom: 28/1206
  15332. }
  15333. },
  15334. feral: {
  15335. height: math.unit(3.78, "feet"),
  15336. weight: math.unit(35, "kg"),
  15337. name: "Feral",
  15338. image: {
  15339. source: "./media/characters/hearth/feral.svg",
  15340. extra: 153 / 135,
  15341. bottom: 0.03
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(6 + 1 / 12, "feet"),
  15349. default: true
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(6, "feet"),
  15358. weight: math.unit(182, "lb"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/ingrid/front.svg",
  15362. extra: 294 / 268,
  15363. bottom: 0.027
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Normal",
  15370. height: math.unit(6, "feet"),
  15371. default: true
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15377. {
  15378. eevee: {
  15379. height: math.unit(2 + 10 / 12, "feet"),
  15380. weight: math.unit(86, "lb"),
  15381. name: "Malgam",
  15382. image: {
  15383. source: "./media/characters/malgam/eevee.svg",
  15384. extra: 952/784,
  15385. bottom: 38/990
  15386. }
  15387. },
  15388. sylveon: {
  15389. height: math.unit(4, "feet"),
  15390. weight: math.unit(101, "lb"),
  15391. name: "Future Malgam",
  15392. rename: true,
  15393. image: {
  15394. source: "./media/characters/malgam/sylveon.svg",
  15395. extra: 371 / 325,
  15396. bottom: 0.015
  15397. }
  15398. },
  15399. gigantamax: {
  15400. height: math.unit(50, "feet"),
  15401. name: "Gigantamax Malgam",
  15402. rename: true,
  15403. image: {
  15404. source: "./media/characters/malgam/gigantamax.svg"
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(2 + 10 / 12, "feet"),
  15412. default: true
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15418. {
  15419. front: {
  15420. height: math.unit(5 + 11 / 12, "feet"),
  15421. weight: math.unit(188, "lb"),
  15422. name: "Front",
  15423. image: {
  15424. source: "./media/characters/fleur/front.svg",
  15425. extra: 309 / 283,
  15426. bottom: 0.007
  15427. }
  15428. },
  15429. },
  15430. [
  15431. {
  15432. name: "Normal",
  15433. height: math.unit(5 + 11 / 12, "feet"),
  15434. default: true
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15440. {
  15441. front: {
  15442. height: math.unit(5 + 4 / 12, "feet"),
  15443. weight: math.unit(122, "lb"),
  15444. name: "Front",
  15445. image: {
  15446. source: "./media/characters/jude/front.svg",
  15447. extra: 288 / 273,
  15448. bottom: 0.03
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(5 + 4 / 12, "feet"),
  15456. default: true
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(5 + 11 / 12, "feet"),
  15465. weight: math.unit(190, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/seara/front.svg",
  15469. extra: 1,
  15470. bottom: 0.05
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Normal",
  15477. height: math.unit(5 + 11 / 12, "feet"),
  15478. default: true
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15484. {
  15485. front: {
  15486. height: math.unit(16 + 5 / 12, "feet"),
  15487. weight: math.unit(524, "lb"),
  15488. name: "Front",
  15489. image: {
  15490. source: "./media/characters/caspian/front.svg",
  15491. extra: 1,
  15492. bottom: 0.04
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(16 + 5 / 12, "feet"),
  15500. default: true
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15506. {
  15507. front: {
  15508. height: math.unit(5 + 7 / 12, "feet"),
  15509. weight: math.unit(170, "lb"),
  15510. name: "Front",
  15511. image: {
  15512. source: "./media/characters/mika/front.svg",
  15513. extra: 1,
  15514. bottom: 0.016
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(5 + 7 / 12, "feet"),
  15522. default: true
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15528. {
  15529. front: {
  15530. height: math.unit(6 + 2 / 12, "feet"),
  15531. weight: math.unit(268, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/sol/front.svg",
  15535. extra: 247 / 231,
  15536. bottom: 0.05
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(6 + 2 / 12, "feet"),
  15544. default: true
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15550. {
  15551. buizel: {
  15552. height: math.unit(2 + 5 / 12, "feet"),
  15553. weight: math.unit(87, "lb"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/umiko/buizel.svg",
  15557. extra: 172 / 157,
  15558. bottom: 0.01
  15559. },
  15560. form: "buizel",
  15561. default: true
  15562. },
  15563. floatzel: {
  15564. height: math.unit(5 + 9 / 12, "feet"),
  15565. weight: math.unit(250, "lb"),
  15566. name: "Front",
  15567. image: {
  15568. source: "./media/characters/umiko/floatzel.svg",
  15569. extra: 1076/1006,
  15570. bottom: 15/1091
  15571. },
  15572. form: "floatzel",
  15573. default: true
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(2 + 5 / 12, "feet"),
  15580. form: "buizel",
  15581. default: true
  15582. },
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(5 + 9 / 12, "feet"),
  15586. form: "floatzel",
  15587. default: true
  15588. },
  15589. ],
  15590. {
  15591. "buizel": {
  15592. name: "Buizel"
  15593. },
  15594. "floatzel": {
  15595. name: "Floatzel",
  15596. default: true
  15597. }
  15598. }
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(6 + 2 / 12, "feet"),
  15605. weight: math.unit(146, "lb"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/iliac/front.svg",
  15609. extra: 389 / 365,
  15610. bottom: 0.035
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(6 + 2 / 12, "feet"),
  15618. default: true
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(6, "feet"),
  15627. weight: math.unit(170, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/topaz/front.svg",
  15631. extra: 317 / 303,
  15632. bottom: 0.055
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(6, "feet"),
  15640. default: true
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(5 + 11 / 12, "feet"),
  15649. weight: math.unit(144, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/gabriel/front.svg",
  15653. extra: 285 / 262,
  15654. bottom: 0.004
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(5 + 11 / 12, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15668. {
  15669. side: {
  15670. height: math.unit(6 + 5 / 12, "feet"),
  15671. weight: math.unit(300, "lb"),
  15672. name: "Side",
  15673. image: {
  15674. source: "./media/characters/tempest-suicune/side.svg",
  15675. extra: 195 / 154,
  15676. bottom: 0.04
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(6 + 5 / 12, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(7 + 2 / 12, "feet"),
  15693. weight: math.unit(322, "lb"),
  15694. name: "Front",
  15695. image: {
  15696. source: "./media/characters/vulcan/front.svg",
  15697. extra: 154 / 147,
  15698. bottom: 0.04
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(7 + 2 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(5 + 10 / 12, "feet"),
  15715. weight: math.unit(264, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/gault/front.svg",
  15719. extra: 161 / 140,
  15720. bottom: 0.028
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(5 + 10 / 12, "feet"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(6, "feet"),
  15737. weight: math.unit(150, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/shard/front.svg",
  15741. extra: 273 / 238,
  15742. bottom: 0.02
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(3 + 6 / 12, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(5 + 11 / 12, "feet"),
  15759. weight: math.unit(146, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/ashe/front.svg",
  15763. extra: 400 / 373,
  15764. bottom: 0.01
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(5 + 11 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(5 + 5 / 12, "feet"),
  15781. weight: math.unit(135, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/beatrix/front.svg",
  15785. extra: 392 / 379,
  15786. bottom: 0.01
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(6, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15800. {
  15801. front: {
  15802. height: math.unit(6 + 2/12, "feet"),
  15803. weight: math.unit(135, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/ignatius/front.svg",
  15807. extra: 1380/1259,
  15808. bottom: 27/1407
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(6 + 2/12, "feet"),
  15816. default: true
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15822. {
  15823. front: {
  15824. height: math.unit(6 + 2 / 12, "feet"),
  15825. weight: math.unit(138, "lb"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/mei-li/front.svg",
  15829. extra: 237 / 229,
  15830. bottom: 0.03
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(6 + 2 / 12, "feet"),
  15838. default: true
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15844. {
  15845. front: {
  15846. height: math.unit(2 + 4 / 12, "feet"),
  15847. weight: math.unit(62, "lb"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/puru/front.svg",
  15851. extra: 206 / 149,
  15852. bottom: 0.06
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(2 + 4 / 12, "feet"),
  15860. default: true
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15866. {
  15867. anthro: {
  15868. height: math.unit(5 + 8/12, "feet"),
  15869. weight: math.unit(200, "lb"),
  15870. energyNeed: math.unit(2000, "kcal"),
  15871. name: "Anthro",
  15872. image: {
  15873. source: "./media/characters/kee/anthro.svg",
  15874. extra: 3251/3184,
  15875. bottom: 250/3501
  15876. }
  15877. },
  15878. taur: {
  15879. height: math.unit(11, "feet"),
  15880. weight: math.unit(500, "lb"),
  15881. energyNeed: math.unit(5000, "kcal"),
  15882. name: "Taur",
  15883. image: {
  15884. source: "./media/characters/kee/taur.svg",
  15885. extra: 1362/1320,
  15886. bottom: 83/1445
  15887. }
  15888. },
  15889. },
  15890. [
  15891. {
  15892. name: "Normal",
  15893. height: math.unit(5 + 8/12, "feet"),
  15894. default: true
  15895. },
  15896. {
  15897. name: "Macro",
  15898. height: math.unit(35, "feet")
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15904. {
  15905. anthro: {
  15906. height: math.unit(7, "feet"),
  15907. weight: math.unit(190, "lb"),
  15908. name: "Anthro",
  15909. image: {
  15910. source: "./media/characters/cobalt-dracha/anthro.svg",
  15911. extra: 231 / 225,
  15912. bottom: 0.04
  15913. }
  15914. },
  15915. feral: {
  15916. height: math.unit(9 + 7 / 12, "feet"),
  15917. weight: math.unit(294, "lb"),
  15918. name: "Feral",
  15919. image: {
  15920. source: "./media/characters/cobalt-dracha/feral.svg",
  15921. extra: 692 / 633,
  15922. bottom: 0.05
  15923. }
  15924. },
  15925. },
  15926. [
  15927. {
  15928. name: "Normal",
  15929. height: math.unit(7, "feet"),
  15930. default: true
  15931. },
  15932. ]
  15933. ))
  15934. characterMakers.push(() => makeCharacter(
  15935. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15936. {
  15937. fallen: {
  15938. height: math.unit(11 + 8 / 12, "feet"),
  15939. weight: math.unit(485, "lb"),
  15940. name: "Java (Fallen)",
  15941. rename: true,
  15942. image: {
  15943. source: "./media/characters/java/fallen.svg",
  15944. extra: 226 / 208,
  15945. bottom: 0.005
  15946. }
  15947. },
  15948. godkin: {
  15949. height: math.unit(10 + 6 / 12, "feet"),
  15950. weight: math.unit(328, "lb"),
  15951. name: "Java (Godkin)",
  15952. rename: true,
  15953. image: {
  15954. source: "./media/characters/java/godkin.svg",
  15955. extra: 1104/1068,
  15956. bottom: 36/1140
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Normal",
  15963. height: math.unit(11 + 8 / 12, "feet"),
  15964. default: true
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15970. {
  15971. front: {
  15972. height: math.unit(5 + 9 / 12, "feet"),
  15973. weight: math.unit(170, "lb"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/purna/front.svg",
  15977. extra: 239 / 229,
  15978. bottom: 0.01
  15979. }
  15980. },
  15981. },
  15982. [
  15983. {
  15984. name: "Normal",
  15985. height: math.unit(5 + 9 / 12, "feet"),
  15986. default: true
  15987. },
  15988. ]
  15989. ))
  15990. characterMakers.push(() => makeCharacter(
  15991. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15992. {
  15993. front: {
  15994. height: math.unit(5 + 9 / 12, "feet"),
  15995. weight: math.unit(142, "lb"),
  15996. name: "Front",
  15997. image: {
  15998. source: "./media/characters/kuva/front.svg",
  15999. extra: 281 / 271,
  16000. bottom: 0.006
  16001. }
  16002. },
  16003. },
  16004. [
  16005. {
  16006. name: "Normal",
  16007. height: math.unit(5 + 9 / 12, "feet"),
  16008. default: true
  16009. },
  16010. ]
  16011. ))
  16012. characterMakers.push(() => makeCharacter(
  16013. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16014. {
  16015. anthro: {
  16016. height: math.unit(9 + 2 / 12, "feet"),
  16017. weight: math.unit(270, "lb"),
  16018. name: "Anthro",
  16019. image: {
  16020. source: "./media/characters/embra/anthro.svg",
  16021. extra: 200 / 187,
  16022. bottom: 0.02
  16023. }
  16024. },
  16025. feral: {
  16026. height: math.unit(18 + 8 / 12, "feet"),
  16027. weight: math.unit(576, "lb"),
  16028. name: "Feral",
  16029. image: {
  16030. source: "./media/characters/embra/feral.svg",
  16031. extra: 152 / 137,
  16032. bottom: 0.037
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Normal",
  16039. height: math.unit(9 + 2 / 12, "feet"),
  16040. default: true
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16046. {
  16047. anthro: {
  16048. height: math.unit(10 + 9 / 12, "feet"),
  16049. weight: math.unit(224, "lb"),
  16050. name: "Anthro",
  16051. image: {
  16052. source: "./media/characters/grottos/anthro.svg",
  16053. extra: 350 / 332,
  16054. bottom: 0.045
  16055. }
  16056. },
  16057. feral: {
  16058. height: math.unit(20 + 7 / 12, "feet"),
  16059. weight: math.unit(629, "lb"),
  16060. name: "Feral",
  16061. image: {
  16062. source: "./media/characters/grottos/feral.svg",
  16063. extra: 207 / 190,
  16064. bottom: 0.05
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Normal",
  16071. height: math.unit(10 + 9 / 12, "feet"),
  16072. default: true
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16078. {
  16079. anthro: {
  16080. height: math.unit(9 + 6 / 12, "feet"),
  16081. weight: math.unit(298, "lb"),
  16082. name: "Anthro",
  16083. image: {
  16084. source: "./media/characters/frifna/anthro.svg",
  16085. extra: 282 / 269,
  16086. bottom: 0.015
  16087. }
  16088. },
  16089. feral: {
  16090. height: math.unit(16 + 2 / 12, "feet"),
  16091. weight: math.unit(624, "lb"),
  16092. name: "Feral",
  16093. image: {
  16094. source: "./media/characters/frifna/feral.svg"
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Normal",
  16101. height: math.unit(9 + 6 / 12, "feet"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6 + 2 / 12, "feet"),
  16111. weight: math.unit(168, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/elise/front.svg",
  16115. extra: 276 / 271
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(6 + 2 / 12, "feet"),
  16123. default: true
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16129. {
  16130. front: {
  16131. height: math.unit(5 + 10 / 12, "feet"),
  16132. weight: math.unit(210, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/glade/front.svg",
  16136. extra: 258 / 247,
  16137. bottom: 0.008
  16138. }
  16139. },
  16140. },
  16141. [
  16142. {
  16143. name: "Normal",
  16144. height: math.unit(5 + 10 / 12, "feet"),
  16145. default: true
  16146. },
  16147. ]
  16148. ))
  16149. characterMakers.push(() => makeCharacter(
  16150. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16151. {
  16152. front: {
  16153. height: math.unit(5 + 10 / 12, "feet"),
  16154. weight: math.unit(129, "lb"),
  16155. name: "Front",
  16156. image: {
  16157. source: "./media/characters/rina/front.svg",
  16158. extra: 266 / 255,
  16159. bottom: 0.005
  16160. }
  16161. },
  16162. },
  16163. [
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(5 + 10 / 12, "feet"),
  16167. default: true
  16168. },
  16169. ]
  16170. ))
  16171. characterMakers.push(() => makeCharacter(
  16172. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16173. {
  16174. front: {
  16175. height: math.unit(6 + 1 / 12, "feet"),
  16176. weight: math.unit(192, "lb"),
  16177. name: "Front",
  16178. image: {
  16179. source: "./media/characters/veronica/front.svg",
  16180. extra: 319 / 309,
  16181. bottom: 0.005
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Normal",
  16188. height: math.unit(6 + 1 / 12, "feet"),
  16189. default: true
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16195. {
  16196. front: {
  16197. height: math.unit(9 + 3 / 12, "feet"),
  16198. weight: math.unit(1100, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/braxton/front.svg",
  16202. extra: 1057 / 984,
  16203. bottom: 0.05
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Normal",
  16210. height: math.unit(9 + 3 / 12, "feet")
  16211. },
  16212. {
  16213. name: "Giant",
  16214. height: math.unit(300, "feet"),
  16215. default: true
  16216. },
  16217. {
  16218. name: "Macro",
  16219. height: math.unit(700, "feet")
  16220. },
  16221. {
  16222. name: "Megamacro",
  16223. height: math.unit(6000, "feet")
  16224. },
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16229. {
  16230. front: {
  16231. height: math.unit(6 + 7 / 12, "feet"),
  16232. weight: math.unit(150, "lb"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/blue-feyonics/front.svg",
  16236. extra: 1403 / 1306,
  16237. bottom: 0.047
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Normal",
  16244. height: math.unit(6 + 7 / 12, "feet"),
  16245. default: true
  16246. },
  16247. ]
  16248. ))
  16249. characterMakers.push(() => makeCharacter(
  16250. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16251. {
  16252. front: {
  16253. height: math.unit(1.8, "meters"),
  16254. weight: math.unit(60, "kg"),
  16255. name: "Front",
  16256. image: {
  16257. source: "./media/characters/maxwell/front.svg",
  16258. extra: 2060 / 1873
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Micro",
  16265. height: math.unit(1, "mm")
  16266. },
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(1.8, "meter"),
  16270. default: true
  16271. },
  16272. {
  16273. name: "Macro",
  16274. height: math.unit(30, "meters")
  16275. },
  16276. {
  16277. name: "Megamacro",
  16278. height: math.unit(10, "km")
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16284. {
  16285. front: {
  16286. height: math.unit(6, "feet"),
  16287. weight: math.unit(150, "lb"),
  16288. name: "Front",
  16289. image: {
  16290. source: "./media/characters/jack/front.svg",
  16291. extra: 1754 / 1640,
  16292. bottom: 0.01
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(80000, "feet"),
  16300. default: true
  16301. },
  16302. {
  16303. name: "Max size",
  16304. height: math.unit(10, "lightyears")
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16310. {
  16311. urban: {
  16312. height: math.unit(5, "feet"),
  16313. weight: math.unit(240, "lb"),
  16314. name: "Urban",
  16315. image: {
  16316. source: "./media/characters/cafat/urban.svg",
  16317. extra: 1223/1126,
  16318. bottom: 205/1428
  16319. }
  16320. },
  16321. summer: {
  16322. height: math.unit(5, "feet"),
  16323. weight: math.unit(240, "lb"),
  16324. name: "Summer",
  16325. image: {
  16326. source: "./media/characters/cafat/summer.svg",
  16327. extra: 1223/1126,
  16328. bottom: 205/1428
  16329. }
  16330. },
  16331. winter: {
  16332. height: math.unit(5, "feet"),
  16333. weight: math.unit(240, "lb"),
  16334. name: "Winter",
  16335. image: {
  16336. source: "./media/characters/cafat/winter.svg",
  16337. extra: 1223/1126,
  16338. bottom: 205/1428
  16339. }
  16340. },
  16341. lingerie: {
  16342. height: math.unit(5, "feet"),
  16343. weight: math.unit(240, "lb"),
  16344. name: "Lingerie",
  16345. image: {
  16346. source: "./media/characters/cafat/lingerie.svg",
  16347. extra: 1223/1126,
  16348. bottom: 205/1428
  16349. }
  16350. },
  16351. upright: {
  16352. height: math.unit(6.3, "feet"),
  16353. weight: math.unit(240, "lb"),
  16354. name: "Upright",
  16355. image: {
  16356. source: "./media/characters/cafat/upright.svg",
  16357. bottom: 0.01
  16358. }
  16359. },
  16360. uprightFull: {
  16361. height: math.unit(6.3, "feet"),
  16362. weight: math.unit(240, "lb"),
  16363. name: "Upright (Full)",
  16364. image: {
  16365. source: "./media/characters/cafat/upright-full.svg",
  16366. bottom: 0.01
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Small",
  16373. height: math.unit(5, "feet"),
  16374. default: true
  16375. },
  16376. {
  16377. name: "Large",
  16378. height: math.unit(13, "feet")
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16384. {
  16385. front: {
  16386. height: math.unit(6, "feet"),
  16387. weight: math.unit(150, "lb"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/verin-raharra/front.svg",
  16391. extra: 5019 / 4835,
  16392. bottom: 0.023
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(7 + 5 / 12, "feet"),
  16400. default: true
  16401. },
  16402. {
  16403. name: "Upsized",
  16404. height: math.unit(20, "feet")
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16410. {
  16411. front: {
  16412. height: math.unit(7, "feet"),
  16413. weight: math.unit(230, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/nakata/front.svg",
  16417. extra: 1.005,
  16418. bottom: 0.01
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(7, "feet"),
  16426. default: true
  16427. },
  16428. {
  16429. name: "Big",
  16430. height: math.unit(14, "feet")
  16431. },
  16432. {
  16433. name: "Macro",
  16434. height: math.unit(400, "feet")
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16440. {
  16441. front: {
  16442. height: math.unit(4.91, "feet"),
  16443. weight: math.unit(100, "lb"),
  16444. name: "Front",
  16445. image: {
  16446. source: "./media/characters/lily/front.svg",
  16447. extra: 1585 / 1415,
  16448. bottom: 0.02
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(4.91, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16462. {
  16463. laying: {
  16464. height: math.unit(4 + 4 / 12, "feet"),
  16465. weight: math.unit(600, "lb"),
  16466. name: "Laying",
  16467. image: {
  16468. source: "./media/characters/sheila/laying.svg",
  16469. extra: 1333 / 1265,
  16470. bottom: 0.16
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Normal",
  16477. height: math.unit(4 + 4 / 12, "feet"),
  16478. default: true
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16484. {
  16485. front: {
  16486. height: math.unit(6, "feet"),
  16487. weight: math.unit(190, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/sax/front.svg",
  16491. extra: 1187 / 973,
  16492. bottom: 0.042
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Micro",
  16499. height: math.unit(4, "inches"),
  16500. default: true
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16506. {
  16507. front: {
  16508. height: math.unit(6, "feet"),
  16509. weight: math.unit(150, "lb"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/pandora/front.svg",
  16513. extra: 2720 / 2556,
  16514. bottom: 0.015
  16515. }
  16516. },
  16517. back: {
  16518. height: math.unit(6, "feet"),
  16519. weight: math.unit(150, "lb"),
  16520. name: "Back",
  16521. image: {
  16522. source: "./media/characters/pandora/back.svg",
  16523. extra: 2720 / 2556,
  16524. bottom: 0.01
  16525. }
  16526. },
  16527. beans: {
  16528. height: math.unit(6 / 8, "feet"),
  16529. name: "Beans",
  16530. image: {
  16531. source: "./media/characters/pandora/beans.svg"
  16532. }
  16533. },
  16534. collar: {
  16535. height: math.unit(0.31, "feet"),
  16536. name: "Collar",
  16537. image: {
  16538. source: "./media/characters/pandora/collar.svg"
  16539. }
  16540. },
  16541. skirt: {
  16542. height: math.unit(6, "feet"),
  16543. weight: math.unit(150, "lb"),
  16544. name: "Skirt",
  16545. image: {
  16546. source: "./media/characters/pandora/skirt.svg",
  16547. extra: 1622 / 1525,
  16548. bottom: 0.015
  16549. }
  16550. },
  16551. hoodie: {
  16552. height: math.unit(6, "feet"),
  16553. weight: math.unit(150, "lb"),
  16554. name: "Hoodie",
  16555. image: {
  16556. source: "./media/characters/pandora/hoodie.svg",
  16557. extra: 1622 / 1525,
  16558. bottom: 0.015
  16559. }
  16560. },
  16561. casual: {
  16562. height: math.unit(6, "feet"),
  16563. weight: math.unit(150, "lb"),
  16564. name: "Casual",
  16565. image: {
  16566. source: "./media/characters/pandora/casual.svg",
  16567. extra: 1622 / 1525,
  16568. bottom: 0.015
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(6, "feet")
  16576. },
  16577. {
  16578. name: "Big Steppy",
  16579. height: math.unit(1, "km"),
  16580. default: true
  16581. },
  16582. {
  16583. name: "Galactic Steppy",
  16584. height: math.unit(2, "gigameters")
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16590. {
  16591. side: {
  16592. height: math.unit(10, "feet"),
  16593. weight: math.unit(800, "kg"),
  16594. name: "Side",
  16595. image: {
  16596. source: "./media/characters/venio-darcony/side.svg",
  16597. extra: 1373 / 1003,
  16598. bottom: 0.037
  16599. }
  16600. },
  16601. front: {
  16602. height: math.unit(19, "feet"),
  16603. weight: math.unit(800, "kg"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/venio-darcony/front.svg"
  16607. }
  16608. },
  16609. back: {
  16610. height: math.unit(19, "feet"),
  16611. weight: math.unit(800, "kg"),
  16612. name: "Back",
  16613. image: {
  16614. source: "./media/characters/venio-darcony/back.svg"
  16615. }
  16616. },
  16617. sideNsfw: {
  16618. height: math.unit(10, "feet"),
  16619. weight: math.unit(800, "kg"),
  16620. name: "Side (NSFW)",
  16621. image: {
  16622. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16623. extra: 1373 / 1003,
  16624. bottom: 0.037
  16625. }
  16626. },
  16627. frontNsfw: {
  16628. height: math.unit(19, "feet"),
  16629. weight: math.unit(800, "kg"),
  16630. name: "Front (NSFW)",
  16631. image: {
  16632. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16633. }
  16634. },
  16635. backNsfw: {
  16636. height: math.unit(19, "feet"),
  16637. weight: math.unit(800, "kg"),
  16638. name: "Back (NSFW)",
  16639. image: {
  16640. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16641. }
  16642. },
  16643. sideArmored: {
  16644. height: math.unit(10, "feet"),
  16645. weight: math.unit(800, "kg"),
  16646. name: "Side (Armored)",
  16647. image: {
  16648. source: "./media/characters/venio-darcony/side-armored.svg",
  16649. extra: 1373 / 1003,
  16650. bottom: 0.037
  16651. }
  16652. },
  16653. frontArmored: {
  16654. height: math.unit(19, "feet"),
  16655. weight: math.unit(900, "kg"),
  16656. name: "Front (Armored)",
  16657. image: {
  16658. source: "./media/characters/venio-darcony/front-armored.svg"
  16659. }
  16660. },
  16661. backArmored: {
  16662. height: math.unit(19, "feet"),
  16663. weight: math.unit(900, "kg"),
  16664. name: "Back (Armored)",
  16665. image: {
  16666. source: "./media/characters/venio-darcony/back-armored.svg"
  16667. }
  16668. },
  16669. sword: {
  16670. height: math.unit(10, "feet"),
  16671. weight: math.unit(50, "lb"),
  16672. name: "Sword",
  16673. image: {
  16674. source: "./media/characters/venio-darcony/sword.svg"
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(10, "feet")
  16682. },
  16683. {
  16684. name: "Macro",
  16685. height: math.unit(130, "feet"),
  16686. default: true
  16687. },
  16688. {
  16689. name: "Macro+",
  16690. height: math.unit(240, "feet")
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16696. {
  16697. front: {
  16698. height: math.unit(6, "feet"),
  16699. weight: math.unit(150, "lb"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/veski/front.svg",
  16703. extra: 1299 / 1225,
  16704. bottom: 0.04
  16705. }
  16706. },
  16707. back: {
  16708. height: math.unit(6, "feet"),
  16709. weight: math.unit(150, "lb"),
  16710. name: "Back",
  16711. image: {
  16712. source: "./media/characters/veski/back.svg",
  16713. extra: 1299 / 1225,
  16714. bottom: 0.008
  16715. }
  16716. },
  16717. maw: {
  16718. height: math.unit(1.5 * 1.21, "feet"),
  16719. name: "Maw",
  16720. image: {
  16721. source: "./media/characters/veski/maw.svg"
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Macro",
  16728. height: math.unit(2, "km"),
  16729. default: true
  16730. },
  16731. ]
  16732. ))
  16733. characterMakers.push(() => makeCharacter(
  16734. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16735. {
  16736. front: {
  16737. height: math.unit(5 + 7 / 12, "feet"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/isabelle/front.svg",
  16741. extra: 2130 / 1976,
  16742. bottom: 0.05
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Supermicro",
  16749. height: math.unit(10, "micrometers")
  16750. },
  16751. {
  16752. name: "Micro",
  16753. height: math.unit(1, "inch")
  16754. },
  16755. {
  16756. name: "Tiny",
  16757. height: math.unit(5, "inches")
  16758. },
  16759. {
  16760. name: "Standard",
  16761. height: math.unit(5 + 7 / 12, "inches")
  16762. },
  16763. {
  16764. name: "Macro",
  16765. height: math.unit(80, "meters"),
  16766. default: true
  16767. },
  16768. {
  16769. name: "Megamacro",
  16770. height: math.unit(250, "meters")
  16771. },
  16772. {
  16773. name: "Gigamacro",
  16774. height: math.unit(5, "km")
  16775. },
  16776. {
  16777. name: "Cosmic",
  16778. height: math.unit(2.5e6, "miles")
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(6, "feet"),
  16787. weight: math.unit(150, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/hanzo/front.svg",
  16791. extra: 374 / 344,
  16792. bottom: 0.02
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(8, "feet"),
  16800. default: true
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16806. {
  16807. front: {
  16808. height: math.unit(7, "feet"),
  16809. weight: math.unit(130, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/anna/front.svg",
  16813. extra: 169 / 145,
  16814. bottom: 0.06
  16815. }
  16816. },
  16817. full: {
  16818. height: math.unit(4.96, "feet"),
  16819. weight: math.unit(220, "lb"),
  16820. name: "Full",
  16821. image: {
  16822. source: "./media/characters/anna/full.svg",
  16823. extra: 138 / 114,
  16824. bottom: 0.15
  16825. }
  16826. },
  16827. tongue: {
  16828. height: math.unit(2.53, "feet"),
  16829. name: "Tongue",
  16830. image: {
  16831. source: "./media/characters/anna/tongue.svg"
  16832. }
  16833. },
  16834. },
  16835. [
  16836. {
  16837. name: "Normal",
  16838. height: math.unit(7, "feet"),
  16839. default: true
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16845. {
  16846. front: {
  16847. height: math.unit(7, "feet"),
  16848. weight: math.unit(150, "lb"),
  16849. name: "Front",
  16850. image: {
  16851. source: "./media/characters/ian-corvid/front.svg",
  16852. extra: 150 / 142,
  16853. bottom: 0.02
  16854. }
  16855. },
  16856. back: {
  16857. height: math.unit(7, "feet"),
  16858. weight: math.unit(150, "lb"),
  16859. name: "Back",
  16860. image: {
  16861. source: "./media/characters/ian-corvid/back.svg",
  16862. extra: 150 / 143,
  16863. bottom: 0.01
  16864. }
  16865. },
  16866. stomping: {
  16867. height: math.unit(7, "feet"),
  16868. weight: math.unit(150, "lb"),
  16869. name: "Stomping",
  16870. image: {
  16871. source: "./media/characters/ian-corvid/stomping.svg",
  16872. extra: 76 / 72
  16873. }
  16874. },
  16875. sitting: {
  16876. height: math.unit(7 / 1.8, "feet"),
  16877. weight: math.unit(150, "lb"),
  16878. name: "Sitting",
  16879. image: {
  16880. source: "./media/characters/ian-corvid/sitting.svg",
  16881. extra: 1400 / 1269,
  16882. bottom: 0.15
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Tiny Microw",
  16889. height: math.unit(1, "inch")
  16890. },
  16891. {
  16892. name: "Microw",
  16893. height: math.unit(6, "inches")
  16894. },
  16895. {
  16896. name: "Crow",
  16897. height: math.unit(7 + 1 / 12, "feet"),
  16898. default: true
  16899. },
  16900. {
  16901. name: "Macrow",
  16902. height: math.unit(176, "feet")
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(5 + 7 / 12, "feet"),
  16911. weight: math.unit(147, "lb"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/natalie-kellon/front.svg",
  16915. extra: 1214 / 1141,
  16916. bottom: 0.02
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Micro",
  16923. height: math.unit(1 / 16, "inch")
  16924. },
  16925. {
  16926. name: "Tiny",
  16927. height: math.unit(4, "inches")
  16928. },
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(5 + 7 / 12, "feet"),
  16932. default: true
  16933. },
  16934. {
  16935. name: "Amazon",
  16936. height: math.unit(12, "feet")
  16937. },
  16938. {
  16939. name: "Giantess",
  16940. height: math.unit(160, "meters")
  16941. },
  16942. {
  16943. name: "Titaness",
  16944. height: math.unit(800, "meters")
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16950. {
  16951. front: {
  16952. height: math.unit(6, "feet"),
  16953. weight: math.unit(150, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/alluria/front.svg",
  16957. extra: 806 / 738,
  16958. bottom: 0.01
  16959. }
  16960. },
  16961. side: {
  16962. height: math.unit(6, "feet"),
  16963. weight: math.unit(150, "lb"),
  16964. name: "Side",
  16965. image: {
  16966. source: "./media/characters/alluria/side.svg",
  16967. extra: 800 / 750,
  16968. }
  16969. },
  16970. back: {
  16971. height: math.unit(6, "feet"),
  16972. weight: math.unit(150, "lb"),
  16973. name: "Back",
  16974. image: {
  16975. source: "./media/characters/alluria/back.svg",
  16976. extra: 806 / 738,
  16977. }
  16978. },
  16979. frontMaid: {
  16980. height: math.unit(6, "feet"),
  16981. weight: math.unit(150, "lb"),
  16982. name: "Front (Maid)",
  16983. image: {
  16984. source: "./media/characters/alluria/front-maid.svg",
  16985. extra: 806 / 738,
  16986. bottom: 0.01
  16987. }
  16988. },
  16989. sideMaid: {
  16990. height: math.unit(6, "feet"),
  16991. weight: math.unit(150, "lb"),
  16992. name: "Side (Maid)",
  16993. image: {
  16994. source: "./media/characters/alluria/side-maid.svg",
  16995. extra: 800 / 750,
  16996. bottom: 0.005
  16997. }
  16998. },
  16999. backMaid: {
  17000. height: math.unit(6, "feet"),
  17001. weight: math.unit(150, "lb"),
  17002. name: "Back (Maid)",
  17003. image: {
  17004. source: "./media/characters/alluria/back-maid.svg",
  17005. extra: 806 / 738,
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Micro",
  17012. height: math.unit(6, "inches"),
  17013. default: true
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(6, "feet"),
  17022. weight: math.unit(150, "lb"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/kyle/front.svg",
  17026. extra: 1069 / 962,
  17027. bottom: 77.228 / 1727.45
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Macro",
  17034. height: math.unit(150, "feet"),
  17035. default: true
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(6, "feet"),
  17044. weight: math.unit(300, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/duncan/front.svg",
  17048. extra: 1650 / 1482,
  17049. bottom: 0.05
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Macro",
  17056. height: math.unit(100, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(5 + 4 / 12, "feet"),
  17066. weight: math.unit(220, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/memory/front.svg",
  17070. extra: 3641 / 3545,
  17071. bottom: 0.03
  17072. }
  17073. },
  17074. back: {
  17075. height: math.unit(5 + 4 / 12, "feet"),
  17076. weight: math.unit(220, "lb"),
  17077. name: "Back",
  17078. image: {
  17079. source: "./media/characters/memory/back.svg",
  17080. extra: 3641 / 3545,
  17081. bottom: 0.025
  17082. }
  17083. },
  17084. frontSkirt: {
  17085. height: math.unit(5 + 4 / 12, "feet"),
  17086. weight: math.unit(220, "lb"),
  17087. name: "Front (Skirt)",
  17088. image: {
  17089. source: "./media/characters/memory/front-skirt.svg",
  17090. extra: 3641 / 3545,
  17091. bottom: 0.03
  17092. }
  17093. },
  17094. frontDress: {
  17095. height: math.unit(5 + 4 / 12, "feet"),
  17096. weight: math.unit(220, "lb"),
  17097. name: "Front (Dress)",
  17098. image: {
  17099. source: "./media/characters/memory/front-dress.svg",
  17100. extra: 3641 / 3545,
  17101. bottom: 0.03
  17102. }
  17103. },
  17104. },
  17105. [
  17106. {
  17107. name: "Micro",
  17108. height: math.unit(6, "inches"),
  17109. default: true
  17110. },
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(5 + 4 / 12, "feet")
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17119. {
  17120. front: {
  17121. height: math.unit(4 + 11 / 12, "feet"),
  17122. weight: math.unit(100, "lb"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/luno/front.svg",
  17126. extra: 1535 / 1487,
  17127. bottom: 0.03
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Micro",
  17134. height: math.unit(3, "inches")
  17135. },
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(4 + 11 / 12, "feet"),
  17139. default: true
  17140. },
  17141. {
  17142. name: "Macro",
  17143. height: math.unit(300, "feet")
  17144. },
  17145. {
  17146. name: "Megamacro",
  17147. height: math.unit(700, "miles")
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17153. {
  17154. front: {
  17155. height: math.unit(6 + 2 / 12, "feet"),
  17156. weight: math.unit(170, "lb"),
  17157. name: "Front",
  17158. image: {
  17159. source: "./media/characters/jamesy/front.svg",
  17160. extra: 440 / 382,
  17161. bottom: 0.005
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Micro",
  17168. height: math.unit(3, "inches")
  17169. },
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(6 + 2 / 12, "feet"),
  17173. default: true
  17174. },
  17175. {
  17176. name: "Macro",
  17177. height: math.unit(300, "feet")
  17178. },
  17179. {
  17180. name: "Megamacro",
  17181. height: math.unit(700, "miles")
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(6, "feet"),
  17190. weight: math.unit(160, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/mark/front.svg",
  17194. extra: 3300 / 3100,
  17195. bottom: 136.42 / 3440.47
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Macro",
  17202. height: math.unit(120, "meters")
  17203. },
  17204. {
  17205. name: "Bigger Macro",
  17206. height: math.unit(350, "meters")
  17207. },
  17208. {
  17209. name: "Megamacro",
  17210. height: math.unit(8, "km"),
  17211. default: true
  17212. },
  17213. {
  17214. name: "Continental",
  17215. height: math.unit(4550, "km")
  17216. },
  17217. {
  17218. name: "Planetary",
  17219. height: math.unit(65000, "km")
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(6, "feet"),
  17228. weight: math.unit(400, "lb"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/mac/front.svg",
  17232. extra: 1048 / 987.7,
  17233. bottom: 60 / 1107.6,
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Macro",
  17240. height: math.unit(500, "feet"),
  17241. default: true
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17247. {
  17248. front: {
  17249. height: math.unit(5 + 2 / 12, "feet"),
  17250. weight: math.unit(190, "lb"),
  17251. name: "Front",
  17252. image: {
  17253. source: "./media/characters/bari/front.svg",
  17254. extra: 3156 / 2880,
  17255. bottom: 0.03
  17256. }
  17257. },
  17258. back: {
  17259. height: math.unit(5 + 2 / 12, "feet"),
  17260. weight: math.unit(190, "lb"),
  17261. name: "Back",
  17262. image: {
  17263. source: "./media/characters/bari/back.svg",
  17264. extra: 3260 / 2834,
  17265. bottom: 0.025
  17266. }
  17267. },
  17268. frontPlush: {
  17269. height: math.unit(5 + 2 / 12, "feet"),
  17270. weight: math.unit(190, "lb"),
  17271. name: "Front (Plush)",
  17272. image: {
  17273. source: "./media/characters/bari/front-plush.svg",
  17274. extra: 1112 / 1061,
  17275. bottom: 0.002
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Micro",
  17282. height: math.unit(3, "inches")
  17283. },
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(5 + 2 / 12, "feet"),
  17287. default: true
  17288. },
  17289. {
  17290. name: "Macro",
  17291. height: math.unit(20, "feet")
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(6 + 1 / 12, "feet"),
  17300. weight: math.unit(275, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/hunter-misha-raven/front.svg"
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Mortal",
  17310. height: math.unit(6 + 1 / 12, "feet")
  17311. },
  17312. {
  17313. name: "Divine",
  17314. height: math.unit(1.12134e34, "parsecs"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17321. {
  17322. front: {
  17323. height: math.unit(6 + 3 / 12, "feet"),
  17324. weight: math.unit(220, "lb"),
  17325. name: "Front",
  17326. image: {
  17327. source: "./media/characters/max-calore/front.svg",
  17328. extra: 1700 / 1648,
  17329. bottom: 0.01
  17330. }
  17331. },
  17332. back: {
  17333. height: math.unit(6 + 3 / 12, "feet"),
  17334. weight: math.unit(220, "lb"),
  17335. name: "Back",
  17336. image: {
  17337. source: "./media/characters/max-calore/back.svg",
  17338. extra: 1700 / 1648,
  17339. bottom: 0.01
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(6 + 3 / 12, "feet"),
  17347. default: true
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17353. {
  17354. side: {
  17355. height: math.unit(2 + 8 / 12, "feet"),
  17356. weight: math.unit(99, "lb"),
  17357. name: "Side",
  17358. image: {
  17359. source: "./media/characters/aspen/side.svg",
  17360. extra: 152 / 138,
  17361. bottom: 0.032
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(2 + 8 / 12, "feet"),
  17369. default: true
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17375. {
  17376. side: {
  17377. height: math.unit(3 + 2 / 12, "feet"),
  17378. weight: math.unit(224, "lb"),
  17379. name: "Side",
  17380. image: {
  17381. source: "./media/characters/sheila-feral-wolf/side.svg",
  17382. extra: 179 / 166,
  17383. bottom: 0.03
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(3 + 2 / 12, "feet"),
  17391. default: true
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17397. {
  17398. side: {
  17399. height: math.unit(1 + 9 / 12, "feet"),
  17400. weight: math.unit(38, "lb"),
  17401. name: "Side",
  17402. image: {
  17403. source: "./media/characters/michelle/side.svg",
  17404. extra: 147 / 136.7,
  17405. bottom: 0.03
  17406. }
  17407. },
  17408. },
  17409. [
  17410. {
  17411. name: "Normal",
  17412. height: math.unit(1 + 9 / 12, "feet"),
  17413. default: true
  17414. },
  17415. ]
  17416. ))
  17417. characterMakers.push(() => makeCharacter(
  17418. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17419. {
  17420. front: {
  17421. height: math.unit(1.54, "feet"),
  17422. weight: math.unit(50, "lb"),
  17423. name: "Front",
  17424. image: {
  17425. source: "./media/characters/nino/front.svg"
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(1.54, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(1.49, "feet"),
  17442. weight: math.unit(45, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/viola/front.svg"
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(1.49, "feet"),
  17453. default: true
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17459. {
  17460. front: {
  17461. height: math.unit(6 + 5 / 12, "feet"),
  17462. weight: math.unit(580, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/atlas/front.svg",
  17466. extra: 298.5 / 290,
  17467. bottom: 0.015
  17468. }
  17469. },
  17470. },
  17471. [
  17472. {
  17473. name: "Normal",
  17474. height: math.unit(6 + 5 / 12, "feet"),
  17475. default: true
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17481. {
  17482. side: {
  17483. height: math.unit(15.6, "inches"),
  17484. weight: math.unit(10, "lb"),
  17485. name: "Side",
  17486. image: {
  17487. source: "./media/characters/davy/side.svg",
  17488. extra: 200 / 170,
  17489. bottom: 0.01
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(15.6, "inches"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17503. {
  17504. side: {
  17505. height: math.unit(4 + 8 / 12, "feet"),
  17506. weight: math.unit(166, "lb"),
  17507. name: "Side",
  17508. image: {
  17509. source: "./media/characters/fiona/side.svg",
  17510. extra: 232 / 220,
  17511. bottom: 0.03
  17512. }
  17513. },
  17514. },
  17515. [
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(4 + 8 / 12, "feet"),
  17519. default: true
  17520. },
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17525. {
  17526. front: {
  17527. height: math.unit(26, "inches"),
  17528. weight: math.unit(35, "lb"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/lyla/front.svg",
  17532. bottom: 0.1
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(3, "feet"),
  17540. default: true
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17546. {
  17547. side: {
  17548. height: math.unit(1.8, "feet"),
  17549. weight: math.unit(44, "lb"),
  17550. name: "Side",
  17551. image: {
  17552. source: "./media/characters/perseus/side.svg",
  17553. bottom: 0.21
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(1.8, "feet"),
  17561. default: true
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17567. {
  17568. side: {
  17569. height: math.unit(4 + 2 / 12, "feet"),
  17570. weight: math.unit(20, "lb"),
  17571. name: "Side",
  17572. image: {
  17573. source: "./media/characters/remus/side.svg"
  17574. }
  17575. },
  17576. },
  17577. [
  17578. {
  17579. name: "Normal",
  17580. height: math.unit(4 + 2 / 12, "feet"),
  17581. default: true
  17582. },
  17583. ]
  17584. ))
  17585. characterMakers.push(() => makeCharacter(
  17586. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17587. {
  17588. front: {
  17589. height: math.unit(4 + 11 / 12, "feet"),
  17590. weight: math.unit(114, "lb"),
  17591. name: "Front",
  17592. image: {
  17593. source: "./media/characters/raf/front.svg",
  17594. extra: 1504/1339,
  17595. bottom: 26/1530
  17596. }
  17597. },
  17598. side: {
  17599. height: math.unit(4 + 11 / 12, "feet"),
  17600. weight: math.unit(114, "lb"),
  17601. name: "Side",
  17602. image: {
  17603. source: "./media/characters/raf/side.svg",
  17604. extra: 1466/1316,
  17605. bottom: 29/1495
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Micro",
  17612. height: math.unit(2, "inches")
  17613. },
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(4 + 11 / 12, "feet"),
  17617. default: true
  17618. },
  17619. {
  17620. name: "Macro",
  17621. height: math.unit(70, "feet")
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(1.5, "meters"),
  17630. weight: math.unit(68, "kg"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/liam-einarr/front.svg",
  17634. extra: 2822 / 2666
  17635. }
  17636. },
  17637. back: {
  17638. height: math.unit(1.5, "meters"),
  17639. weight: math.unit(68, "kg"),
  17640. name: "Back",
  17641. image: {
  17642. source: "./media/characters/liam-einarr/back.svg",
  17643. extra: 2822 / 2666,
  17644. bottom: 0.015
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Normal",
  17651. height: math.unit(1.5, "meters"),
  17652. default: true
  17653. },
  17654. {
  17655. name: "Macro",
  17656. height: math.unit(150, "meters")
  17657. },
  17658. {
  17659. name: "Megamacro",
  17660. height: math.unit(35, "km")
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17666. {
  17667. front: {
  17668. height: math.unit(6, "feet"),
  17669. weight: math.unit(75, "kg"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/linda/front.svg",
  17673. extra: 930 / 874,
  17674. bottom: 0.004
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Normal",
  17681. height: math.unit(6, "feet"),
  17682. default: true
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17688. {
  17689. front: {
  17690. height: math.unit(6 + 8 / 12, "feet"),
  17691. weight: math.unit(220, "lb"),
  17692. name: "Front",
  17693. image: {
  17694. source: "./media/characters/caylex/front.svg",
  17695. extra: 821 / 772,
  17696. bottom: 0.07
  17697. }
  17698. },
  17699. back: {
  17700. height: math.unit(6 + 8 / 12, "feet"),
  17701. weight: math.unit(220, "lb"),
  17702. name: "Back",
  17703. image: {
  17704. source: "./media/characters/caylex/back.svg",
  17705. extra: 821 / 772,
  17706. bottom: 0.022
  17707. }
  17708. },
  17709. hand: {
  17710. height: math.unit(1.25, "feet"),
  17711. name: "Hand",
  17712. image: {
  17713. source: "./media/characters/caylex/hand.svg"
  17714. }
  17715. },
  17716. foot: {
  17717. height: math.unit(1.6, "feet"),
  17718. name: "Foot",
  17719. image: {
  17720. source: "./media/characters/caylex/foot.svg"
  17721. }
  17722. },
  17723. armored: {
  17724. height: math.unit(6 + 8 / 12, "feet"),
  17725. weight: math.unit(250, "lb"),
  17726. name: "Armored",
  17727. image: {
  17728. source: "./media/characters/caylex/armored.svg",
  17729. extra: 1420 / 1310,
  17730. bottom: 0.045
  17731. }
  17732. },
  17733. },
  17734. [
  17735. {
  17736. name: "Normal",
  17737. height: math.unit(6 + 8 / 12, "feet"),
  17738. default: true
  17739. },
  17740. {
  17741. name: "Normal+",
  17742. height: math.unit(12, "feet")
  17743. },
  17744. ]
  17745. ))
  17746. characterMakers.push(() => makeCharacter(
  17747. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17748. {
  17749. front: {
  17750. height: math.unit(7 + 6 / 12, "feet"),
  17751. weight: math.unit(288, "lb"),
  17752. name: "Front",
  17753. image: {
  17754. source: "./media/characters/alana/front.svg",
  17755. extra: 679 / 653,
  17756. bottom: 22.5 / 701
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(7 + 6 / 12, "feet")
  17764. },
  17765. {
  17766. name: "Large",
  17767. height: math.unit(50, "feet")
  17768. },
  17769. {
  17770. name: "Macro",
  17771. height: math.unit(100, "feet"),
  17772. default: true
  17773. },
  17774. {
  17775. name: "Macro+",
  17776. height: math.unit(200, "feet")
  17777. },
  17778. ]
  17779. ))
  17780. characterMakers.push(() => makeCharacter(
  17781. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17782. {
  17783. front: {
  17784. height: math.unit(6 + 1 / 12, "feet"),
  17785. weight: math.unit(210, "lb"),
  17786. name: "Front",
  17787. image: {
  17788. source: "./media/characters/hasani/front.svg",
  17789. extra: 244 / 232,
  17790. bottom: 0.01
  17791. }
  17792. },
  17793. back: {
  17794. height: math.unit(6 + 1 / 12, "feet"),
  17795. weight: math.unit(210, "lb"),
  17796. name: "Back",
  17797. image: {
  17798. source: "./media/characters/hasani/back.svg",
  17799. extra: 244 / 232,
  17800. bottom: 0.01
  17801. }
  17802. },
  17803. },
  17804. [
  17805. {
  17806. name: "Normal",
  17807. height: math.unit(6 + 1 / 12, "feet")
  17808. },
  17809. {
  17810. name: "Macro",
  17811. height: math.unit(175, "feet"),
  17812. default: true
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17818. {
  17819. front: {
  17820. height: math.unit(1.82, "meters"),
  17821. weight: math.unit(140, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/nita/front.svg",
  17825. extra: 2473 / 2363,
  17826. bottom: 0.01
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(1.82, "m")
  17834. },
  17835. {
  17836. name: "Macro",
  17837. height: math.unit(300, "m")
  17838. },
  17839. {
  17840. name: "Mistake Canon",
  17841. height: math.unit(0.5, "miles"),
  17842. default: true
  17843. },
  17844. {
  17845. name: "Big Mistake",
  17846. height: math.unit(13, "miles")
  17847. },
  17848. {
  17849. name: "Playing God",
  17850. height: math.unit(2450, "miles")
  17851. },
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(4, "feet"),
  17859. weight: math.unit(120, "lb"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/shiriko/front.svg",
  17863. extra: 970/934,
  17864. bottom: 5/975
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(4, "feet"),
  17872. default: true
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(6, "feet"),
  17881. name: "front",
  17882. image: {
  17883. source: "./media/characters/deja/front.svg",
  17884. extra: 926 / 840,
  17885. bottom: 0.07
  17886. }
  17887. },
  17888. },
  17889. [
  17890. {
  17891. name: "Planck Length",
  17892. height: math.unit(1.6e-35, "meters")
  17893. },
  17894. {
  17895. name: "Normal",
  17896. height: math.unit(30.48, "meters"),
  17897. default: true
  17898. },
  17899. {
  17900. name: "Universal",
  17901. height: math.unit(8.8e26, "meters")
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17907. {
  17908. side: {
  17909. height: math.unit(8, "feet"),
  17910. weight: math.unit(6300, "lb"),
  17911. name: "Side",
  17912. image: {
  17913. source: "./media/characters/anima/side.svg",
  17914. bottom: 0.035
  17915. }
  17916. },
  17917. },
  17918. [
  17919. {
  17920. name: "Normal",
  17921. height: math.unit(8, "feet"),
  17922. default: true
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(8, "feet"),
  17931. weight: math.unit(350, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/bianca/front.svg",
  17935. extra: 234 / 225,
  17936. bottom: 0.03
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(8, "feet"),
  17944. default: true
  17945. },
  17946. ]
  17947. ))
  17948. characterMakers.push(() => makeCharacter(
  17949. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17950. {
  17951. front: {
  17952. height: math.unit(6, "feet"),
  17953. weight: math.unit(150, "lb"),
  17954. name: "Front",
  17955. image: {
  17956. source: "./media/characters/adinia/front.svg",
  17957. extra: 1845 / 1672,
  17958. bottom: 0.02
  17959. }
  17960. },
  17961. back: {
  17962. height: math.unit(6, "feet"),
  17963. weight: math.unit(150, "lb"),
  17964. name: "Back",
  17965. image: {
  17966. source: "./media/characters/adinia/back.svg",
  17967. extra: 1845 / 1672,
  17968. bottom: 0.002
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(11 + 5 / 12, "feet"),
  17976. default: true
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17982. {
  17983. front: {
  17984. height: math.unit(3, "meters"),
  17985. weight: math.unit(200, "kg"),
  17986. name: "Front",
  17987. image: {
  17988. source: "./media/characters/lykasa/front.svg",
  17989. extra: 1076 / 976,
  17990. bottom: 0.06
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Normal",
  17997. height: math.unit(3, "meters")
  17998. },
  17999. {
  18000. name: "Kaiju",
  18001. height: math.unit(120, "meters"),
  18002. default: true
  18003. },
  18004. {
  18005. name: "Mega Kaiju",
  18006. height: math.unit(240, "km")
  18007. },
  18008. {
  18009. name: "Giga Kaiju",
  18010. height: math.unit(400, "megameters")
  18011. },
  18012. {
  18013. name: "Tera Kaiju",
  18014. height: math.unit(800, "gigameters")
  18015. },
  18016. {
  18017. name: "Kaiju Dragon Goddess",
  18018. height: math.unit(26, "zettaparsecs")
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18024. {
  18025. side: {
  18026. height: math.unit(283 / 124 * 6, "feet"),
  18027. weight: math.unit(35000, "lb"),
  18028. name: "Side",
  18029. image: {
  18030. source: "./media/characters/malfaren/side.svg",
  18031. extra: 1310/529,
  18032. bottom: 24/1334
  18033. }
  18034. },
  18035. front: {
  18036. height: math.unit(22.36, "feet"),
  18037. weight: math.unit(35000, "lb"),
  18038. name: "Front",
  18039. image: {
  18040. source: "./media/characters/malfaren/front.svg",
  18041. extra: 1237/1115,
  18042. bottom: 32/1269
  18043. }
  18044. },
  18045. maw: {
  18046. height: math.unit(6.9, "feet"),
  18047. name: "Maw",
  18048. image: {
  18049. source: "./media/characters/malfaren/maw.svg"
  18050. }
  18051. },
  18052. dick: {
  18053. height: math.unit(6.19, "feet"),
  18054. name: "Dick",
  18055. image: {
  18056. source: "./media/characters/malfaren/dick.svg"
  18057. }
  18058. },
  18059. eye: {
  18060. height: math.unit(0.69, "feet"),
  18061. name: "Eye",
  18062. image: {
  18063. source: "./media/characters/malfaren/eye.svg"
  18064. }
  18065. },
  18066. },
  18067. [
  18068. {
  18069. name: "Big",
  18070. height: math.unit(283 / 162 * 6, "feet"),
  18071. },
  18072. {
  18073. name: "Bigger",
  18074. height: math.unit(283 / 124 * 6, "feet")
  18075. },
  18076. {
  18077. name: "Massive",
  18078. height: math.unit(283 / 92 * 6, "feet"),
  18079. default: true
  18080. },
  18081. {
  18082. name: "👀💦",
  18083. height: math.unit(283 / 73 * 6, "feet"),
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18089. {
  18090. front: {
  18091. height: math.unit(1.7, "m"),
  18092. weight: math.unit(70, "kg"),
  18093. name: "Front",
  18094. image: {
  18095. source: "./media/characters/kernel/front.svg",
  18096. extra: 222 / 210,
  18097. bottom: 0.007
  18098. }
  18099. },
  18100. },
  18101. [
  18102. {
  18103. name: "Nano",
  18104. height: math.unit(17, "micrometers")
  18105. },
  18106. {
  18107. name: "Micro",
  18108. height: math.unit(1.7, "mm")
  18109. },
  18110. {
  18111. name: "Small",
  18112. height: math.unit(1.7, "cm")
  18113. },
  18114. {
  18115. name: "Normal",
  18116. height: math.unit(1.7, "m"),
  18117. default: true
  18118. },
  18119. ]
  18120. ))
  18121. characterMakers.push(() => makeCharacter(
  18122. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18123. {
  18124. front: {
  18125. height: math.unit(1.75, "meters"),
  18126. weight: math.unit(65, "kg"),
  18127. name: "Front",
  18128. image: {
  18129. source: "./media/characters/jayne-folest/front.svg",
  18130. extra: 2115 / 2007,
  18131. bottom: 0.02
  18132. }
  18133. },
  18134. back: {
  18135. height: math.unit(1.75, "meters"),
  18136. weight: math.unit(65, "kg"),
  18137. name: "Back",
  18138. image: {
  18139. source: "./media/characters/jayne-folest/back.svg",
  18140. extra: 2115 / 2007,
  18141. bottom: 0.005
  18142. }
  18143. },
  18144. frontClothed: {
  18145. height: math.unit(1.75, "meters"),
  18146. weight: math.unit(65, "kg"),
  18147. name: "Front (Clothed)",
  18148. image: {
  18149. source: "./media/characters/jayne-folest/front-clothed.svg",
  18150. extra: 2115 / 2007,
  18151. bottom: 0.035
  18152. }
  18153. },
  18154. hand: {
  18155. height: math.unit(1 / 1.260, "feet"),
  18156. name: "Hand",
  18157. image: {
  18158. source: "./media/characters/jayne-folest/hand.svg"
  18159. }
  18160. },
  18161. foot: {
  18162. height: math.unit(1 / 0.918, "feet"),
  18163. name: "Foot",
  18164. image: {
  18165. source: "./media/characters/jayne-folest/foot.svg"
  18166. }
  18167. },
  18168. },
  18169. [
  18170. {
  18171. name: "Micro",
  18172. height: math.unit(4, "cm")
  18173. },
  18174. {
  18175. name: "Normal",
  18176. height: math.unit(1.75, "meters")
  18177. },
  18178. {
  18179. name: "Macro",
  18180. height: math.unit(47.5, "meters"),
  18181. default: true
  18182. },
  18183. ]
  18184. ))
  18185. characterMakers.push(() => makeCharacter(
  18186. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18187. {
  18188. front: {
  18189. height: math.unit(180, "cm"),
  18190. weight: math.unit(70, "kg"),
  18191. name: "Front",
  18192. image: {
  18193. source: "./media/characters/algier/front.svg",
  18194. extra: 596 / 572,
  18195. bottom: 0.04
  18196. }
  18197. },
  18198. back: {
  18199. height: math.unit(180, "cm"),
  18200. weight: math.unit(70, "kg"),
  18201. name: "Back",
  18202. image: {
  18203. source: "./media/characters/algier/back.svg",
  18204. extra: 596 / 572,
  18205. bottom: 0.025
  18206. }
  18207. },
  18208. frontdressed: {
  18209. height: math.unit(180, "cm"),
  18210. weight: math.unit(150, "kg"),
  18211. name: "Front-dressed",
  18212. image: {
  18213. source: "./media/characters/algier/front-dressed.svg",
  18214. extra: 596 / 572,
  18215. bottom: 0.038
  18216. }
  18217. },
  18218. },
  18219. [
  18220. {
  18221. name: "Micro",
  18222. height: math.unit(5, "cm")
  18223. },
  18224. {
  18225. name: "Normal",
  18226. height: math.unit(180, "cm"),
  18227. default: true
  18228. },
  18229. {
  18230. name: "Macro",
  18231. height: math.unit(64, "m")
  18232. },
  18233. ]
  18234. ))
  18235. characterMakers.push(() => makeCharacter(
  18236. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18237. {
  18238. upright: {
  18239. height: math.unit(7, "feet"),
  18240. weight: math.unit(300, "lb"),
  18241. name: "Upright",
  18242. image: {
  18243. source: "./media/characters/pretzel/upright.svg",
  18244. extra: 534 / 522,
  18245. bottom: 0.065
  18246. }
  18247. },
  18248. sprawling: {
  18249. height: math.unit(3.75, "feet"),
  18250. weight: math.unit(300, "lb"),
  18251. name: "Sprawling",
  18252. image: {
  18253. source: "./media/characters/pretzel/sprawling.svg",
  18254. extra: 314 / 281,
  18255. bottom: 0.1
  18256. }
  18257. },
  18258. tongue: {
  18259. height: math.unit(2, "feet"),
  18260. name: "Tongue",
  18261. image: {
  18262. source: "./media/characters/pretzel/tongue.svg"
  18263. }
  18264. },
  18265. },
  18266. [
  18267. {
  18268. name: "Normal",
  18269. height: math.unit(7, "feet"),
  18270. default: true
  18271. },
  18272. {
  18273. name: "Oversized",
  18274. height: math.unit(15, "feet")
  18275. },
  18276. {
  18277. name: "Huge",
  18278. height: math.unit(30, "feet")
  18279. },
  18280. {
  18281. name: "Macro",
  18282. height: math.unit(250, "feet")
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18288. {
  18289. sideFront: {
  18290. height: math.unit(5 + 2 / 12, "feet"),
  18291. weight: math.unit(120, "lb"),
  18292. name: "Front Side",
  18293. image: {
  18294. source: "./media/characters/roxi/side-front.svg",
  18295. extra: 2924 / 2717,
  18296. bottom: 0.08
  18297. }
  18298. },
  18299. sideBack: {
  18300. height: math.unit(5 + 2 / 12, "feet"),
  18301. weight: math.unit(120, "lb"),
  18302. name: "Back Side",
  18303. image: {
  18304. source: "./media/characters/roxi/side-back.svg",
  18305. extra: 2904 / 2693,
  18306. bottom: 0.06
  18307. }
  18308. },
  18309. front: {
  18310. height: math.unit(5 + 2 / 12, "feet"),
  18311. weight: math.unit(120, "lb"),
  18312. name: "Front",
  18313. image: {
  18314. source: "./media/characters/roxi/front.svg",
  18315. extra: 2028 / 1907,
  18316. bottom: 0.01
  18317. }
  18318. },
  18319. frontAlt: {
  18320. height: math.unit(5 + 2 / 12, "feet"),
  18321. weight: math.unit(120, "lb"),
  18322. name: "Front (Alt)",
  18323. image: {
  18324. source: "./media/characters/roxi/front-alt.svg",
  18325. extra: 1828 / 1798,
  18326. bottom: 0.01
  18327. }
  18328. },
  18329. sitting: {
  18330. height: math.unit(2.8, "feet"),
  18331. weight: math.unit(120, "lb"),
  18332. name: "Sitting",
  18333. image: {
  18334. source: "./media/characters/roxi/sitting.svg",
  18335. extra: 2660 / 2462,
  18336. bottom: 0.1
  18337. }
  18338. },
  18339. },
  18340. [
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(5 + 2 / 12, "feet"),
  18344. default: true
  18345. },
  18346. ]
  18347. ))
  18348. characterMakers.push(() => makeCharacter(
  18349. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18350. {
  18351. side: {
  18352. height: math.unit(55, "feet"),
  18353. weight: math.unit(153, "tons"),
  18354. name: "Side",
  18355. image: {
  18356. source: "./media/characters/shadow/side.svg",
  18357. extra: 701 / 628,
  18358. bottom: 0.02
  18359. }
  18360. },
  18361. flying: {
  18362. height: math.unit(145, "feet"),
  18363. weight: math.unit(153, "tons"),
  18364. name: "Flying",
  18365. image: {
  18366. source: "./media/characters/shadow/flying.svg"
  18367. }
  18368. },
  18369. },
  18370. [
  18371. {
  18372. name: "Normal",
  18373. height: math.unit(55, "feet"),
  18374. default: true
  18375. },
  18376. ]
  18377. ))
  18378. characterMakers.push(() => makeCharacter(
  18379. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18380. {
  18381. front: {
  18382. height: math.unit(6, "feet"),
  18383. weight: math.unit(200, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/marcie/front.svg",
  18387. extra: 960 / 876,
  18388. bottom: 58 / 1017.87
  18389. }
  18390. },
  18391. },
  18392. [
  18393. {
  18394. name: "Macro",
  18395. height: math.unit(1, "mile"),
  18396. default: true
  18397. },
  18398. ]
  18399. ))
  18400. characterMakers.push(() => makeCharacter(
  18401. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18402. {
  18403. front: {
  18404. height: math.unit(7, "feet"),
  18405. weight: math.unit(200, "lb"),
  18406. name: "Front",
  18407. image: {
  18408. source: "./media/characters/kachina/front.svg",
  18409. extra: 1290.68 / 1119,
  18410. bottom: 36.5 / 1327.18
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(7, "feet"),
  18418. default: true
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18424. {
  18425. looking: {
  18426. height: math.unit(2, "meters"),
  18427. weight: math.unit(300, "kg"),
  18428. name: "Looking",
  18429. image: {
  18430. source: "./media/characters/kash/looking.svg",
  18431. extra: 474 / 344,
  18432. bottom: 0.03
  18433. }
  18434. },
  18435. side: {
  18436. height: math.unit(2, "meters"),
  18437. weight: math.unit(300, "kg"),
  18438. name: "Side",
  18439. image: {
  18440. source: "./media/characters/kash/side.svg",
  18441. extra: 302 / 251,
  18442. bottom: 0.03
  18443. }
  18444. },
  18445. front: {
  18446. height: math.unit(2, "meters"),
  18447. weight: math.unit(300, "kg"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/kash/front.svg",
  18451. extra: 495 / 360,
  18452. bottom: 0.015
  18453. }
  18454. },
  18455. },
  18456. [
  18457. {
  18458. name: "Normal",
  18459. height: math.unit(2, "meters"),
  18460. default: true
  18461. },
  18462. {
  18463. name: "Big",
  18464. height: math.unit(3, "meters")
  18465. },
  18466. {
  18467. name: "Large",
  18468. height: math.unit(5, "meters")
  18469. },
  18470. ]
  18471. ))
  18472. characterMakers.push(() => makeCharacter(
  18473. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18474. {
  18475. feeding: {
  18476. height: math.unit(6.7, "feet"),
  18477. weight: math.unit(350, "lb"),
  18478. name: "Feeding",
  18479. image: {
  18480. source: "./media/characters/lalim/feeding.svg",
  18481. }
  18482. },
  18483. },
  18484. [
  18485. {
  18486. name: "Normal",
  18487. height: math.unit(6.7, "feet"),
  18488. default: true
  18489. },
  18490. ]
  18491. ))
  18492. characterMakers.push(() => makeCharacter(
  18493. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18494. {
  18495. front: {
  18496. height: math.unit(9.5, "feet"),
  18497. weight: math.unit(600, "lb"),
  18498. name: "Front",
  18499. image: {
  18500. source: "./media/characters/de'vout/front.svg",
  18501. extra: 1443 / 1328,
  18502. bottom: 0.025
  18503. }
  18504. },
  18505. back: {
  18506. height: math.unit(9.5, "feet"),
  18507. weight: math.unit(600, "lb"),
  18508. name: "Back",
  18509. image: {
  18510. source: "./media/characters/de'vout/back.svg",
  18511. extra: 1443 / 1328
  18512. }
  18513. },
  18514. frontDressed: {
  18515. height: math.unit(9.5, "feet"),
  18516. weight: math.unit(600, "lb"),
  18517. name: "Front (Dressed",
  18518. image: {
  18519. source: "./media/characters/de'vout/front-dressed.svg",
  18520. extra: 1443 / 1328,
  18521. bottom: 0.025
  18522. }
  18523. },
  18524. backDressed: {
  18525. height: math.unit(9.5, "feet"),
  18526. weight: math.unit(600, "lb"),
  18527. name: "Back (Dressed",
  18528. image: {
  18529. source: "./media/characters/de'vout/back-dressed.svg",
  18530. extra: 1443 / 1328
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(9.5, "feet"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18544. {
  18545. front: {
  18546. height: math.unit(8, "feet"),
  18547. weight: math.unit(225, "lb"),
  18548. name: "Front",
  18549. image: {
  18550. source: "./media/characters/talana/front.svg",
  18551. extra: 1410 / 1300,
  18552. bottom: 0.015
  18553. }
  18554. },
  18555. frontDressed: {
  18556. height: math.unit(8, "feet"),
  18557. weight: math.unit(225, "lb"),
  18558. name: "Front (Dressed",
  18559. image: {
  18560. source: "./media/characters/talana/front-dressed.svg",
  18561. extra: 1410 / 1300,
  18562. bottom: 0.015
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(8, "feet"),
  18570. default: true
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18576. {
  18577. side: {
  18578. height: math.unit(7.2, "feet"),
  18579. weight: math.unit(150, "lb"),
  18580. name: "Side",
  18581. image: {
  18582. source: "./media/characters/xeauvok/side.svg",
  18583. extra: 1975 / 1523,
  18584. bottom: 0.07
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(7.2, "feet"),
  18592. default: true
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18598. {
  18599. side: {
  18600. height: math.unit(10, "feet"),
  18601. weight: math.unit(900, "kg"),
  18602. name: "Side",
  18603. image: {
  18604. source: "./media/characters/zara/side.svg",
  18605. extra: 504 / 498
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(10, "feet"),
  18613. default: true
  18614. },
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18619. {
  18620. side: {
  18621. height: math.unit(6, "feet"),
  18622. weight: math.unit(150, "lb"),
  18623. name: "Side",
  18624. image: {
  18625. source: "./media/characters/richard-dragon/side.svg",
  18626. extra: 845 / 340,
  18627. bottom: 0.017
  18628. }
  18629. },
  18630. maw: {
  18631. height: math.unit(2.97, "feet"),
  18632. name: "Maw",
  18633. image: {
  18634. source: "./media/characters/richard-dragon/maw.svg"
  18635. }
  18636. },
  18637. },
  18638. [
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18643. {
  18644. front: {
  18645. height: math.unit(4, "feet"),
  18646. weight: math.unit(100, "lb"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/richard-smeargle/front.svg",
  18650. extra: 2952 / 2820,
  18651. bottom: 0.028
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(4, "feet"),
  18659. default: true
  18660. },
  18661. {
  18662. name: "Dynamax",
  18663. height: math.unit(20, "meters")
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(6, "feet"),
  18672. weight: math.unit(110, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/klay/front.svg",
  18676. extra: 962 / 883,
  18677. bottom: 0.04
  18678. }
  18679. },
  18680. back: {
  18681. height: math.unit(6, "feet"),
  18682. weight: math.unit(110, "lb"),
  18683. name: "Back",
  18684. image: {
  18685. source: "./media/characters/klay/back.svg",
  18686. extra: 962 / 883
  18687. }
  18688. },
  18689. beans: {
  18690. height: math.unit(1.15, "feet"),
  18691. name: "Beans",
  18692. image: {
  18693. source: "./media/characters/klay/beans.svg"
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Micro",
  18700. height: math.unit(6, "inches")
  18701. },
  18702. {
  18703. name: "Mini",
  18704. height: math.unit(3, "feet")
  18705. },
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(6, "feet"),
  18709. default: true
  18710. },
  18711. {
  18712. name: "Big",
  18713. height: math.unit(25, "feet")
  18714. },
  18715. {
  18716. name: "Macro",
  18717. height: math.unit(100, "feet")
  18718. },
  18719. {
  18720. name: "Megamacro",
  18721. height: math.unit(400, "feet")
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(6, "feet"),
  18730. weight: math.unit(160, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/marcus/front.svg",
  18734. extra: 734 / 676,
  18735. bottom: 0.03
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Little",
  18742. height: math.unit(6, "feet")
  18743. },
  18744. {
  18745. name: "Normal",
  18746. height: math.unit(110, "feet"),
  18747. default: true
  18748. },
  18749. {
  18750. name: "Macro",
  18751. height: math.unit(250, "feet")
  18752. },
  18753. {
  18754. name: "Megamacro",
  18755. height: math.unit(1000, "feet")
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(7, "feet"),
  18764. weight: math.unit(275, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/claude-delroute/front.svg",
  18768. extra: 902/827,
  18769. bottom: 26/928
  18770. }
  18771. },
  18772. side: {
  18773. height: math.unit(7, "feet"),
  18774. weight: math.unit(275, "lb"),
  18775. name: "Side",
  18776. image: {
  18777. source: "./media/characters/claude-delroute/side.svg",
  18778. extra: 908/853,
  18779. bottom: 16/924
  18780. }
  18781. },
  18782. back: {
  18783. height: math.unit(7, "feet"),
  18784. weight: math.unit(275, "lb"),
  18785. name: "Back",
  18786. image: {
  18787. source: "./media/characters/claude-delroute/back.svg",
  18788. extra: 911/829,
  18789. bottom: 18/929
  18790. }
  18791. },
  18792. maw: {
  18793. height: math.unit(0.6407, "meters"),
  18794. name: "Maw",
  18795. image: {
  18796. source: "./media/characters/claude-delroute/maw.svg"
  18797. }
  18798. },
  18799. },
  18800. [
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(7, "feet"),
  18804. default: true
  18805. },
  18806. {
  18807. name: "Lorge",
  18808. height: math.unit(20, "feet")
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18814. {
  18815. front: {
  18816. height: math.unit(8 + 4 / 12, "feet"),
  18817. weight: math.unit(600, "lb"),
  18818. name: "Front",
  18819. image: {
  18820. source: "./media/characters/dragonien/front.svg",
  18821. extra: 100 / 94,
  18822. bottom: 3.3 / 103.3445
  18823. }
  18824. },
  18825. back: {
  18826. height: math.unit(8 + 4 / 12, "feet"),
  18827. weight: math.unit(600, "lb"),
  18828. name: "Back",
  18829. image: {
  18830. source: "./media/characters/dragonien/back.svg",
  18831. extra: 776 / 746,
  18832. bottom: 6.4 / 782.0616
  18833. }
  18834. },
  18835. foot: {
  18836. height: math.unit(1.54, "feet"),
  18837. name: "Foot",
  18838. image: {
  18839. source: "./media/characters/dragonien/foot.svg",
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Normal",
  18846. height: math.unit(8 + 4 / 12, "feet"),
  18847. default: true
  18848. },
  18849. {
  18850. name: "Macro",
  18851. height: math.unit(200, "feet")
  18852. },
  18853. {
  18854. name: "Megamacro",
  18855. height: math.unit(1, "mile")
  18856. },
  18857. {
  18858. name: "Gigamacro",
  18859. height: math.unit(1000, "miles")
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18865. {
  18866. front: {
  18867. height: math.unit(5 + 2 / 12, "feet"),
  18868. weight: math.unit(110, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/desta/front.svg",
  18872. extra: 767 / 726,
  18873. bottom: 11.7 / 779
  18874. }
  18875. },
  18876. back: {
  18877. height: math.unit(5 + 2 / 12, "feet"),
  18878. weight: math.unit(110, "lb"),
  18879. name: "Back",
  18880. image: {
  18881. source: "./media/characters/desta/back.svg",
  18882. extra: 777 / 728,
  18883. bottom: 6 / 784
  18884. }
  18885. },
  18886. frontAlt: {
  18887. height: math.unit(5 + 2 / 12, "feet"),
  18888. weight: math.unit(110, "lb"),
  18889. name: "Front",
  18890. image: {
  18891. source: "./media/characters/desta/front-alt.svg",
  18892. extra: 1482 / 1417
  18893. }
  18894. },
  18895. side: {
  18896. height: math.unit(5 + 2 / 12, "feet"),
  18897. weight: math.unit(110, "lb"),
  18898. name: "Side",
  18899. image: {
  18900. source: "./media/characters/desta/side.svg",
  18901. extra: 2579 / 2491,
  18902. bottom: 0.053
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Micro",
  18909. height: math.unit(6, "inches")
  18910. },
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(5 + 2 / 12, "feet"),
  18914. default: true
  18915. },
  18916. {
  18917. name: "Macro",
  18918. height: math.unit(62, "feet")
  18919. },
  18920. {
  18921. name: "Megamacro",
  18922. height: math.unit(1800, "feet")
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(10, "feet"),
  18931. weight: math.unit(700, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/storm-alystar/front.svg",
  18935. extra: 2112 / 1898,
  18936. bottom: 0.034
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Micro",
  18943. height: math.unit(3.5, "inches")
  18944. },
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(10, "feet"),
  18948. default: true
  18949. },
  18950. {
  18951. name: "Macro",
  18952. height: math.unit(400, "feet")
  18953. },
  18954. {
  18955. name: "Deific",
  18956. height: math.unit(60, "miles")
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(2.35, "meters"),
  18965. weight: math.unit(119, "kg"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/ilia/front.svg",
  18969. extra: 1285 / 1255,
  18970. bottom: 0.06
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(2.35, "meters")
  18978. },
  18979. {
  18980. name: "Macro",
  18981. height: math.unit(140, "meters"),
  18982. default: true
  18983. },
  18984. {
  18985. name: "Megamacro",
  18986. height: math.unit(100, "miles")
  18987. },
  18988. ]
  18989. ))
  18990. characterMakers.push(() => makeCharacter(
  18991. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18992. {
  18993. front: {
  18994. height: math.unit(6 + 5 / 12, "feet"),
  18995. weight: math.unit(190, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/kingdead/front.svg",
  18999. extra: 1228 / 1177
  19000. }
  19001. },
  19002. },
  19003. [
  19004. {
  19005. name: "Micro",
  19006. height: math.unit(7, "inches")
  19007. },
  19008. {
  19009. name: "Normal",
  19010. height: math.unit(6 + 5 / 12, "feet")
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(150, "feet"),
  19015. default: true
  19016. },
  19017. {
  19018. name: "Megamacro",
  19019. height: math.unit(200, "miles")
  19020. },
  19021. ]
  19022. ))
  19023. characterMakers.push(() => makeCharacter(
  19024. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19025. {
  19026. front: {
  19027. height: math.unit(8, "feet"),
  19028. weight: math.unit(600, "lb"),
  19029. name: "Front",
  19030. image: {
  19031. source: "./media/characters/kyrehx/front.svg",
  19032. extra: 1195 / 1095,
  19033. bottom: 0.034
  19034. }
  19035. },
  19036. },
  19037. [
  19038. {
  19039. name: "Micro",
  19040. height: math.unit(2, "inches")
  19041. },
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(8, "feet"),
  19045. default: true
  19046. },
  19047. {
  19048. name: "Macro",
  19049. height: math.unit(255, "feet")
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19058. weight: math.unit(184, "lb"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/xang/front.svg",
  19062. extra: 845 / 755
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19070. default: true
  19071. },
  19072. {
  19073. name: "Macro",
  19074. height: math.unit(0.935 * 146, "feet")
  19075. },
  19076. {
  19077. name: "Megamacro",
  19078. height: math.unit(0.935 * 3, "miles")
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19084. {
  19085. frontDressed: {
  19086. height: math.unit(5 + 7 / 12, "feet"),
  19087. weight: math.unit(140, "lb"),
  19088. name: "Front (Dressed)",
  19089. image: {
  19090. source: "./media/characters/doc-weardno/front-dressed.svg",
  19091. extra: 263 / 234
  19092. }
  19093. },
  19094. backDressed: {
  19095. height: math.unit(5 + 7 / 12, "feet"),
  19096. weight: math.unit(140, "lb"),
  19097. name: "Back (Dressed)",
  19098. image: {
  19099. source: "./media/characters/doc-weardno/back-dressed.svg",
  19100. extra: 266 / 238
  19101. }
  19102. },
  19103. front: {
  19104. height: math.unit(5 + 7 / 12, "feet"),
  19105. weight: math.unit(140, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/doc-weardno/front.svg",
  19109. extra: 254 / 233
  19110. }
  19111. },
  19112. },
  19113. [
  19114. {
  19115. name: "Micro",
  19116. height: math.unit(3, "inches")
  19117. },
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(5 + 7 / 12, "feet"),
  19121. default: true
  19122. },
  19123. {
  19124. name: "Macro",
  19125. height: math.unit(25, "feet")
  19126. },
  19127. {
  19128. name: "Megamacro",
  19129. height: math.unit(2, "miles")
  19130. },
  19131. ]
  19132. ))
  19133. characterMakers.push(() => makeCharacter(
  19134. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19135. {
  19136. front: {
  19137. height: math.unit(6 + 2 / 12, "feet"),
  19138. weight: math.unit(153, "lb"),
  19139. name: "Front",
  19140. image: {
  19141. source: "./media/characters/seth-whilst/front.svg",
  19142. bottom: 0.07
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Micro",
  19149. height: math.unit(5, "inches")
  19150. },
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(6 + 2 / 12, "feet"),
  19154. default: true
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19160. {
  19161. front: {
  19162. height: math.unit(3, "inches"),
  19163. weight: math.unit(8, "grams"),
  19164. name: "Front",
  19165. image: {
  19166. source: "./media/characters/pocket-jabari/front.svg",
  19167. extra: 1024 / 974,
  19168. bottom: 0.039
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Minimicro",
  19175. height: math.unit(8, "mm")
  19176. },
  19177. {
  19178. name: "Micro",
  19179. height: math.unit(3, "inches"),
  19180. default: true
  19181. },
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(3, "feet")
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19190. {
  19191. frontDressed: {
  19192. height: math.unit(15, "feet"),
  19193. weight: math.unit(3280, "lb"),
  19194. name: "Front (Dressed)",
  19195. image: {
  19196. source: "./media/characters/sapphy/front-dressed.svg",
  19197. extra: 1951/1654,
  19198. bottom: 194/2145
  19199. },
  19200. form: "anthro",
  19201. default: true
  19202. },
  19203. backDressed: {
  19204. height: math.unit(15, "feet"),
  19205. weight: math.unit(3280, "lb"),
  19206. name: "Back (Dressed)",
  19207. image: {
  19208. source: "./media/characters/sapphy/back-dressed.svg",
  19209. extra: 2058/1918,
  19210. bottom: 125/2183
  19211. },
  19212. form: "anthro"
  19213. },
  19214. frontNude: {
  19215. height: math.unit(15, "feet"),
  19216. weight: math.unit(3280, "lb"),
  19217. name: "Front (Nude)",
  19218. image: {
  19219. source: "./media/characters/sapphy/front-nude.svg",
  19220. extra: 1951/1654,
  19221. bottom: 194/2145
  19222. },
  19223. form: "anthro"
  19224. },
  19225. backNude: {
  19226. height: math.unit(15, "feet"),
  19227. weight: math.unit(3280, "lb"),
  19228. name: "Back (Nude)",
  19229. image: {
  19230. source: "./media/characters/sapphy/back-nude.svg",
  19231. extra: 2058/1918,
  19232. bottom: 125/2183
  19233. },
  19234. form: "anthro"
  19235. },
  19236. dick: {
  19237. height: math.unit(3.8, "feet"),
  19238. name: "Dick",
  19239. image: {
  19240. source: "./media/characters/sapphy/dick.svg"
  19241. },
  19242. form: "anthro"
  19243. },
  19244. feral: {
  19245. height: math.unit(35, "feet"),
  19246. weight: math.unit(160, "tons"),
  19247. name: "Feral",
  19248. image: {
  19249. source: "./media/characters/sapphy/feral.svg",
  19250. extra: 1050/573,
  19251. bottom: 60/1110
  19252. },
  19253. form: "feral",
  19254. default: true
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(15, "feet"),
  19261. form: "anthro"
  19262. },
  19263. {
  19264. name: "Casual Macro",
  19265. height: math.unit(120, "feet"),
  19266. form: "anthro"
  19267. },
  19268. {
  19269. name: "Macro",
  19270. height: math.unit(2150, "feet"),
  19271. default: true,
  19272. form: "anthro"
  19273. },
  19274. {
  19275. name: "Megamacro",
  19276. height: math.unit(8, "miles"),
  19277. form: "anthro"
  19278. },
  19279. {
  19280. name: "Galaxy Mom",
  19281. height: math.unit(6, "megalightyears"),
  19282. form: "anthro"
  19283. },
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(35, "feet"),
  19287. form: "feral",
  19288. default: true
  19289. },
  19290. {
  19291. name: "Macro",
  19292. height: math.unit(300, "feet"),
  19293. form: "feral"
  19294. },
  19295. {
  19296. name: "Galaxy Mom",
  19297. height: math.unit(10, "megalightyears"),
  19298. form: "feral"
  19299. },
  19300. ],
  19301. {
  19302. "anthro": {
  19303. name: "Anthro",
  19304. default: true
  19305. },
  19306. "feral": {
  19307. name: "Feral"
  19308. }
  19309. }
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(6, "feet"),
  19316. weight: math.unit(170, "lb"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/kiro/front.svg",
  19320. extra: 1064 / 1012,
  19321. bottom: 0.052
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Micro",
  19328. height: math.unit(6, "inches")
  19329. },
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(6, "feet"),
  19333. default: true
  19334. },
  19335. {
  19336. name: "Macro",
  19337. height: math.unit(72, "feet")
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19343. {
  19344. front: {
  19345. height: math.unit(5 + 9 / 12, "feet"),
  19346. weight: math.unit(175, "lb"),
  19347. name: "Front",
  19348. image: {
  19349. source: "./media/characters/irishfox/front.svg",
  19350. extra: 1912 / 1680,
  19351. bottom: 0.02
  19352. }
  19353. },
  19354. },
  19355. [
  19356. {
  19357. name: "Nano",
  19358. height: math.unit(1, "mm")
  19359. },
  19360. {
  19361. name: "Micro",
  19362. height: math.unit(2, "inches")
  19363. },
  19364. {
  19365. name: "Normal",
  19366. height: math.unit(5 + 9 / 12, "feet"),
  19367. default: true
  19368. },
  19369. {
  19370. name: "Macro",
  19371. height: math.unit(45, "feet")
  19372. },
  19373. ]
  19374. ))
  19375. characterMakers.push(() => makeCharacter(
  19376. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19377. {
  19378. front: {
  19379. height: math.unit(6 + 1 / 12, "feet"),
  19380. weight: math.unit(75, "lb"),
  19381. name: "Front",
  19382. image: {
  19383. source: "./media/characters/aronai-sieyes/front.svg",
  19384. extra: 1532/1450,
  19385. bottom: 42/1574
  19386. }
  19387. },
  19388. side: {
  19389. height: math.unit(6 + 1 / 12, "feet"),
  19390. weight: math.unit(75, "lb"),
  19391. name: "Side",
  19392. image: {
  19393. source: "./media/characters/aronai-sieyes/side.svg",
  19394. extra: 1422/1365,
  19395. bottom: 148/1570
  19396. }
  19397. },
  19398. back: {
  19399. height: math.unit(6 + 1 / 12, "feet"),
  19400. weight: math.unit(75, "lb"),
  19401. name: "Back",
  19402. image: {
  19403. source: "./media/characters/aronai-sieyes/back.svg",
  19404. extra: 1526/1464,
  19405. bottom: 51/1577
  19406. }
  19407. },
  19408. dressed: {
  19409. height: math.unit(6 + 1 / 12, "feet"),
  19410. weight: math.unit(75, "lb"),
  19411. name: "Dressed",
  19412. image: {
  19413. source: "./media/characters/aronai-sieyes/dressed.svg",
  19414. extra: 1559/1483,
  19415. bottom: 39/1598
  19416. }
  19417. },
  19418. slit: {
  19419. height: math.unit(1.3, "feet"),
  19420. name: "Slit",
  19421. image: {
  19422. source: "./media/characters/aronai-sieyes/slit.svg"
  19423. }
  19424. },
  19425. slitSpread: {
  19426. height: math.unit(0.9, "feet"),
  19427. name: "Slit (Spread)",
  19428. image: {
  19429. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19430. }
  19431. },
  19432. rump: {
  19433. height: math.unit(1.3, "feet"),
  19434. name: "Rump",
  19435. image: {
  19436. source: "./media/characters/aronai-sieyes/rump.svg"
  19437. }
  19438. },
  19439. maw: {
  19440. height: math.unit(1.25, "feet"),
  19441. name: "Maw",
  19442. image: {
  19443. source: "./media/characters/aronai-sieyes/maw.svg"
  19444. }
  19445. },
  19446. feral: {
  19447. height: math.unit(18, "feet"),
  19448. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19449. name: "Feral",
  19450. image: {
  19451. source: "./media/characters/aronai-sieyes/feral.svg",
  19452. extra: 1530 / 1240,
  19453. bottom: 0.035
  19454. }
  19455. },
  19456. },
  19457. [
  19458. {
  19459. name: "Micro",
  19460. height: math.unit(2, "inches")
  19461. },
  19462. {
  19463. name: "Normal",
  19464. height: math.unit(6 + 1 / 12, "feet"),
  19465. default: true
  19466. }
  19467. ]
  19468. ))
  19469. characterMakers.push(() => makeCharacter(
  19470. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19471. {
  19472. front: {
  19473. height: math.unit(12, "feet"),
  19474. weight: math.unit(410, "kg"),
  19475. name: "Front",
  19476. image: {
  19477. source: "./media/characters/xuna/front.svg",
  19478. extra: 2184 / 1980
  19479. }
  19480. },
  19481. side: {
  19482. height: math.unit(12, "feet"),
  19483. weight: math.unit(410, "kg"),
  19484. name: "Side",
  19485. image: {
  19486. source: "./media/characters/xuna/side.svg",
  19487. extra: 2184 / 1980
  19488. }
  19489. },
  19490. back: {
  19491. height: math.unit(12, "feet"),
  19492. weight: math.unit(410, "kg"),
  19493. name: "Back",
  19494. image: {
  19495. source: "./media/characters/xuna/back.svg",
  19496. extra: 2184 / 1980
  19497. }
  19498. },
  19499. },
  19500. [
  19501. {
  19502. name: "Nano glow",
  19503. height: math.unit(10, "nm")
  19504. },
  19505. {
  19506. name: "Micro floof",
  19507. height: math.unit(0.3, "m")
  19508. },
  19509. {
  19510. name: "Huggable softy boi",
  19511. height: math.unit(3.6576, "m"),
  19512. default: true
  19513. },
  19514. {
  19515. name: "Admirable floof",
  19516. height: math.unit(80, "meters")
  19517. },
  19518. {
  19519. name: "Gentle macro",
  19520. height: math.unit(300, "meters")
  19521. },
  19522. {
  19523. name: "Very careful floof",
  19524. height: math.unit(3200, "meters")
  19525. },
  19526. {
  19527. name: "The mega floof",
  19528. height: math.unit(36000, "meters")
  19529. },
  19530. {
  19531. name: "Giga-fur-Wicker",
  19532. height: math.unit(4800000, "meters")
  19533. },
  19534. {
  19535. name: "Licky world",
  19536. height: math.unit(20000000, "meters")
  19537. },
  19538. {
  19539. name: "Floofy cyan sun",
  19540. height: math.unit(1500000000, "meters")
  19541. },
  19542. {
  19543. name: "Milky Wicker",
  19544. height: math.unit(1000000000000000000000, "meters")
  19545. },
  19546. {
  19547. name: "The observing Wicker",
  19548. height: math.unit(999999999999999999999999999, "meters")
  19549. },
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19554. {
  19555. front: {
  19556. height: math.unit(5 + 9 / 12, "feet"),
  19557. weight: math.unit(150, "lb"),
  19558. name: "Front",
  19559. image: {
  19560. source: "./media/characters/arokha-sieyes/front.svg",
  19561. extra: 1425 / 1284,
  19562. bottom: 0.05
  19563. }
  19564. },
  19565. },
  19566. [
  19567. {
  19568. name: "Normal",
  19569. height: math.unit(5 + 9 / 12, "feet")
  19570. },
  19571. {
  19572. name: "Macro",
  19573. height: math.unit(30, "meters"),
  19574. default: true
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19580. {
  19581. front: {
  19582. height: math.unit(6, "feet"),
  19583. weight: math.unit(180, "lb"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/arokh-sieyes/front.svg",
  19587. extra: 1830 / 1769,
  19588. bottom: 0.01
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Normal",
  19595. height: math.unit(6, "feet")
  19596. },
  19597. {
  19598. name: "Macro",
  19599. height: math.unit(30, "meters"),
  19600. default: true
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19606. {
  19607. side: {
  19608. height: math.unit(13 + 1 / 12, "feet"),
  19609. weight: math.unit(8.5, "tonnes"),
  19610. name: "Side",
  19611. image: {
  19612. source: "./media/characters/goldeneye/side.svg",
  19613. extra: 1182 / 778,
  19614. bottom: 0.067
  19615. }
  19616. },
  19617. paw: {
  19618. height: math.unit(3.4, "feet"),
  19619. name: "Paw",
  19620. image: {
  19621. source: "./media/characters/goldeneye/paw.svg"
  19622. }
  19623. },
  19624. },
  19625. [
  19626. {
  19627. name: "Normal",
  19628. height: math.unit(13 + 1 / 12, "feet"),
  19629. default: true
  19630. },
  19631. ]
  19632. ))
  19633. characterMakers.push(() => makeCharacter(
  19634. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19635. {
  19636. front: {
  19637. height: math.unit(6 + 1 / 12, "feet"),
  19638. weight: math.unit(210, "lb"),
  19639. name: "Front",
  19640. image: {
  19641. source: "./media/characters/leonardo-lycheborne/front.svg",
  19642. extra: 776/723,
  19643. bottom: 34/810
  19644. }
  19645. },
  19646. side: {
  19647. height: math.unit(6 + 1 / 12, "feet"),
  19648. weight: math.unit(210, "lb"),
  19649. name: "Side",
  19650. image: {
  19651. source: "./media/characters/leonardo-lycheborne/side.svg",
  19652. extra: 780/728,
  19653. bottom: 12/792
  19654. }
  19655. },
  19656. back: {
  19657. height: math.unit(6 + 1 / 12, "feet"),
  19658. weight: math.unit(210, "lb"),
  19659. name: "Back",
  19660. image: {
  19661. source: "./media/characters/leonardo-lycheborne/back.svg",
  19662. extra: 775/721,
  19663. bottom: 17/792
  19664. }
  19665. },
  19666. hand: {
  19667. height: math.unit(1.08, "feet"),
  19668. name: "Hand",
  19669. image: {
  19670. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19671. }
  19672. },
  19673. foot: {
  19674. height: math.unit(1.32, "feet"),
  19675. name: "Foot",
  19676. image: {
  19677. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19678. }
  19679. },
  19680. maw: {
  19681. height: math.unit(1, "feet"),
  19682. name: "Maw",
  19683. image: {
  19684. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19685. }
  19686. },
  19687. were: {
  19688. height: math.unit(20, "feet"),
  19689. weight: math.unit(7800, "lb"),
  19690. name: "Were",
  19691. image: {
  19692. source: "./media/characters/leonardo-lycheborne/were.svg",
  19693. extra: 1224/1165,
  19694. bottom: 72/1296
  19695. }
  19696. },
  19697. feral: {
  19698. height: math.unit(7.5, "feet"),
  19699. weight: math.unit(600, "lb"),
  19700. name: "Feral",
  19701. image: {
  19702. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19703. extra: 797/702,
  19704. bottom: 139/936
  19705. }
  19706. },
  19707. taur: {
  19708. height: math.unit(11, "feet"),
  19709. weight: math.unit(3300, "lb"),
  19710. name: "Taur",
  19711. image: {
  19712. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19713. extra: 1271/1197,
  19714. bottom: 47/1318
  19715. }
  19716. },
  19717. barghest: {
  19718. height: math.unit(11, "feet"),
  19719. weight: math.unit(1300, "lb"),
  19720. name: "Barghest",
  19721. image: {
  19722. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19723. extra: 1291/1204,
  19724. bottom: 37/1328
  19725. }
  19726. },
  19727. dick: {
  19728. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19729. name: "Dick",
  19730. image: {
  19731. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19732. }
  19733. },
  19734. dickWere: {
  19735. height: math.unit((20) / 3.8, "feet"),
  19736. name: "Dick (Were)",
  19737. image: {
  19738. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19739. }
  19740. },
  19741. },
  19742. [
  19743. {
  19744. name: "Normal",
  19745. height: math.unit(6 + 1 / 12, "feet"),
  19746. default: true
  19747. },
  19748. ]
  19749. ))
  19750. characterMakers.push(() => makeCharacter(
  19751. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19752. {
  19753. front: {
  19754. height: math.unit(10, "feet"),
  19755. weight: math.unit(350, "lb"),
  19756. name: "Front",
  19757. image: {
  19758. source: "./media/characters/jet/front.svg",
  19759. extra: 2050 / 1980,
  19760. bottom: 0.013
  19761. }
  19762. },
  19763. back: {
  19764. height: math.unit(10, "feet"),
  19765. weight: math.unit(350, "lb"),
  19766. name: "Back",
  19767. image: {
  19768. source: "./media/characters/jet/back.svg",
  19769. extra: 2050 / 1980,
  19770. bottom: 0.013
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Micro",
  19777. height: math.unit(6, "inches")
  19778. },
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(10, "feet"),
  19782. default: true
  19783. },
  19784. {
  19785. name: "Macro",
  19786. height: math.unit(100, "feet")
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19792. {
  19793. front: {
  19794. height: math.unit(15, "feet"),
  19795. weight: math.unit(2800, "lb"),
  19796. name: "Front",
  19797. image: {
  19798. source: "./media/characters/tanarath/front.svg",
  19799. extra: 2392 / 2220,
  19800. bottom: 0.03
  19801. }
  19802. },
  19803. back: {
  19804. height: math.unit(15, "feet"),
  19805. weight: math.unit(2800, "lb"),
  19806. name: "Back",
  19807. image: {
  19808. source: "./media/characters/tanarath/back.svg",
  19809. extra: 2392 / 2220,
  19810. bottom: 0.03
  19811. }
  19812. },
  19813. },
  19814. [
  19815. {
  19816. name: "Normal",
  19817. height: math.unit(15, "feet"),
  19818. default: true
  19819. },
  19820. ]
  19821. ))
  19822. characterMakers.push(() => makeCharacter(
  19823. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19824. {
  19825. front: {
  19826. height: math.unit(7 + 1 / 12, "feet"),
  19827. weight: math.unit(175, "lb"),
  19828. name: "Front",
  19829. image: {
  19830. source: "./media/characters/patty-cattybatty/front.svg",
  19831. extra: 908 / 874,
  19832. bottom: 0.025
  19833. }
  19834. },
  19835. },
  19836. [
  19837. {
  19838. name: "Micro",
  19839. height: math.unit(1, "inch")
  19840. },
  19841. {
  19842. name: "Normal",
  19843. height: math.unit(7 + 1 / 12, "feet")
  19844. },
  19845. {
  19846. name: "Mini Macro",
  19847. height: math.unit(155, "feet")
  19848. },
  19849. {
  19850. name: "Macro",
  19851. height: math.unit(1077, "feet")
  19852. },
  19853. {
  19854. name: "Mega Macro",
  19855. height: math.unit(47650, "feet"),
  19856. default: true
  19857. },
  19858. {
  19859. name: "Giga Macro",
  19860. height: math.unit(440, "miles")
  19861. },
  19862. {
  19863. name: "Tera Macro",
  19864. height: math.unit(8700, "miles")
  19865. },
  19866. {
  19867. name: "Planetary Macro",
  19868. height: math.unit(32700, "miles")
  19869. },
  19870. {
  19871. name: "Solar Macro",
  19872. height: math.unit(550000, "miles")
  19873. },
  19874. {
  19875. name: "Celestial Macro",
  19876. height: math.unit(2.5, "AU")
  19877. },
  19878. ]
  19879. ))
  19880. characterMakers.push(() => makeCharacter(
  19881. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19882. {
  19883. front: {
  19884. height: math.unit(4 + 5 / 12, "feet"),
  19885. weight: math.unit(90, "lb"),
  19886. name: "Front",
  19887. image: {
  19888. source: "./media/characters/cappu/front.svg",
  19889. extra: 1247 / 1152,
  19890. bottom: 0.012
  19891. }
  19892. },
  19893. },
  19894. [
  19895. {
  19896. name: "Normal",
  19897. height: math.unit(4 + 5 / 12, "feet"),
  19898. default: true
  19899. },
  19900. ]
  19901. ))
  19902. characterMakers.push(() => makeCharacter(
  19903. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19904. {
  19905. frontDressed: {
  19906. height: math.unit(70, "cm"),
  19907. weight: math.unit(6, "kg"),
  19908. name: "Front (Dressed)",
  19909. image: {
  19910. source: "./media/characters/sebi/front-dressed.svg",
  19911. extra: 713.5 / 686.5,
  19912. bottom: 0.003
  19913. }
  19914. },
  19915. front: {
  19916. height: math.unit(70, "cm"),
  19917. weight: math.unit(5, "kg"),
  19918. name: "Front",
  19919. image: {
  19920. source: "./media/characters/sebi/front.svg",
  19921. extra: 713.5 / 686.5,
  19922. bottom: 0.003
  19923. }
  19924. }
  19925. },
  19926. [
  19927. {
  19928. name: "Normal",
  19929. height: math.unit(70, "cm"),
  19930. default: true
  19931. },
  19932. {
  19933. name: "Macro",
  19934. height: math.unit(8, "meters")
  19935. },
  19936. ]
  19937. ))
  19938. characterMakers.push(() => makeCharacter(
  19939. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19940. {
  19941. front: {
  19942. height: math.unit(6, "feet"),
  19943. weight: math.unit(150, "lb"),
  19944. name: "Front",
  19945. image: {
  19946. source: "./media/characters/typhek/front.svg",
  19947. extra: 1948 / 1929,
  19948. bottom: 0.025
  19949. }
  19950. },
  19951. side: {
  19952. height: math.unit(6, "feet"),
  19953. weight: math.unit(150, "lb"),
  19954. name: "Side",
  19955. image: {
  19956. source: "./media/characters/typhek/side.svg",
  19957. extra: 2034 / 2010,
  19958. bottom: 0.003
  19959. }
  19960. },
  19961. back: {
  19962. height: math.unit(6, "feet"),
  19963. weight: math.unit(150, "lb"),
  19964. name: "Back",
  19965. image: {
  19966. source: "./media/characters/typhek/back.svg",
  19967. extra: 2005 / 1978,
  19968. bottom: 0.004
  19969. }
  19970. },
  19971. palm: {
  19972. height: math.unit(1.2, "feet"),
  19973. name: "Palm",
  19974. image: {
  19975. source: "./media/characters/typhek/palm.svg"
  19976. }
  19977. },
  19978. fist: {
  19979. height: math.unit(1.1, "feet"),
  19980. name: "Fist",
  19981. image: {
  19982. source: "./media/characters/typhek/fist.svg"
  19983. }
  19984. },
  19985. foot: {
  19986. height: math.unit(1.57, "feet"),
  19987. name: "Foot",
  19988. image: {
  19989. source: "./media/characters/typhek/foot.svg"
  19990. }
  19991. },
  19992. sole: {
  19993. height: math.unit(2.05, "feet"),
  19994. name: "Sole",
  19995. image: {
  19996. source: "./media/characters/typhek/sole.svg"
  19997. }
  19998. },
  19999. },
  20000. [
  20001. {
  20002. name: "Macro",
  20003. height: math.unit(40, "stories"),
  20004. default: true
  20005. },
  20006. {
  20007. name: "Megamacro",
  20008. height: math.unit(1, "mile")
  20009. },
  20010. {
  20011. name: "Gigamacro",
  20012. height: math.unit(4000, "solarradii")
  20013. },
  20014. {
  20015. name: "Universal",
  20016. height: math.unit(1.1, "universes")
  20017. }
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20022. {
  20023. side: {
  20024. height: math.unit(5 + 7 / 12, "feet"),
  20025. weight: math.unit(150, "lb"),
  20026. name: "Side",
  20027. image: {
  20028. source: "./media/characters/kassy/side.svg",
  20029. extra: 1280 / 1225,
  20030. bottom: 0.002
  20031. }
  20032. },
  20033. front: {
  20034. height: math.unit(5 + 7 / 12, "feet"),
  20035. weight: math.unit(150, "lb"),
  20036. name: "Front",
  20037. image: {
  20038. source: "./media/characters/kassy/front.svg",
  20039. extra: 1280 / 1225,
  20040. bottom: 0.025
  20041. }
  20042. },
  20043. back: {
  20044. height: math.unit(5 + 7 / 12, "feet"),
  20045. weight: math.unit(150, "lb"),
  20046. name: "Back",
  20047. image: {
  20048. source: "./media/characters/kassy/back.svg",
  20049. extra: 1280 / 1225,
  20050. bottom: 0.002
  20051. }
  20052. },
  20053. foot: {
  20054. height: math.unit(1.266, "feet"),
  20055. name: "Foot",
  20056. image: {
  20057. source: "./media/characters/kassy/foot.svg"
  20058. }
  20059. },
  20060. },
  20061. [
  20062. {
  20063. name: "Normal",
  20064. height: math.unit(5 + 7 / 12, "feet")
  20065. },
  20066. {
  20067. name: "Macro",
  20068. height: math.unit(137, "feet"),
  20069. default: true
  20070. },
  20071. {
  20072. name: "Megamacro",
  20073. height: math.unit(1, "mile")
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20079. {
  20080. front: {
  20081. height: math.unit(6 + 1 / 12, "feet"),
  20082. weight: math.unit(200, "lb"),
  20083. name: "Front",
  20084. image: {
  20085. source: "./media/characters/neil/front.svg",
  20086. extra: 1326 / 1250,
  20087. bottom: 0.023
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(6 + 1 / 12, "feet"),
  20095. default: true
  20096. },
  20097. {
  20098. name: "Macro",
  20099. height: math.unit(200, "feet")
  20100. },
  20101. ]
  20102. ))
  20103. characterMakers.push(() => makeCharacter(
  20104. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20105. {
  20106. front: {
  20107. height: math.unit(5 + 9 / 12, "feet"),
  20108. weight: math.unit(190, "lb"),
  20109. name: "Front",
  20110. image: {
  20111. source: "./media/characters/atticus/front.svg",
  20112. extra: 2934 / 2785,
  20113. bottom: 0.025
  20114. }
  20115. },
  20116. },
  20117. [
  20118. {
  20119. name: "Normal",
  20120. height: math.unit(5 + 9 / 12, "feet"),
  20121. default: true
  20122. },
  20123. {
  20124. name: "Macro",
  20125. height: math.unit(180, "feet")
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20131. {
  20132. side: {
  20133. height: math.unit(9, "feet"),
  20134. weight: math.unit(650, "lb"),
  20135. name: "Side",
  20136. image: {
  20137. source: "./media/characters/milo/side.svg",
  20138. extra: 2644 / 2310,
  20139. bottom: 0.032
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(9, "feet"),
  20147. default: true
  20148. },
  20149. {
  20150. name: "Macro",
  20151. height: math.unit(300, "feet")
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20157. {
  20158. side: {
  20159. height: math.unit(8, "meters"),
  20160. weight: math.unit(90000, "kg"),
  20161. name: "Side",
  20162. image: {
  20163. source: "./media/characters/ijzer/side.svg",
  20164. extra: 2756 / 1600,
  20165. bottom: 0.01
  20166. }
  20167. },
  20168. },
  20169. [
  20170. {
  20171. name: "Small",
  20172. height: math.unit(3, "meters")
  20173. },
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(8, "meters"),
  20177. default: true
  20178. },
  20179. {
  20180. name: "Normal+",
  20181. height: math.unit(10, "meters")
  20182. },
  20183. {
  20184. name: "Bigger",
  20185. height: math.unit(24, "meters")
  20186. },
  20187. {
  20188. name: "Huge",
  20189. height: math.unit(80, "meters")
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(6 + 2 / 12, "feet"),
  20198. weight: math.unit(153, "lb"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/luca-cervicum/front.svg",
  20202. extra: 370 / 327,
  20203. bottom: 0.015
  20204. }
  20205. },
  20206. back: {
  20207. height: math.unit(6 + 2 / 12, "feet"),
  20208. weight: math.unit(153, "lb"),
  20209. name: "Back",
  20210. image: {
  20211. source: "./media/characters/luca-cervicum/back.svg",
  20212. extra: 367 / 333,
  20213. bottom: 0.005
  20214. }
  20215. },
  20216. frontGear: {
  20217. height: math.unit(6 + 2 / 12, "feet"),
  20218. weight: math.unit(173, "lb"),
  20219. name: "Front (Gear)",
  20220. image: {
  20221. source: "./media/characters/luca-cervicum/front-gear.svg",
  20222. extra: 377 / 333,
  20223. bottom: 0.006
  20224. }
  20225. },
  20226. },
  20227. [
  20228. {
  20229. name: "Normal",
  20230. height: math.unit(6 + 2 / 12, "feet"),
  20231. default: true
  20232. },
  20233. ]
  20234. ))
  20235. characterMakers.push(() => makeCharacter(
  20236. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20237. {
  20238. front: {
  20239. height: math.unit(6 + 1 / 12, "feet"),
  20240. weight: math.unit(304, "lb"),
  20241. name: "Front",
  20242. image: {
  20243. source: "./media/characters/oliver/front.svg",
  20244. extra: 157 / 143,
  20245. bottom: 0.08
  20246. }
  20247. },
  20248. },
  20249. [
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(6 + 1 / 12, "feet"),
  20253. default: true
  20254. },
  20255. ]
  20256. ))
  20257. characterMakers.push(() => makeCharacter(
  20258. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20259. {
  20260. front: {
  20261. height: math.unit(5 + 7 / 12, "feet"),
  20262. weight: math.unit(140, "lb"),
  20263. name: "Front",
  20264. image: {
  20265. source: "./media/characters/shane/front.svg",
  20266. extra: 304 / 289,
  20267. bottom: 0.005
  20268. }
  20269. },
  20270. },
  20271. [
  20272. {
  20273. name: "Normal",
  20274. height: math.unit(5 + 7 / 12, "feet"),
  20275. default: true
  20276. },
  20277. ]
  20278. ))
  20279. characterMakers.push(() => makeCharacter(
  20280. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20281. {
  20282. front: {
  20283. height: math.unit(5 + 9 / 12, "feet"),
  20284. weight: math.unit(178, "lb"),
  20285. name: "Front",
  20286. image: {
  20287. source: "./media/characters/shin/front.svg",
  20288. extra: 159 / 151,
  20289. bottom: 0.015
  20290. }
  20291. },
  20292. },
  20293. [
  20294. {
  20295. name: "Normal",
  20296. height: math.unit(5 + 9 / 12, "feet"),
  20297. default: true
  20298. },
  20299. ]
  20300. ))
  20301. characterMakers.push(() => makeCharacter(
  20302. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20303. {
  20304. front: {
  20305. height: math.unit(5 + 10 / 12, "feet"),
  20306. weight: math.unit(168, "lb"),
  20307. name: "Front",
  20308. image: {
  20309. source: "./media/characters/xerxes/front.svg",
  20310. extra: 282 / 260,
  20311. bottom: 0.045
  20312. }
  20313. },
  20314. },
  20315. [
  20316. {
  20317. name: "Normal",
  20318. height: math.unit(5 + 10 / 12, "feet"),
  20319. default: true
  20320. },
  20321. ]
  20322. ))
  20323. characterMakers.push(() => makeCharacter(
  20324. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20325. {
  20326. front: {
  20327. height: math.unit(6 + 7 / 12, "feet"),
  20328. weight: math.unit(208, "lb"),
  20329. name: "Front",
  20330. image: {
  20331. source: "./media/characters/chaska/front.svg",
  20332. extra: 332 / 319,
  20333. bottom: 0.015
  20334. }
  20335. },
  20336. },
  20337. [
  20338. {
  20339. name: "Normal",
  20340. height: math.unit(6 + 7 / 12, "feet"),
  20341. default: true
  20342. },
  20343. ]
  20344. ))
  20345. characterMakers.push(() => makeCharacter(
  20346. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20347. {
  20348. front: {
  20349. height: math.unit(5 + 8 / 12, "feet"),
  20350. weight: math.unit(208, "lb"),
  20351. name: "Front",
  20352. image: {
  20353. source: "./media/characters/enuk/front.svg",
  20354. extra: 437 / 406,
  20355. bottom: 0.02
  20356. }
  20357. },
  20358. },
  20359. [
  20360. {
  20361. name: "Normal",
  20362. height: math.unit(5 + 8 / 12, "feet"),
  20363. default: true
  20364. },
  20365. ]
  20366. ))
  20367. characterMakers.push(() => makeCharacter(
  20368. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20369. {
  20370. front: {
  20371. height: math.unit(5 + 10 / 12, "feet"),
  20372. weight: math.unit(252, "lb"),
  20373. name: "Front",
  20374. image: {
  20375. source: "./media/characters/bruun/front.svg",
  20376. extra: 197 / 187,
  20377. bottom: 0.012
  20378. }
  20379. },
  20380. },
  20381. [
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(5 + 10 / 12, "feet"),
  20385. default: true
  20386. },
  20387. ]
  20388. ))
  20389. characterMakers.push(() => makeCharacter(
  20390. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20391. {
  20392. front: {
  20393. height: math.unit(6 + 10 / 12, "feet"),
  20394. weight: math.unit(255, "lb"),
  20395. name: "Front",
  20396. image: {
  20397. source: "./media/characters/alexeev/front.svg",
  20398. extra: 213 / 200,
  20399. bottom: 0.05
  20400. }
  20401. },
  20402. },
  20403. [
  20404. {
  20405. name: "Normal",
  20406. height: math.unit(6 + 10 / 12, "feet"),
  20407. default: true
  20408. },
  20409. ]
  20410. ))
  20411. characterMakers.push(() => makeCharacter(
  20412. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20413. {
  20414. front: {
  20415. height: math.unit(2 + 8 / 12, "feet"),
  20416. weight: math.unit(22, "lb"),
  20417. name: "Front",
  20418. image: {
  20419. source: "./media/characters/evelyn/front.svg",
  20420. extra: 208 / 180
  20421. }
  20422. },
  20423. },
  20424. [
  20425. {
  20426. name: "Normal",
  20427. height: math.unit(2 + 8 / 12, "feet"),
  20428. default: true
  20429. },
  20430. ]
  20431. ))
  20432. characterMakers.push(() => makeCharacter(
  20433. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20434. {
  20435. front: {
  20436. height: math.unit(5 + 9 / 12, "feet"),
  20437. weight: math.unit(139, "lb"),
  20438. name: "Front",
  20439. image: {
  20440. source: "./media/characters/inca/front.svg",
  20441. extra: 294 / 291,
  20442. bottom: 0.03
  20443. }
  20444. },
  20445. },
  20446. [
  20447. {
  20448. name: "Normal",
  20449. height: math.unit(5 + 9 / 12, "feet"),
  20450. default: true
  20451. },
  20452. ]
  20453. ))
  20454. characterMakers.push(() => makeCharacter(
  20455. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20456. {
  20457. front: {
  20458. height: math.unit(6 + 3 / 12, "feet"),
  20459. weight: math.unit(185, "lb"),
  20460. name: "Front",
  20461. image: {
  20462. source: "./media/characters/mera/front.svg",
  20463. extra: 291 / 277,
  20464. bottom: 0.03
  20465. }
  20466. },
  20467. },
  20468. [
  20469. {
  20470. name: "Normal",
  20471. height: math.unit(6 + 3 / 12, "feet"),
  20472. default: true
  20473. },
  20474. ]
  20475. ))
  20476. characterMakers.push(() => makeCharacter(
  20477. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20478. {
  20479. front: {
  20480. height: math.unit(6 + 7 / 12, "feet"),
  20481. weight: math.unit(160, "lb"),
  20482. name: "Front",
  20483. image: {
  20484. source: "./media/characters/ceres/front.svg",
  20485. extra: 1023 / 950,
  20486. bottom: 0.027
  20487. }
  20488. },
  20489. back: {
  20490. height: math.unit(6 + 7 / 12, "feet"),
  20491. weight: math.unit(160, "lb"),
  20492. name: "Back",
  20493. image: {
  20494. source: "./media/characters/ceres/back.svg",
  20495. extra: 1023 / 950
  20496. }
  20497. },
  20498. },
  20499. [
  20500. {
  20501. name: "Normal",
  20502. height: math.unit(6 + 7 / 12, "feet"),
  20503. default: true
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20509. {
  20510. front: {
  20511. height: math.unit(5 + 10 / 12, "feet"),
  20512. weight: math.unit(150, "lb"),
  20513. name: "Front",
  20514. image: {
  20515. source: "./media/characters/kris/front.svg",
  20516. extra: 885 / 803,
  20517. bottom: 0.03
  20518. }
  20519. },
  20520. },
  20521. [
  20522. {
  20523. name: "Normal",
  20524. height: math.unit(5 + 10 / 12, "feet"),
  20525. default: true
  20526. },
  20527. ]
  20528. ))
  20529. characterMakers.push(() => makeCharacter(
  20530. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20531. {
  20532. front: {
  20533. height: math.unit(7, "feet"),
  20534. weight: math.unit(120, "kg"),
  20535. name: "Front",
  20536. image: {
  20537. source: "./media/characters/taluthus/front.svg",
  20538. extra: 903 / 833,
  20539. bottom: 0.015
  20540. }
  20541. },
  20542. },
  20543. [
  20544. {
  20545. name: "Normal",
  20546. height: math.unit(7, "feet"),
  20547. default: true
  20548. },
  20549. {
  20550. name: "Macro",
  20551. height: math.unit(300, "feet")
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20557. {
  20558. front: {
  20559. height: math.unit(5 + 9 / 12, "feet"),
  20560. weight: math.unit(145, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/dawn/front.svg",
  20564. extra: 2094 / 2016,
  20565. bottom: 0.025
  20566. }
  20567. },
  20568. back: {
  20569. height: math.unit(5 + 9 / 12, "feet"),
  20570. weight: math.unit(160, "lb"),
  20571. name: "Back",
  20572. image: {
  20573. source: "./media/characters/dawn/back.svg",
  20574. extra: 2112 / 2080,
  20575. bottom: 0.005
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(6 + 7 / 12, "feet"),
  20583. default: true
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20589. {
  20590. anthro: {
  20591. height: math.unit(8 + 3 / 12, "feet"),
  20592. weight: math.unit(450, "lb"),
  20593. name: "Anthro",
  20594. image: {
  20595. source: "./media/characters/arador/anthro.svg",
  20596. extra: 1835 / 1718,
  20597. bottom: 0.025
  20598. }
  20599. },
  20600. feral: {
  20601. height: math.unit(4, "feet"),
  20602. weight: math.unit(200, "lb"),
  20603. name: "Feral",
  20604. image: {
  20605. source: "./media/characters/arador/feral.svg",
  20606. extra: 1683 / 1514,
  20607. bottom: 0.07
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Normal",
  20614. height: math.unit(8 + 3 / 12, "feet")
  20615. },
  20616. {
  20617. name: "Macro",
  20618. height: math.unit(82.5, "feet"),
  20619. default: true
  20620. },
  20621. ]
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20625. {
  20626. front: {
  20627. height: math.unit(5 + 10 / 12, "feet"),
  20628. weight: math.unit(125, "lb"),
  20629. name: "Front",
  20630. image: {
  20631. source: "./media/characters/dharsi/front.svg",
  20632. extra: 716 / 630,
  20633. bottom: 0.035
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Nano",
  20640. height: math.unit(100, "nm")
  20641. },
  20642. {
  20643. name: "Micro",
  20644. height: math.unit(2, "inches")
  20645. },
  20646. {
  20647. name: "Normal",
  20648. height: math.unit(5 + 10 / 12, "feet"),
  20649. default: true
  20650. },
  20651. {
  20652. name: "Macro",
  20653. height: math.unit(1000, "feet")
  20654. },
  20655. {
  20656. name: "Megamacro",
  20657. height: math.unit(10, "miles")
  20658. },
  20659. {
  20660. name: "Gigamacro",
  20661. height: math.unit(3000, "miles")
  20662. },
  20663. {
  20664. name: "Teramacro",
  20665. height: math.unit(500000, "miles")
  20666. },
  20667. {
  20668. name: "Teramacro+",
  20669. height: math.unit(30, "galaxies")
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20675. {
  20676. front: {
  20677. height: math.unit(6, "feet"),
  20678. weight: math.unit(150, "lb"),
  20679. name: "Front",
  20680. image: {
  20681. source: "./media/characters/deathy/front.svg",
  20682. extra: 1552 / 1463,
  20683. bottom: 0.025
  20684. }
  20685. },
  20686. side: {
  20687. height: math.unit(6, "feet"),
  20688. weight: math.unit(150, "lb"),
  20689. name: "Side",
  20690. image: {
  20691. source: "./media/characters/deathy/side.svg",
  20692. extra: 1604 / 1455,
  20693. bottom: 0.025
  20694. }
  20695. },
  20696. back: {
  20697. height: math.unit(6, "feet"),
  20698. weight: math.unit(150, "lb"),
  20699. name: "Back",
  20700. image: {
  20701. source: "./media/characters/deathy/back.svg",
  20702. extra: 1580 / 1463,
  20703. bottom: 0.005
  20704. }
  20705. },
  20706. },
  20707. [
  20708. {
  20709. name: "Micro",
  20710. height: math.unit(5, "millimeters")
  20711. },
  20712. {
  20713. name: "Normal",
  20714. height: math.unit(6 + 5 / 12, "feet"),
  20715. default: true
  20716. },
  20717. ]
  20718. ))
  20719. characterMakers.push(() => makeCharacter(
  20720. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20721. {
  20722. front: {
  20723. height: math.unit(16, "feet"),
  20724. weight: math.unit(4000, "lb"),
  20725. name: "Front",
  20726. image: {
  20727. source: "./media/characters/juniper/front.svg",
  20728. bottom: 0.04
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Normal",
  20735. height: math.unit(16, "feet"),
  20736. default: true
  20737. },
  20738. ]
  20739. ))
  20740. characterMakers.push(() => makeCharacter(
  20741. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20742. {
  20743. front: {
  20744. height: math.unit(6, "feet"),
  20745. weight: math.unit(150, "lb"),
  20746. name: "Front",
  20747. image: {
  20748. source: "./media/characters/hipster/front.svg",
  20749. extra: 1312 / 1209,
  20750. bottom: 0.025
  20751. }
  20752. },
  20753. back: {
  20754. height: math.unit(6, "feet"),
  20755. weight: math.unit(150, "lb"),
  20756. name: "Back",
  20757. image: {
  20758. source: "./media/characters/hipster/back.svg",
  20759. extra: 1281 / 1196,
  20760. bottom: 0.01
  20761. }
  20762. },
  20763. },
  20764. [
  20765. {
  20766. name: "Micro",
  20767. height: math.unit(1, "mm")
  20768. },
  20769. {
  20770. name: "Normal",
  20771. height: math.unit(4, "inches"),
  20772. default: true
  20773. },
  20774. {
  20775. name: "Macro",
  20776. height: math.unit(500, "feet")
  20777. },
  20778. {
  20779. name: "Megamacro",
  20780. height: math.unit(1000, "miles")
  20781. },
  20782. ]
  20783. ))
  20784. characterMakers.push(() => makeCharacter(
  20785. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20786. {
  20787. front: {
  20788. height: math.unit(6, "feet"),
  20789. weight: math.unit(150, "lb"),
  20790. name: "Front",
  20791. image: {
  20792. source: "./media/characters/tendirmuldr/front.svg",
  20793. extra: 1878 / 1772,
  20794. bottom: 0.015
  20795. }
  20796. },
  20797. },
  20798. [
  20799. {
  20800. name: "Megamacro",
  20801. height: math.unit(1500, "miles"),
  20802. default: true
  20803. },
  20804. ]
  20805. ))
  20806. characterMakers.push(() => makeCharacter(
  20807. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20808. {
  20809. front: {
  20810. height: math.unit(14, "feet"),
  20811. weight: math.unit(12000, "lb"),
  20812. name: "Front",
  20813. image: {
  20814. source: "./media/characters/mort/front.svg",
  20815. extra: 365 / 318,
  20816. bottom: 0.01
  20817. }
  20818. },
  20819. side: {
  20820. height: math.unit(14, "feet"),
  20821. weight: math.unit(12000, "lb"),
  20822. name: "Side",
  20823. image: {
  20824. source: "./media/characters/mort/side.svg",
  20825. extra: 365 / 318,
  20826. bottom: 0.052
  20827. },
  20828. default: true
  20829. },
  20830. back: {
  20831. height: math.unit(14, "feet"),
  20832. weight: math.unit(12000, "lb"),
  20833. name: "Back",
  20834. image: {
  20835. source: "./media/characters/mort/back.svg",
  20836. extra: 371 / 332,
  20837. bottom: 0.18
  20838. }
  20839. },
  20840. },
  20841. [
  20842. {
  20843. name: "Normal",
  20844. height: math.unit(14, "feet"),
  20845. default: true
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20851. {
  20852. front: {
  20853. height: math.unit(8, "feet"),
  20854. weight: math.unit(1, "ton"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/lycoa/front.svg",
  20858. extra: 1836/1728,
  20859. bottom: 81/1917
  20860. }
  20861. },
  20862. back: {
  20863. height: math.unit(8, "feet"),
  20864. weight: math.unit(1, "ton"),
  20865. name: "Back",
  20866. image: {
  20867. source: "./media/characters/lycoa/back.svg",
  20868. extra: 1785/1720,
  20869. bottom: 91/1876
  20870. }
  20871. },
  20872. head: {
  20873. height: math.unit(1.6243, "feet"),
  20874. name: "Head",
  20875. image: {
  20876. source: "./media/characters/lycoa/head.svg",
  20877. extra: 1011/782,
  20878. bottom: 0/1011
  20879. }
  20880. },
  20881. tailmaw: {
  20882. height: math.unit(1.9, "feet"),
  20883. name: "Tailmaw",
  20884. image: {
  20885. source: "./media/characters/lycoa/tailmaw.svg"
  20886. }
  20887. },
  20888. tentacles: {
  20889. height: math.unit(2.1, "feet"),
  20890. name: "Tentacles",
  20891. image: {
  20892. source: "./media/characters/lycoa/tentacles.svg"
  20893. }
  20894. },
  20895. dick: {
  20896. height: math.unit(1.73, "feet"),
  20897. name: "Dick",
  20898. image: {
  20899. source: "./media/characters/lycoa/dick.svg"
  20900. }
  20901. },
  20902. },
  20903. [
  20904. {
  20905. name: "Normal",
  20906. height: math.unit(8, "feet"),
  20907. default: true
  20908. },
  20909. {
  20910. name: "Macro",
  20911. height: math.unit(30, "feet")
  20912. },
  20913. ]
  20914. ))
  20915. characterMakers.push(() => makeCharacter(
  20916. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20917. {
  20918. front: {
  20919. height: math.unit(4 + 2 / 12, "feet"),
  20920. weight: math.unit(70, "lb"),
  20921. name: "Front",
  20922. image: {
  20923. source: "./media/characters/naldara/front.svg",
  20924. extra: 1664/1387,
  20925. bottom: 81/1745
  20926. },
  20927. form: "anthro",
  20928. default: true
  20929. },
  20930. naga: {
  20931. height: math.unit(20, "feet"),
  20932. weight: math.unit(15000, "kg"),
  20933. name: "Front",
  20934. image: {
  20935. source: "./media/characters/naldara/naga.svg",
  20936. extra: 1590/1396,
  20937. bottom: 285/1875
  20938. },
  20939. form: "naga",
  20940. default: true
  20941. },
  20942. },
  20943. [
  20944. {
  20945. name: "Normal",
  20946. height: math.unit(4 + 2 / 12, "feet"),
  20947. form: "anthro",
  20948. default: true
  20949. },
  20950. {
  20951. name: "Normal",
  20952. height: math.unit(20, "feet"),
  20953. form: "naga",
  20954. default: true
  20955. },
  20956. ],
  20957. {
  20958. "anthro": {
  20959. name: "Anthro",
  20960. default: true
  20961. },
  20962. "naga": {
  20963. name: "Naga"
  20964. }
  20965. }
  20966. ))
  20967. characterMakers.push(() => makeCharacter(
  20968. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20969. {
  20970. front: {
  20971. height: math.unit(13 + 7 / 12, "feet"),
  20972. weight: math.unit(1500, "lb"),
  20973. name: "Front",
  20974. image: {
  20975. source: "./media/characters/briar/front.svg",
  20976. extra: 1223/1157,
  20977. bottom: 123/1346
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(13 + 7 / 12, "feet"),
  20985. default: true
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20991. {
  20992. side: {
  20993. height: math.unit(16, "feet"),
  20994. weight: math.unit(500, "lb"),
  20995. name: "Side",
  20996. image: {
  20997. source: "./media/characters/vanguard/side.svg",
  20998. extra: 1022/914,
  20999. bottom: 30/1052
  21000. }
  21001. },
  21002. sideAlt: {
  21003. height: math.unit(10, "feet"),
  21004. weight: math.unit(500, "lb"),
  21005. name: "Side (Alt)",
  21006. image: {
  21007. source: "./media/characters/vanguard/side-alt.svg",
  21008. extra: 502 / 425,
  21009. bottom: 0.087
  21010. }
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Normal",
  21016. height: math.unit(17.71, "feet"),
  21017. default: true
  21018. },
  21019. ]
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21023. {
  21024. front: {
  21025. height: math.unit(7.5, "feet"),
  21026. weight: math.unit(2, "lb"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/artemis/work-safe-front.svg",
  21030. extra: 1192 / 1075,
  21031. bottom: 0.07
  21032. },
  21033. form: "work-safe",
  21034. default: true
  21035. },
  21036. frontNsfw: {
  21037. height: math.unit(7.5, "feet"),
  21038. weight: math.unit(2, "lb"),
  21039. name: "Front",
  21040. image: {
  21041. source: "./media/characters/artemis/calibrating-front.svg",
  21042. extra: 1192 / 1075,
  21043. bottom: 0.07
  21044. },
  21045. form: "calibrating",
  21046. default: true
  21047. },
  21048. frontNsfwer: {
  21049. height: math.unit(7.5, "feet"),
  21050. weight: math.unit(2, "lb"),
  21051. name: "Front",
  21052. image: {
  21053. source: "./media/characters/artemis/oversize-load-front.svg",
  21054. extra: 1192 / 1075,
  21055. bottom: 0.07
  21056. },
  21057. form: "oversize-load",
  21058. default: true
  21059. },
  21060. side: {
  21061. height: math.unit(7.5, "feet"),
  21062. weight: math.unit(2, "lb"),
  21063. name: "Side",
  21064. image: {
  21065. source: "./media/characters/artemis/work-safe-side.svg",
  21066. extra: 1192 / 1075,
  21067. bottom: 0.07
  21068. },
  21069. form: "work-safe"
  21070. },
  21071. sideNsfw: {
  21072. height: math.unit(7.5, "feet"),
  21073. weight: math.unit(2, "lb"),
  21074. name: "Side",
  21075. image: {
  21076. source: "./media/characters/artemis/calibrating-side.svg",
  21077. extra: 1192 / 1075,
  21078. bottom: 0.07
  21079. },
  21080. form: "calibrating"
  21081. },
  21082. sideNsfwer: {
  21083. height: math.unit(7.5, "feet"),
  21084. weight: math.unit(2, "lb"),
  21085. name: "Side",
  21086. image: {
  21087. source: "./media/characters/artemis/oversize-load-side.svg",
  21088. extra: 1192 / 1075,
  21089. bottom: 0.07
  21090. },
  21091. form: "oversize-load"
  21092. },
  21093. maw: {
  21094. height: math.unit(1.1, "feet"),
  21095. name: "Maw",
  21096. image: {
  21097. source: "./media/characters/artemis/maw.svg"
  21098. },
  21099. form: "work-safe"
  21100. },
  21101. stomach: {
  21102. height: math.unit(0.95, "feet"),
  21103. name: "Stomach",
  21104. image: {
  21105. source: "./media/characters/artemis/stomach.svg"
  21106. },
  21107. form: "work-safe"
  21108. },
  21109. dickCanine: {
  21110. height: math.unit(1, "feet"),
  21111. name: "Dick (Canine)",
  21112. image: {
  21113. source: "./media/characters/artemis/dick-canine.svg"
  21114. },
  21115. form: "calibrating"
  21116. },
  21117. dickEquine: {
  21118. height: math.unit(0.85, "feet"),
  21119. name: "Dick (Equine)",
  21120. image: {
  21121. source: "./media/characters/artemis/dick-equine.svg"
  21122. },
  21123. form: "calibrating"
  21124. },
  21125. dickExotic: {
  21126. height: math.unit(0.85, "feet"),
  21127. name: "Dick (Exotic)",
  21128. image: {
  21129. source: "./media/characters/artemis/dick-exotic.svg"
  21130. },
  21131. form: "calibrating"
  21132. },
  21133. dickCanineBigger: {
  21134. height: math.unit(1 * 1.33, "feet"),
  21135. name: "Dick (Canine)",
  21136. image: {
  21137. source: "./media/characters/artemis/dick-canine.svg"
  21138. },
  21139. form: "oversize-load"
  21140. },
  21141. dickEquineBigger: {
  21142. height: math.unit(0.85 * 1.33, "feet"),
  21143. name: "Dick (Equine)",
  21144. image: {
  21145. source: "./media/characters/artemis/dick-equine.svg"
  21146. },
  21147. form: "oversize-load"
  21148. },
  21149. dickExoticBigger: {
  21150. height: math.unit(0.85 * 1.33, "feet"),
  21151. name: "Dick (Exotic)",
  21152. image: {
  21153. source: "./media/characters/artemis/dick-exotic.svg"
  21154. },
  21155. form: "oversize-load"
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Normal",
  21161. height: math.unit(7.5, "feet"),
  21162. form: "work-safe",
  21163. default: true
  21164. },
  21165. {
  21166. name: "Normal",
  21167. height: math.unit(7.5, "feet"),
  21168. form: "calibrating",
  21169. default: true
  21170. },
  21171. {
  21172. name: "Normal",
  21173. height: math.unit(7.5, "feet"),
  21174. form: "oversize-load",
  21175. default: true
  21176. },
  21177. {
  21178. name: "Enlarged",
  21179. height: math.unit(12, "feet"),
  21180. form: "work-safe",
  21181. },
  21182. {
  21183. name: "Enlarged",
  21184. height: math.unit(12, "feet"),
  21185. form: "calibrating",
  21186. },
  21187. {
  21188. name: "Enlarged",
  21189. height: math.unit(12, "feet"),
  21190. form: "oversize-load",
  21191. },
  21192. ],
  21193. {
  21194. "work-safe": {
  21195. name: "Work-Safe",
  21196. default: true
  21197. },
  21198. "calibrating": {
  21199. name: "Calibrating"
  21200. },
  21201. "oversize-load": {
  21202. name: "Oversize Load"
  21203. }
  21204. }
  21205. ))
  21206. characterMakers.push(() => makeCharacter(
  21207. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21208. {
  21209. front: {
  21210. height: math.unit(5 + 3 / 12, "feet"),
  21211. weight: math.unit(160, "lb"),
  21212. name: "Front",
  21213. image: {
  21214. source: "./media/characters/kira/front.svg",
  21215. extra: 906 / 786,
  21216. bottom: 0.01
  21217. }
  21218. },
  21219. back: {
  21220. height: math.unit(5 + 3 / 12, "feet"),
  21221. weight: math.unit(160, "lb"),
  21222. name: "Back",
  21223. image: {
  21224. source: "./media/characters/kira/back.svg",
  21225. extra: 882 / 757,
  21226. bottom: 0.005
  21227. }
  21228. },
  21229. frontDressed: {
  21230. height: math.unit(5 + 3 / 12, "feet"),
  21231. weight: math.unit(160, "lb"),
  21232. name: "Front (Dressed)",
  21233. image: {
  21234. source: "./media/characters/kira/front-dressed.svg",
  21235. extra: 906 / 786,
  21236. bottom: 0.01
  21237. }
  21238. },
  21239. beans: {
  21240. height: math.unit(0.92, "feet"),
  21241. name: "Beans",
  21242. image: {
  21243. source: "./media/characters/kira/beans.svg"
  21244. }
  21245. },
  21246. },
  21247. [
  21248. {
  21249. name: "Normal",
  21250. height: math.unit(5 + 3 / 12, "feet"),
  21251. default: true
  21252. },
  21253. ]
  21254. ))
  21255. characterMakers.push(() => makeCharacter(
  21256. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21257. {
  21258. front: {
  21259. height: math.unit(5 + 4 / 12, "feet"),
  21260. weight: math.unit(145, "lb"),
  21261. name: "Front",
  21262. image: {
  21263. source: "./media/characters/scramble/front.svg",
  21264. extra: 763 / 727,
  21265. bottom: 0.05
  21266. }
  21267. },
  21268. back: {
  21269. height: math.unit(5 + 4 / 12, "feet"),
  21270. weight: math.unit(145, "lb"),
  21271. name: "Back",
  21272. image: {
  21273. source: "./media/characters/scramble/back.svg",
  21274. extra: 826 / 737,
  21275. bottom: 0.002
  21276. }
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Normal",
  21282. height: math.unit(5 + 4 / 12, "feet"),
  21283. default: true
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21289. {
  21290. side: {
  21291. height: math.unit(6 + 2 / 12, "feet"),
  21292. weight: math.unit(190, "lb"),
  21293. name: "Side",
  21294. image: {
  21295. source: "./media/characters/biscuit/side.svg",
  21296. extra: 858 / 791,
  21297. bottom: 0.044
  21298. }
  21299. },
  21300. },
  21301. [
  21302. {
  21303. name: "Normal",
  21304. height: math.unit(6 + 2 / 12, "feet"),
  21305. default: true
  21306. },
  21307. ]
  21308. ))
  21309. characterMakers.push(() => makeCharacter(
  21310. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21311. {
  21312. front: {
  21313. height: math.unit(5 + 2 / 12, "feet"),
  21314. weight: math.unit(120, "lb"),
  21315. name: "Front",
  21316. image: {
  21317. source: "./media/characters/poffin/front.svg",
  21318. extra: 786 / 680,
  21319. bottom: 0.005
  21320. }
  21321. },
  21322. },
  21323. [
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(5 + 2 / 12, "feet"),
  21327. default: true
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21333. {
  21334. front: {
  21335. height: math.unit(6 + 3 / 12, "feet"),
  21336. weight: math.unit(519, "lb"),
  21337. name: "Front",
  21338. image: {
  21339. source: "./media/characters/dhari/front.svg",
  21340. extra: 1048 / 946,
  21341. bottom: 0.015
  21342. }
  21343. },
  21344. back: {
  21345. height: math.unit(6 + 3 / 12, "feet"),
  21346. weight: math.unit(519, "lb"),
  21347. name: "Back",
  21348. image: {
  21349. source: "./media/characters/dhari/back.svg",
  21350. extra: 1048 / 931,
  21351. bottom: 0.005
  21352. }
  21353. },
  21354. frontDressed: {
  21355. height: math.unit(6 + 3 / 12, "feet"),
  21356. weight: math.unit(519, "lb"),
  21357. name: "Front (Dressed)",
  21358. image: {
  21359. source: "./media/characters/dhari/front-dressed.svg",
  21360. extra: 1713 / 1546,
  21361. bottom: 0.02
  21362. }
  21363. },
  21364. backDressed: {
  21365. height: math.unit(6 + 3 / 12, "feet"),
  21366. weight: math.unit(519, "lb"),
  21367. name: "Back (Dressed)",
  21368. image: {
  21369. source: "./media/characters/dhari/back-dressed.svg",
  21370. extra: 1699 / 1537,
  21371. bottom: 0.01
  21372. }
  21373. },
  21374. maw: {
  21375. height: math.unit(0.95, "feet"),
  21376. name: "Maw",
  21377. image: {
  21378. source: "./media/characters/dhari/maw.svg"
  21379. }
  21380. },
  21381. wereFront: {
  21382. height: math.unit(12 + 8 / 12, "feet"),
  21383. weight: math.unit(4000, "lb"),
  21384. name: "Front (Were)",
  21385. image: {
  21386. source: "./media/characters/dhari/were-front.svg",
  21387. extra: 1065 / 969,
  21388. bottom: 0.015
  21389. }
  21390. },
  21391. wereBack: {
  21392. height: math.unit(12 + 8 / 12, "feet"),
  21393. weight: math.unit(4000, "lb"),
  21394. name: "Back (Were)",
  21395. image: {
  21396. source: "./media/characters/dhari/were-back.svg",
  21397. extra: 1065 / 969,
  21398. bottom: 0.012
  21399. }
  21400. },
  21401. wereMaw: {
  21402. height: math.unit(0.625, "meters"),
  21403. name: "Maw (Were)",
  21404. image: {
  21405. source: "./media/characters/dhari/were-maw.svg"
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Normal",
  21412. height: math.unit(6 + 3 / 12, "feet"),
  21413. default: true
  21414. },
  21415. ]
  21416. ))
  21417. characterMakers.push(() => makeCharacter(
  21418. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21419. {
  21420. anthro: {
  21421. height: math.unit(5 + 7 / 12, "feet"),
  21422. weight: math.unit(175, "lb"),
  21423. name: "Anthro",
  21424. image: {
  21425. source: "./media/characters/rena-dyne/anthro.svg",
  21426. extra: 1849 / 1785,
  21427. bottom: 0.005
  21428. }
  21429. },
  21430. taur: {
  21431. height: math.unit(15 + 6 / 12, "feet"),
  21432. weight: math.unit(8000, "lb"),
  21433. name: "Taur",
  21434. image: {
  21435. source: "./media/characters/rena-dyne/taur.svg",
  21436. extra: 2315 / 2234,
  21437. bottom: 0.033
  21438. }
  21439. },
  21440. },
  21441. [
  21442. {
  21443. name: "Normal",
  21444. height: math.unit(5 + 7 / 12, "feet"),
  21445. default: true
  21446. },
  21447. ]
  21448. ))
  21449. characterMakers.push(() => makeCharacter(
  21450. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21451. {
  21452. front: {
  21453. height: math.unit(8, "feet"),
  21454. weight: math.unit(600, "lb"),
  21455. name: "Front",
  21456. image: {
  21457. source: "./media/characters/weremeep/front.svg",
  21458. extra: 967 / 862,
  21459. bottom: 0.01
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Normal",
  21466. height: math.unit(8, "feet"),
  21467. default: true
  21468. },
  21469. {
  21470. name: "Lorg",
  21471. height: math.unit(12, "feet")
  21472. },
  21473. {
  21474. name: "Oh Lawd She Comin'",
  21475. height: math.unit(20, "feet")
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21481. {
  21482. front: {
  21483. height: math.unit(4, "feet"),
  21484. weight: math.unit(90, "lb"),
  21485. name: "Front",
  21486. image: {
  21487. source: "./media/characters/reza/front.svg",
  21488. extra: 1183 / 1111,
  21489. bottom: 0.017
  21490. }
  21491. },
  21492. back: {
  21493. height: math.unit(4, "feet"),
  21494. weight: math.unit(90, "lb"),
  21495. name: "Back",
  21496. image: {
  21497. source: "./media/characters/reza/back.svg",
  21498. extra: 1183 / 1111,
  21499. bottom: 0.01
  21500. }
  21501. },
  21502. drake: {
  21503. height: math.unit(30, "feet"),
  21504. weight: math.unit(246960, "lb"),
  21505. name: "Drake",
  21506. image: {
  21507. source: "./media/characters/reza/drake.svg",
  21508. extra: 2350 / 2024,
  21509. bottom: 60.7 / 2403
  21510. }
  21511. },
  21512. },
  21513. [
  21514. {
  21515. name: "Normal",
  21516. height: math.unit(4, "feet"),
  21517. default: true
  21518. },
  21519. ]
  21520. ))
  21521. characterMakers.push(() => makeCharacter(
  21522. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21523. {
  21524. side: {
  21525. height: math.unit(15, "feet"),
  21526. weight: math.unit(14, "tons"),
  21527. name: "Side",
  21528. image: {
  21529. source: "./media/characters/athea/side.svg",
  21530. extra: 960 / 540,
  21531. bottom: 0.003
  21532. }
  21533. },
  21534. sitting: {
  21535. height: math.unit(6 * 2.85, "feet"),
  21536. weight: math.unit(14, "tons"),
  21537. name: "Sitting",
  21538. image: {
  21539. source: "./media/characters/athea/sitting.svg",
  21540. extra: 621 / 581,
  21541. bottom: 0.075
  21542. }
  21543. },
  21544. maw: {
  21545. height: math.unit(7.59498031496063, "feet"),
  21546. name: "Maw",
  21547. image: {
  21548. source: "./media/characters/athea/maw.svg"
  21549. }
  21550. },
  21551. },
  21552. [
  21553. {
  21554. name: "Lap Cat",
  21555. height: math.unit(2.5, "feet")
  21556. },
  21557. {
  21558. name: "Minimacro",
  21559. height: math.unit(15, "feet"),
  21560. default: true
  21561. },
  21562. {
  21563. name: "Macro",
  21564. height: math.unit(120, "feet")
  21565. },
  21566. {
  21567. name: "Macro+",
  21568. height: math.unit(640, "feet")
  21569. },
  21570. {
  21571. name: "Colossus",
  21572. height: math.unit(2.2, "miles")
  21573. },
  21574. ]
  21575. ))
  21576. characterMakers.push(() => makeCharacter(
  21577. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21578. {
  21579. front: {
  21580. height: math.unit(8 + 8 / 12, "feet"),
  21581. weight: math.unit(130, "kg"),
  21582. name: "Front",
  21583. image: {
  21584. source: "./media/characters/seroko/front.svg",
  21585. extra: 1385 / 1280,
  21586. bottom: 0.025
  21587. }
  21588. },
  21589. back: {
  21590. height: math.unit(8 + 8 / 12, "feet"),
  21591. weight: math.unit(130, "kg"),
  21592. name: "Back",
  21593. image: {
  21594. source: "./media/characters/seroko/back.svg",
  21595. extra: 1369 / 1238,
  21596. bottom: 0.018
  21597. }
  21598. },
  21599. frontDressed: {
  21600. height: math.unit(8 + 8 / 12, "feet"),
  21601. weight: math.unit(130, "kg"),
  21602. name: "Front (Dressed)",
  21603. image: {
  21604. source: "./media/characters/seroko/front-dressed.svg",
  21605. extra: 1366 / 1275,
  21606. bottom: 0.03
  21607. }
  21608. },
  21609. },
  21610. [
  21611. {
  21612. name: "Normal",
  21613. height: math.unit(8 + 8 / 12, "feet"),
  21614. default: true
  21615. },
  21616. ]
  21617. ))
  21618. characterMakers.push(() => makeCharacter(
  21619. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21620. {
  21621. front: {
  21622. height: math.unit(5.5, "feet"),
  21623. weight: math.unit(160, "lb"),
  21624. name: "Front",
  21625. image: {
  21626. source: "./media/characters/quatzi/front.svg",
  21627. extra: 2346 / 2242,
  21628. bottom: 0.015
  21629. }
  21630. },
  21631. },
  21632. [
  21633. {
  21634. name: "Normal",
  21635. height: math.unit(5.5, "feet"),
  21636. default: true
  21637. },
  21638. {
  21639. name: "Big",
  21640. height: math.unit(7.7, "feet")
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21646. {
  21647. front: {
  21648. height: math.unit(5 + 11 / 12, "feet"),
  21649. weight: math.unit(180, "lb"),
  21650. name: "Front",
  21651. image: {
  21652. source: "./media/characters/sen/front.svg",
  21653. extra: 1321 / 1254,
  21654. bottom: 0.015
  21655. }
  21656. },
  21657. side: {
  21658. height: math.unit(5 + 11 / 12, "feet"),
  21659. weight: math.unit(180, "lb"),
  21660. name: "Side",
  21661. image: {
  21662. source: "./media/characters/sen/side.svg",
  21663. extra: 1321 / 1254,
  21664. bottom: 0.007
  21665. }
  21666. },
  21667. back: {
  21668. height: math.unit(5 + 11 / 12, "feet"),
  21669. weight: math.unit(180, "lb"),
  21670. name: "Back",
  21671. image: {
  21672. source: "./media/characters/sen/back.svg",
  21673. extra: 1321 / 1254
  21674. }
  21675. },
  21676. },
  21677. [
  21678. {
  21679. name: "Normal",
  21680. height: math.unit(5 + 11 / 12, "feet"),
  21681. default: true
  21682. },
  21683. ]
  21684. ))
  21685. characterMakers.push(() => makeCharacter(
  21686. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21687. {
  21688. front: {
  21689. height: math.unit(166.6, "cm"),
  21690. weight: math.unit(66.6, "kg"),
  21691. name: "Front",
  21692. image: {
  21693. source: "./media/characters/fruity/front.svg",
  21694. extra: 1510 / 1386,
  21695. bottom: 0.04
  21696. }
  21697. },
  21698. back: {
  21699. height: math.unit(166.6, "cm"),
  21700. weight: math.unit(66.6, "lb"),
  21701. name: "Back",
  21702. image: {
  21703. source: "./media/characters/fruity/back.svg",
  21704. extra: 1563 / 1435,
  21705. bottom: 0.005
  21706. }
  21707. },
  21708. },
  21709. [
  21710. {
  21711. name: "Normal",
  21712. height: math.unit(166.6, "cm"),
  21713. default: true
  21714. },
  21715. {
  21716. name: "Demonic",
  21717. height: math.unit(166.6, "feet")
  21718. },
  21719. ]
  21720. ))
  21721. characterMakers.push(() => makeCharacter(
  21722. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21723. {
  21724. side: {
  21725. height: math.unit(10, "feet"),
  21726. weight: math.unit(500, "lb"),
  21727. name: "Side",
  21728. image: {
  21729. source: "./media/characters/zost/side.svg",
  21730. extra: 2870/2533,
  21731. bottom: 252/3122
  21732. }
  21733. },
  21734. mawFront: {
  21735. height: math.unit(1.08, "meters"),
  21736. name: "Maw (Front)",
  21737. image: {
  21738. source: "./media/characters/zost/maw-front.svg"
  21739. }
  21740. },
  21741. mawSide: {
  21742. height: math.unit(2.66, "feet"),
  21743. name: "Maw (Side)",
  21744. image: {
  21745. source: "./media/characters/zost/maw-side.svg"
  21746. }
  21747. },
  21748. wingspan: {
  21749. height: math.unit(7.4, "feet"),
  21750. name: "Wingspan",
  21751. image: {
  21752. source: "./media/characters/zost/wingspan.svg"
  21753. }
  21754. },
  21755. },
  21756. [
  21757. {
  21758. name: "Normal",
  21759. height: math.unit(10, "feet"),
  21760. default: true
  21761. },
  21762. ]
  21763. ))
  21764. characterMakers.push(() => makeCharacter(
  21765. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21766. {
  21767. front: {
  21768. height: math.unit(5 + 4 / 12, "feet"),
  21769. weight: math.unit(120, "lb"),
  21770. name: "Front",
  21771. image: {
  21772. source: "./media/characters/luci/front.svg",
  21773. extra: 1985 / 1884,
  21774. bottom: 0.04
  21775. }
  21776. },
  21777. back: {
  21778. height: math.unit(5 + 4 / 12, "feet"),
  21779. weight: math.unit(120, "lb"),
  21780. name: "Back",
  21781. image: {
  21782. source: "./media/characters/luci/back.svg",
  21783. extra: 1892 / 1791,
  21784. bottom: 0.002
  21785. }
  21786. },
  21787. },
  21788. [
  21789. {
  21790. name: "Normal",
  21791. height: math.unit(5 + 4 / 12, "feet"),
  21792. default: true
  21793. },
  21794. ]
  21795. ))
  21796. characterMakers.push(() => makeCharacter(
  21797. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21798. {
  21799. front: {
  21800. height: math.unit(1500, "feet"),
  21801. weight: math.unit(3.8e6, "tons"),
  21802. name: "Front",
  21803. image: {
  21804. source: "./media/characters/2th/front.svg",
  21805. extra: 3489 / 3350,
  21806. bottom: 0.1
  21807. }
  21808. },
  21809. foot: {
  21810. height: math.unit(461, "feet"),
  21811. name: "Foot",
  21812. image: {
  21813. source: "./media/characters/2th/foot.svg"
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "\"Micro\"",
  21820. height: math.unit(15 + 7 / 12, "feet")
  21821. },
  21822. {
  21823. name: "Normal",
  21824. height: math.unit(1500, "feet"),
  21825. default: true
  21826. },
  21827. {
  21828. name: "Macro",
  21829. height: math.unit(5000, "feet")
  21830. },
  21831. {
  21832. name: "Megamacro",
  21833. height: math.unit(15, "miles")
  21834. },
  21835. {
  21836. name: "Gigamacro",
  21837. height: math.unit(4000, "miles")
  21838. },
  21839. {
  21840. name: "Galactic",
  21841. height: math.unit(50, "AU")
  21842. },
  21843. ]
  21844. ))
  21845. characterMakers.push(() => makeCharacter(
  21846. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21847. {
  21848. front: {
  21849. height: math.unit(5 + 6 / 12, "feet"),
  21850. weight: math.unit(220, "lb"),
  21851. name: "Front",
  21852. image: {
  21853. source: "./media/characters/amethyst/front.svg",
  21854. extra: 2078 / 2040,
  21855. bottom: 0.045
  21856. }
  21857. },
  21858. back: {
  21859. height: math.unit(5 + 6 / 12, "feet"),
  21860. weight: math.unit(220, "lb"),
  21861. name: "Back",
  21862. image: {
  21863. source: "./media/characters/amethyst/back.svg",
  21864. extra: 2021 / 1989,
  21865. bottom: 0.02
  21866. }
  21867. },
  21868. },
  21869. [
  21870. {
  21871. name: "Normal",
  21872. height: math.unit(5 + 6 / 12, "feet"),
  21873. default: true
  21874. },
  21875. ]
  21876. ))
  21877. characterMakers.push(() => makeCharacter(
  21878. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21879. {
  21880. front: {
  21881. height: math.unit(4 + 11 / 12, "feet"),
  21882. weight: math.unit(120, "lb"),
  21883. name: "Front",
  21884. image: {
  21885. source: "./media/characters/yumi-akiyama/front.svg",
  21886. extra: 1327 / 1235,
  21887. bottom: 0.02
  21888. }
  21889. },
  21890. back: {
  21891. height: math.unit(4 + 11 / 12, "feet"),
  21892. weight: math.unit(120, "lb"),
  21893. name: "Back",
  21894. image: {
  21895. source: "./media/characters/yumi-akiyama/back.svg",
  21896. extra: 1287 / 1245,
  21897. bottom: 0.002
  21898. }
  21899. },
  21900. },
  21901. [
  21902. {
  21903. name: "Galactic",
  21904. height: math.unit(50, "galaxies"),
  21905. default: true
  21906. },
  21907. {
  21908. name: "Universal",
  21909. height: math.unit(100, "universes")
  21910. },
  21911. ]
  21912. ))
  21913. characterMakers.push(() => makeCharacter(
  21914. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21915. {
  21916. front: {
  21917. height: math.unit(8, "feet"),
  21918. weight: math.unit(500, "lb"),
  21919. name: "Front",
  21920. image: {
  21921. source: "./media/characters/rifter-yrmori/front.svg",
  21922. extra: 1180 / 1125,
  21923. bottom: 0.02
  21924. }
  21925. },
  21926. back: {
  21927. height: math.unit(8, "feet"),
  21928. weight: math.unit(500, "lb"),
  21929. name: "Back",
  21930. image: {
  21931. source: "./media/characters/rifter-yrmori/back.svg",
  21932. extra: 1190 / 1145,
  21933. bottom: 0.001
  21934. }
  21935. },
  21936. wings: {
  21937. height: math.unit(7.75, "feet"),
  21938. weight: math.unit(500, "lb"),
  21939. name: "Wings",
  21940. image: {
  21941. source: "./media/characters/rifter-yrmori/wings.svg",
  21942. extra: 1357 / 1285
  21943. }
  21944. },
  21945. maw: {
  21946. height: math.unit(0.8, "feet"),
  21947. name: "Maw",
  21948. image: {
  21949. source: "./media/characters/rifter-yrmori/maw.svg"
  21950. }
  21951. },
  21952. mawfront: {
  21953. height: math.unit(1.45, "feet"),
  21954. name: "Maw (Front)",
  21955. image: {
  21956. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21957. }
  21958. },
  21959. },
  21960. [
  21961. {
  21962. name: "Normal",
  21963. height: math.unit(8, "feet"),
  21964. default: true
  21965. },
  21966. {
  21967. name: "Macro",
  21968. height: math.unit(42, "meters")
  21969. },
  21970. ]
  21971. ))
  21972. characterMakers.push(() => makeCharacter(
  21973. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21974. {
  21975. were: {
  21976. height: math.unit(25 + 6 / 12, "feet"),
  21977. weight: math.unit(10000, "lb"),
  21978. name: "Were",
  21979. image: {
  21980. source: "./media/characters/tahajin/were.svg",
  21981. extra: 801 / 770,
  21982. bottom: 0.042
  21983. }
  21984. },
  21985. aquatic: {
  21986. height: math.unit(6 + 4 / 12, "feet"),
  21987. weight: math.unit(160, "lb"),
  21988. name: "Aquatic",
  21989. image: {
  21990. source: "./media/characters/tahajin/aquatic.svg",
  21991. extra: 572 / 542,
  21992. bottom: 0.04
  21993. }
  21994. },
  21995. chow: {
  21996. height: math.unit(8 + 11 / 12, "feet"),
  21997. weight: math.unit(450, "lb"),
  21998. name: "Chow",
  21999. image: {
  22000. source: "./media/characters/tahajin/chow.svg",
  22001. extra: 660 / 640,
  22002. bottom: 0.015
  22003. }
  22004. },
  22005. demiNaga: {
  22006. height: math.unit(6 + 8 / 12, "feet"),
  22007. weight: math.unit(300, "lb"),
  22008. name: "Demi Naga",
  22009. image: {
  22010. source: "./media/characters/tahajin/demi-naga.svg",
  22011. extra: 643 / 615,
  22012. bottom: 0.1
  22013. }
  22014. },
  22015. data: {
  22016. height: math.unit(5, "inches"),
  22017. weight: math.unit(0.1, "lb"),
  22018. name: "Data",
  22019. image: {
  22020. source: "./media/characters/tahajin/data.svg"
  22021. }
  22022. },
  22023. fluu: {
  22024. height: math.unit(5 + 7 / 12, "feet"),
  22025. weight: math.unit(140, "lb"),
  22026. name: "Fluu",
  22027. image: {
  22028. source: "./media/characters/tahajin/fluu.svg",
  22029. extra: 628 / 592,
  22030. bottom: 0.02
  22031. }
  22032. },
  22033. starWarrior: {
  22034. height: math.unit(4 + 5 / 12, "feet"),
  22035. weight: math.unit(50, "lb"),
  22036. name: "Star Warrior",
  22037. image: {
  22038. source: "./media/characters/tahajin/star-warrior.svg"
  22039. }
  22040. },
  22041. },
  22042. [
  22043. {
  22044. name: "Normal",
  22045. height: math.unit(25 + 6 / 12, "feet"),
  22046. default: true
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22052. {
  22053. front: {
  22054. height: math.unit(8, "feet"),
  22055. weight: math.unit(350, "lb"),
  22056. name: "Front",
  22057. image: {
  22058. source: "./media/characters/gabira/front.svg",
  22059. extra: 608 / 580,
  22060. bottom: 0.03
  22061. }
  22062. },
  22063. back: {
  22064. height: math.unit(8, "feet"),
  22065. weight: math.unit(350, "lb"),
  22066. name: "Back",
  22067. image: {
  22068. source: "./media/characters/gabira/back.svg",
  22069. extra: 608 / 580,
  22070. bottom: 0.03
  22071. }
  22072. },
  22073. },
  22074. [
  22075. {
  22076. name: "Normal",
  22077. height: math.unit(8, "feet"),
  22078. default: true
  22079. },
  22080. ]
  22081. ))
  22082. characterMakers.push(() => makeCharacter(
  22083. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22084. {
  22085. front: {
  22086. height: math.unit(5 + 3 / 12, "feet"),
  22087. weight: math.unit(137, "lb"),
  22088. name: "Front",
  22089. image: {
  22090. source: "./media/characters/sasha-katraine/front.svg",
  22091. extra: 1745/1694,
  22092. bottom: 37/1782
  22093. }
  22094. },
  22095. back: {
  22096. height: math.unit(5 + 3 / 12, "feet"),
  22097. weight: math.unit(137, "lb"),
  22098. name: "Back",
  22099. image: {
  22100. source: "./media/characters/sasha-katraine/back.svg",
  22101. extra: 1776/1699,
  22102. bottom: 26/1802
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Micro",
  22109. height: math.unit(5, "inches")
  22110. },
  22111. {
  22112. name: "Normal",
  22113. height: math.unit(5 + 3 / 12, "feet"),
  22114. default: true
  22115. },
  22116. ]
  22117. ))
  22118. characterMakers.push(() => makeCharacter(
  22119. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22120. {
  22121. side: {
  22122. height: math.unit(4, "inches"),
  22123. weight: math.unit(200, "grams"),
  22124. name: "Side",
  22125. image: {
  22126. source: "./media/characters/der/side.svg",
  22127. extra: 719 / 400,
  22128. bottom: 30.6 / 749.9187
  22129. }
  22130. },
  22131. },
  22132. [
  22133. {
  22134. name: "Micro",
  22135. height: math.unit(4, "inches"),
  22136. default: true
  22137. },
  22138. ]
  22139. ))
  22140. characterMakers.push(() => makeCharacter(
  22141. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22142. {
  22143. side: {
  22144. height: math.unit(30, "meters"),
  22145. weight: math.unit(700, "tonnes"),
  22146. name: "Side",
  22147. image: {
  22148. source: "./media/characters/fixerdragon/side.svg",
  22149. extra: (1293.0514 - 116.03) / 1106.86,
  22150. bottom: 116.03 / 1293.0514
  22151. }
  22152. },
  22153. },
  22154. [
  22155. {
  22156. name: "Planck",
  22157. height: math.unit(1.6e-35, "meters")
  22158. },
  22159. {
  22160. name: "Micro",
  22161. height: math.unit(0.4, "meters")
  22162. },
  22163. {
  22164. name: "Normal",
  22165. height: math.unit(30, "meters"),
  22166. default: true
  22167. },
  22168. {
  22169. name: "Megamacro",
  22170. height: math.unit(1.2, "megameters")
  22171. },
  22172. {
  22173. name: "Teramacro",
  22174. height: math.unit(130, "terameters")
  22175. },
  22176. {
  22177. name: "Yottamacro",
  22178. height: math.unit(6200, "yottameters")
  22179. },
  22180. ]
  22181. ));
  22182. characterMakers.push(() => makeCharacter(
  22183. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22184. {
  22185. front: {
  22186. height: math.unit(8, "feet"),
  22187. weight: math.unit(250, "lb"),
  22188. name: "Front",
  22189. image: {
  22190. source: "./media/characters/kite/front.svg",
  22191. extra: 2796 / 2659,
  22192. bottom: 0.002
  22193. }
  22194. },
  22195. },
  22196. [
  22197. {
  22198. name: "Normal",
  22199. height: math.unit(8, "feet"),
  22200. default: true
  22201. },
  22202. {
  22203. name: "Macro",
  22204. height: math.unit(360, "feet")
  22205. },
  22206. {
  22207. name: "Megamacro",
  22208. height: math.unit(1500, "feet")
  22209. },
  22210. ]
  22211. ))
  22212. characterMakers.push(() => makeCharacter(
  22213. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22214. {
  22215. front: {
  22216. height: math.unit(5 + 11/12, "feet"),
  22217. weight: math.unit(170, "lb"),
  22218. name: "Front",
  22219. image: {
  22220. source: "./media/characters/poojawa-vynar/front.svg",
  22221. extra: 1735/1585,
  22222. bottom: 96/1831
  22223. }
  22224. },
  22225. back: {
  22226. height: math.unit(5 + 11/12, "feet"),
  22227. weight: math.unit(170, "lb"),
  22228. name: "Back",
  22229. image: {
  22230. source: "./media/characters/poojawa-vynar/back.svg",
  22231. extra: 1749/1607,
  22232. bottom: 28/1777
  22233. }
  22234. },
  22235. male: {
  22236. height: math.unit(5 + 11/12, "feet"),
  22237. weight: math.unit(170, "lb"),
  22238. name: "Male",
  22239. image: {
  22240. source: "./media/characters/poojawa-vynar/male.svg",
  22241. extra: 1855/1713,
  22242. bottom: 63/1918
  22243. }
  22244. },
  22245. taur: {
  22246. height: math.unit(5 + 11/12, "feet"),
  22247. weight: math.unit(170, "lb"),
  22248. name: "Taur",
  22249. image: {
  22250. source: "./media/characters/poojawa-vynar/taur.svg",
  22251. extra: 1151/1059,
  22252. bottom: 356/1507
  22253. }
  22254. },
  22255. frontDressed: {
  22256. height: math.unit(5 + 11/12, "feet"),
  22257. weight: math.unit(170, "lb"),
  22258. name: "Front (Dressed)",
  22259. image: {
  22260. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22261. extra: 1735/1585,
  22262. bottom: 96/1831
  22263. }
  22264. },
  22265. backDressed: {
  22266. height: math.unit(5 + 11/12, "feet"),
  22267. weight: math.unit(170, "lb"),
  22268. name: "Back (Dressed)",
  22269. image: {
  22270. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22271. extra: 1749/1607,
  22272. bottom: 28/1777
  22273. }
  22274. },
  22275. maleDressed: {
  22276. height: math.unit(5 + 11/12, "feet"),
  22277. weight: math.unit(170, "lb"),
  22278. name: "Male (Dressed)",
  22279. image: {
  22280. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22281. extra: 1855/1713,
  22282. bottom: 63/1918
  22283. }
  22284. },
  22285. taurDressed: {
  22286. height: math.unit(5 + 11/12, "feet"),
  22287. weight: math.unit(170, "lb"),
  22288. name: "Taur (Dressed)",
  22289. image: {
  22290. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22291. extra: 1151/1059,
  22292. bottom: 356/1507
  22293. }
  22294. },
  22295. maw: {
  22296. height: math.unit(1.46, "feet"),
  22297. name: "Maw",
  22298. image: {
  22299. source: "./media/characters/poojawa-vynar/maw.svg"
  22300. }
  22301. },
  22302. head: {
  22303. height: math.unit(2.34, "feet"),
  22304. name: "Head",
  22305. image: {
  22306. source: "./media/characters/poojawa-vynar/head.svg"
  22307. }
  22308. },
  22309. paw: {
  22310. height: math.unit(1.61, "feet"),
  22311. name: "Paw",
  22312. image: {
  22313. source: "./media/characters/poojawa-vynar/paw.svg"
  22314. }
  22315. },
  22316. pawToering: {
  22317. height: math.unit(1.72, "feet"),
  22318. name: "Paw (Toering)",
  22319. image: {
  22320. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22321. }
  22322. },
  22323. toering: {
  22324. height: math.unit(2.9, "inches"),
  22325. name: "Toering",
  22326. image: {
  22327. source: "./media/characters/poojawa-vynar/toering.svg"
  22328. }
  22329. },
  22330. shaft: {
  22331. height: math.unit(0.625, "feet"),
  22332. name: "Shaft",
  22333. image: {
  22334. source: "./media/characters/poojawa-vynar/shaft.svg"
  22335. }
  22336. },
  22337. spade: {
  22338. height: math.unit(0.42, "feet"),
  22339. name: "Spade",
  22340. image: {
  22341. source: "./media/characters/poojawa-vynar/spade.svg"
  22342. }
  22343. },
  22344. },
  22345. [
  22346. {
  22347. name: "Shortstack",
  22348. height: math.unit(4, "feet")
  22349. },
  22350. {
  22351. name: "Normal",
  22352. height: math.unit(5 + 11 / 12, "feet"),
  22353. default: true
  22354. },
  22355. {
  22356. name: "Tauric",
  22357. height: math.unit(4, "meters")
  22358. },
  22359. ]
  22360. ))
  22361. characterMakers.push(() => makeCharacter(
  22362. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22363. {
  22364. front: {
  22365. height: math.unit(293, "meters"),
  22366. weight: math.unit(70400, "tons"),
  22367. name: "Front",
  22368. image: {
  22369. source: "./media/characters/violette/front.svg",
  22370. extra: 1227 / 1180,
  22371. bottom: 0.005
  22372. }
  22373. },
  22374. back: {
  22375. height: math.unit(293, "meters"),
  22376. weight: math.unit(70400, "tons"),
  22377. name: "Back",
  22378. image: {
  22379. source: "./media/characters/violette/back.svg",
  22380. extra: 1227 / 1180,
  22381. bottom: 0.005
  22382. }
  22383. },
  22384. },
  22385. [
  22386. {
  22387. name: "Macro",
  22388. height: math.unit(293, "meters"),
  22389. default: true
  22390. },
  22391. ]
  22392. ))
  22393. characterMakers.push(() => makeCharacter(
  22394. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22395. {
  22396. front: {
  22397. height: math.unit(1050, "feet"),
  22398. weight: math.unit(200000, "tons"),
  22399. name: "Front",
  22400. image: {
  22401. source: "./media/characters/alessandra/front.svg",
  22402. extra: 960 / 912,
  22403. bottom: 0.06
  22404. }
  22405. },
  22406. },
  22407. [
  22408. {
  22409. name: "Macro",
  22410. height: math.unit(1050, "feet")
  22411. },
  22412. {
  22413. name: "Macro+",
  22414. height: math.unit(900, "meters"),
  22415. default: true
  22416. },
  22417. ]
  22418. ))
  22419. characterMakers.push(() => makeCharacter(
  22420. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22421. {
  22422. front: {
  22423. height: math.unit(5, "feet"),
  22424. weight: math.unit(187, "lb"),
  22425. name: "Front",
  22426. image: {
  22427. source: "./media/characters/person/front.svg",
  22428. extra: 3087 / 2945,
  22429. bottom: 91 / 3181
  22430. }
  22431. },
  22432. },
  22433. [
  22434. {
  22435. name: "Micro",
  22436. height: math.unit(3, "inches")
  22437. },
  22438. {
  22439. name: "Normal",
  22440. height: math.unit(5, "feet"),
  22441. default: true
  22442. },
  22443. {
  22444. name: "Macro",
  22445. height: math.unit(90, "feet")
  22446. },
  22447. {
  22448. name: "Max Size",
  22449. height: math.unit(280, "feet")
  22450. },
  22451. ]
  22452. ))
  22453. characterMakers.push(() => makeCharacter(
  22454. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22455. {
  22456. front: {
  22457. height: math.unit(4.5, "meters"),
  22458. weight: math.unit(3200, "lb"),
  22459. name: "Front",
  22460. image: {
  22461. source: "./media/characters/ty/front.svg",
  22462. extra: 1038 / 960,
  22463. bottom: 31.156 / 1068
  22464. }
  22465. },
  22466. back: {
  22467. height: math.unit(4.5, "meters"),
  22468. weight: math.unit(3200, "lb"),
  22469. name: "Back",
  22470. image: {
  22471. source: "./media/characters/ty/back.svg",
  22472. extra: 1044 / 966,
  22473. bottom: 7.48 / 1049
  22474. }
  22475. },
  22476. },
  22477. [
  22478. {
  22479. name: "Normal",
  22480. height: math.unit(4.5, "meters"),
  22481. default: true
  22482. },
  22483. ]
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22487. {
  22488. front: {
  22489. height: math.unit(5 + 4 / 12, "feet"),
  22490. weight: math.unit(115, "lb"),
  22491. name: "Front",
  22492. image: {
  22493. source: "./media/characters/rocky/front.svg",
  22494. extra: 1012 / 975,
  22495. bottom: 54 / 1066
  22496. }
  22497. },
  22498. },
  22499. [
  22500. {
  22501. name: "Normal",
  22502. height: math.unit(5 + 4 / 12, "feet"),
  22503. default: true
  22504. },
  22505. ]
  22506. ))
  22507. characterMakers.push(() => makeCharacter(
  22508. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22509. {
  22510. upright: {
  22511. height: math.unit(6, "meters"),
  22512. weight: math.unit(4000, "kg"),
  22513. name: "Upright",
  22514. image: {
  22515. source: "./media/characters/ruin/upright.svg",
  22516. extra: 668 / 661,
  22517. bottom: 42 / 799.8396
  22518. }
  22519. },
  22520. },
  22521. [
  22522. {
  22523. name: "Normal",
  22524. height: math.unit(6, "meters"),
  22525. default: true
  22526. },
  22527. ]
  22528. ))
  22529. characterMakers.push(() => makeCharacter(
  22530. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22531. {
  22532. front: {
  22533. height: math.unit(5, "feet"),
  22534. weight: math.unit(106, "lb"),
  22535. name: "Front",
  22536. image: {
  22537. source: "./media/characters/robin/front.svg",
  22538. extra: 862 / 799,
  22539. bottom: 42.4 / 914.8856
  22540. }
  22541. },
  22542. },
  22543. [
  22544. {
  22545. name: "Normal",
  22546. height: math.unit(5, "feet"),
  22547. default: true
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22553. {
  22554. side: {
  22555. height: math.unit(3, "feet"),
  22556. weight: math.unit(225, "lb"),
  22557. name: "Side",
  22558. image: {
  22559. source: "./media/characters/saian/side.svg",
  22560. extra: 566 / 356,
  22561. bottom: 79.7 / 643
  22562. }
  22563. },
  22564. maw: {
  22565. height: math.unit(2.85, "feet"),
  22566. name: "Maw",
  22567. image: {
  22568. source: "./media/characters/saian/maw.svg"
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "Normal",
  22575. height: math.unit(3, "feet"),
  22576. default: true
  22577. },
  22578. ]
  22579. ))
  22580. characterMakers.push(() => makeCharacter(
  22581. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22582. {
  22583. side: {
  22584. height: math.unit(8, "feet"),
  22585. weight: math.unit(300, "lb"),
  22586. name: "Side",
  22587. image: {
  22588. source: "./media/characters/equus-silvermane/side.svg",
  22589. extra: 2176 / 2050,
  22590. bottom: 65.7 / 2245
  22591. }
  22592. },
  22593. front: {
  22594. height: math.unit(8, "feet"),
  22595. weight: math.unit(300, "lb"),
  22596. name: "Front",
  22597. image: {
  22598. source: "./media/characters/equus-silvermane/front.svg",
  22599. extra: 4633 / 4400,
  22600. bottom: 71.3 / 4706.915
  22601. }
  22602. },
  22603. sideStepping: {
  22604. height: math.unit(8, "feet"),
  22605. weight: math.unit(300, "lb"),
  22606. name: "Side (Stepping)",
  22607. image: {
  22608. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22609. extra: 1968 / 1860,
  22610. bottom: 16.4 / 1989
  22611. }
  22612. },
  22613. },
  22614. [
  22615. {
  22616. name: "Normal",
  22617. height: math.unit(8, "feet")
  22618. },
  22619. {
  22620. name: "Minimacro",
  22621. height: math.unit(75, "feet"),
  22622. default: true
  22623. },
  22624. {
  22625. name: "Macro",
  22626. height: math.unit(150, "feet")
  22627. },
  22628. {
  22629. name: "Macro+",
  22630. height: math.unit(1000, "feet")
  22631. },
  22632. {
  22633. name: "Megamacro",
  22634. height: math.unit(1, "mile")
  22635. },
  22636. ]
  22637. ))
  22638. characterMakers.push(() => makeCharacter(
  22639. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22640. {
  22641. side: {
  22642. height: math.unit(20, "feet"),
  22643. weight: math.unit(30000, "kg"),
  22644. name: "Side",
  22645. image: {
  22646. source: "./media/characters/windar/side.svg",
  22647. extra: 1491 / 1248,
  22648. bottom: 82.56 / 1568
  22649. }
  22650. },
  22651. },
  22652. [
  22653. {
  22654. name: "Normal",
  22655. height: math.unit(20, "feet"),
  22656. default: true
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22662. {
  22663. side: {
  22664. height: math.unit(15.66, "feet"),
  22665. weight: math.unit(150, "lb"),
  22666. name: "Side",
  22667. image: {
  22668. source: "./media/characters/melody/side.svg",
  22669. extra: 1097 / 944,
  22670. bottom: 11.8 / 1109
  22671. }
  22672. },
  22673. sideOutfit: {
  22674. height: math.unit(15.66, "feet"),
  22675. weight: math.unit(150, "lb"),
  22676. name: "Side (Outfit)",
  22677. image: {
  22678. source: "./media/characters/melody/side-outfit.svg",
  22679. extra: 1097 / 944,
  22680. bottom: 11.8 / 1109
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Normal",
  22687. height: math.unit(15.66, "feet"),
  22688. default: true
  22689. },
  22690. ]
  22691. ))
  22692. characterMakers.push(() => makeCharacter(
  22693. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22694. {
  22695. front: {
  22696. height: math.unit(8, "feet"),
  22697. weight: math.unit(325, "lb"),
  22698. name: "Front",
  22699. image: {
  22700. source: "./media/characters/windera/front.svg",
  22701. extra: 3180 / 2845,
  22702. bottom: 178 / 3365
  22703. }
  22704. },
  22705. },
  22706. [
  22707. {
  22708. name: "Normal",
  22709. height: math.unit(8, "feet"),
  22710. default: true
  22711. },
  22712. ]
  22713. ))
  22714. characterMakers.push(() => makeCharacter(
  22715. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22716. {
  22717. front: {
  22718. height: math.unit(28.75, "feet"),
  22719. weight: math.unit(2000, "kg"),
  22720. name: "Front",
  22721. image: {
  22722. source: "./media/characters/sonear/front.svg",
  22723. extra: 1041.1 / 964.9,
  22724. bottom: 53.7 / 1096.6
  22725. }
  22726. },
  22727. },
  22728. [
  22729. {
  22730. name: "Normal",
  22731. height: math.unit(28.75, "feet"),
  22732. default: true
  22733. },
  22734. ]
  22735. ))
  22736. characterMakers.push(() => makeCharacter(
  22737. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22738. {
  22739. side: {
  22740. height: math.unit(25.5, "feet"),
  22741. weight: math.unit(23000, "kg"),
  22742. name: "Side",
  22743. image: {
  22744. source: "./media/characters/kanara/side.svg"
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Normal",
  22751. height: math.unit(25.5, "feet"),
  22752. default: true
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22758. {
  22759. side: {
  22760. height: math.unit(10, "feet"),
  22761. weight: math.unit(1000, "kg"),
  22762. name: "Side",
  22763. image: {
  22764. source: "./media/characters/ereus/side.svg",
  22765. extra: 1157 / 959,
  22766. bottom: 153 / 1312.5
  22767. }
  22768. },
  22769. },
  22770. [
  22771. {
  22772. name: "Normal",
  22773. height: math.unit(10, "feet"),
  22774. default: true
  22775. },
  22776. ]
  22777. ))
  22778. characterMakers.push(() => makeCharacter(
  22779. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22780. {
  22781. side: {
  22782. height: math.unit(4.5, "feet"),
  22783. weight: math.unit(500, "lb"),
  22784. name: "Side",
  22785. image: {
  22786. source: "./media/characters/e-ter/side.svg",
  22787. extra: 1550 / 1248,
  22788. bottom: 146 / 1694
  22789. }
  22790. },
  22791. },
  22792. [
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(4.5, "feet"),
  22796. default: true
  22797. },
  22798. ]
  22799. ))
  22800. characterMakers.push(() => makeCharacter(
  22801. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22802. {
  22803. side: {
  22804. height: math.unit(9.7, "feet"),
  22805. weight: math.unit(4000, "kg"),
  22806. name: "Side",
  22807. image: {
  22808. source: "./media/characters/yamie/side.svg"
  22809. }
  22810. },
  22811. },
  22812. [
  22813. {
  22814. name: "Normal",
  22815. height: math.unit(9.7, "feet"),
  22816. default: true
  22817. },
  22818. ]
  22819. ))
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22822. {
  22823. front: {
  22824. height: math.unit(50, "feet"),
  22825. weight: math.unit(50000, "kg"),
  22826. name: "Front",
  22827. image: {
  22828. source: "./media/characters/anders/front.svg",
  22829. extra: 570 / 539,
  22830. bottom: 14.7 / 586.7
  22831. }
  22832. },
  22833. },
  22834. [
  22835. {
  22836. name: "Large",
  22837. height: math.unit(50, "feet")
  22838. },
  22839. {
  22840. name: "Macro",
  22841. height: math.unit(2000, "feet"),
  22842. default: true
  22843. },
  22844. {
  22845. name: "Megamacro",
  22846. height: math.unit(12, "miles")
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(7 + 2 / 12, "feet"),
  22855. weight: math.unit(300, "lb"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/reban/front.svg",
  22859. extra: 1287/1212,
  22860. bottom: 148/1435
  22861. }
  22862. },
  22863. head: {
  22864. height: math.unit(1.95, "feet"),
  22865. name: "Head",
  22866. image: {
  22867. source: "./media/characters/reban/head.svg"
  22868. }
  22869. },
  22870. maw: {
  22871. height: math.unit(0.95, "feet"),
  22872. name: "Maw",
  22873. image: {
  22874. source: "./media/characters/reban/maw.svg"
  22875. }
  22876. },
  22877. foot: {
  22878. height: math.unit(1.65, "feet"),
  22879. name: "Foot",
  22880. image: {
  22881. source: "./media/characters/reban/foot.svg"
  22882. }
  22883. },
  22884. dick: {
  22885. height: math.unit(7 / 5, "feet"),
  22886. name: "Dick",
  22887. image: {
  22888. source: "./media/characters/reban/dick.svg"
  22889. }
  22890. },
  22891. },
  22892. [
  22893. {
  22894. name: "Natural Height",
  22895. height: math.unit(7 + 2 / 12, "feet")
  22896. },
  22897. {
  22898. name: "Macro",
  22899. height: math.unit(500, "feet"),
  22900. default: true
  22901. },
  22902. {
  22903. name: "Canon Height",
  22904. height: math.unit(50, "AU")
  22905. },
  22906. ]
  22907. ))
  22908. characterMakers.push(() => makeCharacter(
  22909. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22910. {
  22911. front: {
  22912. height: math.unit(6, "feet"),
  22913. weight: math.unit(150, "lb"),
  22914. name: "Front",
  22915. image: {
  22916. source: "./media/characters/terrance-keayes/front.svg",
  22917. extra: 1.005,
  22918. bottom: 151 / 1615
  22919. }
  22920. },
  22921. side: {
  22922. height: math.unit(6, "feet"),
  22923. weight: math.unit(150, "lb"),
  22924. name: "Side",
  22925. image: {
  22926. source: "./media/characters/terrance-keayes/side.svg",
  22927. extra: 1.005,
  22928. bottom: 129.4 / 1544
  22929. }
  22930. },
  22931. back: {
  22932. height: math.unit(6, "feet"),
  22933. weight: math.unit(150, "lb"),
  22934. name: "Back",
  22935. image: {
  22936. source: "./media/characters/terrance-keayes/back.svg",
  22937. extra: 1.005,
  22938. bottom: 58.4 / 1557.3
  22939. }
  22940. },
  22941. dick: {
  22942. height: math.unit(6 * 0.208, "feet"),
  22943. name: "Dick",
  22944. image: {
  22945. source: "./media/characters/terrance-keayes/dick.svg"
  22946. }
  22947. },
  22948. },
  22949. [
  22950. {
  22951. name: "Canon Height",
  22952. height: math.unit(35, "miles"),
  22953. default: true
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22959. {
  22960. front: {
  22961. height: math.unit(6, "feet"),
  22962. weight: math.unit(150, "lb"),
  22963. name: "Front",
  22964. image: {
  22965. source: "./media/characters/ofelia/front.svg",
  22966. extra: 1130/1117,
  22967. bottom: 91/1221
  22968. }
  22969. },
  22970. back: {
  22971. height: math.unit(6, "feet"),
  22972. weight: math.unit(150, "lb"),
  22973. name: "Back",
  22974. image: {
  22975. source: "./media/characters/ofelia/back.svg",
  22976. extra: 1172/1159,
  22977. bottom: 28/1200
  22978. }
  22979. },
  22980. maw: {
  22981. height: math.unit(1, "feet"),
  22982. name: "Maw",
  22983. image: {
  22984. source: "./media/characters/ofelia/maw.svg"
  22985. }
  22986. },
  22987. foot: {
  22988. height: math.unit(1.949, "feet"),
  22989. name: "Foot",
  22990. image: {
  22991. source: "./media/characters/ofelia/foot.svg"
  22992. }
  22993. },
  22994. },
  22995. [
  22996. {
  22997. name: "Canon Height",
  22998. height: math.unit(2000, "miles"),
  22999. default: true
  23000. },
  23001. ]
  23002. ))
  23003. characterMakers.push(() => makeCharacter(
  23004. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23005. {
  23006. front: {
  23007. height: math.unit(6, "feet"),
  23008. weight: math.unit(150, "lb"),
  23009. name: "Front",
  23010. image: {
  23011. source: "./media/characters/samuel/front.svg",
  23012. extra: 265 / 258,
  23013. bottom: 2 / 266.1566
  23014. }
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Macro",
  23020. height: math.unit(100, "feet"),
  23021. default: true
  23022. },
  23023. {
  23024. name: "Full Size",
  23025. height: math.unit(1000, "miles")
  23026. },
  23027. ]
  23028. ))
  23029. characterMakers.push(() => makeCharacter(
  23030. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23031. {
  23032. front: {
  23033. height: math.unit(6, "feet"),
  23034. weight: math.unit(300, "lb"),
  23035. name: "Front",
  23036. image: {
  23037. source: "./media/characters/beishir-kiel/front.svg",
  23038. extra: 569 / 547,
  23039. bottom: 41.9 / 609
  23040. }
  23041. },
  23042. maw: {
  23043. height: math.unit(6 * 0.202, "feet"),
  23044. name: "Maw",
  23045. image: {
  23046. source: "./media/characters/beishir-kiel/maw.svg"
  23047. }
  23048. },
  23049. },
  23050. [
  23051. {
  23052. name: "Macro",
  23053. height: math.unit(300, "feet"),
  23054. default: true
  23055. },
  23056. ]
  23057. ))
  23058. characterMakers.push(() => makeCharacter(
  23059. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23060. {
  23061. front: {
  23062. height: math.unit(5 + 7/12, "feet"),
  23063. weight: math.unit(120, "lb"),
  23064. name: "Front",
  23065. image: {
  23066. source: "./media/characters/logan-grey/front.svg",
  23067. extra: 1836/1738,
  23068. bottom: 108/1944
  23069. }
  23070. },
  23071. back: {
  23072. height: math.unit(5 + 7/12, "feet"),
  23073. weight: math.unit(120, "lb"),
  23074. name: "Back",
  23075. image: {
  23076. source: "./media/characters/logan-grey/back.svg",
  23077. extra: 1880/1794,
  23078. bottom: 24/1904
  23079. }
  23080. },
  23081. frontSfw: {
  23082. height: math.unit(5 + 7/12, "feet"),
  23083. weight: math.unit(120, "lb"),
  23084. name: "Front (SFW)",
  23085. image: {
  23086. source: "./media/characters/logan-grey/front-sfw.svg",
  23087. extra: 1836/1738,
  23088. bottom: 108/1944
  23089. }
  23090. },
  23091. backSfw: {
  23092. height: math.unit(5 + 7/12, "feet"),
  23093. weight: math.unit(120, "lb"),
  23094. name: "Back (SFW)",
  23095. image: {
  23096. source: "./media/characters/logan-grey/back-sfw.svg",
  23097. extra: 1880/1794,
  23098. bottom: 24/1904
  23099. }
  23100. },
  23101. hands: {
  23102. height: math.unit(0.84, "feet"),
  23103. name: "Hands",
  23104. image: {
  23105. source: "./media/characters/logan-grey/hands.svg"
  23106. }
  23107. },
  23108. paws: {
  23109. height: math.unit(0.72, "feet"),
  23110. name: "Paws",
  23111. image: {
  23112. source: "./media/characters/logan-grey/paws.svg"
  23113. }
  23114. },
  23115. cock: {
  23116. height: math.unit(1.45, "feet"),
  23117. name: "Cock",
  23118. image: {
  23119. source: "./media/characters/logan-grey/cock.svg"
  23120. }
  23121. },
  23122. cockAlt: {
  23123. height: math.unit(1.437, "feet"),
  23124. name: "Cock (alt)",
  23125. image: {
  23126. source: "./media/characters/logan-grey/cock-alt.svg"
  23127. }
  23128. },
  23129. },
  23130. [
  23131. {
  23132. name: "Normal",
  23133. height: math.unit(5 + 8 / 12, "feet")
  23134. },
  23135. {
  23136. name: "The 500 Foot Femboy",
  23137. height: math.unit(500, "feet"),
  23138. default: true
  23139. },
  23140. {
  23141. name: "Megmacro",
  23142. height: math.unit(20, "miles")
  23143. },
  23144. ]
  23145. ))
  23146. characterMakers.push(() => makeCharacter(
  23147. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23148. {
  23149. front: {
  23150. height: math.unit(8 + 2 / 12, "feet"),
  23151. weight: math.unit(275, "lb"),
  23152. name: "Front",
  23153. image: {
  23154. source: "./media/characters/draganta/front.svg",
  23155. extra: 1177 / 1135,
  23156. bottom: 33.46 / 1212.1
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Normal",
  23163. height: math.unit(8 + 6 / 12, "feet"),
  23164. default: true
  23165. },
  23166. {
  23167. name: "Macro",
  23168. height: math.unit(150, "feet")
  23169. },
  23170. {
  23171. name: "Megamacro",
  23172. height: math.unit(1000, "miles")
  23173. },
  23174. ]
  23175. ))
  23176. characterMakers.push(() => makeCharacter(
  23177. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23178. {
  23179. front: {
  23180. height: math.unit(1.72, "m"),
  23181. weight: math.unit(80, "lb"),
  23182. name: "Front",
  23183. image: {
  23184. source: "./media/characters/voski/front.svg",
  23185. extra: 2076.22 / 2022.4,
  23186. bottom: 102.7 / 2177.3866
  23187. }
  23188. },
  23189. frontFlaccid: {
  23190. height: math.unit(1.72, "m"),
  23191. weight: math.unit(80, "lb"),
  23192. name: "Front (Flaccid)",
  23193. image: {
  23194. source: "./media/characters/voski/front-flaccid.svg",
  23195. extra: 2076.22 / 2022.4,
  23196. bottom: 102.7 / 2177.3866
  23197. }
  23198. },
  23199. frontErect: {
  23200. height: math.unit(1.72, "m"),
  23201. weight: math.unit(80, "lb"),
  23202. name: "Front (Erect)",
  23203. image: {
  23204. source: "./media/characters/voski/front-erect.svg",
  23205. extra: 2076.22 / 2022.4,
  23206. bottom: 102.7 / 2177.3866
  23207. }
  23208. },
  23209. back: {
  23210. height: math.unit(1.72, "m"),
  23211. weight: math.unit(80, "lb"),
  23212. name: "Back",
  23213. image: {
  23214. source: "./media/characters/voski/back.svg",
  23215. extra: 2104 / 2051,
  23216. bottom: 10.45 / 2113.63
  23217. }
  23218. },
  23219. },
  23220. [
  23221. {
  23222. name: "Normal",
  23223. height: math.unit(1.72, "m")
  23224. },
  23225. {
  23226. name: "Macro",
  23227. height: math.unit(55, "m"),
  23228. default: true
  23229. },
  23230. {
  23231. name: "Macro+",
  23232. height: math.unit(300, "m")
  23233. },
  23234. {
  23235. name: "Macro++",
  23236. height: math.unit(700, "m")
  23237. },
  23238. {
  23239. name: "Macro+++",
  23240. height: math.unit(4500, "m")
  23241. },
  23242. {
  23243. name: "Macro++++",
  23244. height: math.unit(45, "km")
  23245. },
  23246. {
  23247. name: "Macro+++++",
  23248. height: math.unit(1220, "km")
  23249. },
  23250. ]
  23251. ))
  23252. characterMakers.push(() => makeCharacter(
  23253. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23254. {
  23255. front: {
  23256. height: math.unit(2.3, "m"),
  23257. weight: math.unit(304, "kg"),
  23258. name: "Front",
  23259. image: {
  23260. source: "./media/characters/icowom-lee/front.svg",
  23261. extra: 985 / 955,
  23262. bottom: 25.4 / 1012
  23263. }
  23264. },
  23265. fronttentacles: {
  23266. height: math.unit(2.3, "m"),
  23267. weight: math.unit(304, "kg"),
  23268. name: "Front-tentacles",
  23269. image: {
  23270. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23271. extra: 985 / 955,
  23272. bottom: 25.4 / 1012
  23273. }
  23274. },
  23275. back: {
  23276. height: math.unit(2.3, "m"),
  23277. weight: math.unit(304, "kg"),
  23278. name: "Back",
  23279. image: {
  23280. source: "./media/characters/icowom-lee/back.svg",
  23281. extra: 975 / 954,
  23282. bottom: 9.5 / 985
  23283. }
  23284. },
  23285. backtentacles: {
  23286. height: math.unit(2.3, "m"),
  23287. weight: math.unit(304, "kg"),
  23288. name: "Back-tentacles",
  23289. image: {
  23290. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23291. extra: 975 / 954,
  23292. bottom: 9.5 / 985
  23293. }
  23294. },
  23295. frontDressed: {
  23296. height: math.unit(2.3, "m"),
  23297. weight: math.unit(304, "kg"),
  23298. name: "Front (Dressed)",
  23299. image: {
  23300. source: "./media/characters/icowom-lee/front-dressed.svg",
  23301. extra: 3076 / 2933,
  23302. bottom: 51.4 / 3125.1889
  23303. }
  23304. },
  23305. rump: {
  23306. height: math.unit(0.776, "meters"),
  23307. name: "Rump",
  23308. image: {
  23309. source: "./media/characters/icowom-lee/rump.svg"
  23310. }
  23311. },
  23312. genitals: {
  23313. height: math.unit(0.78, "meters"),
  23314. name: "Genitals",
  23315. image: {
  23316. source: "./media/characters/icowom-lee/genitals.svg"
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "Normal",
  23323. height: math.unit(2.3, "meters"),
  23324. default: true
  23325. },
  23326. {
  23327. name: "Macro",
  23328. height: math.unit(94, "meters"),
  23329. default: true
  23330. },
  23331. ]
  23332. ))
  23333. characterMakers.push(() => makeCharacter(
  23334. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23335. {
  23336. front: {
  23337. height: math.unit(22, "meters"),
  23338. weight: math.unit(21000, "kg"),
  23339. name: "Front",
  23340. image: {
  23341. source: "./media/characters/shock-diamond/front.svg",
  23342. extra: 2204 / 2053,
  23343. bottom: 65 / 2239.47
  23344. }
  23345. },
  23346. frontNude: {
  23347. height: math.unit(22, "meters"),
  23348. weight: math.unit(21000, "kg"),
  23349. name: "Front (Nude)",
  23350. image: {
  23351. source: "./media/characters/shock-diamond/front-nude.svg",
  23352. extra: 2514 / 2285,
  23353. bottom: 13 / 2527.56
  23354. }
  23355. },
  23356. },
  23357. [
  23358. {
  23359. name: "Normal",
  23360. height: math.unit(3, "meters")
  23361. },
  23362. {
  23363. name: "Macro",
  23364. height: math.unit(22, "meters"),
  23365. default: true
  23366. },
  23367. ]
  23368. ))
  23369. characterMakers.push(() => makeCharacter(
  23370. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23371. {
  23372. front: {
  23373. height: math.unit(5 + 4 / 12, "feet"),
  23374. weight: math.unit(120, "lb"),
  23375. name: "Front",
  23376. image: {
  23377. source: "./media/characters/rory/front.svg",
  23378. extra: 1318/1241,
  23379. bottom: 42/1360
  23380. }
  23381. },
  23382. back: {
  23383. height: math.unit(5 + 4 / 12, "feet"),
  23384. weight: math.unit(120, "lb"),
  23385. name: "Back",
  23386. image: {
  23387. source: "./media/characters/rory/back.svg",
  23388. extra: 1318/1241,
  23389. bottom: 42/1360
  23390. }
  23391. },
  23392. butt: {
  23393. height: math.unit(1.74, "feet"),
  23394. name: "Butt",
  23395. image: {
  23396. source: "./media/characters/rory/butt.svg"
  23397. }
  23398. },
  23399. dick: {
  23400. height: math.unit(1.02, "feet"),
  23401. name: "Dick",
  23402. image: {
  23403. source: "./media/characters/rory/dick.svg"
  23404. }
  23405. },
  23406. paws: {
  23407. height: math.unit(1, "feet"),
  23408. name: "Paws",
  23409. image: {
  23410. source: "./media/characters/rory/paws.svg"
  23411. }
  23412. },
  23413. frontAlt: {
  23414. height: math.unit(5 + 4 / 12, "feet"),
  23415. weight: math.unit(120, "lb"),
  23416. name: "Front (Alt)",
  23417. image: {
  23418. source: "./media/characters/rory/front-alt.svg",
  23419. extra: 589 / 556,
  23420. bottom: 45.7 / 635.76
  23421. }
  23422. },
  23423. frontAltNude: {
  23424. height: math.unit(5 + 4 / 12, "feet"),
  23425. weight: math.unit(120, "lb"),
  23426. name: "Front (Alt, Nude)",
  23427. image: {
  23428. source: "./media/characters/rory/front-alt-nude.svg",
  23429. extra: 589 / 556,
  23430. bottom: 45.7 / 635.76
  23431. }
  23432. },
  23433. side: {
  23434. height: math.unit(5 + 4 / 12, "feet"),
  23435. weight: math.unit(120, "lb"),
  23436. name: "Side",
  23437. image: {
  23438. source: "./media/characters/rory/side.svg",
  23439. extra: 597 / 564,
  23440. bottom: 55 / 653
  23441. }
  23442. },
  23443. backAlt: {
  23444. height: math.unit(5 + 4 / 12, "feet"),
  23445. weight: math.unit(120, "lb"),
  23446. name: "Back (Alt)",
  23447. image: {
  23448. source: "./media/characters/rory/back-alt.svg",
  23449. extra: 620 / 585,
  23450. bottom: 8.86 / 630.43
  23451. }
  23452. },
  23453. dickAlt: {
  23454. height: math.unit(0.86, "feet"),
  23455. name: "Dick (Alt)",
  23456. image: {
  23457. source: "./media/characters/rory/dick-alt.svg"
  23458. }
  23459. },
  23460. },
  23461. [
  23462. {
  23463. name: "Normal",
  23464. height: math.unit(5 + 4 / 12, "feet"),
  23465. default: true
  23466. },
  23467. {
  23468. name: "Macro",
  23469. height: math.unit(100, "feet")
  23470. },
  23471. {
  23472. name: "Macro+",
  23473. height: math.unit(140, "feet")
  23474. },
  23475. {
  23476. name: "Macro++",
  23477. height: math.unit(300, "feet")
  23478. },
  23479. ]
  23480. ))
  23481. characterMakers.push(() => makeCharacter(
  23482. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23483. {
  23484. front: {
  23485. height: math.unit(5 + 9 / 12, "feet"),
  23486. weight: math.unit(190, "lb"),
  23487. name: "Front",
  23488. image: {
  23489. source: "./media/characters/sprisk/front.svg",
  23490. extra: 1225 / 1180,
  23491. bottom: 42.7 / 1266.4
  23492. }
  23493. },
  23494. frontNsfw: {
  23495. height: math.unit(5 + 9 / 12, "feet"),
  23496. weight: math.unit(190, "lb"),
  23497. name: "Front (NSFW)",
  23498. image: {
  23499. source: "./media/characters/sprisk/front-nsfw.svg",
  23500. extra: 1225 / 1180,
  23501. bottom: 42.7 / 1266.4
  23502. }
  23503. },
  23504. back: {
  23505. height: math.unit(5 + 9 / 12, "feet"),
  23506. weight: math.unit(190, "lb"),
  23507. name: "Back",
  23508. image: {
  23509. source: "./media/characters/sprisk/back.svg",
  23510. extra: 1247 / 1200,
  23511. bottom: 5.6 / 1253.04
  23512. }
  23513. },
  23514. },
  23515. [
  23516. {
  23517. name: "Tiny",
  23518. height: math.unit(2, "inches")
  23519. },
  23520. {
  23521. name: "Normal",
  23522. height: math.unit(5 + 9 / 12, "feet"),
  23523. default: true
  23524. },
  23525. {
  23526. name: "Mini Macro",
  23527. height: math.unit(18, "feet")
  23528. },
  23529. {
  23530. name: "Macro",
  23531. height: math.unit(100, "feet")
  23532. },
  23533. {
  23534. name: "MACRO",
  23535. height: math.unit(50, "miles")
  23536. },
  23537. {
  23538. name: "M A C R O",
  23539. height: math.unit(300, "miles")
  23540. },
  23541. ]
  23542. ))
  23543. characterMakers.push(() => makeCharacter(
  23544. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23545. {
  23546. side: {
  23547. height: math.unit(15.6, "meters"),
  23548. weight: math.unit(700000, "kg"),
  23549. name: "Side",
  23550. image: {
  23551. source: "./media/characters/bunsen/side.svg",
  23552. extra: 1644 / 358
  23553. }
  23554. },
  23555. foot: {
  23556. height: math.unit(1.611 * 1644 / 358, "meter"),
  23557. name: "Foot",
  23558. image: {
  23559. source: "./media/characters/bunsen/foot.svg"
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Small",
  23566. height: math.unit(10, "feet")
  23567. },
  23568. {
  23569. name: "Normal",
  23570. height: math.unit(15.6, "meters"),
  23571. default: true
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23577. {
  23578. front: {
  23579. height: math.unit(4 + 11 / 12, "feet"),
  23580. weight: math.unit(140, "lb"),
  23581. name: "Front",
  23582. image: {
  23583. source: "./media/characters/sesh/front.svg",
  23584. extra: 3420 / 3231,
  23585. bottom: 72 / 3949.5
  23586. }
  23587. },
  23588. },
  23589. [
  23590. {
  23591. name: "Normal",
  23592. height: math.unit(4 + 11 / 12, "feet")
  23593. },
  23594. {
  23595. name: "Grown",
  23596. height: math.unit(15, "feet"),
  23597. default: true
  23598. },
  23599. {
  23600. name: "Macro",
  23601. height: math.unit(1500, "feet")
  23602. },
  23603. {
  23604. name: "Megamacro",
  23605. height: math.unit(30, "miles")
  23606. },
  23607. {
  23608. name: "Continental",
  23609. height: math.unit(3000, "miles")
  23610. },
  23611. {
  23612. name: "Gravity Mass",
  23613. height: math.unit(300000, "miles")
  23614. },
  23615. {
  23616. name: "Planet Buster",
  23617. height: math.unit(30000000, "miles")
  23618. },
  23619. {
  23620. name: "Big",
  23621. height: math.unit(3000000000, "miles")
  23622. },
  23623. ]
  23624. ))
  23625. characterMakers.push(() => makeCharacter(
  23626. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23627. {
  23628. front: {
  23629. height: math.unit(9, "feet"),
  23630. weight: math.unit(350, "lb"),
  23631. name: "Front",
  23632. image: {
  23633. source: "./media/characters/pepper/front.svg",
  23634. extra: 1448 / 1312,
  23635. bottom: 9.4 / 1457.88
  23636. }
  23637. },
  23638. back: {
  23639. height: math.unit(9, "feet"),
  23640. weight: math.unit(350, "lb"),
  23641. name: "Back",
  23642. image: {
  23643. source: "./media/characters/pepper/back.svg",
  23644. extra: 1423 / 1300,
  23645. bottom: 4.6 / 1429
  23646. }
  23647. },
  23648. maw: {
  23649. height: math.unit(0.932, "feet"),
  23650. name: "Maw",
  23651. image: {
  23652. source: "./media/characters/pepper/maw.svg"
  23653. }
  23654. },
  23655. },
  23656. [
  23657. {
  23658. name: "Normal",
  23659. height: math.unit(9, "feet"),
  23660. default: true
  23661. },
  23662. ]
  23663. ))
  23664. characterMakers.push(() => makeCharacter(
  23665. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23666. {
  23667. front: {
  23668. height: math.unit(6, "feet"),
  23669. weight: math.unit(150, "lb"),
  23670. name: "Front",
  23671. image: {
  23672. source: "./media/characters/maelstrom/front.svg",
  23673. extra: 2100 / 1883,
  23674. bottom: 94 / 2196.7
  23675. }
  23676. },
  23677. },
  23678. [
  23679. {
  23680. name: "Less Kaiju",
  23681. height: math.unit(200, "feet")
  23682. },
  23683. {
  23684. name: "Kaiju",
  23685. height: math.unit(400, "feet"),
  23686. default: true
  23687. },
  23688. {
  23689. name: "Kaiju-er",
  23690. height: math.unit(600, "feet")
  23691. },
  23692. ]
  23693. ))
  23694. characterMakers.push(() => makeCharacter(
  23695. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23696. {
  23697. front: {
  23698. height: math.unit(6 + 5 / 12, "feet"),
  23699. weight: math.unit(180, "lb"),
  23700. name: "Front",
  23701. image: {
  23702. source: "./media/characters/lexir/front.svg",
  23703. extra: 180 / 172,
  23704. bottom: 12 / 192
  23705. }
  23706. },
  23707. back: {
  23708. height: math.unit(6 + 5 / 12, "feet"),
  23709. weight: math.unit(180, "lb"),
  23710. name: "Back",
  23711. image: {
  23712. source: "./media/characters/lexir/back.svg",
  23713. extra: 1273/1201,
  23714. bottom: 39/1312
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Very Smal",
  23721. height: math.unit(1, "nm")
  23722. },
  23723. {
  23724. name: "Normal",
  23725. height: math.unit(6 + 5 / 12, "feet"),
  23726. default: true
  23727. },
  23728. {
  23729. name: "Macro",
  23730. height: math.unit(1, "mile")
  23731. },
  23732. {
  23733. name: "Megamacro",
  23734. height: math.unit(50, "miles")
  23735. },
  23736. ]
  23737. ))
  23738. characterMakers.push(() => makeCharacter(
  23739. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23740. {
  23741. front: {
  23742. height: math.unit(1.5, "meters"),
  23743. weight: math.unit(100, "lb"),
  23744. name: "Front",
  23745. image: {
  23746. source: "./media/characters/maksio/front.svg",
  23747. extra: 1549 / 1531,
  23748. bottom: 123.7 / 1674.5429
  23749. }
  23750. },
  23751. back: {
  23752. height: math.unit(1.5, "meters"),
  23753. weight: math.unit(100, "lb"),
  23754. name: "Back",
  23755. image: {
  23756. source: "./media/characters/maksio/back.svg",
  23757. extra: 1541 / 1509,
  23758. bottom: 97 / 1639
  23759. }
  23760. },
  23761. hand: {
  23762. height: math.unit(0.621, "feet"),
  23763. name: "Hand",
  23764. image: {
  23765. source: "./media/characters/maksio/hand.svg"
  23766. }
  23767. },
  23768. foot: {
  23769. height: math.unit(1.611, "feet"),
  23770. name: "Foot",
  23771. image: {
  23772. source: "./media/characters/maksio/foot.svg"
  23773. }
  23774. },
  23775. },
  23776. [
  23777. {
  23778. name: "Shrunken",
  23779. height: math.unit(10, "cm")
  23780. },
  23781. {
  23782. name: "Normal",
  23783. height: math.unit(150, "cm"),
  23784. default: true
  23785. },
  23786. ]
  23787. ))
  23788. characterMakers.push(() => makeCharacter(
  23789. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23790. {
  23791. front: {
  23792. height: math.unit(100, "feet"),
  23793. name: "Front",
  23794. image: {
  23795. source: "./media/characters/erza-bear/front.svg",
  23796. extra: 2449 / 2390,
  23797. bottom: 46 / 2494
  23798. }
  23799. },
  23800. back: {
  23801. height: math.unit(100, "feet"),
  23802. name: "Back",
  23803. image: {
  23804. source: "./media/characters/erza-bear/back.svg",
  23805. extra: 2489 / 2430,
  23806. bottom: 85.4 / 2480
  23807. }
  23808. },
  23809. tail: {
  23810. height: math.unit(42, "feet"),
  23811. name: "Tail",
  23812. image: {
  23813. source: "./media/characters/erza-bear/tail.svg"
  23814. }
  23815. },
  23816. tongue: {
  23817. height: math.unit(8, "feet"),
  23818. name: "Tongue",
  23819. image: {
  23820. source: "./media/characters/erza-bear/tongue.svg"
  23821. }
  23822. },
  23823. dick: {
  23824. height: math.unit(10.5, "feet"),
  23825. name: "Dick",
  23826. image: {
  23827. source: "./media/characters/erza-bear/dick.svg"
  23828. }
  23829. },
  23830. dickVertical: {
  23831. height: math.unit(16.9, "feet"),
  23832. name: "Dick (Vertical)",
  23833. image: {
  23834. source: "./media/characters/erza-bear/dick-vertical.svg"
  23835. }
  23836. },
  23837. },
  23838. [
  23839. {
  23840. name: "Macro",
  23841. height: math.unit(100, "feet"),
  23842. default: true
  23843. },
  23844. ]
  23845. ))
  23846. characterMakers.push(() => makeCharacter(
  23847. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23848. {
  23849. front: {
  23850. height: math.unit(172, "cm"),
  23851. weight: math.unit(73, "kg"),
  23852. name: "Front",
  23853. image: {
  23854. source: "./media/characters/violet-flor/front.svg",
  23855. extra: 1530 / 1442,
  23856. bottom: 61.9 / 1588.8
  23857. }
  23858. },
  23859. back: {
  23860. height: math.unit(180, "cm"),
  23861. weight: math.unit(73, "kg"),
  23862. name: "Back",
  23863. image: {
  23864. source: "./media/characters/violet-flor/back.svg",
  23865. extra: 1692 / 1630,
  23866. bottom: 20 / 1712
  23867. }
  23868. },
  23869. },
  23870. [
  23871. {
  23872. name: "Normal",
  23873. height: math.unit(172, "cm"),
  23874. default: true
  23875. },
  23876. ]
  23877. ))
  23878. characterMakers.push(() => makeCharacter(
  23879. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23880. {
  23881. front: {
  23882. height: math.unit(6, "feet"),
  23883. weight: math.unit(220, "lb"),
  23884. name: "Front",
  23885. image: {
  23886. source: "./media/characters/lynn-rhea/front.svg",
  23887. extra: 310 / 273
  23888. }
  23889. },
  23890. back: {
  23891. height: math.unit(6, "feet"),
  23892. weight: math.unit(220, "lb"),
  23893. name: "Back",
  23894. image: {
  23895. source: "./media/characters/lynn-rhea/back.svg",
  23896. extra: 310 / 273
  23897. }
  23898. },
  23899. dicks: {
  23900. height: math.unit(0.9, "feet"),
  23901. name: "Dicks",
  23902. image: {
  23903. source: "./media/characters/lynn-rhea/dicks.svg"
  23904. }
  23905. },
  23906. slit: {
  23907. height: math.unit(0.4, "feet"),
  23908. name: "Slit",
  23909. image: {
  23910. source: "./media/characters/lynn-rhea/slit.svg"
  23911. }
  23912. },
  23913. },
  23914. [
  23915. {
  23916. name: "Micro",
  23917. height: math.unit(1, "inch")
  23918. },
  23919. {
  23920. name: "Macro",
  23921. height: math.unit(60, "feet"),
  23922. default: true
  23923. },
  23924. {
  23925. name: "Megamacro",
  23926. height: math.unit(2, "miles")
  23927. },
  23928. {
  23929. name: "Gigamacro",
  23930. height: math.unit(3, "earths")
  23931. },
  23932. {
  23933. name: "Galactic",
  23934. height: math.unit(0.8, "galaxies")
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23940. {
  23941. front: {
  23942. height: math.unit(1600, "feet"),
  23943. weight: math.unit(85758785169, "kg"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/valathos/front.svg",
  23947. extra: 1451 / 1339
  23948. }
  23949. },
  23950. },
  23951. [
  23952. {
  23953. name: "Macro",
  23954. height: math.unit(1600, "feet"),
  23955. default: true
  23956. },
  23957. ]
  23958. ))
  23959. characterMakers.push(() => makeCharacter(
  23960. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23961. {
  23962. front: {
  23963. height: math.unit(7 + 5 / 12, "feet"),
  23964. weight: math.unit(300, "lb"),
  23965. name: "Front",
  23966. image: {
  23967. source: "./media/characters/azula/front.svg",
  23968. extra: 3208 / 2880,
  23969. bottom: 80.2 / 3277
  23970. }
  23971. },
  23972. back: {
  23973. height: math.unit(7 + 5 / 12, "feet"),
  23974. weight: math.unit(300, "lb"),
  23975. name: "Back",
  23976. image: {
  23977. source: "./media/characters/azula/back.svg",
  23978. extra: 3169 / 2822,
  23979. bottom: 150.6 / 3321
  23980. }
  23981. },
  23982. },
  23983. [
  23984. {
  23985. name: "Normal",
  23986. height: math.unit(7 + 5 / 12, "feet"),
  23987. default: true
  23988. },
  23989. {
  23990. name: "Big",
  23991. height: math.unit(20, "feet")
  23992. },
  23993. ]
  23994. ))
  23995. characterMakers.push(() => makeCharacter(
  23996. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23997. {
  23998. front: {
  23999. height: math.unit(5 + 1 / 12, "feet"),
  24000. weight: math.unit(110, "lb"),
  24001. name: "Front",
  24002. image: {
  24003. source: "./media/characters/rupert/front.svg",
  24004. extra: 1549 / 1495,
  24005. bottom: 54.2 / 1604.4
  24006. }
  24007. },
  24008. },
  24009. [
  24010. {
  24011. name: "Normal",
  24012. height: math.unit(5 + 1 / 12, "feet"),
  24013. default: true
  24014. },
  24015. ]
  24016. ))
  24017. characterMakers.push(() => makeCharacter(
  24018. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24019. {
  24020. front: {
  24021. height: math.unit(8 + 4 / 12, "feet"),
  24022. weight: math.unit(350, "lb"),
  24023. name: "Front",
  24024. image: {
  24025. source: "./media/characters/sheera-castellar/front.svg",
  24026. extra: 1957 / 1894,
  24027. bottom: 26.97 / 1975.017
  24028. }
  24029. },
  24030. side: {
  24031. height: math.unit(8 + 4 / 12, "feet"),
  24032. weight: math.unit(350, "lb"),
  24033. name: "Side",
  24034. image: {
  24035. source: "./media/characters/sheera-castellar/side.svg",
  24036. extra: 1957 / 1894
  24037. }
  24038. },
  24039. back: {
  24040. height: math.unit(8 + 4 / 12, "feet"),
  24041. weight: math.unit(350, "lb"),
  24042. name: "Back",
  24043. image: {
  24044. source: "./media/characters/sheera-castellar/back.svg",
  24045. extra: 1957 / 1894
  24046. }
  24047. },
  24048. angled: {
  24049. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24050. weight: math.unit(350, "lb"),
  24051. name: "Angled",
  24052. image: {
  24053. source: "./media/characters/sheera-castellar/angled.svg",
  24054. extra: 1807 / 1707,
  24055. bottom: 68 / 1875
  24056. }
  24057. },
  24058. genitals: {
  24059. height: math.unit(2.2, "feet"),
  24060. name: "Genitals",
  24061. image: {
  24062. source: "./media/characters/sheera-castellar/genitals.svg"
  24063. }
  24064. },
  24065. taur: {
  24066. height: math.unit(10 + 6/12, "feet"),
  24067. name: "Taur",
  24068. image: {
  24069. source: "./media/characters/sheera-castellar/taur.svg",
  24070. extra: 2017/1909,
  24071. bottom: 185/2202
  24072. }
  24073. },
  24074. },
  24075. [
  24076. {
  24077. name: "Normal",
  24078. height: math.unit(8 + 4 / 12, "feet")
  24079. },
  24080. {
  24081. name: "Macro",
  24082. height: math.unit(150, "feet"),
  24083. default: true
  24084. },
  24085. {
  24086. name: "Macro+",
  24087. height: math.unit(800, "feet")
  24088. },
  24089. ]
  24090. ))
  24091. characterMakers.push(() => makeCharacter(
  24092. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24093. {
  24094. front: {
  24095. height: math.unit(6, "feet"),
  24096. weight: math.unit(150, "lb"),
  24097. name: "Front",
  24098. image: {
  24099. source: "./media/characters/jaipur/front.svg",
  24100. extra: 3860 / 3731,
  24101. bottom: 287 / 4140
  24102. }
  24103. },
  24104. back: {
  24105. height: math.unit(6, "feet"),
  24106. weight: math.unit(150, "lb"),
  24107. name: "Back",
  24108. image: {
  24109. source: "./media/characters/jaipur/back.svg",
  24110. extra: 1637/1561,
  24111. bottom: 154/1791
  24112. }
  24113. },
  24114. },
  24115. [
  24116. {
  24117. name: "Normal",
  24118. height: math.unit(1.85, "meters"),
  24119. default: true
  24120. },
  24121. {
  24122. name: "Macro",
  24123. height: math.unit(150, "meters")
  24124. },
  24125. {
  24126. name: "Macro+",
  24127. height: math.unit(0.5, "miles")
  24128. },
  24129. {
  24130. name: "Macro++",
  24131. height: math.unit(2.5, "miles")
  24132. },
  24133. {
  24134. name: "Macro+++",
  24135. height: math.unit(12, "miles")
  24136. },
  24137. {
  24138. name: "Macro++++",
  24139. height: math.unit(120, "miles")
  24140. },
  24141. {
  24142. name: "Macro+++++",
  24143. height: math.unit(1200, "miles")
  24144. },
  24145. ]
  24146. ))
  24147. characterMakers.push(() => makeCharacter(
  24148. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24149. {
  24150. front: {
  24151. height: math.unit(6, "feet"),
  24152. weight: math.unit(150, "lb"),
  24153. name: "Front",
  24154. image: {
  24155. source: "./media/characters/sheila-wolf/front.svg",
  24156. extra: 1931 / 1808,
  24157. bottom: 29.5 / 1960
  24158. }
  24159. },
  24160. dick: {
  24161. height: math.unit(1.464, "feet"),
  24162. name: "Dick",
  24163. image: {
  24164. source: "./media/characters/sheila-wolf/dick.svg"
  24165. }
  24166. },
  24167. muzzle: {
  24168. height: math.unit(0.513, "feet"),
  24169. name: "Muzzle",
  24170. image: {
  24171. source: "./media/characters/sheila-wolf/muzzle.svg"
  24172. }
  24173. },
  24174. },
  24175. [
  24176. {
  24177. name: "Macro",
  24178. height: math.unit(70, "feet"),
  24179. default: true
  24180. },
  24181. ]
  24182. ))
  24183. characterMakers.push(() => makeCharacter(
  24184. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24185. {
  24186. front: {
  24187. height: math.unit(32, "meters"),
  24188. weight: math.unit(300000, "kg"),
  24189. name: "Front",
  24190. image: {
  24191. source: "./media/characters/almor/front.svg",
  24192. extra: 1408 / 1322,
  24193. bottom: 94.6 / 1506.5
  24194. }
  24195. },
  24196. },
  24197. [
  24198. {
  24199. name: "Macro",
  24200. height: math.unit(32, "meters"),
  24201. default: true
  24202. },
  24203. ]
  24204. ))
  24205. characterMakers.push(() => makeCharacter(
  24206. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24207. {
  24208. front: {
  24209. height: math.unit(7, "feet"),
  24210. weight: math.unit(200, "lb"),
  24211. name: "Front",
  24212. image: {
  24213. source: "./media/characters/silver/front.svg",
  24214. extra: 472.1 / 450.5,
  24215. bottom: 26.5 / 499.424
  24216. }
  24217. },
  24218. },
  24219. [
  24220. {
  24221. name: "Normal",
  24222. height: math.unit(7, "feet"),
  24223. default: true
  24224. },
  24225. {
  24226. name: "Macro",
  24227. height: math.unit(800, "feet")
  24228. },
  24229. {
  24230. name: "Megamacro",
  24231. height: math.unit(250, "miles")
  24232. },
  24233. ]
  24234. ))
  24235. characterMakers.push(() => makeCharacter(
  24236. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24237. {
  24238. front: {
  24239. height: math.unit(6, "feet"),
  24240. weight: math.unit(150, "lb"),
  24241. name: "Front",
  24242. image: {
  24243. source: "./media/characters/pliskin/front.svg",
  24244. extra: 1469 / 1359,
  24245. bottom: 70 / 1540
  24246. }
  24247. },
  24248. },
  24249. [
  24250. {
  24251. name: "Micro",
  24252. height: math.unit(3, "inches")
  24253. },
  24254. {
  24255. name: "Normal",
  24256. height: math.unit(5 + 11 / 12, "feet"),
  24257. default: true
  24258. },
  24259. {
  24260. name: "Macro",
  24261. height: math.unit(120, "feet")
  24262. },
  24263. ]
  24264. ))
  24265. characterMakers.push(() => makeCharacter(
  24266. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24267. {
  24268. front: {
  24269. height: math.unit(6, "feet"),
  24270. weight: math.unit(150, "lb"),
  24271. name: "Front",
  24272. image: {
  24273. source: "./media/characters/sammy/front.svg",
  24274. extra: 1193 / 1089,
  24275. bottom: 30.5 / 1226
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Macro",
  24282. height: math.unit(1700, "feet"),
  24283. default: true
  24284. },
  24285. {
  24286. name: "Examacro",
  24287. height: math.unit(2.5e9, "lightyears")
  24288. },
  24289. ]
  24290. ))
  24291. characterMakers.push(() => makeCharacter(
  24292. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24293. {
  24294. front: {
  24295. height: math.unit(21, "meters"),
  24296. weight: math.unit(12, "tonnes"),
  24297. name: "Front",
  24298. image: {
  24299. source: "./media/characters/kuru/front.svg",
  24300. extra: 4301 / 3785,
  24301. bottom: 371.3 / 4691
  24302. }
  24303. },
  24304. },
  24305. [
  24306. {
  24307. name: "Macro",
  24308. height: math.unit(21, "meters"),
  24309. default: true
  24310. },
  24311. ]
  24312. ))
  24313. characterMakers.push(() => makeCharacter(
  24314. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24315. {
  24316. front: {
  24317. height: math.unit(23, "meters"),
  24318. weight: math.unit(12.2, "tonnes"),
  24319. name: "Front",
  24320. image: {
  24321. source: "./media/characters/rakka/front.svg",
  24322. extra: 4670 / 4169,
  24323. bottom: 301 / 4968.7
  24324. }
  24325. },
  24326. },
  24327. [
  24328. {
  24329. name: "Macro",
  24330. height: math.unit(23, "meters"),
  24331. default: true
  24332. },
  24333. ]
  24334. ))
  24335. characterMakers.push(() => makeCharacter(
  24336. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24337. {
  24338. front: {
  24339. height: math.unit(6, "feet"),
  24340. weight: math.unit(150, "lb"),
  24341. name: "Front",
  24342. image: {
  24343. source: "./media/characters/rhys-feline/front.svg",
  24344. extra: 2488 / 2308,
  24345. bottom: 35.67 / 2519.19
  24346. }
  24347. },
  24348. },
  24349. [
  24350. {
  24351. name: "Really Small",
  24352. height: math.unit(1, "nm")
  24353. },
  24354. {
  24355. name: "Micro",
  24356. height: math.unit(4, "inches")
  24357. },
  24358. {
  24359. name: "Normal",
  24360. height: math.unit(4 + 10 / 12, "feet"),
  24361. default: true
  24362. },
  24363. {
  24364. name: "Macro",
  24365. height: math.unit(100, "feet")
  24366. },
  24367. {
  24368. name: "Megamacto",
  24369. height: math.unit(50, "miles")
  24370. },
  24371. ]
  24372. ))
  24373. characterMakers.push(() => makeCharacter(
  24374. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24375. {
  24376. side: {
  24377. height: math.unit(30, "feet"),
  24378. weight: math.unit(35000, "kg"),
  24379. name: "Side",
  24380. image: {
  24381. source: "./media/characters/alydar/side.svg",
  24382. extra: 234 / 222,
  24383. bottom: 6.5 / 241
  24384. }
  24385. },
  24386. front: {
  24387. height: math.unit(30, "feet"),
  24388. weight: math.unit(35000, "kg"),
  24389. name: "Front",
  24390. image: {
  24391. source: "./media/characters/alydar/front.svg",
  24392. extra: 223.37 / 210.2,
  24393. bottom: 22.3 / 246.76
  24394. }
  24395. },
  24396. top: {
  24397. height: math.unit(64.54, "feet"),
  24398. weight: math.unit(35000, "kg"),
  24399. name: "Top",
  24400. image: {
  24401. source: "./media/characters/alydar/top.svg"
  24402. }
  24403. },
  24404. anthro: {
  24405. height: math.unit(30, "feet"),
  24406. weight: math.unit(9000, "kg"),
  24407. name: "Anthro",
  24408. image: {
  24409. source: "./media/characters/alydar/anthro.svg",
  24410. extra: 432 / 421,
  24411. bottom: 7.18 / 440
  24412. }
  24413. },
  24414. maw: {
  24415. height: math.unit(11.693, "feet"),
  24416. name: "Maw",
  24417. image: {
  24418. source: "./media/characters/alydar/maw.svg"
  24419. }
  24420. },
  24421. head: {
  24422. height: math.unit(11.693, "feet"),
  24423. name: "Head",
  24424. image: {
  24425. source: "./media/characters/alydar/head.svg"
  24426. }
  24427. },
  24428. headAlt: {
  24429. height: math.unit(12.861, "feet"),
  24430. name: "Head (Alt)",
  24431. image: {
  24432. source: "./media/characters/alydar/head-alt.svg"
  24433. }
  24434. },
  24435. wing: {
  24436. height: math.unit(20.712, "feet"),
  24437. name: "Wing",
  24438. image: {
  24439. source: "./media/characters/alydar/wing.svg"
  24440. }
  24441. },
  24442. wingFeather: {
  24443. height: math.unit(9.662, "feet"),
  24444. name: "Wing Feather",
  24445. image: {
  24446. source: "./media/characters/alydar/wing-feather.svg"
  24447. }
  24448. },
  24449. countourFeather: {
  24450. height: math.unit(4.154, "feet"),
  24451. name: "Contour Feather",
  24452. image: {
  24453. source: "./media/characters/alydar/contour-feather.svg"
  24454. }
  24455. },
  24456. },
  24457. [
  24458. {
  24459. name: "Diplomatic",
  24460. height: math.unit(13, "feet"),
  24461. default: true
  24462. },
  24463. {
  24464. name: "Small",
  24465. height: math.unit(30, "feet")
  24466. },
  24467. {
  24468. name: "Normal",
  24469. height: math.unit(95, "feet"),
  24470. default: true
  24471. },
  24472. {
  24473. name: "Large",
  24474. height: math.unit(285, "feet")
  24475. },
  24476. {
  24477. name: "Incomprehensible",
  24478. height: math.unit(450, "megameters")
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24484. {
  24485. side: {
  24486. height: math.unit(11, "feet"),
  24487. weight: math.unit(1750, "kg"),
  24488. name: "Side",
  24489. image: {
  24490. source: "./media/characters/selicia/side.svg",
  24491. extra: 440 / 396,
  24492. bottom: 24.8 / 465.979
  24493. }
  24494. },
  24495. maw: {
  24496. height: math.unit(4.665, "feet"),
  24497. name: "Maw",
  24498. image: {
  24499. source: "./media/characters/selicia/maw.svg"
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Normal",
  24506. height: math.unit(11, "feet"),
  24507. default: true
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24513. {
  24514. side: {
  24515. height: math.unit(2 + 6 / 12, "feet"),
  24516. weight: math.unit(30, "lb"),
  24517. name: "Side",
  24518. image: {
  24519. source: "./media/characters/layla/side.svg",
  24520. extra: 244 / 188,
  24521. bottom: 18.2 / 262.1
  24522. }
  24523. },
  24524. back: {
  24525. height: math.unit(2 + 6 / 12, "feet"),
  24526. weight: math.unit(30, "lb"),
  24527. name: "Back",
  24528. image: {
  24529. source: "./media/characters/layla/back.svg",
  24530. extra: 308 / 241.5,
  24531. bottom: 8.9 / 316.8
  24532. }
  24533. },
  24534. cumming: {
  24535. height: math.unit(2 + 6 / 12, "feet"),
  24536. weight: math.unit(30, "lb"),
  24537. name: "Cumming",
  24538. image: {
  24539. source: "./media/characters/layla/cumming.svg",
  24540. extra: 342 / 279,
  24541. bottom: 595 / 938
  24542. }
  24543. },
  24544. dickFlaccid: {
  24545. height: math.unit(2.595, "feet"),
  24546. name: "Flaccid Genitals",
  24547. image: {
  24548. source: "./media/characters/layla/dick-flaccid.svg"
  24549. }
  24550. },
  24551. dickErect: {
  24552. height: math.unit(2.359, "feet"),
  24553. name: "Erect Genitals",
  24554. image: {
  24555. source: "./media/characters/layla/dick-erect.svg"
  24556. }
  24557. },
  24558. dragon: {
  24559. height: math.unit(40, "feet"),
  24560. name: "Dragon",
  24561. image: {
  24562. source: "./media/characters/layla/dragon.svg",
  24563. extra: 610/535,
  24564. bottom: 367/977
  24565. }
  24566. },
  24567. taur: {
  24568. height: math.unit(30, "feet"),
  24569. name: "Taur",
  24570. image: {
  24571. source: "./media/characters/layla/taur.svg",
  24572. extra: 1268/1199,
  24573. bottom: 112/1380
  24574. }
  24575. },
  24576. },
  24577. [
  24578. {
  24579. name: "Micro",
  24580. height: math.unit(1, "inch")
  24581. },
  24582. {
  24583. name: "Small",
  24584. height: math.unit(1, "foot")
  24585. },
  24586. {
  24587. name: "Normal",
  24588. height: math.unit(2 + 6 / 12, "feet"),
  24589. default: true
  24590. },
  24591. {
  24592. name: "Macro",
  24593. height: math.unit(200, "feet")
  24594. },
  24595. {
  24596. name: "Megamacro",
  24597. height: math.unit(1000, "miles")
  24598. },
  24599. {
  24600. name: "Planetary",
  24601. height: math.unit(8000, "miles")
  24602. },
  24603. {
  24604. name: "True Layla",
  24605. height: math.unit(200000 * 7, "multiverses")
  24606. },
  24607. ]
  24608. ))
  24609. characterMakers.push(() => makeCharacter(
  24610. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24611. {
  24612. back: {
  24613. height: math.unit(10.5, "feet"),
  24614. weight: math.unit(800, "lb"),
  24615. name: "Back",
  24616. image: {
  24617. source: "./media/characters/knox/back.svg",
  24618. extra: 1486 / 1089,
  24619. bottom: 107 / 1601.4
  24620. }
  24621. },
  24622. side: {
  24623. height: math.unit(10.5, "feet"),
  24624. weight: math.unit(800, "lb"),
  24625. name: "Side",
  24626. image: {
  24627. source: "./media/characters/knox/side.svg",
  24628. extra: 244 / 218,
  24629. bottom: 14 / 260
  24630. }
  24631. },
  24632. },
  24633. [
  24634. {
  24635. name: "Compact",
  24636. height: math.unit(10.5, "feet"),
  24637. default: true
  24638. },
  24639. {
  24640. name: "Dynamax",
  24641. height: math.unit(210, "feet")
  24642. },
  24643. {
  24644. name: "Full Macro",
  24645. height: math.unit(850, "feet")
  24646. },
  24647. ]
  24648. ))
  24649. characterMakers.push(() => makeCharacter(
  24650. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24651. {
  24652. front: {
  24653. height: math.unit(28, "feet"),
  24654. weight: math.unit(10500, "lb"),
  24655. name: "Front",
  24656. image: {
  24657. source: "./media/characters/kayda/front.svg",
  24658. extra: 1536 / 1428,
  24659. bottom: 68.7 / 1603
  24660. }
  24661. },
  24662. back: {
  24663. height: math.unit(28, "feet"),
  24664. weight: math.unit(10500, "lb"),
  24665. name: "Back",
  24666. image: {
  24667. source: "./media/characters/kayda/back.svg",
  24668. extra: 1557 / 1464,
  24669. bottom: 39.5 / 1597.49
  24670. }
  24671. },
  24672. dick: {
  24673. height: math.unit(3.858, "feet"),
  24674. name: "Dick",
  24675. image: {
  24676. source: "./media/characters/kayda/dick.svg"
  24677. }
  24678. },
  24679. },
  24680. [
  24681. {
  24682. name: "Macro",
  24683. height: math.unit(28, "feet"),
  24684. default: true
  24685. },
  24686. ]
  24687. ))
  24688. characterMakers.push(() => makeCharacter(
  24689. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24690. {
  24691. front: {
  24692. height: math.unit(10 + 11 / 12, "feet"),
  24693. weight: math.unit(1400, "lb"),
  24694. name: "Front",
  24695. image: {
  24696. source: "./media/characters/brian/front.svg",
  24697. extra: 737 / 692,
  24698. bottom: 55.4 / 785
  24699. }
  24700. },
  24701. },
  24702. [
  24703. {
  24704. name: "Normal",
  24705. height: math.unit(10 + 11 / 12, "feet"),
  24706. default: true
  24707. },
  24708. ]
  24709. ))
  24710. characterMakers.push(() => makeCharacter(
  24711. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24712. {
  24713. front: {
  24714. height: math.unit(5 + 8 / 12, "feet"),
  24715. weight: math.unit(140, "lb"),
  24716. name: "Front",
  24717. image: {
  24718. source: "./media/characters/khemri/front.svg",
  24719. extra: 4780 / 4059,
  24720. bottom: 80.1 / 4859.25
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Micro",
  24727. height: math.unit(6, "inches")
  24728. },
  24729. {
  24730. name: "Normal",
  24731. height: math.unit(5 + 8 / 12, "feet"),
  24732. default: true
  24733. },
  24734. ]
  24735. ))
  24736. characterMakers.push(() => makeCharacter(
  24737. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24738. {
  24739. front: {
  24740. height: math.unit(13, "feet"),
  24741. weight: math.unit(1700, "lb"),
  24742. name: "Front",
  24743. image: {
  24744. source: "./media/characters/felix-braveheart/front.svg",
  24745. extra: 1222 / 1157,
  24746. bottom: 53.2 / 1280
  24747. }
  24748. },
  24749. back: {
  24750. height: math.unit(13, "feet"),
  24751. weight: math.unit(1700, "lb"),
  24752. name: "Back",
  24753. image: {
  24754. source: "./media/characters/felix-braveheart/back.svg",
  24755. extra: 1277 / 1203,
  24756. bottom: 50.2 / 1327
  24757. }
  24758. },
  24759. feral: {
  24760. height: math.unit(6, "feet"),
  24761. weight: math.unit(400, "lb"),
  24762. name: "Feral",
  24763. image: {
  24764. source: "./media/characters/felix-braveheart/feral.svg",
  24765. extra: 682 / 625,
  24766. bottom: 6.9 / 688
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Normal",
  24773. height: math.unit(13, "feet"),
  24774. default: true
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24780. {
  24781. side: {
  24782. height: math.unit(5 + 11 / 12, "feet"),
  24783. weight: math.unit(1400, "lb"),
  24784. name: "Side",
  24785. image: {
  24786. source: "./media/characters/shadow-blade/side.svg",
  24787. extra: 1726 / 1267,
  24788. bottom: 58.4 / 1785
  24789. }
  24790. },
  24791. },
  24792. [
  24793. {
  24794. name: "Normal",
  24795. height: math.unit(5 + 11 / 12, "feet"),
  24796. default: true
  24797. },
  24798. ]
  24799. ))
  24800. characterMakers.push(() => makeCharacter(
  24801. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24802. {
  24803. front: {
  24804. height: math.unit(1 + 6 / 12, "feet"),
  24805. weight: math.unit(25, "lb"),
  24806. name: "Front",
  24807. image: {
  24808. source: "./media/characters/karla-halldor/front.svg",
  24809. extra: 1459 / 1383,
  24810. bottom: 12 / 1472
  24811. }
  24812. },
  24813. },
  24814. [
  24815. {
  24816. name: "Normal",
  24817. height: math.unit(1 + 6 / 12, "feet"),
  24818. default: true
  24819. },
  24820. ]
  24821. ))
  24822. characterMakers.push(() => makeCharacter(
  24823. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24824. {
  24825. front: {
  24826. height: math.unit(6 + 2 / 12, "feet"),
  24827. weight: math.unit(160, "lb"),
  24828. name: "Front",
  24829. image: {
  24830. source: "./media/characters/ariam/front.svg",
  24831. extra: 1073/976,
  24832. bottom: 52/1125
  24833. }
  24834. },
  24835. back: {
  24836. height: math.unit(6 + 2/12, "feet"),
  24837. weight: math.unit(160, "lb"),
  24838. name: "Back",
  24839. image: {
  24840. source: "./media/characters/ariam/back.svg",
  24841. extra: 1103/1023,
  24842. bottom: 9/1112
  24843. }
  24844. },
  24845. dressed: {
  24846. height: math.unit(6 + 2/12, "feet"),
  24847. weight: math.unit(160, "lb"),
  24848. name: "Dressed",
  24849. image: {
  24850. source: "./media/characters/ariam/dressed.svg",
  24851. extra: 1099/1009,
  24852. bottom: 25/1124
  24853. }
  24854. },
  24855. squatting: {
  24856. height: math.unit(4.1, "feet"),
  24857. weight: math.unit(160, "lb"),
  24858. name: "Squatting",
  24859. image: {
  24860. source: "./media/characters/ariam/squatting.svg",
  24861. extra: 2617 / 2112,
  24862. bottom: 61.2 / 2681,
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Normal",
  24869. height: math.unit(6 + 2 / 12, "feet"),
  24870. default: true
  24871. },
  24872. {
  24873. name: "Normal+",
  24874. height: math.unit(4, "meters")
  24875. },
  24876. {
  24877. name: "Macro",
  24878. height: math.unit(50, "meters")
  24879. },
  24880. {
  24881. name: "Macro+",
  24882. height: math.unit(100, "meters")
  24883. },
  24884. {
  24885. name: "Megamacro",
  24886. height: math.unit(20, "km")
  24887. },
  24888. {
  24889. name: "Caretaker",
  24890. height: math.unit(444, "megameters")
  24891. },
  24892. ]
  24893. ))
  24894. characterMakers.push(() => makeCharacter(
  24895. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24896. {
  24897. front: {
  24898. height: math.unit(1.67, "meters"),
  24899. weight: math.unit(140, "lb"),
  24900. name: "Front",
  24901. image: {
  24902. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24903. extra: 438 / 410,
  24904. bottom: 0.75 / 439
  24905. }
  24906. },
  24907. },
  24908. [
  24909. {
  24910. name: "Shrunken",
  24911. height: math.unit(7.6, "cm")
  24912. },
  24913. {
  24914. name: "Human Scale",
  24915. height: math.unit(1.67, "meters")
  24916. },
  24917. {
  24918. name: "Wolxi Scale",
  24919. height: math.unit(36.7, "meters"),
  24920. default: true
  24921. },
  24922. ]
  24923. ))
  24924. characterMakers.push(() => makeCharacter(
  24925. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24926. {
  24927. front: {
  24928. height: math.unit(1.73, "meters"),
  24929. weight: math.unit(240, "lb"),
  24930. name: "Front",
  24931. image: {
  24932. source: "./media/characters/izue-two-mothers/front.svg",
  24933. extra: 469 / 437,
  24934. bottom: 1.24 / 470.6
  24935. }
  24936. },
  24937. },
  24938. [
  24939. {
  24940. name: "Shrunken",
  24941. height: math.unit(7.86, "cm")
  24942. },
  24943. {
  24944. name: "Human Scale",
  24945. height: math.unit(1.73, "meters")
  24946. },
  24947. {
  24948. name: "Wolxi Scale",
  24949. height: math.unit(38, "meters"),
  24950. default: true
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(1.55, "meters"),
  24959. weight: math.unit(120, "lb"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/teeku-love-shack/front.svg",
  24963. extra: 387 / 362,
  24964. bottom: 1.51 / 388
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "Shrunken",
  24971. height: math.unit(7, "cm")
  24972. },
  24973. {
  24974. name: "Human Scale",
  24975. height: math.unit(1.55, "meters")
  24976. },
  24977. {
  24978. name: "Wolxi Scale",
  24979. height: math.unit(34.1, "meters"),
  24980. default: true
  24981. },
  24982. ]
  24983. ))
  24984. characterMakers.push(() => makeCharacter(
  24985. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24986. {
  24987. front: {
  24988. height: math.unit(1.83, "meters"),
  24989. weight: math.unit(135, "lb"),
  24990. name: "Front",
  24991. image: {
  24992. source: "./media/characters/dejma-the-red/front.svg",
  24993. extra: 480 / 458,
  24994. bottom: 1.8 / 482
  24995. }
  24996. },
  24997. },
  24998. [
  24999. {
  25000. name: "Shrunken",
  25001. height: math.unit(8.3, "cm")
  25002. },
  25003. {
  25004. name: "Human Scale",
  25005. height: math.unit(1.83, "meters")
  25006. },
  25007. {
  25008. name: "Wolxi Scale",
  25009. height: math.unit(40, "meters"),
  25010. default: true
  25011. },
  25012. ]
  25013. ))
  25014. characterMakers.push(() => makeCharacter(
  25015. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25016. {
  25017. front: {
  25018. height: math.unit(1.78, "meters"),
  25019. weight: math.unit(65, "kg"),
  25020. name: "Front",
  25021. image: {
  25022. source: "./media/characters/aki/front.svg",
  25023. extra: 452 / 415
  25024. }
  25025. },
  25026. frontNsfw: {
  25027. height: math.unit(1.78, "meters"),
  25028. weight: math.unit(65, "kg"),
  25029. name: "Front (NSFW)",
  25030. image: {
  25031. source: "./media/characters/aki/front-nsfw.svg",
  25032. extra: 452 / 415
  25033. }
  25034. },
  25035. back: {
  25036. height: math.unit(1.78, "meters"),
  25037. weight: math.unit(65, "kg"),
  25038. name: "Back",
  25039. image: {
  25040. source: "./media/characters/aki/back.svg",
  25041. extra: 452 / 415
  25042. }
  25043. },
  25044. rump: {
  25045. height: math.unit(2.05, "feet"),
  25046. name: "Rump",
  25047. image: {
  25048. source: "./media/characters/aki/rump.svg"
  25049. }
  25050. },
  25051. dick: {
  25052. height: math.unit(0.95, "feet"),
  25053. name: "Dick",
  25054. image: {
  25055. source: "./media/characters/aki/dick.svg"
  25056. }
  25057. },
  25058. },
  25059. [
  25060. {
  25061. name: "Micro",
  25062. height: math.unit(15, "cm")
  25063. },
  25064. {
  25065. name: "Normal",
  25066. height: math.unit(178, "cm"),
  25067. default: true
  25068. },
  25069. {
  25070. name: "Macro",
  25071. height: math.unit(214, "m")
  25072. },
  25073. {
  25074. name: "Macro+",
  25075. height: math.unit(534, "m")
  25076. },
  25077. ]
  25078. ))
  25079. characterMakers.push(() => makeCharacter(
  25080. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25081. {
  25082. front: {
  25083. height: math.unit(5 + 5 / 12, "feet"),
  25084. weight: math.unit(120, "lb"),
  25085. name: "Front",
  25086. image: {
  25087. source: "./media/characters/ari/front.svg",
  25088. extra: 1550/1471,
  25089. bottom: 39/1589
  25090. }
  25091. },
  25092. },
  25093. [
  25094. {
  25095. name: "Normal",
  25096. height: math.unit(5 + 5 / 12, "feet")
  25097. },
  25098. {
  25099. name: "Macro",
  25100. height: math.unit(100, "feet"),
  25101. default: true
  25102. },
  25103. {
  25104. name: "Megamacro",
  25105. height: math.unit(100, "miles")
  25106. },
  25107. {
  25108. name: "Gigamacro",
  25109. height: math.unit(80000, "miles")
  25110. },
  25111. ]
  25112. ))
  25113. characterMakers.push(() => makeCharacter(
  25114. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25115. {
  25116. side: {
  25117. height: math.unit(9, "feet"),
  25118. weight: math.unit(400, "kg"),
  25119. name: "Side",
  25120. image: {
  25121. source: "./media/characters/bolt/side.svg",
  25122. extra: 1126 / 896,
  25123. bottom: 60 / 1187.3,
  25124. }
  25125. },
  25126. },
  25127. [
  25128. {
  25129. name: "Micro",
  25130. height: math.unit(5, "inches")
  25131. },
  25132. {
  25133. name: "Normal",
  25134. height: math.unit(9, "feet"),
  25135. default: true
  25136. },
  25137. {
  25138. name: "Macro",
  25139. height: math.unit(700, "feet")
  25140. },
  25141. {
  25142. name: "Max Size",
  25143. height: math.unit(1.52e22, "yottameters")
  25144. },
  25145. ]
  25146. ))
  25147. characterMakers.push(() => makeCharacter(
  25148. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25149. {
  25150. front: {
  25151. height: math.unit(4.3, "meters"),
  25152. weight: math.unit(3, "tons"),
  25153. name: "Front",
  25154. image: {
  25155. source: "./media/characters/draekon-sylviar/front.svg",
  25156. extra: 2072/1512,
  25157. bottom: 74/2146
  25158. }
  25159. },
  25160. back: {
  25161. height: math.unit(4.3, "meters"),
  25162. weight: math.unit(3, "tons"),
  25163. name: "Back",
  25164. image: {
  25165. source: "./media/characters/draekon-sylviar/back.svg",
  25166. extra: 1639/1483,
  25167. bottom: 41/1680
  25168. }
  25169. },
  25170. feral: {
  25171. height: math.unit(1.15, "meters"),
  25172. weight: math.unit(3, "tons"),
  25173. name: "Feral",
  25174. image: {
  25175. source: "./media/characters/draekon-sylviar/feral.svg",
  25176. extra: 1033/395,
  25177. bottom: 130/1163
  25178. }
  25179. },
  25180. maw: {
  25181. height: math.unit(1.3, "meters"),
  25182. name: "Maw",
  25183. image: {
  25184. source: "./media/characters/draekon-sylviar/maw.svg"
  25185. }
  25186. },
  25187. mawSeparated: {
  25188. height: math.unit(1.53, "meters"),
  25189. name: "Separated Maw",
  25190. image: {
  25191. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25192. }
  25193. },
  25194. tail: {
  25195. height: math.unit(1.15, "meters"),
  25196. name: "Tail",
  25197. image: {
  25198. source: "./media/characters/draekon-sylviar/tail.svg"
  25199. }
  25200. },
  25201. tailDick: {
  25202. height: math.unit(1.15, "meters"),
  25203. name: "Tail (Dick)",
  25204. image: {
  25205. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25206. }
  25207. },
  25208. tailDickSeparated: {
  25209. height: math.unit(1.19, "meters"),
  25210. name: "Tail (Separated Dick)",
  25211. image: {
  25212. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25213. }
  25214. },
  25215. slit: {
  25216. height: math.unit(1, "meters"),
  25217. name: "Slit",
  25218. image: {
  25219. source: "./media/characters/draekon-sylviar/slit.svg"
  25220. }
  25221. },
  25222. dick: {
  25223. height: math.unit(1.15, "meters"),
  25224. name: "Dick",
  25225. image: {
  25226. source: "./media/characters/draekon-sylviar/dick.svg"
  25227. }
  25228. },
  25229. dickSeparated: {
  25230. height: math.unit(1.1, "meters"),
  25231. name: "Separated Dick",
  25232. image: {
  25233. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25234. }
  25235. },
  25236. sheath: {
  25237. height: math.unit(1.15, "meters"),
  25238. name: "Sheath",
  25239. image: {
  25240. source: "./media/characters/draekon-sylviar/sheath.svg"
  25241. }
  25242. },
  25243. },
  25244. [
  25245. {
  25246. name: "Small",
  25247. height: math.unit(4.53 / 2, "meters"),
  25248. default: true
  25249. },
  25250. {
  25251. name: "Normal",
  25252. height: math.unit(4.53, "meters"),
  25253. default: true
  25254. },
  25255. {
  25256. name: "Large",
  25257. height: math.unit(4.53 * 2, "meters"),
  25258. },
  25259. ]
  25260. ))
  25261. characterMakers.push(() => makeCharacter(
  25262. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25263. {
  25264. front: {
  25265. height: math.unit(6 + 2 / 12, "feet"),
  25266. weight: math.unit(180, "lb"),
  25267. name: "Front",
  25268. image: {
  25269. source: "./media/characters/brawler/front.svg",
  25270. extra: 3301 / 3027,
  25271. bottom: 138 / 3439
  25272. }
  25273. },
  25274. },
  25275. [
  25276. {
  25277. name: "Normal",
  25278. height: math.unit(6 + 2 / 12, "feet"),
  25279. default: true
  25280. },
  25281. ]
  25282. ))
  25283. characterMakers.push(() => makeCharacter(
  25284. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25285. {
  25286. front: {
  25287. height: math.unit(11, "feet"),
  25288. weight: math.unit(1000, "lb"),
  25289. name: "Front",
  25290. image: {
  25291. source: "./media/characters/alex/front.svg",
  25292. bottom: 44.5 / 620
  25293. }
  25294. },
  25295. },
  25296. [
  25297. {
  25298. name: "Micro",
  25299. height: math.unit(5, "inches")
  25300. },
  25301. {
  25302. name: "Normal",
  25303. height: math.unit(11, "feet"),
  25304. default: true
  25305. },
  25306. {
  25307. name: "Macro",
  25308. height: math.unit(9.5e9, "feet")
  25309. },
  25310. {
  25311. name: "Max Size",
  25312. height: math.unit(1.4e283, "yottameters")
  25313. },
  25314. ]
  25315. ))
  25316. characterMakers.push(() => makeCharacter(
  25317. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25318. {
  25319. female: {
  25320. height: math.unit(29.9, "m"),
  25321. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25322. name: "Female",
  25323. image: {
  25324. source: "./media/characters/zenari/female.svg",
  25325. extra: 3281.6 / 3217,
  25326. bottom: 72.2 / 3353
  25327. }
  25328. },
  25329. male: {
  25330. height: math.unit(27.7, "m"),
  25331. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25332. name: "Male",
  25333. image: {
  25334. source: "./media/characters/zenari/male.svg",
  25335. extra: 3008 / 2991,
  25336. bottom: 54.6 / 3069
  25337. }
  25338. },
  25339. },
  25340. [
  25341. {
  25342. name: "Macro",
  25343. height: math.unit(29.7, "meters"),
  25344. default: true
  25345. },
  25346. ]
  25347. ))
  25348. characterMakers.push(() => makeCharacter(
  25349. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25350. {
  25351. female: {
  25352. height: math.unit(23.8, "m"),
  25353. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25354. name: "Female",
  25355. image: {
  25356. source: "./media/characters/mactarian/female.svg",
  25357. extra: 2662 / 2569,
  25358. bottom: 73 / 2736
  25359. }
  25360. },
  25361. male: {
  25362. height: math.unit(23.8, "m"),
  25363. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25364. name: "Male",
  25365. image: {
  25366. source: "./media/characters/mactarian/male.svg",
  25367. extra: 2673 / 2600,
  25368. bottom: 76 / 2750
  25369. }
  25370. },
  25371. },
  25372. [
  25373. {
  25374. name: "Macro",
  25375. height: math.unit(23.8, "meters"),
  25376. default: true
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25382. {
  25383. female: {
  25384. height: math.unit(19.3, "m"),
  25385. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25386. name: "Female",
  25387. image: {
  25388. source: "./media/characters/umok/female.svg",
  25389. extra: 2186 / 2078,
  25390. bottom: 87 / 2277
  25391. }
  25392. },
  25393. male: {
  25394. height: math.unit(19.5, "m"),
  25395. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25396. name: "Male",
  25397. image: {
  25398. source: "./media/characters/umok/male.svg",
  25399. extra: 2233 / 2140,
  25400. bottom: 24.4 / 2258
  25401. }
  25402. },
  25403. },
  25404. [
  25405. {
  25406. name: "Macro",
  25407. height: math.unit(19.3, "meters"),
  25408. default: true
  25409. },
  25410. ]
  25411. ))
  25412. characterMakers.push(() => makeCharacter(
  25413. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25414. {
  25415. female: {
  25416. height: math.unit(26.15, "m"),
  25417. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25418. name: "Female",
  25419. image: {
  25420. source: "./media/characters/joraxian/female.svg",
  25421. extra: 2912 / 2824,
  25422. bottom: 36 / 2956
  25423. }
  25424. },
  25425. male: {
  25426. height: math.unit(25.4, "m"),
  25427. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25428. name: "Male",
  25429. image: {
  25430. source: "./media/characters/joraxian/male.svg",
  25431. extra: 2877 / 2721,
  25432. bottom: 82 / 2967
  25433. }
  25434. },
  25435. },
  25436. [
  25437. {
  25438. name: "Macro",
  25439. height: math.unit(26.15, "meters"),
  25440. default: true
  25441. },
  25442. ]
  25443. ))
  25444. characterMakers.push(() => makeCharacter(
  25445. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25446. {
  25447. female: {
  25448. height: math.unit(21.6, "m"),
  25449. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25450. name: "Female",
  25451. image: {
  25452. source: "./media/characters/sthara/female.svg",
  25453. extra: 2516 / 2347,
  25454. bottom: 21.5 / 2537
  25455. }
  25456. },
  25457. male: {
  25458. height: math.unit(24, "m"),
  25459. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25460. name: "Male",
  25461. image: {
  25462. source: "./media/characters/sthara/male.svg",
  25463. extra: 2732 / 2607,
  25464. bottom: 23 / 2732
  25465. }
  25466. },
  25467. },
  25468. [
  25469. {
  25470. name: "Macro",
  25471. height: math.unit(21.6, "meters"),
  25472. default: true
  25473. },
  25474. ]
  25475. ))
  25476. characterMakers.push(() => makeCharacter(
  25477. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25478. {
  25479. front: {
  25480. height: math.unit(6 + 4 / 12, "feet"),
  25481. weight: math.unit(175, "lb"),
  25482. name: "Front",
  25483. image: {
  25484. source: "./media/characters/luka-bryzant/front.svg",
  25485. extra: 311 / 289,
  25486. bottom: 4 / 315
  25487. }
  25488. },
  25489. back: {
  25490. height: math.unit(6 + 4 / 12, "feet"),
  25491. weight: math.unit(175, "lb"),
  25492. name: "Back",
  25493. image: {
  25494. source: "./media/characters/luka-bryzant/back.svg",
  25495. extra: 311 / 289,
  25496. bottom: 3.8 / 313.7
  25497. }
  25498. },
  25499. },
  25500. [
  25501. {
  25502. name: "Micro",
  25503. height: math.unit(10, "inches")
  25504. },
  25505. {
  25506. name: "Normal",
  25507. height: math.unit(6 + 4 / 12, "feet"),
  25508. default: true
  25509. },
  25510. {
  25511. name: "Large",
  25512. height: math.unit(12, "feet")
  25513. },
  25514. ]
  25515. ))
  25516. characterMakers.push(() => makeCharacter(
  25517. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25518. {
  25519. front: {
  25520. height: math.unit(5 + 7 / 12, "feet"),
  25521. weight: math.unit(185, "lb"),
  25522. name: "Front",
  25523. image: {
  25524. source: "./media/characters/aman-aquila/front.svg",
  25525. extra: 1013 / 976,
  25526. bottom: 45.6 / 1057
  25527. }
  25528. },
  25529. side: {
  25530. height: math.unit(5 + 7 / 12, "feet"),
  25531. weight: math.unit(185, "lb"),
  25532. name: "Side",
  25533. image: {
  25534. source: "./media/characters/aman-aquila/side.svg",
  25535. extra: 1054 / 1011,
  25536. bottom: 15 / 1070
  25537. }
  25538. },
  25539. back: {
  25540. height: math.unit(5 + 7 / 12, "feet"),
  25541. weight: math.unit(185, "lb"),
  25542. name: "Back",
  25543. image: {
  25544. source: "./media/characters/aman-aquila/back.svg",
  25545. extra: 1026 / 970,
  25546. bottom: 12 / 1039
  25547. }
  25548. },
  25549. head: {
  25550. height: math.unit(1.211, "feet"),
  25551. name: "Head",
  25552. image: {
  25553. source: "./media/characters/aman-aquila/head.svg",
  25554. }
  25555. },
  25556. },
  25557. [
  25558. {
  25559. name: "Minimicro",
  25560. height: math.unit(0.057, "inches")
  25561. },
  25562. {
  25563. name: "Micro",
  25564. height: math.unit(7, "inches")
  25565. },
  25566. {
  25567. name: "Mini",
  25568. height: math.unit(3 + 7 / 12, "feet")
  25569. },
  25570. {
  25571. name: "Normal",
  25572. height: math.unit(5 + 7 / 12, "feet"),
  25573. default: true
  25574. },
  25575. {
  25576. name: "Macro",
  25577. height: math.unit(157 + 7 / 12, "feet")
  25578. },
  25579. {
  25580. name: "Megamacro",
  25581. height: math.unit(1557 + 7 / 12, "feet")
  25582. },
  25583. {
  25584. name: "Gigamacro",
  25585. height: math.unit(15557 + 7 / 12, "feet")
  25586. },
  25587. ]
  25588. ))
  25589. characterMakers.push(() => makeCharacter(
  25590. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25591. {
  25592. front: {
  25593. height: math.unit(3 + 2 / 12, "inches"),
  25594. weight: math.unit(0.3, "ounces"),
  25595. name: "Front",
  25596. image: {
  25597. source: "./media/characters/hiphae/front.svg",
  25598. extra: 1931 / 1683,
  25599. bottom: 24 / 1955
  25600. }
  25601. },
  25602. },
  25603. [
  25604. {
  25605. name: "Normal",
  25606. height: math.unit(3 + 1 / 2, "inches"),
  25607. default: true
  25608. },
  25609. ]
  25610. ))
  25611. characterMakers.push(() => makeCharacter(
  25612. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25613. {
  25614. front: {
  25615. height: math.unit(5 + 10 / 12, "feet"),
  25616. weight: math.unit(165, "lb"),
  25617. name: "Front",
  25618. image: {
  25619. source: "./media/characters/nicky/front.svg",
  25620. extra: 3144 / 2886,
  25621. bottom: 45.6 / 3192
  25622. }
  25623. },
  25624. back: {
  25625. height: math.unit(5 + 10 / 12, "feet"),
  25626. weight: math.unit(165, "lb"),
  25627. name: "Back",
  25628. image: {
  25629. source: "./media/characters/nicky/back.svg",
  25630. extra: 3055 / 2804,
  25631. bottom: 28.4 / 3087
  25632. }
  25633. },
  25634. frontclothed: {
  25635. height: math.unit(5 + 10 / 12, "feet"),
  25636. weight: math.unit(165, "lb"),
  25637. name: "Front-clothed",
  25638. image: {
  25639. source: "./media/characters/nicky/front-clothed.svg",
  25640. extra: 3184.9 / 2926.9,
  25641. bottom: 86.5 / 3239.9
  25642. }
  25643. },
  25644. foot: {
  25645. height: math.unit(1.16, "feet"),
  25646. name: "Foot",
  25647. image: {
  25648. source: "./media/characters/nicky/foot.svg"
  25649. }
  25650. },
  25651. feet: {
  25652. height: math.unit(1.34, "feet"),
  25653. name: "Feet",
  25654. image: {
  25655. source: "./media/characters/nicky/feet.svg"
  25656. }
  25657. },
  25658. maw: {
  25659. height: math.unit(0.9, "feet"),
  25660. name: "Maw",
  25661. image: {
  25662. source: "./media/characters/nicky/maw.svg"
  25663. }
  25664. },
  25665. },
  25666. [
  25667. {
  25668. name: "Normal",
  25669. height: math.unit(5 + 10 / 12, "feet"),
  25670. default: true
  25671. },
  25672. {
  25673. name: "Macro",
  25674. height: math.unit(60, "feet")
  25675. },
  25676. {
  25677. name: "Megamacro",
  25678. height: math.unit(1, "mile")
  25679. },
  25680. ]
  25681. ))
  25682. characterMakers.push(() => makeCharacter(
  25683. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25684. {
  25685. side: {
  25686. height: math.unit(10, "feet"),
  25687. weight: math.unit(600, "lb"),
  25688. name: "Side",
  25689. image: {
  25690. source: "./media/characters/blair/side.svg",
  25691. bottom: 16.6 / 475,
  25692. extra: 458 / 431
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Micro",
  25699. height: math.unit(8, "inches")
  25700. },
  25701. {
  25702. name: "Normal",
  25703. height: math.unit(10, "feet"),
  25704. default: true
  25705. },
  25706. {
  25707. name: "Macro",
  25708. height: math.unit(180, "feet")
  25709. },
  25710. ]
  25711. ))
  25712. characterMakers.push(() => makeCharacter(
  25713. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25714. {
  25715. front: {
  25716. height: math.unit(5 + 4 / 12, "feet"),
  25717. weight: math.unit(125, "lb"),
  25718. name: "Front",
  25719. image: {
  25720. source: "./media/characters/fisher/front.svg",
  25721. extra: 444 / 390,
  25722. bottom: 2 / 444.8
  25723. }
  25724. },
  25725. },
  25726. [
  25727. {
  25728. name: "Micro",
  25729. height: math.unit(4, "inches")
  25730. },
  25731. {
  25732. name: "Normal",
  25733. height: math.unit(5 + 4 / 12, "feet"),
  25734. default: true
  25735. },
  25736. {
  25737. name: "Macro",
  25738. height: math.unit(100, "feet")
  25739. },
  25740. ]
  25741. ))
  25742. characterMakers.push(() => makeCharacter(
  25743. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25744. {
  25745. front: {
  25746. height: math.unit(6.71, "feet"),
  25747. weight: math.unit(200, "lb"),
  25748. capacity: math.unit(1000000, "people"),
  25749. name: "Front",
  25750. image: {
  25751. source: "./media/characters/gliss/front.svg",
  25752. extra: 2347 / 2231,
  25753. bottom: 113 / 2462
  25754. }
  25755. },
  25756. hammerspaceSize: {
  25757. height: math.unit(6.71 * 717, "feet"),
  25758. weight: math.unit(200, "lb"),
  25759. capacity: math.unit(1000000, "people"),
  25760. name: "Hammerspace Size",
  25761. image: {
  25762. source: "./media/characters/gliss/front.svg",
  25763. extra: 2347 / 2231,
  25764. bottom: 113 / 2462
  25765. }
  25766. },
  25767. },
  25768. [
  25769. {
  25770. name: "Normal",
  25771. height: math.unit(6.71, "feet"),
  25772. default: true
  25773. },
  25774. ]
  25775. ))
  25776. characterMakers.push(() => makeCharacter(
  25777. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25778. {
  25779. side: {
  25780. height: math.unit(1.44, "m"),
  25781. weight: math.unit(80, "kg"),
  25782. name: "Side",
  25783. image: {
  25784. source: "./media/characters/dune-anderson/side.svg",
  25785. bottom: 49 / 1426
  25786. }
  25787. },
  25788. },
  25789. [
  25790. {
  25791. name: "Wolf-sized",
  25792. height: math.unit(1.44, "meters")
  25793. },
  25794. {
  25795. name: "Normal",
  25796. height: math.unit(5.05, "meters"),
  25797. default: true
  25798. },
  25799. {
  25800. name: "Big",
  25801. height: math.unit(14.4, "meters")
  25802. },
  25803. {
  25804. name: "Huge",
  25805. height: math.unit(144, "meters")
  25806. },
  25807. ]
  25808. ))
  25809. characterMakers.push(() => makeCharacter(
  25810. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25811. {
  25812. front: {
  25813. height: math.unit(7, "feet"),
  25814. weight: math.unit(425, "lb"),
  25815. name: "Front",
  25816. image: {
  25817. source: "./media/characters/hind/front.svg",
  25818. extra: 2091 / 1860,
  25819. bottom: 129 / 2220
  25820. }
  25821. },
  25822. back: {
  25823. height: math.unit(7, "feet"),
  25824. weight: math.unit(425, "lb"),
  25825. name: "Back",
  25826. image: {
  25827. source: "./media/characters/hind/back.svg",
  25828. extra: 2091 / 1860,
  25829. bottom: 24.6 / 2309
  25830. }
  25831. },
  25832. tail: {
  25833. height: math.unit(2.8, "feet"),
  25834. name: "Tail",
  25835. image: {
  25836. source: "./media/characters/hind/tail.svg"
  25837. }
  25838. },
  25839. head: {
  25840. height: math.unit(2.55, "feet"),
  25841. name: "Head",
  25842. image: {
  25843. source: "./media/characters/hind/head.svg"
  25844. }
  25845. },
  25846. },
  25847. [
  25848. {
  25849. name: "XS",
  25850. height: math.unit(0.7, "feet")
  25851. },
  25852. {
  25853. name: "Normal",
  25854. height: math.unit(7, "feet"),
  25855. default: true
  25856. },
  25857. {
  25858. name: "XL",
  25859. height: math.unit(70, "feet")
  25860. },
  25861. ]
  25862. ))
  25863. characterMakers.push(() => makeCharacter(
  25864. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25865. {
  25866. front: {
  25867. height: math.unit(2.1, "meters"),
  25868. weight: math.unit(150, "lb"),
  25869. name: "Front",
  25870. image: {
  25871. source: "./media/characters/tharquench-sizestealer/front.svg",
  25872. extra: 1605/1470,
  25873. bottom: 36/1641
  25874. }
  25875. },
  25876. frontAlt: {
  25877. height: math.unit(2.1, "meters"),
  25878. weight: math.unit(150, "lb"),
  25879. name: "Front (Alt)",
  25880. image: {
  25881. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25882. extra: 2318 / 2063,
  25883. bottom: 93.4 / 2410
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Nano",
  25890. height: math.unit(1, "mm")
  25891. },
  25892. {
  25893. name: "Micro",
  25894. height: math.unit(1, "cm")
  25895. },
  25896. {
  25897. name: "Normal",
  25898. height: math.unit(2.1, "meters"),
  25899. default: true
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(7 + 5 / 12, "feet"),
  25908. weight: math.unit(357, "lb"),
  25909. name: "Front",
  25910. image: {
  25911. source: "./media/characters/solex-draconov/front.svg",
  25912. extra: 1993 / 1865,
  25913. bottom: 117 / 2111
  25914. }
  25915. },
  25916. },
  25917. [
  25918. {
  25919. name: "Natural Height",
  25920. height: math.unit(7 + 5 / 12, "feet"),
  25921. default: true
  25922. },
  25923. {
  25924. name: "Macro",
  25925. height: math.unit(350, "feet")
  25926. },
  25927. {
  25928. name: "Macro+",
  25929. height: math.unit(1000, "feet")
  25930. },
  25931. {
  25932. name: "Megamacro",
  25933. height: math.unit(20, "km")
  25934. },
  25935. {
  25936. name: "Megamacro+",
  25937. height: math.unit(1000, "km")
  25938. },
  25939. {
  25940. name: "Gigamacro",
  25941. height: math.unit(2.5, "Gm")
  25942. },
  25943. {
  25944. name: "Teramacro",
  25945. height: math.unit(15, "Tm")
  25946. },
  25947. {
  25948. name: "Galactic",
  25949. height: math.unit(30, "Zm")
  25950. },
  25951. {
  25952. name: "Universal",
  25953. height: math.unit(21000, "Ym")
  25954. },
  25955. {
  25956. name: "Omniversal",
  25957. height: math.unit(9.861e50, "Ym")
  25958. },
  25959. {
  25960. name: "Existential",
  25961. height: math.unit(1e300, "meters")
  25962. },
  25963. ]
  25964. ))
  25965. characterMakers.push(() => makeCharacter(
  25966. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25967. {
  25968. side: {
  25969. height: math.unit(25, "feet"),
  25970. weight: math.unit(90000, "lb"),
  25971. name: "Side",
  25972. image: {
  25973. source: "./media/characters/mandarax/side.svg",
  25974. extra: 614 / 332,
  25975. bottom: 55 / 630
  25976. }
  25977. },
  25978. lounging: {
  25979. height: math.unit(15.4, "feet"),
  25980. weight: math.unit(90000, "lb"),
  25981. name: "Lounging",
  25982. image: {
  25983. source: "./media/characters/mandarax/lounging.svg",
  25984. extra: 817/609,
  25985. bottom: 685/1502
  25986. }
  25987. },
  25988. head: {
  25989. height: math.unit(11.4, "feet"),
  25990. name: "Head",
  25991. image: {
  25992. source: "./media/characters/mandarax/head.svg"
  25993. }
  25994. },
  25995. belly: {
  25996. height: math.unit(33, "feet"),
  25997. name: "Belly",
  25998. capacity: math.unit(500, "people"),
  25999. image: {
  26000. source: "./media/characters/mandarax/belly.svg"
  26001. }
  26002. },
  26003. dick: {
  26004. height: math.unit(8.46, "feet"),
  26005. name: "Dick",
  26006. image: {
  26007. source: "./media/characters/mandarax/dick.svg"
  26008. }
  26009. },
  26010. top: {
  26011. height: math.unit(28, "meters"),
  26012. name: "Top",
  26013. image: {
  26014. source: "./media/characters/mandarax/top.svg"
  26015. }
  26016. },
  26017. },
  26018. [
  26019. {
  26020. name: "Normal",
  26021. height: math.unit(25, "feet"),
  26022. default: true
  26023. },
  26024. ]
  26025. ))
  26026. characterMakers.push(() => makeCharacter(
  26027. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26028. {
  26029. front: {
  26030. height: math.unit(5, "feet"),
  26031. weight: math.unit(90, "lb"),
  26032. name: "Front",
  26033. image: {
  26034. source: "./media/characters/pixil/front.svg",
  26035. extra: 2000 / 1618,
  26036. bottom: 12.3 / 2011
  26037. }
  26038. },
  26039. },
  26040. [
  26041. {
  26042. name: "Normal",
  26043. height: math.unit(5, "feet"),
  26044. default: true
  26045. },
  26046. {
  26047. name: "Megamacro",
  26048. height: math.unit(10, "miles"),
  26049. },
  26050. ]
  26051. ))
  26052. characterMakers.push(() => makeCharacter(
  26053. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26054. {
  26055. front: {
  26056. height: math.unit(7 + 2 / 12, "feet"),
  26057. weight: math.unit(200, "lb"),
  26058. name: "Front",
  26059. image: {
  26060. source: "./media/characters/angel/front.svg",
  26061. extra: 1830 / 1737,
  26062. bottom: 22.6 / 1854,
  26063. }
  26064. },
  26065. },
  26066. [
  26067. {
  26068. name: "Normal",
  26069. height: math.unit(7 + 2 / 12, "feet"),
  26070. default: true
  26071. },
  26072. {
  26073. name: "Macro",
  26074. height: math.unit(1000, "feet")
  26075. },
  26076. {
  26077. name: "Megamacro",
  26078. height: math.unit(2, "miles")
  26079. },
  26080. {
  26081. name: "Gigamacro",
  26082. height: math.unit(20, "earths")
  26083. },
  26084. ]
  26085. ))
  26086. characterMakers.push(() => makeCharacter(
  26087. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26088. {
  26089. front: {
  26090. height: math.unit(5, "feet"),
  26091. weight: math.unit(180, "lb"),
  26092. name: "Front",
  26093. image: {
  26094. source: "./media/characters/mekana/front.svg",
  26095. extra: 1671 / 1605,
  26096. bottom: 3.5 / 1691
  26097. }
  26098. },
  26099. side: {
  26100. height: math.unit(5, "feet"),
  26101. weight: math.unit(180, "lb"),
  26102. name: "Side",
  26103. image: {
  26104. source: "./media/characters/mekana/side.svg",
  26105. extra: 1671 / 1605,
  26106. bottom: 3.5 / 1691
  26107. }
  26108. },
  26109. back: {
  26110. height: math.unit(5, "feet"),
  26111. weight: math.unit(180, "lb"),
  26112. name: "Back",
  26113. image: {
  26114. source: "./media/characters/mekana/back.svg",
  26115. extra: 1671 / 1605,
  26116. bottom: 3.5 / 1691
  26117. }
  26118. },
  26119. },
  26120. [
  26121. {
  26122. name: "Normal",
  26123. height: math.unit(5, "feet"),
  26124. default: true
  26125. },
  26126. ]
  26127. ))
  26128. characterMakers.push(() => makeCharacter(
  26129. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26130. {
  26131. front: {
  26132. height: math.unit(4 + 6 / 12, "feet"),
  26133. weight: math.unit(80, "lb"),
  26134. name: "Front",
  26135. image: {
  26136. source: "./media/characters/pixie/front.svg",
  26137. extra: 1924 / 1825,
  26138. bottom: 22.4 / 1946
  26139. }
  26140. },
  26141. },
  26142. [
  26143. {
  26144. name: "Normal",
  26145. height: math.unit(4 + 6 / 12, "feet"),
  26146. default: true
  26147. },
  26148. {
  26149. name: "Macro",
  26150. height: math.unit(40, "feet")
  26151. },
  26152. ]
  26153. ))
  26154. characterMakers.push(() => makeCharacter(
  26155. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26156. {
  26157. front: {
  26158. height: math.unit(2.1, "meters"),
  26159. weight: math.unit(200, "lb"),
  26160. name: "Front",
  26161. image: {
  26162. source: "./media/characters/the-lascivious/front.svg",
  26163. extra: 1 / 0.893,
  26164. bottom: 3.5 / 573.7
  26165. }
  26166. },
  26167. },
  26168. [
  26169. {
  26170. name: "Human Scale",
  26171. height: math.unit(2.1, "meters")
  26172. },
  26173. {
  26174. name: "Wolxi Scale",
  26175. height: math.unit(46.2, "m"),
  26176. default: true
  26177. },
  26178. {
  26179. name: "Boinker of Buildings",
  26180. height: math.unit(10, "km")
  26181. },
  26182. {
  26183. name: "Shagger of Skyscrapers",
  26184. height: math.unit(40, "km")
  26185. },
  26186. {
  26187. name: "Banger of Boroughs",
  26188. height: math.unit(4000, "km")
  26189. },
  26190. {
  26191. name: "Screwer of States",
  26192. height: math.unit(100000, "km")
  26193. },
  26194. {
  26195. name: "Pounder of Planets",
  26196. height: math.unit(2000000, "km")
  26197. },
  26198. ]
  26199. ))
  26200. characterMakers.push(() => makeCharacter(
  26201. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26202. {
  26203. front: {
  26204. height: math.unit(6, "feet"),
  26205. weight: math.unit(150, "lb"),
  26206. name: "Front",
  26207. image: {
  26208. source: "./media/characters/aj/front.svg",
  26209. extra: 2039 / 1562,
  26210. bottom: 40 / 2079
  26211. }
  26212. },
  26213. },
  26214. [
  26215. {
  26216. name: "Normal",
  26217. height: math.unit(11 + 6 / 12, "feet"),
  26218. default: true
  26219. },
  26220. {
  26221. name: "Megamacro",
  26222. height: math.unit(60, "megameters")
  26223. },
  26224. ]
  26225. ))
  26226. characterMakers.push(() => makeCharacter(
  26227. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26228. {
  26229. side: {
  26230. height: math.unit(31 + 8 / 12, "feet"),
  26231. weight: math.unit(75000, "kg"),
  26232. name: "Side",
  26233. image: {
  26234. source: "./media/characters/koros/side.svg",
  26235. extra: 1442 / 1297,
  26236. bottom: 122.7 / 1562
  26237. }
  26238. },
  26239. dicksKingsCrown: {
  26240. height: math.unit(6, "feet"),
  26241. name: "Dicks (King's Crown)",
  26242. image: {
  26243. source: "./media/characters/koros/dicks-kings-crown.svg"
  26244. }
  26245. },
  26246. dicksTailSet: {
  26247. height: math.unit(3, "feet"),
  26248. name: "Dicks (Tail Set)",
  26249. image: {
  26250. source: "./media/characters/koros/dicks-tail-set.svg"
  26251. }
  26252. },
  26253. dickCumming: {
  26254. height: math.unit(7.98, "feet"),
  26255. name: "Dick (Cumming)",
  26256. image: {
  26257. source: "./media/characters/koros/dick-cumming.svg"
  26258. }
  26259. },
  26260. dicksBack: {
  26261. height: math.unit(5.9, "feet"),
  26262. name: "Dicks (Back)",
  26263. image: {
  26264. source: "./media/characters/koros/dicks-back.svg"
  26265. }
  26266. },
  26267. dicksFront: {
  26268. height: math.unit(3.72, "feet"),
  26269. name: "Dicks (Front)",
  26270. image: {
  26271. source: "./media/characters/koros/dicks-front.svg"
  26272. }
  26273. },
  26274. dicksPeeking: {
  26275. height: math.unit(3.0, "feet"),
  26276. name: "Dicks (Peeking)",
  26277. image: {
  26278. source: "./media/characters/koros/dicks-peeking.svg"
  26279. }
  26280. },
  26281. eye: {
  26282. height: math.unit(1.7, "feet"),
  26283. name: "Eye",
  26284. image: {
  26285. source: "./media/characters/koros/eye.svg"
  26286. }
  26287. },
  26288. headFront: {
  26289. height: math.unit(11.69, "feet"),
  26290. name: "Head (Front)",
  26291. image: {
  26292. source: "./media/characters/koros/head-front.svg"
  26293. }
  26294. },
  26295. headSide: {
  26296. height: math.unit(14, "feet"),
  26297. name: "Head (Side)",
  26298. image: {
  26299. source: "./media/characters/koros/head-side.svg"
  26300. }
  26301. },
  26302. leg: {
  26303. height: math.unit(17, "feet"),
  26304. name: "Leg",
  26305. image: {
  26306. source: "./media/characters/koros/leg.svg"
  26307. }
  26308. },
  26309. mawSide: {
  26310. height: math.unit(12.8, "feet"),
  26311. name: "Maw (Side)",
  26312. image: {
  26313. source: "./media/characters/koros/maw-side.svg"
  26314. }
  26315. },
  26316. mawSpitting: {
  26317. height: math.unit(17, "feet"),
  26318. name: "Maw (Spitting)",
  26319. image: {
  26320. source: "./media/characters/koros/maw-spitting.svg"
  26321. }
  26322. },
  26323. slit: {
  26324. height: math.unit(2.8, "feet"),
  26325. name: "Slit",
  26326. image: {
  26327. source: "./media/characters/koros/slit.svg"
  26328. }
  26329. },
  26330. stomach: {
  26331. height: math.unit(6.8, "feet"),
  26332. capacity: math.unit(20, "people"),
  26333. name: "Stomach",
  26334. image: {
  26335. source: "./media/characters/koros/stomach.svg"
  26336. }
  26337. },
  26338. wingspanBottom: {
  26339. height: math.unit(114, "feet"),
  26340. name: "Wingspan (Bottom)",
  26341. image: {
  26342. source: "./media/characters/koros/wingspan-bottom.svg"
  26343. }
  26344. },
  26345. wingspanTop: {
  26346. height: math.unit(104, "feet"),
  26347. name: "Wingspan (Top)",
  26348. image: {
  26349. source: "./media/characters/koros/wingspan-top.svg"
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Normal",
  26356. height: math.unit(31 + 8 / 12, "feet"),
  26357. default: true
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(18 + 5 / 12, "feet"),
  26366. weight: math.unit(3750, "kg"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/vexx/front.svg",
  26370. extra: 426 / 396,
  26371. bottom: 31.5 / 458
  26372. }
  26373. },
  26374. maw: {
  26375. height: math.unit(6, "feet"),
  26376. name: "Maw",
  26377. image: {
  26378. source: "./media/characters/vexx/maw.svg"
  26379. }
  26380. },
  26381. },
  26382. [
  26383. {
  26384. name: "Normal",
  26385. height: math.unit(18 + 5 / 12, "feet"),
  26386. default: true
  26387. },
  26388. ]
  26389. ))
  26390. characterMakers.push(() => makeCharacter(
  26391. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26392. {
  26393. front: {
  26394. height: math.unit(17 + 6 / 12, "feet"),
  26395. weight: math.unit(150, "lb"),
  26396. name: "Front",
  26397. image: {
  26398. source: "./media/characters/baadra/front.svg",
  26399. extra: 1694/1553,
  26400. bottom: 179/1873
  26401. }
  26402. },
  26403. frontAlt: {
  26404. height: math.unit(17 + 6 / 12, "feet"),
  26405. weight: math.unit(150, "lb"),
  26406. name: "Front (Alt)",
  26407. image: {
  26408. source: "./media/characters/baadra/front-alt.svg",
  26409. extra: 3137 / 2890,
  26410. bottom: 168.4 / 3305
  26411. }
  26412. },
  26413. back: {
  26414. height: math.unit(17 + 6 / 12, "feet"),
  26415. weight: math.unit(150, "lb"),
  26416. name: "Back",
  26417. image: {
  26418. source: "./media/characters/baadra/back.svg",
  26419. extra: 3142 / 2890,
  26420. bottom: 220 / 3371
  26421. }
  26422. },
  26423. head: {
  26424. height: math.unit(5.45, "feet"),
  26425. name: "Head",
  26426. image: {
  26427. source: "./media/characters/baadra/head.svg"
  26428. }
  26429. },
  26430. headAngry: {
  26431. height: math.unit(4.95, "feet"),
  26432. name: "Head (Angry)",
  26433. image: {
  26434. source: "./media/characters/baadra/head-angry.svg"
  26435. }
  26436. },
  26437. headOpen: {
  26438. height: math.unit(6, "feet"),
  26439. name: "Head (Open)",
  26440. image: {
  26441. source: "./media/characters/baadra/head-open.svg"
  26442. }
  26443. },
  26444. },
  26445. [
  26446. {
  26447. name: "Normal",
  26448. height: math.unit(17 + 6 / 12, "feet"),
  26449. default: true
  26450. },
  26451. ]
  26452. ))
  26453. characterMakers.push(() => makeCharacter(
  26454. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26455. {
  26456. front: {
  26457. height: math.unit(7 + 3 / 12, "feet"),
  26458. weight: math.unit(180, "lb"),
  26459. name: "Front",
  26460. image: {
  26461. source: "./media/characters/juri/front.svg",
  26462. extra: 1401 / 1237,
  26463. bottom: 18.5 / 1418
  26464. }
  26465. },
  26466. side: {
  26467. height: math.unit(7 + 3 / 12, "feet"),
  26468. weight: math.unit(180, "lb"),
  26469. name: "Side",
  26470. image: {
  26471. source: "./media/characters/juri/side.svg",
  26472. extra: 1424 / 1242,
  26473. bottom: 18.5 / 1447
  26474. }
  26475. },
  26476. sitting: {
  26477. height: math.unit(6, "feet"),
  26478. weight: math.unit(180, "lb"),
  26479. name: "Sitting",
  26480. image: {
  26481. source: "./media/characters/juri/sitting.svg",
  26482. extra: 1270 / 1143,
  26483. bottom: 100 / 1343
  26484. }
  26485. },
  26486. back: {
  26487. height: math.unit(7 + 3 / 12, "feet"),
  26488. weight: math.unit(180, "lb"),
  26489. name: "Back",
  26490. image: {
  26491. source: "./media/characters/juri/back.svg",
  26492. extra: 1377 / 1240,
  26493. bottom: 23.7 / 1405
  26494. }
  26495. },
  26496. maw: {
  26497. height: math.unit(2.8, "feet"),
  26498. name: "Maw",
  26499. image: {
  26500. source: "./media/characters/juri/maw.svg"
  26501. }
  26502. },
  26503. stomach: {
  26504. height: math.unit(0.89, "feet"),
  26505. capacity: math.unit(4, "liters"),
  26506. name: "Stomach",
  26507. image: {
  26508. source: "./media/characters/juri/stomach.svg"
  26509. }
  26510. },
  26511. },
  26512. [
  26513. {
  26514. name: "Normal",
  26515. height: math.unit(7 + 3 / 12, "feet"),
  26516. default: true
  26517. },
  26518. ]
  26519. ))
  26520. characterMakers.push(() => makeCharacter(
  26521. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26522. {
  26523. fox: {
  26524. height: math.unit(5 + 6 / 12, "feet"),
  26525. weight: math.unit(140, "lb"),
  26526. name: "Fox",
  26527. image: {
  26528. source: "./media/characters/maxene-sita/fox.svg",
  26529. extra: 146 / 138,
  26530. bottom: 2.1 / 148.19
  26531. }
  26532. },
  26533. foxLaying: {
  26534. height: math.unit(1.70, "feet"),
  26535. weight: math.unit(140, "lb"),
  26536. name: "Fox (Laying)",
  26537. image: {
  26538. source: "./media/characters/maxene-sita/fox-laying.svg",
  26539. extra: 910 / 572,
  26540. bottom: 71 / 981
  26541. }
  26542. },
  26543. kitsune: {
  26544. height: math.unit(10, "feet"),
  26545. weight: math.unit(800, "lb"),
  26546. name: "Kitsune",
  26547. image: {
  26548. source: "./media/characters/maxene-sita/kitsune.svg",
  26549. extra: 185 / 176,
  26550. bottom: 4.7 / 189.9
  26551. }
  26552. },
  26553. hellhound: {
  26554. height: math.unit(10, "feet"),
  26555. weight: math.unit(700, "lb"),
  26556. name: "Hellhound",
  26557. image: {
  26558. source: "./media/characters/maxene-sita/hellhound.svg",
  26559. extra: 1600 / 1545,
  26560. bottom: 81 / 1681
  26561. }
  26562. },
  26563. },
  26564. [
  26565. {
  26566. name: "Normal",
  26567. height: math.unit(5 + 6 / 12, "feet"),
  26568. default: true
  26569. },
  26570. ]
  26571. ))
  26572. characterMakers.push(() => makeCharacter(
  26573. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26574. {
  26575. front: {
  26576. height: math.unit(3 + 4 / 12, "feet"),
  26577. weight: math.unit(70, "lb"),
  26578. name: "Front",
  26579. image: {
  26580. source: "./media/characters/maia/front.svg",
  26581. extra: 227 / 219.5,
  26582. bottom: 40 / 267
  26583. }
  26584. },
  26585. back: {
  26586. height: math.unit(3 + 4 / 12, "feet"),
  26587. weight: math.unit(70, "lb"),
  26588. name: "Back",
  26589. image: {
  26590. source: "./media/characters/maia/back.svg",
  26591. extra: 237 / 225
  26592. }
  26593. },
  26594. },
  26595. [
  26596. {
  26597. name: "Normal",
  26598. height: math.unit(3 + 4 / 12, "feet"),
  26599. default: true
  26600. },
  26601. ]
  26602. ))
  26603. characterMakers.push(() => makeCharacter(
  26604. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26605. {
  26606. front: {
  26607. height: math.unit(5 + 10 / 12, "feet"),
  26608. weight: math.unit(197, "lb"),
  26609. name: "Front",
  26610. image: {
  26611. source: "./media/characters/jabaro/front.svg",
  26612. extra: 225 / 216,
  26613. bottom: 5.06 / 230
  26614. }
  26615. },
  26616. back: {
  26617. height: math.unit(5 + 10 / 12, "feet"),
  26618. weight: math.unit(197, "lb"),
  26619. name: "Back",
  26620. image: {
  26621. source: "./media/characters/jabaro/back.svg",
  26622. extra: 225 / 219,
  26623. bottom: 1.9 / 227
  26624. }
  26625. },
  26626. },
  26627. [
  26628. {
  26629. name: "Normal",
  26630. height: math.unit(5 + 10 / 12, "feet"),
  26631. default: true
  26632. },
  26633. ]
  26634. ))
  26635. characterMakers.push(() => makeCharacter(
  26636. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26637. {
  26638. front: {
  26639. height: math.unit(5 + 8 / 12, "feet"),
  26640. weight: math.unit(139, "lb"),
  26641. name: "Front",
  26642. image: {
  26643. source: "./media/characters/risa/front.svg",
  26644. extra: 270 / 260,
  26645. bottom: 11.2 / 282
  26646. }
  26647. },
  26648. back: {
  26649. height: math.unit(5 + 8 / 12, "feet"),
  26650. weight: math.unit(139, "lb"),
  26651. name: "Back",
  26652. image: {
  26653. source: "./media/characters/risa/back.svg",
  26654. extra: 264 / 255,
  26655. bottom: 4 / 268
  26656. }
  26657. },
  26658. },
  26659. [
  26660. {
  26661. name: "Normal",
  26662. height: math.unit(5 + 8 / 12, "feet"),
  26663. default: true
  26664. },
  26665. ]
  26666. ))
  26667. characterMakers.push(() => makeCharacter(
  26668. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26669. {
  26670. front: {
  26671. height: math.unit(2 + 11 / 12, "feet"),
  26672. weight: math.unit(30, "lb"),
  26673. name: "Front",
  26674. image: {
  26675. source: "./media/characters/weatley/front.svg",
  26676. bottom: 10.7 / 414,
  26677. extra: 403.5 / 362
  26678. }
  26679. },
  26680. back: {
  26681. height: math.unit(2 + 11 / 12, "feet"),
  26682. weight: math.unit(30, "lb"),
  26683. name: "Back",
  26684. image: {
  26685. source: "./media/characters/weatley/back.svg",
  26686. bottom: 10.7 / 414,
  26687. extra: 403.5 / 362
  26688. }
  26689. },
  26690. },
  26691. [
  26692. {
  26693. name: "Normal",
  26694. height: math.unit(2 + 11 / 12, "feet"),
  26695. default: true
  26696. },
  26697. ]
  26698. ))
  26699. characterMakers.push(() => makeCharacter(
  26700. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26701. {
  26702. front: {
  26703. height: math.unit(5 + 2 / 12, "feet"),
  26704. weight: math.unit(50, "kg"),
  26705. name: "Front",
  26706. image: {
  26707. source: "./media/characters/mercury-crescent/front.svg",
  26708. extra: 1088 / 1033,
  26709. bottom: 18.9 / 1109
  26710. }
  26711. },
  26712. },
  26713. [
  26714. {
  26715. name: "Normal",
  26716. height: math.unit(5 + 2 / 12, "feet"),
  26717. default: true
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26723. {
  26724. front: {
  26725. height: math.unit(2, "feet"),
  26726. weight: math.unit(15, "kg"),
  26727. name: "Front",
  26728. image: {
  26729. source: "./media/characters/diamond-jones/front.svg",
  26730. extra: 727/723,
  26731. bottom: 46/773
  26732. }
  26733. },
  26734. },
  26735. [
  26736. {
  26737. name: "Normal",
  26738. height: math.unit(2, "feet"),
  26739. default: true
  26740. },
  26741. ]
  26742. ))
  26743. characterMakers.push(() => makeCharacter(
  26744. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26745. {
  26746. front: {
  26747. height: math.unit(3, "feet"),
  26748. weight: math.unit(30, "kg"),
  26749. name: "Front",
  26750. image: {
  26751. source: "./media/characters/sweet-bit/front.svg",
  26752. extra: 675 / 567,
  26753. bottom: 27.7 / 703
  26754. }
  26755. },
  26756. },
  26757. [
  26758. {
  26759. name: "Normal",
  26760. height: math.unit(3, "feet"),
  26761. default: true
  26762. },
  26763. ]
  26764. ))
  26765. characterMakers.push(() => makeCharacter(
  26766. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26767. {
  26768. side: {
  26769. height: math.unit(9.178, "feet"),
  26770. weight: math.unit(500, "lb"),
  26771. name: "Side",
  26772. image: {
  26773. source: "./media/characters/umbrazen/side.svg",
  26774. extra: 1730 / 1473,
  26775. bottom: 34.6 / 1765
  26776. }
  26777. },
  26778. },
  26779. [
  26780. {
  26781. name: "Normal",
  26782. height: math.unit(9.178, "feet"),
  26783. default: true
  26784. },
  26785. ]
  26786. ))
  26787. characterMakers.push(() => makeCharacter(
  26788. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26789. {
  26790. front: {
  26791. height: math.unit(10, "feet"),
  26792. weight: math.unit(750, "lb"),
  26793. name: "Front",
  26794. image: {
  26795. source: "./media/characters/arlist/front.svg",
  26796. extra: 961 / 778,
  26797. bottom: 6.2 / 986
  26798. }
  26799. },
  26800. },
  26801. [
  26802. {
  26803. name: "Normal",
  26804. height: math.unit(10, "feet"),
  26805. default: true
  26806. },
  26807. ]
  26808. ))
  26809. characterMakers.push(() => makeCharacter(
  26810. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26811. {
  26812. front: {
  26813. height: math.unit(5 + 1 / 12, "feet"),
  26814. weight: math.unit(110, "lb"),
  26815. name: "Front",
  26816. image: {
  26817. source: "./media/characters/aradel/front.svg",
  26818. extra: 324 / 303,
  26819. bottom: 3.6 / 329.4
  26820. }
  26821. },
  26822. },
  26823. [
  26824. {
  26825. name: "Normal",
  26826. height: math.unit(5 + 1 / 12, "feet"),
  26827. default: true
  26828. },
  26829. ]
  26830. ))
  26831. characterMakers.push(() => makeCharacter(
  26832. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26833. {
  26834. dressed: {
  26835. height: math.unit(3 + 8 / 12, "feet"),
  26836. weight: math.unit(50, "lb"),
  26837. name: "Dressed",
  26838. image: {
  26839. source: "./media/characters/serryn/dressed.svg",
  26840. extra: 1792 / 1656,
  26841. bottom: 43.5 / 1840
  26842. }
  26843. },
  26844. nude: {
  26845. height: math.unit(3 + 8 / 12, "feet"),
  26846. weight: math.unit(50, "lb"),
  26847. name: "Nude",
  26848. image: {
  26849. source: "./media/characters/serryn/nude.svg",
  26850. extra: 1792 / 1656,
  26851. bottom: 43.5 / 1840
  26852. }
  26853. },
  26854. },
  26855. [
  26856. {
  26857. name: "Normal",
  26858. height: math.unit(3 + 8 / 12, "feet"),
  26859. default: true
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26865. {
  26866. front: {
  26867. height: math.unit(7 + 10 / 12, "feet"),
  26868. weight: math.unit(255, "lb"),
  26869. name: "Front",
  26870. image: {
  26871. source: "./media/characters/xavier-thyme/front.svg",
  26872. extra: 3733 / 3642,
  26873. bottom: 131 / 3869
  26874. }
  26875. },
  26876. frontRaven: {
  26877. height: math.unit(7 + 10 / 12, "feet"),
  26878. weight: math.unit(255, "lb"),
  26879. name: "Front (Raven)",
  26880. image: {
  26881. source: "./media/characters/xavier-thyme/front-raven.svg",
  26882. extra: 4385 / 3642,
  26883. bottom: 131 / 4517
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(7 + 10 / 12, "feet"),
  26891. default: true
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26897. {
  26898. front: {
  26899. height: math.unit(1.6, "m"),
  26900. weight: math.unit(50, "kg"),
  26901. name: "Front",
  26902. image: {
  26903. source: "./media/characters/kiki/front.svg",
  26904. extra: 4682 / 3610,
  26905. bottom: 115 / 4777
  26906. }
  26907. },
  26908. },
  26909. [
  26910. {
  26911. name: "Normal",
  26912. height: math.unit(1.6, "meters"),
  26913. default: true
  26914. },
  26915. ]
  26916. ))
  26917. characterMakers.push(() => makeCharacter(
  26918. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26919. {
  26920. front: {
  26921. height: math.unit(50, "m"),
  26922. weight: math.unit(500, "tonnes"),
  26923. name: "Front",
  26924. image: {
  26925. source: "./media/characters/ryoko/front.svg",
  26926. extra: 4632 / 3926,
  26927. bottom: 193 / 4823
  26928. }
  26929. },
  26930. },
  26931. [
  26932. {
  26933. name: "Normal",
  26934. height: math.unit(50, "meters"),
  26935. default: true
  26936. },
  26937. ]
  26938. ))
  26939. characterMakers.push(() => makeCharacter(
  26940. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26941. {
  26942. front: {
  26943. height: math.unit(30, "m"),
  26944. weight: math.unit(22, "tonnes"),
  26945. name: "Front",
  26946. image: {
  26947. source: "./media/characters/elio/front.svg",
  26948. extra: 4582 / 3720,
  26949. bottom: 236 / 4828
  26950. }
  26951. },
  26952. },
  26953. [
  26954. {
  26955. name: "Normal",
  26956. height: math.unit(30, "meters"),
  26957. default: true
  26958. },
  26959. ]
  26960. ))
  26961. characterMakers.push(() => makeCharacter(
  26962. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26963. {
  26964. front: {
  26965. height: math.unit(6 + 3 / 12, "feet"),
  26966. weight: math.unit(120, "lb"),
  26967. name: "Front",
  26968. image: {
  26969. source: "./media/characters/azura/front.svg",
  26970. extra: 1149 / 1135,
  26971. bottom: 45 / 1194
  26972. }
  26973. },
  26974. frontClothed: {
  26975. height: math.unit(6 + 3 / 12, "feet"),
  26976. weight: math.unit(120, "lb"),
  26977. name: "Front (Clothed)",
  26978. image: {
  26979. source: "./media/characters/azura/front-clothed.svg",
  26980. extra: 1149 / 1135,
  26981. bottom: 45 / 1194
  26982. }
  26983. },
  26984. },
  26985. [
  26986. {
  26987. name: "Normal",
  26988. height: math.unit(6 + 3 / 12, "feet"),
  26989. default: true
  26990. },
  26991. {
  26992. name: "Macro",
  26993. height: math.unit(20 + 6 / 12, "feet")
  26994. },
  26995. {
  26996. name: "Megamacro",
  26997. height: math.unit(12, "miles")
  26998. },
  26999. {
  27000. name: "Gigamacro",
  27001. height: math.unit(10000, "miles")
  27002. },
  27003. {
  27004. name: "Teramacro",
  27005. height: math.unit(900000, "miles")
  27006. },
  27007. ]
  27008. ))
  27009. characterMakers.push(() => makeCharacter(
  27010. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27011. {
  27012. front: {
  27013. height: math.unit(12, "feet"),
  27014. weight: math.unit(1, "ton"),
  27015. capacity: math.unit(660000, "gallons"),
  27016. name: "Front",
  27017. image: {
  27018. source: "./media/characters/zeus/front.svg",
  27019. extra: 5005 / 4717,
  27020. bottom: 363 / 5388
  27021. }
  27022. },
  27023. },
  27024. [
  27025. {
  27026. name: "Normal",
  27027. height: math.unit(12, "feet")
  27028. },
  27029. {
  27030. name: "Preferred Size",
  27031. height: math.unit(0.5, "miles"),
  27032. default: true
  27033. },
  27034. {
  27035. name: "Giga Horse",
  27036. height: math.unit(300, "miles")
  27037. },
  27038. {
  27039. name: "Riding Planets",
  27040. height: math.unit(30, "megameters")
  27041. },
  27042. {
  27043. name: "Cosmic Giant",
  27044. height: math.unit(3, "zettameters")
  27045. },
  27046. {
  27047. name: "Breeding God",
  27048. height: math.unit(9.92e22, "yottameters")
  27049. },
  27050. ]
  27051. ))
  27052. characterMakers.push(() => makeCharacter(
  27053. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27054. {
  27055. side: {
  27056. height: math.unit(9, "feet"),
  27057. weight: math.unit(1500, "kg"),
  27058. name: "Side",
  27059. image: {
  27060. source: "./media/characters/fang/side.svg",
  27061. extra: 924 / 866,
  27062. bottom: 47.5 / 972.3
  27063. }
  27064. },
  27065. },
  27066. [
  27067. {
  27068. name: "Normal",
  27069. height: math.unit(9, "feet"),
  27070. default: true
  27071. },
  27072. {
  27073. name: "Macro",
  27074. height: math.unit(75 + 6 / 12, "feet")
  27075. },
  27076. {
  27077. name: "Teramacro",
  27078. height: math.unit(50000, "miles")
  27079. },
  27080. ]
  27081. ))
  27082. characterMakers.push(() => makeCharacter(
  27083. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27084. {
  27085. front: {
  27086. height: math.unit(10, "feet"),
  27087. weight: math.unit(2, "tons"),
  27088. name: "Front",
  27089. image: {
  27090. source: "./media/characters/rekhit/front.svg",
  27091. extra: 2796 / 2590,
  27092. bottom: 225 / 3022
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(10, "feet"),
  27100. default: true
  27101. },
  27102. {
  27103. name: "Macro",
  27104. height: math.unit(500, "feet")
  27105. },
  27106. ]
  27107. ))
  27108. characterMakers.push(() => makeCharacter(
  27109. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27110. {
  27111. front: {
  27112. height: math.unit(7 + 6.451 / 12, "feet"),
  27113. weight: math.unit(310, "lb"),
  27114. name: "Front",
  27115. image: {
  27116. source: "./media/characters/dahlia-verrick/front.svg",
  27117. extra: 1488 / 1365,
  27118. bottom: 6.2 / 1495
  27119. }
  27120. },
  27121. back: {
  27122. height: math.unit(7 + 6.451 / 12, "feet"),
  27123. weight: math.unit(310, "lb"),
  27124. name: "Back",
  27125. image: {
  27126. source: "./media/characters/dahlia-verrick/back.svg",
  27127. extra: 1472 / 1351,
  27128. bottom: 5.28 / 1477
  27129. }
  27130. },
  27131. frontBusiness: {
  27132. height: math.unit(7 + 6.451 / 12, "feet"),
  27133. weight: math.unit(200, "lb"),
  27134. name: "Front (Business)",
  27135. image: {
  27136. source: "./media/characters/dahlia-verrick/front-business.svg",
  27137. extra: 1478 / 1381,
  27138. bottom: 5.5 / 1484
  27139. }
  27140. },
  27141. frontCasual: {
  27142. height: math.unit(7 + 6.451 / 12, "feet"),
  27143. weight: math.unit(200, "lb"),
  27144. name: "Front (Casual)",
  27145. image: {
  27146. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27147. extra: 1478 / 1381,
  27148. bottom: 5.5 / 1484
  27149. }
  27150. },
  27151. },
  27152. [
  27153. {
  27154. name: "Travel-Sized",
  27155. height: math.unit(7.45, "inches")
  27156. },
  27157. {
  27158. name: "Normal",
  27159. height: math.unit(7 + 6.451 / 12, "feet"),
  27160. default: true
  27161. },
  27162. {
  27163. name: "Hitting the Town",
  27164. height: math.unit(37 + 8 / 12, "feet")
  27165. },
  27166. {
  27167. name: "Stomp in the Suburbs",
  27168. height: math.unit(964 + 9.728 / 12, "feet")
  27169. },
  27170. {
  27171. name: "Sit on the City",
  27172. height: math.unit(61747 + 10.592 / 12, "feet")
  27173. },
  27174. {
  27175. name: "Glomp the Globe",
  27176. height: math.unit(252919327 + 4.832 / 12, "feet")
  27177. },
  27178. ]
  27179. ))
  27180. characterMakers.push(() => makeCharacter(
  27181. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27182. {
  27183. front: {
  27184. height: math.unit(6 + 4 / 12, "feet"),
  27185. weight: math.unit(320, "lb"),
  27186. name: "Front",
  27187. image: {
  27188. source: "./media/characters/balina-mahigan/front.svg",
  27189. extra: 447 / 428,
  27190. bottom: 18 / 466
  27191. }
  27192. },
  27193. back: {
  27194. height: math.unit(6 + 4 / 12, "feet"),
  27195. weight: math.unit(320, "lb"),
  27196. name: "Back",
  27197. image: {
  27198. source: "./media/characters/balina-mahigan/back.svg",
  27199. extra: 445 / 428,
  27200. bottom: 4.07 / 448
  27201. }
  27202. },
  27203. arm: {
  27204. height: math.unit(1.88, "feet"),
  27205. name: "Arm",
  27206. image: {
  27207. source: "./media/characters/balina-mahigan/arm.svg"
  27208. }
  27209. },
  27210. backPort: {
  27211. height: math.unit(0.685, "feet"),
  27212. name: "Back Port",
  27213. image: {
  27214. source: "./media/characters/balina-mahigan/back-port.svg"
  27215. }
  27216. },
  27217. hoofpaw: {
  27218. height: math.unit(1.41, "feet"),
  27219. name: "Hoofpaw",
  27220. image: {
  27221. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27222. }
  27223. },
  27224. leftHandBack: {
  27225. height: math.unit(0.938, "feet"),
  27226. name: "Left Hand (Back)",
  27227. image: {
  27228. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27229. }
  27230. },
  27231. leftHandFront: {
  27232. height: math.unit(0.938, "feet"),
  27233. name: "Left Hand (Front)",
  27234. image: {
  27235. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27236. }
  27237. },
  27238. rightHandBack: {
  27239. height: math.unit(0.95, "feet"),
  27240. name: "Right Hand (Back)",
  27241. image: {
  27242. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27243. }
  27244. },
  27245. rightHandFront: {
  27246. height: math.unit(0.95, "feet"),
  27247. name: "Right Hand (Front)",
  27248. image: {
  27249. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27250. }
  27251. },
  27252. },
  27253. [
  27254. {
  27255. name: "Normal",
  27256. height: math.unit(6 + 4 / 12, "feet"),
  27257. default: true
  27258. },
  27259. ]
  27260. ))
  27261. characterMakers.push(() => makeCharacter(
  27262. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27263. {
  27264. front: {
  27265. height: math.unit(6, "feet"),
  27266. weight: math.unit(320, "lb"),
  27267. name: "Front",
  27268. image: {
  27269. source: "./media/characters/balina-mejeri/front.svg",
  27270. extra: 517 / 488,
  27271. bottom: 44.2 / 561
  27272. }
  27273. },
  27274. },
  27275. [
  27276. {
  27277. name: "Normal",
  27278. height: math.unit(6 + 4 / 12, "feet")
  27279. },
  27280. {
  27281. name: "Business",
  27282. height: math.unit(155, "feet"),
  27283. default: true
  27284. },
  27285. ]
  27286. ))
  27287. characterMakers.push(() => makeCharacter(
  27288. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27289. {
  27290. kneeling: {
  27291. height: math.unit(6 + 4 / 12, "feet"),
  27292. weight: math.unit(300 * 20, "lb"),
  27293. name: "Kneeling",
  27294. image: {
  27295. source: "./media/characters/balbarian/kneeling.svg",
  27296. extra: 922 / 862,
  27297. bottom: 42.4 / 965
  27298. }
  27299. },
  27300. },
  27301. [
  27302. {
  27303. name: "Normal",
  27304. height: math.unit(6 + 4 / 12, "feet")
  27305. },
  27306. {
  27307. name: "Treasured",
  27308. height: math.unit(18 + 9 / 12, "feet"),
  27309. default: true
  27310. },
  27311. {
  27312. name: "Macro",
  27313. height: math.unit(900, "feet")
  27314. },
  27315. ]
  27316. ))
  27317. characterMakers.push(() => makeCharacter(
  27318. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27319. {
  27320. front: {
  27321. height: math.unit(6 + 4 / 12, "feet"),
  27322. weight: math.unit(325, "lb"),
  27323. name: "Front",
  27324. image: {
  27325. source: "./media/characters/balina-amarini/front.svg",
  27326. extra: 415 / 403,
  27327. bottom: 19 / 433.4
  27328. }
  27329. },
  27330. back: {
  27331. height: math.unit(6 + 4 / 12, "feet"),
  27332. weight: math.unit(325, "lb"),
  27333. name: "Back",
  27334. image: {
  27335. source: "./media/characters/balina-amarini/back.svg",
  27336. extra: 415 / 403,
  27337. bottom: 13.5 / 432
  27338. }
  27339. },
  27340. overdrive: {
  27341. height: math.unit(6 + 4 / 12, "feet"),
  27342. weight: math.unit(400, "lb"),
  27343. name: "Overdrive",
  27344. image: {
  27345. source: "./media/characters/balina-amarini/overdrive.svg",
  27346. extra: 269 / 259,
  27347. bottom: 12 / 282
  27348. }
  27349. },
  27350. },
  27351. [
  27352. {
  27353. name: "Boom",
  27354. height: math.unit(9 + 10 / 12, "feet"),
  27355. default: true
  27356. },
  27357. {
  27358. name: "Macro",
  27359. height: math.unit(280, "feet")
  27360. },
  27361. ]
  27362. ))
  27363. characterMakers.push(() => makeCharacter(
  27364. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27365. {
  27366. goddess: {
  27367. height: math.unit(600, "feet"),
  27368. weight: math.unit(2000000, "tons"),
  27369. name: "Goddess",
  27370. image: {
  27371. source: "./media/characters/lady-kubwa/goddess.svg",
  27372. extra: 1240.5 / 1223,
  27373. bottom: 22 / 1263
  27374. }
  27375. },
  27376. goddesser: {
  27377. height: math.unit(900, "feet"),
  27378. weight: math.unit(20000000, "lb"),
  27379. name: "Goddess-er",
  27380. image: {
  27381. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27382. extra: 899 / 888,
  27383. bottom: 12.6 / 912
  27384. }
  27385. },
  27386. },
  27387. [
  27388. {
  27389. name: "Macro",
  27390. height: math.unit(600, "feet"),
  27391. default: true
  27392. },
  27393. {
  27394. name: "Megamacro",
  27395. height: math.unit(250, "miles")
  27396. },
  27397. ]
  27398. ))
  27399. characterMakers.push(() => makeCharacter(
  27400. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27401. {
  27402. front: {
  27403. height: math.unit(7 + 7 / 12, "feet"),
  27404. weight: math.unit(250, "lb"),
  27405. name: "Front",
  27406. image: {
  27407. source: "./media/characters/tala-grovehorn/front.svg",
  27408. extra: 2636 / 2525,
  27409. bottom: 147 / 2781
  27410. }
  27411. },
  27412. back: {
  27413. height: math.unit(7 + 7 / 12, "feet"),
  27414. weight: math.unit(250, "lb"),
  27415. name: "Back",
  27416. image: {
  27417. source: "./media/characters/tala-grovehorn/back.svg",
  27418. extra: 2635 / 2539,
  27419. bottom: 100 / 2732.8
  27420. }
  27421. },
  27422. mouth: {
  27423. height: math.unit(1.15, "feet"),
  27424. name: "Mouth",
  27425. image: {
  27426. source: "./media/characters/tala-grovehorn/mouth.svg"
  27427. }
  27428. },
  27429. dick: {
  27430. height: math.unit(2.36, "feet"),
  27431. name: "Dick",
  27432. image: {
  27433. source: "./media/characters/tala-grovehorn/dick.svg"
  27434. }
  27435. },
  27436. slit: {
  27437. height: math.unit(0.61, "feet"),
  27438. name: "Slit",
  27439. image: {
  27440. source: "./media/characters/tala-grovehorn/slit.svg"
  27441. }
  27442. },
  27443. },
  27444. [
  27445. ]
  27446. ))
  27447. characterMakers.push(() => makeCharacter(
  27448. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27449. {
  27450. front: {
  27451. height: math.unit(7 + 7 / 12, "feet"),
  27452. weight: math.unit(225, "lb"),
  27453. name: "Front",
  27454. image: {
  27455. source: "./media/characters/epona/front.svg",
  27456. extra: 2445 / 2290,
  27457. bottom: 251 / 2696
  27458. }
  27459. },
  27460. back: {
  27461. height: math.unit(7 + 7 / 12, "feet"),
  27462. weight: math.unit(225, "lb"),
  27463. name: "Back",
  27464. image: {
  27465. source: "./media/characters/epona/back.svg",
  27466. extra: 2546 / 2408,
  27467. bottom: 44 / 2589
  27468. }
  27469. },
  27470. genitals: {
  27471. height: math.unit(1.5, "feet"),
  27472. name: "Genitals",
  27473. image: {
  27474. source: "./media/characters/epona/genitals.svg"
  27475. }
  27476. },
  27477. },
  27478. [
  27479. {
  27480. name: "Normal",
  27481. height: math.unit(7 + 7 / 12, "feet"),
  27482. default: true
  27483. },
  27484. ]
  27485. ))
  27486. characterMakers.push(() => makeCharacter(
  27487. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27488. {
  27489. front: {
  27490. height: math.unit(7, "feet"),
  27491. weight: math.unit(518, "lb"),
  27492. name: "Front",
  27493. image: {
  27494. source: "./media/characters/avia-bloodbourn/front.svg",
  27495. extra: 1466 / 1350,
  27496. bottom: 65 / 1527
  27497. }
  27498. },
  27499. },
  27500. [
  27501. ]
  27502. ))
  27503. characterMakers.push(() => makeCharacter(
  27504. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27505. {
  27506. front: {
  27507. height: math.unit(9.35, "feet"),
  27508. weight: math.unit(600, "lb"),
  27509. name: "Front",
  27510. image: {
  27511. source: "./media/characters/amera/front.svg",
  27512. extra: 891 / 818,
  27513. bottom: 30 / 922.7
  27514. }
  27515. },
  27516. back: {
  27517. height: math.unit(9.35, "feet"),
  27518. weight: math.unit(600, "lb"),
  27519. name: "Back",
  27520. image: {
  27521. source: "./media/characters/amera/back.svg",
  27522. extra: 876 / 824,
  27523. bottom: 6.8 / 884
  27524. }
  27525. },
  27526. dick: {
  27527. height: math.unit(2.14, "feet"),
  27528. name: "Dick",
  27529. image: {
  27530. source: "./media/characters/amera/dick.svg"
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Normal",
  27537. height: math.unit(9.35, "feet"),
  27538. default: true
  27539. },
  27540. ]
  27541. ))
  27542. characterMakers.push(() => makeCharacter(
  27543. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27544. {
  27545. kneeling: {
  27546. height: math.unit(3 + 4 / 12, "feet"),
  27547. weight: math.unit(90, "lb"),
  27548. name: "Kneeling",
  27549. image: {
  27550. source: "./media/characters/rosewen/kneeling.svg",
  27551. extra: 1835 / 1571,
  27552. bottom: 27.7 / 1862
  27553. }
  27554. },
  27555. },
  27556. [
  27557. {
  27558. name: "Normal",
  27559. height: math.unit(3 + 4 / 12, "feet"),
  27560. default: true
  27561. },
  27562. ]
  27563. ))
  27564. characterMakers.push(() => makeCharacter(
  27565. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27566. {
  27567. front: {
  27568. height: math.unit(5 + 10 / 12, "feet"),
  27569. weight: math.unit(200, "lb"),
  27570. name: "Front",
  27571. image: {
  27572. source: "./media/characters/sabah/front.svg",
  27573. extra: 849 / 763,
  27574. bottom: 33.9 / 881
  27575. }
  27576. },
  27577. },
  27578. [
  27579. {
  27580. name: "Normal",
  27581. height: math.unit(5 + 10 / 12, "feet"),
  27582. default: true
  27583. },
  27584. ]
  27585. ))
  27586. characterMakers.push(() => makeCharacter(
  27587. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27588. {
  27589. front: {
  27590. height: math.unit(3 + 5 / 12, "feet"),
  27591. weight: math.unit(40, "kg"),
  27592. name: "Front",
  27593. image: {
  27594. source: "./media/characters/purple-flame/front.svg",
  27595. extra: 1577 / 1412,
  27596. bottom: 97 / 1694
  27597. }
  27598. },
  27599. frontDressed: {
  27600. height: math.unit(3 + 5 / 12, "feet"),
  27601. weight: math.unit(40, "kg"),
  27602. name: "Front (Dressed)",
  27603. image: {
  27604. source: "./media/characters/purple-flame/front-dressed.svg",
  27605. extra: 1577 / 1412,
  27606. bottom: 97 / 1694
  27607. }
  27608. },
  27609. headphones: {
  27610. height: math.unit(0.85, "feet"),
  27611. name: "Headphones",
  27612. image: {
  27613. source: "./media/characters/purple-flame/headphones.svg"
  27614. }
  27615. },
  27616. },
  27617. [
  27618. {
  27619. name: "Really Small",
  27620. height: math.unit(5, "cm")
  27621. },
  27622. {
  27623. name: "Micro",
  27624. height: math.unit(1 + 5 / 12, "feet")
  27625. },
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(3 + 5 / 12, "feet"),
  27629. default: true
  27630. },
  27631. {
  27632. name: "Minimacro",
  27633. height: math.unit(125, "feet")
  27634. },
  27635. {
  27636. name: "Macro",
  27637. height: math.unit(0.5, "miles")
  27638. },
  27639. {
  27640. name: "Megamacro",
  27641. height: math.unit(50, "miles")
  27642. },
  27643. {
  27644. name: "Gigantic",
  27645. height: math.unit(750, "miles")
  27646. },
  27647. {
  27648. name: "Planetary",
  27649. height: math.unit(15000, "miles")
  27650. },
  27651. ]
  27652. ))
  27653. characterMakers.push(() => makeCharacter(
  27654. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27655. {
  27656. front: {
  27657. height: math.unit(14, "feet"),
  27658. weight: math.unit(959, "lb"),
  27659. name: "Front",
  27660. image: {
  27661. source: "./media/characters/arsenal/front.svg",
  27662. extra: 2357 / 2157,
  27663. bottom: 93 / 2458
  27664. }
  27665. },
  27666. },
  27667. [
  27668. {
  27669. name: "Normal",
  27670. height: math.unit(14, "feet"),
  27671. default: true
  27672. },
  27673. ]
  27674. ))
  27675. characterMakers.push(() => makeCharacter(
  27676. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27677. {
  27678. front: {
  27679. height: math.unit(6, "feet"),
  27680. weight: math.unit(150, "lb"),
  27681. name: "Front",
  27682. image: {
  27683. source: "./media/characters/adira/front.svg",
  27684. extra: 1078 / 1029,
  27685. bottom: 87 / 1166
  27686. }
  27687. },
  27688. },
  27689. [
  27690. {
  27691. name: "Micro",
  27692. height: math.unit(4, "inches"),
  27693. default: true
  27694. },
  27695. {
  27696. name: "Macro",
  27697. height: math.unit(50, "feet")
  27698. },
  27699. ]
  27700. ))
  27701. characterMakers.push(() => makeCharacter(
  27702. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27703. {
  27704. front: {
  27705. height: math.unit(16, "feet"),
  27706. weight: math.unit(1000, "lb"),
  27707. name: "Front",
  27708. image: {
  27709. source: "./media/characters/grim/front.svg",
  27710. extra: 622 / 614,
  27711. bottom: 18.1 / 642
  27712. }
  27713. },
  27714. back: {
  27715. height: math.unit(16, "feet"),
  27716. weight: math.unit(1000, "lb"),
  27717. name: "Back",
  27718. image: {
  27719. source: "./media/characters/grim/back.svg",
  27720. extra: 610.6 / 602,
  27721. bottom: 40.8 / 652
  27722. }
  27723. },
  27724. hunched: {
  27725. height: math.unit(9.75, "feet"),
  27726. weight: math.unit(1000, "lb"),
  27727. name: "Hunched",
  27728. image: {
  27729. source: "./media/characters/grim/hunched.svg",
  27730. extra: 304 / 297,
  27731. bottom: 35.4 / 394
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(16, "feet"),
  27739. default: true
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27745. {
  27746. front: {
  27747. height: math.unit(2.3, "meters"),
  27748. weight: math.unit(300, "lb"),
  27749. name: "Front",
  27750. image: {
  27751. source: "./media/characters/sinja/front-sfw.svg",
  27752. extra: 1393 / 1294,
  27753. bottom: 70 / 1463
  27754. }
  27755. },
  27756. frontNsfw: {
  27757. height: math.unit(2.3, "meters"),
  27758. weight: math.unit(300, "lb"),
  27759. name: "Front (NSFW)",
  27760. image: {
  27761. source: "./media/characters/sinja/front-nsfw.svg",
  27762. extra: 1393 / 1294,
  27763. bottom: 70 / 1463
  27764. }
  27765. },
  27766. back: {
  27767. height: math.unit(2.3, "meters"),
  27768. weight: math.unit(300, "lb"),
  27769. name: "Back",
  27770. image: {
  27771. source: "./media/characters/sinja/back.svg",
  27772. extra: 1393 / 1294,
  27773. bottom: 70 / 1463
  27774. }
  27775. },
  27776. head: {
  27777. height: math.unit(1.771, "feet"),
  27778. name: "Head",
  27779. image: {
  27780. source: "./media/characters/sinja/head.svg"
  27781. }
  27782. },
  27783. slit: {
  27784. height: math.unit(0.8, "feet"),
  27785. name: "Slit",
  27786. image: {
  27787. source: "./media/characters/sinja/slit.svg"
  27788. }
  27789. },
  27790. },
  27791. [
  27792. {
  27793. name: "Normal",
  27794. height: math.unit(2.3, "meters")
  27795. },
  27796. {
  27797. name: "Macro",
  27798. height: math.unit(91, "meters"),
  27799. default: true
  27800. },
  27801. {
  27802. name: "Megamacro",
  27803. height: math.unit(91440, "meters")
  27804. },
  27805. {
  27806. name: "Gigamacro",
  27807. height: math.unit(60960000, "meters")
  27808. },
  27809. {
  27810. name: "Teramacro",
  27811. height: math.unit(9144000000, "meters")
  27812. },
  27813. ]
  27814. ))
  27815. characterMakers.push(() => makeCharacter(
  27816. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27817. {
  27818. front: {
  27819. height: math.unit(1.7, "meters"),
  27820. weight: math.unit(130, "lb"),
  27821. name: "Front",
  27822. image: {
  27823. source: "./media/characters/kyu/front.svg",
  27824. extra: 415 / 395,
  27825. bottom: 5 / 420
  27826. }
  27827. },
  27828. head: {
  27829. height: math.unit(1.75, "feet"),
  27830. name: "Head",
  27831. image: {
  27832. source: "./media/characters/kyu/head.svg"
  27833. }
  27834. },
  27835. foot: {
  27836. height: math.unit(0.81, "feet"),
  27837. name: "Foot",
  27838. image: {
  27839. source: "./media/characters/kyu/foot.svg"
  27840. }
  27841. },
  27842. },
  27843. [
  27844. {
  27845. name: "Normal",
  27846. height: math.unit(1.7, "meters")
  27847. },
  27848. {
  27849. name: "Macro",
  27850. height: math.unit(131, "feet"),
  27851. default: true
  27852. },
  27853. {
  27854. name: "Megamacro",
  27855. height: math.unit(91440, "meters")
  27856. },
  27857. {
  27858. name: "Gigamacro",
  27859. height: math.unit(60960000, "meters")
  27860. },
  27861. {
  27862. name: "Teramacro",
  27863. height: math.unit(9144000000, "meters")
  27864. },
  27865. ]
  27866. ))
  27867. characterMakers.push(() => makeCharacter(
  27868. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27869. {
  27870. front: {
  27871. height: math.unit(7 + 1 / 12, "feet"),
  27872. weight: math.unit(250, "lb"),
  27873. name: "Front",
  27874. image: {
  27875. source: "./media/characters/joey/front.svg",
  27876. extra: 1791 / 1537,
  27877. bottom: 28 / 1816
  27878. }
  27879. },
  27880. },
  27881. [
  27882. {
  27883. name: "Micro",
  27884. height: math.unit(3, "inches")
  27885. },
  27886. {
  27887. name: "Normal",
  27888. height: math.unit(7 + 1 / 12, "feet"),
  27889. default: true
  27890. },
  27891. ]
  27892. ))
  27893. characterMakers.push(() => makeCharacter(
  27894. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27895. {
  27896. front: {
  27897. height: math.unit(165, "cm"),
  27898. weight: math.unit(140, "lb"),
  27899. name: "Front",
  27900. image: {
  27901. source: "./media/characters/sam-evans/front.svg",
  27902. extra: 3417 / 3230,
  27903. bottom: 41.3 / 3417
  27904. }
  27905. },
  27906. frontSixTails: {
  27907. height: math.unit(165, "cm"),
  27908. weight: math.unit(140, "lb"),
  27909. name: "Front-six-tails",
  27910. image: {
  27911. source: "./media/characters/sam-evans/front-six-tails.svg",
  27912. extra: 3417 / 3230,
  27913. bottom: 41.3 / 3417
  27914. }
  27915. },
  27916. back: {
  27917. height: math.unit(165, "cm"),
  27918. weight: math.unit(140, "lb"),
  27919. name: "Back",
  27920. image: {
  27921. source: "./media/characters/sam-evans/back.svg",
  27922. extra: 3227 / 3032,
  27923. bottom: 6.8 / 3234
  27924. }
  27925. },
  27926. face: {
  27927. height: math.unit(0.68, "feet"),
  27928. name: "Face",
  27929. image: {
  27930. source: "./media/characters/sam-evans/face.svg"
  27931. }
  27932. },
  27933. },
  27934. [
  27935. {
  27936. name: "Normal",
  27937. height: math.unit(165, "cm"),
  27938. default: true
  27939. },
  27940. {
  27941. name: "Macro",
  27942. height: math.unit(100, "meters")
  27943. },
  27944. {
  27945. name: "Macro+",
  27946. height: math.unit(800, "meters")
  27947. },
  27948. {
  27949. name: "Macro++",
  27950. height: math.unit(3, "km")
  27951. },
  27952. {
  27953. name: "Macro+++",
  27954. height: math.unit(30, "km")
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27960. {
  27961. front: {
  27962. height: math.unit(10, "feet"),
  27963. weight: math.unit(750, "lb"),
  27964. name: "Front",
  27965. image: {
  27966. source: "./media/characters/juliet-a/front.svg",
  27967. extra: 1766 / 1720,
  27968. bottom: 43 / 1809
  27969. }
  27970. },
  27971. back: {
  27972. height: math.unit(10, "feet"),
  27973. weight: math.unit(750, "lb"),
  27974. name: "Back",
  27975. image: {
  27976. source: "./media/characters/juliet-a/back.svg",
  27977. extra: 1781 / 1734,
  27978. bottom: 35 / 1810,
  27979. }
  27980. },
  27981. },
  27982. [
  27983. {
  27984. name: "Normal",
  27985. height: math.unit(10, "feet"),
  27986. default: true
  27987. },
  27988. {
  27989. name: "Dragon Form",
  27990. height: math.unit(250, "feet")
  27991. },
  27992. {
  27993. name: "Macro",
  27994. height: math.unit(1000, "feet")
  27995. },
  27996. {
  27997. name: "Megamacro",
  27998. height: math.unit(10000, "feet")
  27999. }
  28000. ]
  28001. ))
  28002. characterMakers.push(() => makeCharacter(
  28003. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28004. {
  28005. regular: {
  28006. height: math.unit(7 + 3 / 12, "feet"),
  28007. weight: math.unit(260, "lb"),
  28008. name: "Regular",
  28009. image: {
  28010. source: "./media/characters/wild/regular.svg",
  28011. extra: 97.45 / 92,
  28012. bottom: 6.8 / 104.3
  28013. }
  28014. },
  28015. biggums: {
  28016. height: math.unit(8 + 6 / 12, "feet"),
  28017. weight: math.unit(425, "lb"),
  28018. name: "Biggums",
  28019. image: {
  28020. source: "./media/characters/wild/biggums.svg",
  28021. extra: 97.45 / 92,
  28022. bottom: 7.5 / 132.34
  28023. }
  28024. },
  28025. mawRegular: {
  28026. height: math.unit(1.24, "feet"),
  28027. name: "Maw (Regular)",
  28028. image: {
  28029. source: "./media/characters/wild/maw.svg"
  28030. }
  28031. },
  28032. mawBiggums: {
  28033. height: math.unit(1.47, "feet"),
  28034. name: "Maw (Biggums)",
  28035. image: {
  28036. source: "./media/characters/wild/maw.svg"
  28037. }
  28038. },
  28039. },
  28040. [
  28041. {
  28042. name: "Normal",
  28043. height: math.unit(7 + 3 / 12, "feet"),
  28044. default: true
  28045. },
  28046. ]
  28047. ))
  28048. characterMakers.push(() => makeCharacter(
  28049. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28050. {
  28051. front: {
  28052. height: math.unit(2.5, "meters"),
  28053. weight: math.unit(200, "kg"),
  28054. name: "Front",
  28055. image: {
  28056. source: "./media/characters/vidar/front.svg",
  28057. extra: 2994 / 2795,
  28058. bottom: 56 / 3061
  28059. }
  28060. },
  28061. back: {
  28062. height: math.unit(2.5, "meters"),
  28063. weight: math.unit(200, "kg"),
  28064. name: "Back",
  28065. image: {
  28066. source: "./media/characters/vidar/back.svg",
  28067. extra: 3131 / 2928,
  28068. bottom: 13.5 / 3141.5
  28069. }
  28070. },
  28071. feral: {
  28072. height: math.unit(2.5, "meters"),
  28073. weight: math.unit(2000, "kg"),
  28074. name: "Feral",
  28075. image: {
  28076. source: "./media/characters/vidar/feral.svg",
  28077. extra: 2790 / 1765,
  28078. bottom: 6 / 2796
  28079. }
  28080. },
  28081. },
  28082. [
  28083. {
  28084. name: "Normal",
  28085. height: math.unit(2.5, "meters"),
  28086. default: true
  28087. },
  28088. {
  28089. name: "Macro",
  28090. height: math.unit(100, "meters")
  28091. },
  28092. ]
  28093. ))
  28094. characterMakers.push(() => makeCharacter(
  28095. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28096. {
  28097. front: {
  28098. height: math.unit(5 + 9 / 12, "feet"),
  28099. weight: math.unit(120, "lb"),
  28100. name: "Front",
  28101. image: {
  28102. source: "./media/characters/ash/front.svg",
  28103. extra: 2189 / 1961,
  28104. bottom: 5.2 / 2194
  28105. }
  28106. },
  28107. },
  28108. [
  28109. {
  28110. name: "Normal",
  28111. height: math.unit(5 + 9 / 12, "feet"),
  28112. default: true
  28113. },
  28114. ]
  28115. ))
  28116. characterMakers.push(() => makeCharacter(
  28117. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28118. {
  28119. front: {
  28120. height: math.unit(9, "feet"),
  28121. weight: math.unit(10000, "lb"),
  28122. name: "Front",
  28123. image: {
  28124. source: "./media/characters/gygabite/front.svg",
  28125. bottom: 31.7 / 537.8,
  28126. extra: 505 / 370
  28127. }
  28128. },
  28129. },
  28130. [
  28131. {
  28132. name: "Normal",
  28133. height: math.unit(9, "feet"),
  28134. default: true
  28135. },
  28136. ]
  28137. ))
  28138. characterMakers.push(() => makeCharacter(
  28139. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28140. {
  28141. front: {
  28142. height: math.unit(12, "feet"),
  28143. weight: math.unit(35000, "lb"),
  28144. name: "Front",
  28145. image: {
  28146. source: "./media/characters/p0tat0/front.svg",
  28147. extra: 1065 / 921,
  28148. bottom: 55.7 / 1121.25
  28149. }
  28150. },
  28151. },
  28152. [
  28153. {
  28154. name: "Normal",
  28155. height: math.unit(12, "feet"),
  28156. default: true
  28157. },
  28158. ]
  28159. ))
  28160. characterMakers.push(() => makeCharacter(
  28161. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28162. {
  28163. side: {
  28164. height: math.unit(6.5, "feet"),
  28165. weight: math.unit(800, "lb"),
  28166. name: "Side",
  28167. image: {
  28168. source: "./media/characters/dusk/side.svg",
  28169. extra: 615 / 373,
  28170. bottom: 53 / 664
  28171. }
  28172. },
  28173. sitting: {
  28174. height: math.unit(7, "feet"),
  28175. weight: math.unit(800, "lb"),
  28176. name: "Sitting",
  28177. image: {
  28178. source: "./media/characters/dusk/sitting.svg",
  28179. extra: 753 / 425,
  28180. bottom: 33 / 774
  28181. }
  28182. },
  28183. head: {
  28184. height: math.unit(6.1, "feet"),
  28185. name: "Head",
  28186. image: {
  28187. source: "./media/characters/dusk/head.svg"
  28188. }
  28189. },
  28190. },
  28191. [
  28192. {
  28193. name: "Normal",
  28194. height: math.unit(7, "feet"),
  28195. default: true
  28196. },
  28197. ]
  28198. ))
  28199. characterMakers.push(() => makeCharacter(
  28200. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28201. {
  28202. front: {
  28203. height: math.unit(15, "feet"),
  28204. weight: math.unit(7000, "lb"),
  28205. name: "Front",
  28206. image: {
  28207. source: "./media/characters/jay-direwolf/front.svg",
  28208. extra: 1810 / 1732,
  28209. bottom: 66 / 1892
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Normal",
  28216. height: math.unit(15, "feet"),
  28217. default: true
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28223. {
  28224. front: {
  28225. height: math.unit(4 + 9 / 12, "feet"),
  28226. weight: math.unit(130, "lb"),
  28227. name: "Front",
  28228. image: {
  28229. source: "./media/characters/anchovie/front.svg",
  28230. extra: 382 / 350,
  28231. bottom: 25 / 409
  28232. }
  28233. },
  28234. back: {
  28235. height: math.unit(4 + 9 / 12, "feet"),
  28236. weight: math.unit(130, "lb"),
  28237. name: "Back",
  28238. image: {
  28239. source: "./media/characters/anchovie/back.svg",
  28240. extra: 385 / 352,
  28241. bottom: 16.6 / 402
  28242. }
  28243. },
  28244. frontDressed: {
  28245. height: math.unit(4 + 9 / 12, "feet"),
  28246. weight: math.unit(130, "lb"),
  28247. name: "Front (Dressed)",
  28248. image: {
  28249. source: "./media/characters/anchovie/front-dressed.svg",
  28250. extra: 382 / 350,
  28251. bottom: 25 / 409
  28252. }
  28253. },
  28254. backDressed: {
  28255. height: math.unit(4 + 9 / 12, "feet"),
  28256. weight: math.unit(130, "lb"),
  28257. name: "Back (Dressed)",
  28258. image: {
  28259. source: "./media/characters/anchovie/back-dressed.svg",
  28260. extra: 385 / 352,
  28261. bottom: 16.6 / 402
  28262. }
  28263. },
  28264. },
  28265. [
  28266. {
  28267. name: "Micro",
  28268. height: math.unit(6.4, "inches")
  28269. },
  28270. {
  28271. name: "Normal",
  28272. height: math.unit(4 + 9 / 12, "feet"),
  28273. default: true
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(2, "meters"),
  28282. weight: math.unit(180, "lb"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/acidrenamon/front.svg",
  28286. extra: 987 / 890,
  28287. bottom: 22.8 / 1009
  28288. }
  28289. },
  28290. back: {
  28291. height: math.unit(2, "meters"),
  28292. weight: math.unit(180, "lb"),
  28293. name: "Back",
  28294. image: {
  28295. source: "./media/characters/acidrenamon/back.svg",
  28296. extra: 983 / 891,
  28297. bottom: 8.4 / 992
  28298. }
  28299. },
  28300. head: {
  28301. height: math.unit(1.92, "feet"),
  28302. name: "Head",
  28303. image: {
  28304. source: "./media/characters/acidrenamon/head.svg"
  28305. }
  28306. },
  28307. rump: {
  28308. height: math.unit(1.72, "feet"),
  28309. name: "Rump",
  28310. image: {
  28311. source: "./media/characters/acidrenamon/rump.svg"
  28312. }
  28313. },
  28314. tail: {
  28315. height: math.unit(4.2, "feet"),
  28316. name: "Tail",
  28317. image: {
  28318. source: "./media/characters/acidrenamon/tail.svg"
  28319. }
  28320. },
  28321. },
  28322. [
  28323. {
  28324. name: "Normal",
  28325. height: math.unit(2, "meters"),
  28326. default: true
  28327. },
  28328. {
  28329. name: "Minimacro",
  28330. height: math.unit(7, "meters")
  28331. },
  28332. {
  28333. name: "Macro",
  28334. height: math.unit(200, "meters")
  28335. },
  28336. {
  28337. name: "Gigamacro",
  28338. height: math.unit(0.2, "earths")
  28339. },
  28340. ]
  28341. ))
  28342. characterMakers.push(() => makeCharacter(
  28343. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28344. {
  28345. front: {
  28346. height: math.unit(152, "feet"),
  28347. name: "Front",
  28348. image: {
  28349. source: "./media/characters/kenzie-lee/front.svg",
  28350. extra: 1869/1774,
  28351. bottom: 128/1997
  28352. }
  28353. },
  28354. side: {
  28355. height: math.unit(86, "feet"),
  28356. name: "Side",
  28357. image: {
  28358. source: "./media/characters/kenzie-lee/side.svg",
  28359. extra: 930/815,
  28360. bottom: 177/1107
  28361. }
  28362. },
  28363. paw: {
  28364. height: math.unit(15, "feet"),
  28365. name: "Paw",
  28366. image: {
  28367. source: "./media/characters/kenzie-lee/paw.svg"
  28368. }
  28369. },
  28370. },
  28371. [
  28372. {
  28373. name: "Micro",
  28374. height: math.unit(1.5, "inches")
  28375. },
  28376. {
  28377. name: "Normal",
  28378. height: math.unit(152, "feet"),
  28379. default: true
  28380. },
  28381. {
  28382. name: "Megamacro",
  28383. height: math.unit(7, "miles")
  28384. },
  28385. {
  28386. name: "Gigamacro",
  28387. height: math.unit(8000, "miles")
  28388. },
  28389. ]
  28390. ))
  28391. characterMakers.push(() => makeCharacter(
  28392. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28393. {
  28394. side: {
  28395. height: math.unit(6, "feet"),
  28396. weight: math.unit(150, "lb"),
  28397. name: "Side",
  28398. image: {
  28399. source: "./media/characters/withers/side.svg",
  28400. extra: 1830 / 1728,
  28401. bottom: 96 / 1927
  28402. }
  28403. },
  28404. front: {
  28405. height: math.unit(6, "feet"),
  28406. weight: math.unit(150, "lb"),
  28407. name: "Front",
  28408. image: {
  28409. source: "./media/characters/withers/front.svg",
  28410. extra: 1514 / 1438,
  28411. bottom: 118 / 1632
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Macro",
  28418. height: math.unit(168, "feet"),
  28419. default: true
  28420. },
  28421. {
  28422. name: "Megamacro",
  28423. height: math.unit(15, "miles")
  28424. }
  28425. ]
  28426. ))
  28427. characterMakers.push(() => makeCharacter(
  28428. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28429. {
  28430. front: {
  28431. height: math.unit(6 + 7 / 12, "feet"),
  28432. weight: math.unit(250, "lb"),
  28433. name: "Front",
  28434. image: {
  28435. source: "./media/characters/nemoskii/front.svg",
  28436. extra: 2270 / 1734,
  28437. bottom: 86 / 2354
  28438. }
  28439. },
  28440. back: {
  28441. height: math.unit(6 + 7 / 12, "feet"),
  28442. weight: math.unit(250, "lb"),
  28443. name: "Back",
  28444. image: {
  28445. source: "./media/characters/nemoskii/back.svg",
  28446. extra: 1845 / 1788,
  28447. bottom: 10.5 / 1852
  28448. }
  28449. },
  28450. head: {
  28451. height: math.unit(1.31, "feet"),
  28452. name: "Head",
  28453. image: {
  28454. source: "./media/characters/nemoskii/head.svg"
  28455. }
  28456. },
  28457. },
  28458. [
  28459. {
  28460. name: "Micro",
  28461. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28462. },
  28463. {
  28464. name: "Normal",
  28465. height: math.unit(6 + 7 / 12, "feet"),
  28466. default: true
  28467. },
  28468. {
  28469. name: "Macro",
  28470. height: math.unit((6 + 7 / 12) * 150, "feet")
  28471. },
  28472. {
  28473. name: "Macro+",
  28474. height: math.unit((6 + 7 / 12) * 500, "feet")
  28475. },
  28476. {
  28477. name: "Megamacro",
  28478. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28479. },
  28480. ]
  28481. ))
  28482. characterMakers.push(() => makeCharacter(
  28483. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28484. {
  28485. front: {
  28486. height: math.unit(1, "mile"),
  28487. weight: math.unit(265261.9, "lb"),
  28488. name: "Front",
  28489. image: {
  28490. source: "./media/characters/shui/front.svg",
  28491. extra: 1633 / 1564,
  28492. bottom: 91.5 / 1726
  28493. }
  28494. },
  28495. },
  28496. [
  28497. {
  28498. name: "Macro",
  28499. height: math.unit(1, "mile"),
  28500. default: true
  28501. },
  28502. ]
  28503. ))
  28504. characterMakers.push(() => makeCharacter(
  28505. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28506. {
  28507. front: {
  28508. height: math.unit(12 + 6 / 12, "feet"),
  28509. weight: math.unit(1342, "lb"),
  28510. name: "Front",
  28511. image: {
  28512. source: "./media/characters/arokh-takakura/front.svg",
  28513. extra: 1089 / 1043,
  28514. bottom: 77.4 / 1176.7
  28515. }
  28516. },
  28517. back: {
  28518. height: math.unit(12 + 6 / 12, "feet"),
  28519. weight: math.unit(1342, "lb"),
  28520. name: "Back",
  28521. image: {
  28522. source: "./media/characters/arokh-takakura/back.svg",
  28523. extra: 1046 / 1019,
  28524. bottom: 102 / 1150
  28525. }
  28526. },
  28527. },
  28528. [
  28529. {
  28530. name: "Big",
  28531. height: math.unit(12 + 6 / 12, "feet"),
  28532. default: true
  28533. },
  28534. ]
  28535. ))
  28536. characterMakers.push(() => makeCharacter(
  28537. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28538. {
  28539. front: {
  28540. height: math.unit(5 + 6 / 12, "feet"),
  28541. weight: math.unit(150, "lb"),
  28542. name: "Front",
  28543. image: {
  28544. source: "./media/characters/theo/front.svg",
  28545. extra: 1184 / 1131,
  28546. bottom: 7.4 / 1191
  28547. }
  28548. },
  28549. },
  28550. [
  28551. {
  28552. name: "Micro",
  28553. height: math.unit(5, "inches")
  28554. },
  28555. {
  28556. name: "Normal",
  28557. height: math.unit(5 + 6 / 12, "feet"),
  28558. default: true
  28559. },
  28560. ]
  28561. ))
  28562. characterMakers.push(() => makeCharacter(
  28563. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28564. {
  28565. front: {
  28566. height: math.unit(5 + 9 / 12, "feet"),
  28567. weight: math.unit(130, "lb"),
  28568. name: "Front",
  28569. image: {
  28570. source: "./media/characters/cecelia-swift/front.svg",
  28571. extra: 502 / 484,
  28572. bottom: 23 / 523
  28573. }
  28574. },
  28575. back: {
  28576. height: math.unit(5 + 9 / 12, "feet"),
  28577. weight: math.unit(130, "lb"),
  28578. name: "Back",
  28579. image: {
  28580. source: "./media/characters/cecelia-swift/back.svg",
  28581. extra: 499 / 485,
  28582. bottom: 12 / 511
  28583. }
  28584. },
  28585. head: {
  28586. height: math.unit(0.90, "feet"),
  28587. name: "Head",
  28588. image: {
  28589. source: "./media/characters/cecelia-swift/head.svg"
  28590. }
  28591. },
  28592. rump: {
  28593. height: math.unit(1.75, "feet"),
  28594. name: "Rump",
  28595. image: {
  28596. source: "./media/characters/cecelia-swift/rump.svg"
  28597. }
  28598. },
  28599. },
  28600. [
  28601. {
  28602. name: "Normal",
  28603. height: math.unit(5 + 9 / 12, "feet"),
  28604. default: true
  28605. },
  28606. {
  28607. name: "Big",
  28608. height: math.unit(50, "feet")
  28609. },
  28610. {
  28611. name: "Macro",
  28612. height: math.unit(100, "feet")
  28613. },
  28614. {
  28615. name: "Macro+",
  28616. height: math.unit(500, "feet")
  28617. },
  28618. {
  28619. name: "Macro++",
  28620. height: math.unit(1000, "feet")
  28621. },
  28622. ]
  28623. ))
  28624. characterMakers.push(() => makeCharacter(
  28625. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28626. {
  28627. front: {
  28628. height: math.unit(6, "feet"),
  28629. weight: math.unit(150, "lb"),
  28630. name: "Front",
  28631. image: {
  28632. source: "./media/characters/kaunan/front.svg",
  28633. extra: 2890 / 2523,
  28634. bottom: 49 / 2939
  28635. }
  28636. },
  28637. },
  28638. [
  28639. {
  28640. name: "Macro",
  28641. height: math.unit(150, "feet"),
  28642. default: true
  28643. },
  28644. ]
  28645. ))
  28646. characterMakers.push(() => makeCharacter(
  28647. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28648. {
  28649. front: {
  28650. height: math.unit(175, "cm"),
  28651. weight: math.unit(60, "kg"),
  28652. name: "Front",
  28653. image: {
  28654. source: "./media/characters/fei/front.svg",
  28655. extra: 1873/1723,
  28656. bottom: 53/1926
  28657. }
  28658. },
  28659. },
  28660. [
  28661. {
  28662. name: "Mortal",
  28663. height: math.unit(175, "cm")
  28664. },
  28665. {
  28666. name: "Normal",
  28667. height: math.unit(3500, "m"),
  28668. default: true
  28669. },
  28670. {
  28671. name: "Stroll",
  28672. height: math.unit(17.5, "km")
  28673. },
  28674. {
  28675. name: "Showoff",
  28676. height: math.unit(175, "km")
  28677. },
  28678. ]
  28679. ))
  28680. characterMakers.push(() => makeCharacter(
  28681. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28682. {
  28683. front: {
  28684. height: math.unit(7, "feet"),
  28685. weight: math.unit(1000, "kg"),
  28686. name: "Front",
  28687. image: {
  28688. source: "./media/characters/edrax/front.svg",
  28689. extra: 2838 / 2550,
  28690. bottom: 130 / 2968
  28691. }
  28692. },
  28693. },
  28694. [
  28695. {
  28696. name: "Small",
  28697. height: math.unit(7, "feet")
  28698. },
  28699. {
  28700. name: "Normal",
  28701. height: math.unit(1500, "meters")
  28702. },
  28703. {
  28704. name: "Mega",
  28705. height: math.unit(12000000, "km"),
  28706. default: true
  28707. },
  28708. {
  28709. name: "Megamacro",
  28710. height: math.unit(10600000, "lightyears")
  28711. },
  28712. {
  28713. name: "Hypermacro",
  28714. height: math.unit(256, "yottameters")
  28715. },
  28716. ]
  28717. ))
  28718. characterMakers.push(() => makeCharacter(
  28719. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28720. {
  28721. front: {
  28722. height: math.unit(10, "feet"),
  28723. weight: math.unit(750, "lb"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/clove/front.svg",
  28727. extra: 1918/1751,
  28728. bottom: 52/1970
  28729. }
  28730. },
  28731. back: {
  28732. height: math.unit(10, "feet"),
  28733. weight: math.unit(750, "lb"),
  28734. name: "Back",
  28735. image: {
  28736. source: "./media/characters/clove/back.svg",
  28737. extra: 1912/1747,
  28738. bottom: 50/1962
  28739. }
  28740. },
  28741. },
  28742. [
  28743. {
  28744. name: "Normal",
  28745. height: math.unit(10, "feet"),
  28746. default: true
  28747. },
  28748. ]
  28749. ))
  28750. characterMakers.push(() => makeCharacter(
  28751. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28752. {
  28753. front: {
  28754. height: math.unit(4, "feet"),
  28755. weight: math.unit(50, "lb"),
  28756. name: "Front",
  28757. image: {
  28758. source: "./media/characters/alex-rabbit/front.svg",
  28759. extra: 507 / 458,
  28760. bottom: 18.5 / 527
  28761. }
  28762. },
  28763. back: {
  28764. height: math.unit(4, "feet"),
  28765. weight: math.unit(50, "lb"),
  28766. name: "Back",
  28767. image: {
  28768. source: "./media/characters/alex-rabbit/back.svg",
  28769. extra: 502 / 460,
  28770. bottom: 18.9 / 521
  28771. }
  28772. },
  28773. },
  28774. [
  28775. {
  28776. name: "Normal",
  28777. height: math.unit(4, "feet"),
  28778. default: true
  28779. },
  28780. ]
  28781. ))
  28782. characterMakers.push(() => makeCharacter(
  28783. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28784. {
  28785. front: {
  28786. height: math.unit(1 + 3 / 12, "feet"),
  28787. weight: math.unit(80, "lb"),
  28788. name: "Front",
  28789. image: {
  28790. source: "./media/characters/zander-rose/front.svg",
  28791. extra: 916 / 797,
  28792. bottom: 17 / 933
  28793. }
  28794. },
  28795. back: {
  28796. height: math.unit(1 + 3 / 12, "feet"),
  28797. weight: math.unit(80, "lb"),
  28798. name: "Back",
  28799. image: {
  28800. source: "./media/characters/zander-rose/back.svg",
  28801. extra: 903 / 779,
  28802. bottom: 31 / 934
  28803. }
  28804. },
  28805. },
  28806. [
  28807. {
  28808. name: "Normal",
  28809. height: math.unit(1 + 3 / 12, "feet"),
  28810. default: true
  28811. },
  28812. ]
  28813. ))
  28814. characterMakers.push(() => makeCharacter(
  28815. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28816. {
  28817. anthro: {
  28818. height: math.unit(6, "feet"),
  28819. weight: math.unit(150, "lb"),
  28820. name: "Anthro",
  28821. image: {
  28822. source: "./media/characters/razz/anthro.svg",
  28823. extra: 1437 / 1343,
  28824. bottom: 48 / 1485
  28825. }
  28826. },
  28827. feral: {
  28828. height: math.unit(6, "feet"),
  28829. weight: math.unit(150, "lb"),
  28830. name: "Feral",
  28831. image: {
  28832. source: "./media/characters/razz/feral.svg",
  28833. extra: 2569 / 1385,
  28834. bottom: 95 / 2664
  28835. }
  28836. },
  28837. },
  28838. [
  28839. {
  28840. name: "Normal",
  28841. height: math.unit(6, "feet"),
  28842. default: true
  28843. },
  28844. ]
  28845. ))
  28846. characterMakers.push(() => makeCharacter(
  28847. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28848. {
  28849. front: {
  28850. height: math.unit(9 + 4 / 12, "feet"),
  28851. weight: math.unit(500, "lb"),
  28852. name: "Front",
  28853. image: {
  28854. source: "./media/characters/morrigan/front.svg",
  28855. extra: 2707 / 2579,
  28856. bottom: 156 / 2863
  28857. }
  28858. },
  28859. },
  28860. [
  28861. {
  28862. name: "Normal",
  28863. height: math.unit(9 + 4 / 12, "feet"),
  28864. default: true
  28865. },
  28866. ]
  28867. ))
  28868. characterMakers.push(() => makeCharacter(
  28869. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28870. {
  28871. front: {
  28872. height: math.unit(5, "stories"),
  28873. weight: math.unit(4000, "lb"),
  28874. name: "Front",
  28875. image: {
  28876. source: "./media/characters/jenene/front.svg",
  28877. extra: 1780 / 1710,
  28878. bottom: 57 / 1837
  28879. }
  28880. },
  28881. },
  28882. [
  28883. {
  28884. name: "Normal",
  28885. height: math.unit(5, "stories"),
  28886. default: true
  28887. },
  28888. ]
  28889. ))
  28890. characterMakers.push(() => makeCharacter(
  28891. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28892. {
  28893. taurSfw: {
  28894. height: math.unit(10, "meters"),
  28895. weight: math.unit(17500, "kg"),
  28896. name: "Taur",
  28897. image: {
  28898. source: "./media/characters/faey/taur-sfw.svg",
  28899. extra: 1200 / 968,
  28900. bottom: 41 / 1241
  28901. }
  28902. },
  28903. chestmaw: {
  28904. height: math.unit(2.01, "meters"),
  28905. name: "Chestmaw",
  28906. image: {
  28907. source: "./media/characters/faey/chestmaw.svg"
  28908. }
  28909. },
  28910. foot: {
  28911. height: math.unit(2.43, "meters"),
  28912. name: "Foot",
  28913. image: {
  28914. source: "./media/characters/faey/foot.svg"
  28915. }
  28916. },
  28917. jaws: {
  28918. height: math.unit(1.66, "meters"),
  28919. name: "Jaws",
  28920. image: {
  28921. source: "./media/characters/faey/jaws.svg"
  28922. }
  28923. },
  28924. tongues: {
  28925. height: math.unit(2.01, "meters"),
  28926. name: "Tongues",
  28927. image: {
  28928. source: "./media/characters/faey/tongues.svg"
  28929. }
  28930. },
  28931. },
  28932. [
  28933. {
  28934. name: "Small",
  28935. height: math.unit(10, "meters"),
  28936. default: true
  28937. },
  28938. {
  28939. name: "Big",
  28940. height: math.unit(500000, "km")
  28941. },
  28942. ]
  28943. ))
  28944. characterMakers.push(() => makeCharacter(
  28945. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28946. {
  28947. front: {
  28948. height: math.unit(7, "feet"),
  28949. weight: math.unit(275, "lb"),
  28950. name: "Front",
  28951. image: {
  28952. source: "./media/characters/roku/front.svg",
  28953. extra: 903 / 878,
  28954. bottom: 37 / 940
  28955. }
  28956. },
  28957. },
  28958. [
  28959. {
  28960. name: "Normal",
  28961. height: math.unit(7, "feet"),
  28962. default: true
  28963. },
  28964. {
  28965. name: "Macro",
  28966. height: math.unit(500, "feet")
  28967. },
  28968. {
  28969. name: "Megamacro",
  28970. height: math.unit(200, "miles")
  28971. },
  28972. ]
  28973. ))
  28974. characterMakers.push(() => makeCharacter(
  28975. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28976. {
  28977. front: {
  28978. height: math.unit(6 + 2 / 12, "feet"),
  28979. weight: math.unit(150, "lb"),
  28980. name: "Front",
  28981. image: {
  28982. source: "./media/characters/lira/front.svg",
  28983. extra: 1727 / 1605,
  28984. bottom: 26 / 1753
  28985. }
  28986. },
  28987. back: {
  28988. height: math.unit(6 + 2 / 12, "feet"),
  28989. weight: math.unit(150, "lb"),
  28990. name: "Back",
  28991. image: {
  28992. source: "./media/characters/lira/back.svg",
  28993. extra: 1713/1621,
  28994. bottom: 20/1733
  28995. }
  28996. },
  28997. hand: {
  28998. height: math.unit(0.75, "feet"),
  28999. name: "Hand",
  29000. image: {
  29001. source: "./media/characters/lira/hand.svg"
  29002. }
  29003. },
  29004. maw: {
  29005. height: math.unit(0.65, "feet"),
  29006. name: "Maw",
  29007. image: {
  29008. source: "./media/characters/lira/maw.svg"
  29009. }
  29010. },
  29011. pawDigi: {
  29012. height: math.unit(1.6, "feet"),
  29013. name: "Paw Digi",
  29014. image: {
  29015. source: "./media/characters/lira/paw-digi.svg"
  29016. }
  29017. },
  29018. pawPlanti: {
  29019. height: math.unit(1.4, "feet"),
  29020. name: "Paw Planti",
  29021. image: {
  29022. source: "./media/characters/lira/paw-planti.svg"
  29023. }
  29024. },
  29025. },
  29026. [
  29027. {
  29028. name: "Normal",
  29029. height: math.unit(6 + 2 / 12, "feet"),
  29030. default: true
  29031. },
  29032. {
  29033. name: "Macro",
  29034. height: math.unit(100, "feet")
  29035. },
  29036. {
  29037. name: "Macro²",
  29038. height: math.unit(1600, "feet")
  29039. },
  29040. {
  29041. name: "Planetary",
  29042. height: math.unit(20, "earths")
  29043. },
  29044. ]
  29045. ))
  29046. characterMakers.push(() => makeCharacter(
  29047. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29048. {
  29049. front: {
  29050. height: math.unit(6, "feet"),
  29051. weight: math.unit(150, "lb"),
  29052. name: "Front",
  29053. image: {
  29054. source: "./media/characters/hadjet/front.svg",
  29055. extra: 1480 / 1346,
  29056. bottom: 26 / 1506
  29057. }
  29058. },
  29059. frontNsfw: {
  29060. height: math.unit(6, "feet"),
  29061. weight: math.unit(150, "lb"),
  29062. name: "Front (NSFW)",
  29063. image: {
  29064. source: "./media/characters/hadjet/front-nsfw.svg",
  29065. extra: 1440 / 1358,
  29066. bottom: 52 / 1492
  29067. }
  29068. },
  29069. },
  29070. [
  29071. {
  29072. name: "Macro",
  29073. height: math.unit(10, "stories"),
  29074. default: true
  29075. },
  29076. {
  29077. name: "Megamacro",
  29078. height: math.unit(1.5, "miles")
  29079. },
  29080. {
  29081. name: "Megamacro+",
  29082. height: math.unit(5, "miles")
  29083. },
  29084. ]
  29085. ))
  29086. characterMakers.push(() => makeCharacter(
  29087. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29088. {
  29089. side: {
  29090. height: math.unit(106, "feet"),
  29091. weight: math.unit(500, "tonnes"),
  29092. name: "Side",
  29093. image: {
  29094. source: "./media/characters/kodran/side.svg",
  29095. extra: 553 / 480,
  29096. bottom: 33 / 586
  29097. }
  29098. },
  29099. front: {
  29100. height: math.unit(132, "feet"),
  29101. weight: math.unit(500, "tonnes"),
  29102. name: "Front",
  29103. image: {
  29104. source: "./media/characters/kodran/front.svg",
  29105. extra: 667 / 643,
  29106. bottom: 42 / 709
  29107. }
  29108. },
  29109. flying: {
  29110. height: math.unit(350, "feet"),
  29111. weight: math.unit(500, "tonnes"),
  29112. name: "Flying",
  29113. image: {
  29114. source: "./media/characters/kodran/flying.svg"
  29115. }
  29116. },
  29117. foot: {
  29118. height: math.unit(33, "feet"),
  29119. name: "Foot",
  29120. image: {
  29121. source: "./media/characters/kodran/foot.svg"
  29122. }
  29123. },
  29124. footFront: {
  29125. height: math.unit(19, "feet"),
  29126. name: "Foot (Front)",
  29127. image: {
  29128. source: "./media/characters/kodran/foot-front.svg",
  29129. extra: 261 / 261,
  29130. bottom: 91 / 352
  29131. }
  29132. },
  29133. headFront: {
  29134. height: math.unit(53, "feet"),
  29135. name: "Head (Front)",
  29136. image: {
  29137. source: "./media/characters/kodran/head-front.svg"
  29138. }
  29139. },
  29140. headSide: {
  29141. height: math.unit(65, "feet"),
  29142. name: "Head (Side)",
  29143. image: {
  29144. source: "./media/characters/kodran/head-side.svg"
  29145. }
  29146. },
  29147. throat: {
  29148. height: math.unit(79, "feet"),
  29149. name: "Throat",
  29150. image: {
  29151. source: "./media/characters/kodran/throat.svg"
  29152. }
  29153. },
  29154. },
  29155. [
  29156. {
  29157. name: "Large",
  29158. height: math.unit(106, "feet"),
  29159. default: true
  29160. },
  29161. ]
  29162. ))
  29163. characterMakers.push(() => makeCharacter(
  29164. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29165. {
  29166. side: {
  29167. height: math.unit(11, "feet"),
  29168. weight: math.unit(150, "lb"),
  29169. name: "Side",
  29170. image: {
  29171. source: "./media/characters/pyxaron/side.svg",
  29172. extra: 305 / 195,
  29173. bottom: 17 / 322
  29174. }
  29175. },
  29176. },
  29177. [
  29178. {
  29179. name: "Normal",
  29180. height: math.unit(11, "feet"),
  29181. default: true
  29182. },
  29183. ]
  29184. ))
  29185. characterMakers.push(() => makeCharacter(
  29186. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29187. {
  29188. front: {
  29189. height: math.unit(6, "feet"),
  29190. weight: math.unit(150, "lb"),
  29191. name: "Front",
  29192. image: {
  29193. source: "./media/characters/meep/front.svg",
  29194. extra: 88 / 80,
  29195. bottom: 6 / 94
  29196. }
  29197. },
  29198. },
  29199. [
  29200. {
  29201. name: "Fun Sized",
  29202. height: math.unit(2, "inches"),
  29203. default: true
  29204. },
  29205. {
  29206. name: "Friend Sized",
  29207. height: math.unit(8, "inches")
  29208. },
  29209. ]
  29210. ))
  29211. characterMakers.push(() => makeCharacter(
  29212. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29213. {
  29214. front: {
  29215. height: math.unit(15, "feet"),
  29216. weight: math.unit(2500, "lb"),
  29217. name: "Front",
  29218. image: {
  29219. source: "./media/characters/holly-rabbit/front.svg",
  29220. extra: 1433 / 1233,
  29221. bottom: 125 / 1558
  29222. }
  29223. },
  29224. dick: {
  29225. height: math.unit(4.6, "feet"),
  29226. name: "Dick",
  29227. image: {
  29228. source: "./media/characters/holly-rabbit/dick.svg"
  29229. }
  29230. },
  29231. },
  29232. [
  29233. {
  29234. name: "Normal",
  29235. height: math.unit(15, "feet"),
  29236. default: true
  29237. },
  29238. {
  29239. name: "Macro",
  29240. height: math.unit(250, "feet")
  29241. },
  29242. {
  29243. name: "Macro+",
  29244. height: math.unit(2500, "feet")
  29245. },
  29246. ]
  29247. ))
  29248. characterMakers.push(() => makeCharacter(
  29249. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29250. {
  29251. front: {
  29252. height: math.unit(3.02, "meters"),
  29253. weight: math.unit(500, "kg"),
  29254. name: "Front",
  29255. image: {
  29256. source: "./media/characters/drena/front.svg",
  29257. extra: 282 / 243,
  29258. bottom: 8 / 290
  29259. }
  29260. },
  29261. side: {
  29262. height: math.unit(3.02, "meters"),
  29263. weight: math.unit(500, "kg"),
  29264. name: "Side",
  29265. image: {
  29266. source: "./media/characters/drena/side.svg",
  29267. extra: 280 / 245,
  29268. bottom: 10 / 290
  29269. }
  29270. },
  29271. back: {
  29272. height: math.unit(3.02, "meters"),
  29273. weight: math.unit(500, "kg"),
  29274. name: "Back",
  29275. image: {
  29276. source: "./media/characters/drena/back.svg",
  29277. extra: 278 / 243,
  29278. bottom: 2 / 280
  29279. }
  29280. },
  29281. foot: {
  29282. height: math.unit(0.75, "meters"),
  29283. name: "Foot",
  29284. image: {
  29285. source: "./media/characters/drena/foot.svg"
  29286. }
  29287. },
  29288. maw: {
  29289. height: math.unit(0.82, "meters"),
  29290. name: "Maw",
  29291. image: {
  29292. source: "./media/characters/drena/maw.svg"
  29293. }
  29294. },
  29295. eating: {
  29296. height: math.unit(0.75, "meters"),
  29297. name: "Eating",
  29298. image: {
  29299. source: "./media/characters/drena/eating.svg"
  29300. }
  29301. },
  29302. rump: {
  29303. height: math.unit(0.93, "meters"),
  29304. name: "Rump",
  29305. image: {
  29306. source: "./media/characters/drena/rump.svg"
  29307. }
  29308. },
  29309. },
  29310. [
  29311. {
  29312. name: "Normal",
  29313. height: math.unit(3.02, "meters"),
  29314. default: true
  29315. },
  29316. ]
  29317. ))
  29318. characterMakers.push(() => makeCharacter(
  29319. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29320. {
  29321. front: {
  29322. height: math.unit(6 + 4 / 12, "feet"),
  29323. weight: math.unit(250, "lb"),
  29324. name: "Front",
  29325. image: {
  29326. source: "./media/characters/remmyzilla/front.svg",
  29327. extra: 4033 / 3588,
  29328. bottom: 123 / 4156
  29329. }
  29330. },
  29331. back: {
  29332. height: math.unit(6 + 4 / 12, "feet"),
  29333. weight: math.unit(250, "lb"),
  29334. name: "Back",
  29335. image: {
  29336. source: "./media/characters/remmyzilla/back.svg",
  29337. extra: 2687 / 2555,
  29338. bottom: 48 / 2735
  29339. }
  29340. },
  29341. paw: {
  29342. height: math.unit(1.73, "feet"),
  29343. name: "Paw",
  29344. image: {
  29345. source: "./media/characters/remmyzilla/paw.svg"
  29346. }
  29347. },
  29348. maw: {
  29349. height: math.unit(1.73, "feet"),
  29350. name: "Maw",
  29351. image: {
  29352. source: "./media/characters/remmyzilla/maw.svg"
  29353. }
  29354. },
  29355. },
  29356. [
  29357. {
  29358. name: "Normal",
  29359. height: math.unit(6 + 4 / 12, "feet")
  29360. },
  29361. {
  29362. name: "Minimacro",
  29363. height: math.unit(12 + 8 / 12, "feet")
  29364. },
  29365. {
  29366. name: "Normal",
  29367. height: math.unit(640, "feet"),
  29368. default: true
  29369. },
  29370. {
  29371. name: "Megamacro",
  29372. height: math.unit(6400, "feet")
  29373. },
  29374. {
  29375. name: "Gigamacro",
  29376. height: math.unit(64000, "miles")
  29377. },
  29378. ]
  29379. ))
  29380. characterMakers.push(() => makeCharacter(
  29381. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29382. {
  29383. front: {
  29384. height: math.unit(2.5, "meters"),
  29385. weight: math.unit(300, "lb"),
  29386. name: "Front",
  29387. image: {
  29388. source: "./media/characters/lawrence/front.svg",
  29389. extra: 357 / 335,
  29390. bottom: 30 / 387
  29391. }
  29392. },
  29393. back: {
  29394. height: math.unit(2.5, "meters"),
  29395. weight: math.unit(300, "lb"),
  29396. name: "Back",
  29397. image: {
  29398. source: "./media/characters/lawrence/back.svg",
  29399. extra: 357 / 338,
  29400. bottom: 16 / 373
  29401. }
  29402. },
  29403. head: {
  29404. height: math.unit(0.9, "meter"),
  29405. name: "Head",
  29406. image: {
  29407. source: "./media/characters/lawrence/head.svg"
  29408. }
  29409. },
  29410. maw: {
  29411. height: math.unit(0.7, "meter"),
  29412. name: "Maw",
  29413. image: {
  29414. source: "./media/characters/lawrence/maw.svg"
  29415. }
  29416. },
  29417. footBottom: {
  29418. height: math.unit(0.5, "meter"),
  29419. name: "Foot (Bottom)",
  29420. image: {
  29421. source: "./media/characters/lawrence/foot-bottom.svg"
  29422. }
  29423. },
  29424. footTop: {
  29425. height: math.unit(0.5, "meter"),
  29426. name: "Foot (Top)",
  29427. image: {
  29428. source: "./media/characters/lawrence/foot-top.svg"
  29429. }
  29430. },
  29431. },
  29432. [
  29433. {
  29434. name: "Normal",
  29435. height: math.unit(2.5, "meters"),
  29436. default: true
  29437. },
  29438. {
  29439. name: "Macro",
  29440. height: math.unit(95, "meters")
  29441. },
  29442. {
  29443. name: "Megamacro",
  29444. height: math.unit(150, "km")
  29445. },
  29446. ]
  29447. ))
  29448. characterMakers.push(() => makeCharacter(
  29449. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29450. {
  29451. front: {
  29452. height: math.unit(4.2, "meters"),
  29453. name: "Front",
  29454. image: {
  29455. source: "./media/characters/sydney/front.svg",
  29456. extra: 1323 / 1277,
  29457. bottom: 111 / 1434
  29458. }
  29459. },
  29460. },
  29461. [
  29462. {
  29463. name: "Normal",
  29464. height: math.unit(4.2, "meters"),
  29465. default: true
  29466. },
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29471. {
  29472. back: {
  29473. height: math.unit(201, "feet"),
  29474. name: "Back",
  29475. image: {
  29476. source: "./media/characters/jessica/back.svg",
  29477. extra: 273 / 259,
  29478. bottom: 7 / 280
  29479. }
  29480. },
  29481. },
  29482. [
  29483. {
  29484. name: "Normal",
  29485. height: math.unit(201, "feet"),
  29486. default: true
  29487. },
  29488. {
  29489. name: "Megamacro",
  29490. height: math.unit(8, "miles")
  29491. },
  29492. ]
  29493. ))
  29494. characterMakers.push(() => makeCharacter(
  29495. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29496. {
  29497. side: {
  29498. height: math.unit(5.6, "m"),
  29499. weight: math.unit(8000, "kg"),
  29500. name: "Side",
  29501. image: {
  29502. source: "./media/characters/victoria/side.svg",
  29503. extra: 1542/1229,
  29504. bottom: 124/1666
  29505. }
  29506. },
  29507. maw: {
  29508. height: math.unit(7.14, "feet"),
  29509. name: "Maw",
  29510. image: {
  29511. source: "./media/characters/victoria/maw.svg"
  29512. }
  29513. },
  29514. },
  29515. [
  29516. {
  29517. name: "Normal",
  29518. height: math.unit(5.6, "m"),
  29519. default: true
  29520. },
  29521. ]
  29522. ))
  29523. characterMakers.push(() => makeCharacter(
  29524. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29525. {
  29526. front: {
  29527. height: math.unit(5 + 6 / 12, "feet"),
  29528. name: "Front",
  29529. image: {
  29530. source: "./media/characters/cat/front.svg",
  29531. extra: 1449/1295,
  29532. bottom: 34/1483
  29533. },
  29534. form: "cat",
  29535. default: true
  29536. },
  29537. back: {
  29538. height: math.unit(5 + 6 / 12, "feet"),
  29539. name: "Back",
  29540. image: {
  29541. source: "./media/characters/cat/back.svg",
  29542. extra: 1466/1301,
  29543. bottom: 19/1485
  29544. },
  29545. form: "cat"
  29546. },
  29547. taur: {
  29548. height: math.unit(7, "feet"),
  29549. name: "Taur",
  29550. image: {
  29551. source: "./media/characters/cat/taur.svg",
  29552. extra: 1389/1233,
  29553. bottom: 83/1472
  29554. },
  29555. form: "taur",
  29556. default: true
  29557. },
  29558. lucarioFront: {
  29559. height: math.unit(4, "feet"),
  29560. name: "Lucario (Front)",
  29561. image: {
  29562. source: "./media/characters/cat/lucario-front.svg",
  29563. extra: 1149/1019,
  29564. bottom: 84/1233
  29565. },
  29566. form: "lucario",
  29567. default: true
  29568. },
  29569. lucarioBack: {
  29570. height: math.unit(4, "feet"),
  29571. name: "Lucario (Back)",
  29572. image: {
  29573. source: "./media/characters/cat/lucario-back.svg",
  29574. extra: 1190/1059,
  29575. bottom: 33/1223
  29576. },
  29577. form: "lucario"
  29578. },
  29579. megaLucario: {
  29580. height: math.unit(4, "feet"),
  29581. name: "Mega Lucario",
  29582. image: {
  29583. source: "./media/characters/cat/mega-lucario.svg",
  29584. extra: 1515 / 1319,
  29585. bottom: 63 / 1578
  29586. },
  29587. form: "lucario"
  29588. },
  29589. nickit: {
  29590. height: math.unit(2, "feet"),
  29591. name: "Nickit",
  29592. image: {
  29593. source: "./media/characters/cat/nickit.svg",
  29594. extra: 1980 / 1585,
  29595. bottom: 102 / 2082
  29596. },
  29597. form: "nickit",
  29598. default: true
  29599. },
  29600. lopunnyFront: {
  29601. height: math.unit(5, "feet"),
  29602. name: "Lopunny (Front)",
  29603. image: {
  29604. source: "./media/characters/cat/lopunny-front.svg",
  29605. extra: 1782 / 1469,
  29606. bottom: 38 / 1820
  29607. },
  29608. form: "lopunny",
  29609. default: true
  29610. },
  29611. lopunnyBack: {
  29612. height: math.unit(5, "feet"),
  29613. name: "Lopunny (Back)",
  29614. image: {
  29615. source: "./media/characters/cat/lopunny-back.svg",
  29616. extra: 1660 / 1490,
  29617. bottom: 25 / 1685
  29618. },
  29619. form: "lopunny"
  29620. },
  29621. },
  29622. [
  29623. {
  29624. name: "Really small",
  29625. height: math.unit(1, "nm")
  29626. },
  29627. {
  29628. name: "Micro",
  29629. height: math.unit(5, "inches")
  29630. },
  29631. {
  29632. name: "Normal",
  29633. height: math.unit(5 + 6 / 12, "feet"),
  29634. default: true
  29635. },
  29636. {
  29637. name: "Macro",
  29638. height: math.unit(50, "feet")
  29639. },
  29640. {
  29641. name: "Macro+",
  29642. height: math.unit(150, "feet")
  29643. },
  29644. {
  29645. name: "Megamacro",
  29646. height: math.unit(100, "miles")
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29652. {
  29653. front: {
  29654. height: math.unit(63.4, "meters"),
  29655. weight: math.unit(3.28349e+6, "kilograms"),
  29656. name: "Front",
  29657. image: {
  29658. source: "./media/characters/kirina-violet/front.svg",
  29659. extra: 2812 / 2725,
  29660. bottom: 0 / 2812
  29661. }
  29662. },
  29663. back: {
  29664. height: math.unit(63.4, "meters"),
  29665. weight: math.unit(3.28349e+6, "kilograms"),
  29666. name: "Back",
  29667. image: {
  29668. source: "./media/characters/kirina-violet/back.svg",
  29669. extra: 2812 / 2725,
  29670. bottom: 0 / 2812
  29671. }
  29672. },
  29673. mouth: {
  29674. height: math.unit(4.35, "meters"),
  29675. name: "Mouth",
  29676. image: {
  29677. source: "./media/characters/kirina-violet/mouth.svg"
  29678. }
  29679. },
  29680. paw: {
  29681. height: math.unit(5.6, "meters"),
  29682. name: "Paw",
  29683. image: {
  29684. source: "./media/characters/kirina-violet/paw.svg"
  29685. }
  29686. },
  29687. tail: {
  29688. height: math.unit(18, "meters"),
  29689. name: "Tail",
  29690. image: {
  29691. source: "./media/characters/kirina-violet/tail.svg"
  29692. }
  29693. },
  29694. },
  29695. [
  29696. {
  29697. name: "Macro",
  29698. height: math.unit(63.4, "meters"),
  29699. default: true
  29700. },
  29701. ]
  29702. ))
  29703. characterMakers.push(() => makeCharacter(
  29704. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29705. {
  29706. front: {
  29707. height: math.unit(75, "feet"),
  29708. name: "Front",
  29709. image: {
  29710. source: "./media/characters/cat-gigachu/front.svg",
  29711. extra: 1239/1027,
  29712. bottom: 32/1271
  29713. }
  29714. },
  29715. back: {
  29716. height: math.unit(75, "feet"),
  29717. name: "Back",
  29718. image: {
  29719. source: "./media/characters/cat-gigachu/back.svg",
  29720. extra: 1229/1030,
  29721. bottom: 9/1238
  29722. }
  29723. },
  29724. },
  29725. [
  29726. {
  29727. name: "Dynamax",
  29728. height: math.unit(75, "feet"),
  29729. default: true
  29730. },
  29731. ]
  29732. ))
  29733. characterMakers.push(() => makeCharacter(
  29734. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29735. {
  29736. front: {
  29737. height: math.unit(6, "feet"),
  29738. weight: math.unit(150, "lb"),
  29739. name: "Front",
  29740. image: {
  29741. source: "./media/characters/sfaiyan/front.svg",
  29742. extra: 999 / 978,
  29743. bottom: 5 / 1004
  29744. }
  29745. },
  29746. },
  29747. [
  29748. {
  29749. name: "Normal",
  29750. height: math.unit(1.82, "meters")
  29751. },
  29752. {
  29753. name: "Giant",
  29754. height: math.unit(2.27, "km"),
  29755. default: true
  29756. },
  29757. ]
  29758. ))
  29759. characterMakers.push(() => makeCharacter(
  29760. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29761. {
  29762. front: {
  29763. height: math.unit(179, "cm"),
  29764. weight: math.unit(100, "kg"),
  29765. name: "Front",
  29766. image: {
  29767. source: "./media/characters/raunehkeli/front.svg",
  29768. extra: 1934 / 1926,
  29769. bottom: 0 / 1934
  29770. }
  29771. },
  29772. },
  29773. [
  29774. {
  29775. name: "Normal",
  29776. height: math.unit(179, "cm")
  29777. },
  29778. {
  29779. name: "Maximum",
  29780. height: math.unit(575, "meters"),
  29781. default: true
  29782. },
  29783. ]
  29784. ))
  29785. characterMakers.push(() => makeCharacter(
  29786. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29787. {
  29788. front: {
  29789. height: math.unit(6, "feet"),
  29790. weight: math.unit(150, "lb"),
  29791. name: "Front",
  29792. image: {
  29793. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29794. extra: 2625 / 2518,
  29795. bottom: 60 / 2685
  29796. }
  29797. },
  29798. },
  29799. [
  29800. {
  29801. name: "Normal",
  29802. height: math.unit(6 + 2 / 12, "feet")
  29803. },
  29804. {
  29805. name: "Macro",
  29806. height: math.unit(1180, "feet"),
  29807. default: true
  29808. },
  29809. ]
  29810. ))
  29811. characterMakers.push(() => makeCharacter(
  29812. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29813. {
  29814. front: {
  29815. height: math.unit(5 + 6 / 12, "feet"),
  29816. weight: math.unit(108, "lb"),
  29817. name: "Front",
  29818. image: {
  29819. source: "./media/characters/lilith-zott/front.svg",
  29820. extra: 2510 / 2238,
  29821. bottom: 100 / 2610
  29822. }
  29823. },
  29824. frontDressed: {
  29825. height: math.unit(5 + 6 / 12, "feet"),
  29826. weight: math.unit(108, "lb"),
  29827. name: "Front (Dressed)",
  29828. image: {
  29829. source: "./media/characters/lilith-zott/front-dressed.svg",
  29830. extra: 2510 / 2238,
  29831. bottom: 100 / 2610
  29832. }
  29833. },
  29834. },
  29835. [
  29836. {
  29837. name: "Normal",
  29838. height: math.unit(5 + 6 / 12, "feet")
  29839. },
  29840. {
  29841. name: "Macro",
  29842. height: math.unit(1030, "feet"),
  29843. default: true
  29844. },
  29845. ]
  29846. ))
  29847. characterMakers.push(() => makeCharacter(
  29848. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29849. {
  29850. front: {
  29851. height: math.unit(6, "feet"),
  29852. weight: math.unit(150, "lb"),
  29853. name: "Front",
  29854. image: {
  29855. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29856. extra: 2567 / 2435,
  29857. bottom: 39 / 2606
  29858. }
  29859. },
  29860. frontSuper: {
  29861. height: math.unit(6, "feet"),
  29862. name: "Front (Super)",
  29863. image: {
  29864. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29865. extra: 2567 / 2435,
  29866. bottom: 39 / 2606
  29867. }
  29868. },
  29869. },
  29870. [
  29871. {
  29872. name: "Normal",
  29873. height: math.unit(5 + 10 / 12, "feet")
  29874. },
  29875. {
  29876. name: "Macro",
  29877. height: math.unit(1100, "feet"),
  29878. default: true
  29879. },
  29880. ]
  29881. ))
  29882. characterMakers.push(() => makeCharacter(
  29883. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29884. {
  29885. front: {
  29886. height: math.unit(100, "miles"),
  29887. name: "Front",
  29888. image: {
  29889. source: "./media/characters/sona/front.svg",
  29890. extra: 2433 / 2201,
  29891. bottom: 53 / 2486
  29892. }
  29893. },
  29894. foot: {
  29895. height: math.unit(16.1, "miles"),
  29896. name: "Foot",
  29897. image: {
  29898. source: "./media/characters/sona/foot.svg"
  29899. }
  29900. },
  29901. },
  29902. [
  29903. {
  29904. name: "Macro",
  29905. height: math.unit(100, "miles"),
  29906. default: true
  29907. },
  29908. ]
  29909. ))
  29910. characterMakers.push(() => makeCharacter(
  29911. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29912. {
  29913. front: {
  29914. height: math.unit(6, "feet"),
  29915. weight: math.unit(150, "lb"),
  29916. name: "Front",
  29917. image: {
  29918. source: "./media/characters/bailey/front.svg",
  29919. extra: 1778 / 1724,
  29920. bottom: 30 / 1808
  29921. }
  29922. },
  29923. },
  29924. [
  29925. {
  29926. name: "Micro",
  29927. height: math.unit(4, "inches")
  29928. },
  29929. {
  29930. name: "Normal",
  29931. height: math.unit(5 + 5 / 12, "feet"),
  29932. default: true
  29933. },
  29934. {
  29935. name: "Macro",
  29936. height: math.unit(250, "feet")
  29937. },
  29938. {
  29939. name: "Megamacro",
  29940. height: math.unit(100, "miles")
  29941. },
  29942. ]
  29943. ))
  29944. characterMakers.push(() => makeCharacter(
  29945. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29946. {
  29947. front: {
  29948. height: math.unit(5 + 2 / 12, "feet"),
  29949. weight: math.unit(120, "lb"),
  29950. name: "Front",
  29951. image: {
  29952. source: "./media/characters/snaps/front.svg",
  29953. extra: 2370 / 2177,
  29954. bottom: 48 / 2418
  29955. }
  29956. },
  29957. back: {
  29958. height: math.unit(5 + 2 / 12, "feet"),
  29959. weight: math.unit(120, "lb"),
  29960. name: "Back",
  29961. image: {
  29962. source: "./media/characters/snaps/back.svg",
  29963. extra: 2408 / 2258,
  29964. bottom: 15 / 2423
  29965. }
  29966. },
  29967. },
  29968. [
  29969. {
  29970. name: "Micro",
  29971. height: math.unit(9, "inches")
  29972. },
  29973. {
  29974. name: "Normal",
  29975. height: math.unit(5 + 2 / 12, "feet"),
  29976. default: true
  29977. },
  29978. {
  29979. name: "Mini Macro",
  29980. height: math.unit(10, "feet")
  29981. },
  29982. ]
  29983. ))
  29984. characterMakers.push(() => makeCharacter(
  29985. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29986. {
  29987. front: {
  29988. height: math.unit(1.8, "meters"),
  29989. weight: math.unit(85, "kg"),
  29990. name: "Front",
  29991. image: {
  29992. source: "./media/characters/azteck/front.svg",
  29993. extra: 2815 / 2625,
  29994. bottom: 89 / 2904
  29995. }
  29996. },
  29997. back: {
  29998. height: math.unit(1.8, "meters"),
  29999. weight: math.unit(85, "kg"),
  30000. name: "Back",
  30001. image: {
  30002. source: "./media/characters/azteck/back.svg",
  30003. extra: 2856 / 2648,
  30004. bottom: 85 / 2941
  30005. }
  30006. },
  30007. frontDressed: {
  30008. height: math.unit(1.8, "meters"),
  30009. weight: math.unit(85, "kg"),
  30010. name: "Front (Dressed)",
  30011. image: {
  30012. source: "./media/characters/azteck/front-dressed.svg",
  30013. extra: 2147 / 2003,
  30014. bottom: 68 / 2215
  30015. }
  30016. },
  30017. head: {
  30018. height: math.unit(0.47, "meters"),
  30019. weight: math.unit(85, "kg"),
  30020. name: "Head",
  30021. image: {
  30022. source: "./media/characters/azteck/head.svg"
  30023. }
  30024. },
  30025. },
  30026. [
  30027. {
  30028. name: "Bite sized",
  30029. height: math.unit(16, "cm")
  30030. },
  30031. {
  30032. name: "Normal",
  30033. height: math.unit(1.8, "meters"),
  30034. default: true
  30035. },
  30036. ]
  30037. ))
  30038. characterMakers.push(() => makeCharacter(
  30039. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30040. {
  30041. front: {
  30042. height: math.unit(6, "feet"),
  30043. weight: math.unit(150, "lb"),
  30044. name: "Front",
  30045. image: {
  30046. source: "./media/characters/pidge/front.svg",
  30047. extra: 620 / 588,
  30048. bottom: 9 / 629
  30049. }
  30050. },
  30051. back: {
  30052. height: math.unit(6, "feet"),
  30053. weight: math.unit(150, "lb"),
  30054. name: "Back",
  30055. image: {
  30056. source: "./media/characters/pidge/back.svg",
  30057. extra: 620 / 588,
  30058. bottom: 9 / 629
  30059. }
  30060. },
  30061. },
  30062. [
  30063. {
  30064. name: "Macro",
  30065. height: math.unit(1, "mile"),
  30066. default: true
  30067. },
  30068. ]
  30069. ))
  30070. characterMakers.push(() => makeCharacter(
  30071. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30072. {
  30073. front: {
  30074. height: math.unit(6, "feet"),
  30075. weight: math.unit(150, "lb"),
  30076. name: "Front",
  30077. image: {
  30078. source: "./media/characters/en/front.svg",
  30079. extra: 1697 / 1563,
  30080. bottom: 103 / 1800
  30081. }
  30082. },
  30083. back: {
  30084. height: math.unit(6, "feet"),
  30085. weight: math.unit(150, "lb"),
  30086. name: "Back",
  30087. image: {
  30088. source: "./media/characters/en/back.svg",
  30089. extra: 1700 / 1570,
  30090. bottom: 51 / 1751
  30091. }
  30092. },
  30093. frontDressed: {
  30094. height: math.unit(6, "feet"),
  30095. weight: math.unit(150, "lb"),
  30096. name: "Front (Dressed)",
  30097. image: {
  30098. source: "./media/characters/en/front-dressed.svg",
  30099. extra: 1697 / 1563,
  30100. bottom: 103 / 1800
  30101. }
  30102. },
  30103. backDressed: {
  30104. height: math.unit(6, "feet"),
  30105. weight: math.unit(150, "lb"),
  30106. name: "Back (Dressed)",
  30107. image: {
  30108. source: "./media/characters/en/back-dressed.svg",
  30109. extra: 1700 / 1570,
  30110. bottom: 51 / 1751
  30111. }
  30112. },
  30113. },
  30114. [
  30115. {
  30116. name: "Macro",
  30117. height: math.unit(210, "feet"),
  30118. default: true
  30119. },
  30120. ]
  30121. ))
  30122. characterMakers.push(() => makeCharacter(
  30123. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30124. {
  30125. front: {
  30126. height: math.unit(6, "feet"),
  30127. weight: math.unit(150, "lb"),
  30128. name: "Front",
  30129. image: {
  30130. source: "./media/characters/haze-orris/front.svg",
  30131. extra: 3975 / 3525,
  30132. bottom: 137 / 4112
  30133. }
  30134. },
  30135. },
  30136. [
  30137. {
  30138. name: "Micro",
  30139. height: math.unit(150, "mm"),
  30140. default: true
  30141. },
  30142. ]
  30143. ))
  30144. characterMakers.push(() => makeCharacter(
  30145. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30146. {
  30147. front: {
  30148. height: math.unit(6, "feet"),
  30149. weight: math.unit(150, "lb"),
  30150. name: "Front",
  30151. image: {
  30152. source: "./media/characters/casselene-yaro/front.svg",
  30153. extra: 4721 / 4541,
  30154. bottom: 82 / 4803
  30155. }
  30156. },
  30157. back: {
  30158. height: math.unit(6, "feet"),
  30159. weight: math.unit(150, "lb"),
  30160. name: "Back",
  30161. image: {
  30162. source: "./media/characters/casselene-yaro/back.svg",
  30163. extra: 4569 / 4377,
  30164. bottom: 69 / 4638
  30165. }
  30166. },
  30167. frontDressed: {
  30168. height: math.unit(6, "feet"),
  30169. weight: math.unit(150, "lb"),
  30170. name: "Front-dressed",
  30171. image: {
  30172. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30173. extra: 4721 / 4541,
  30174. bottom: 82 / 4803
  30175. }
  30176. },
  30177. },
  30178. [
  30179. {
  30180. name: "Macro",
  30181. height: math.unit(190, "feet"),
  30182. default: true
  30183. },
  30184. ]
  30185. ))
  30186. characterMakers.push(() => makeCharacter(
  30187. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30188. {
  30189. front: {
  30190. height: math.unit(6, "feet"),
  30191. weight: math.unit(150, "lb"),
  30192. name: "Front",
  30193. image: {
  30194. source: "./media/characters/myra-rue-delore/front.svg",
  30195. extra: 1340 / 1308,
  30196. bottom: 67 / 1407
  30197. }
  30198. },
  30199. back: {
  30200. height: math.unit(6, "feet"),
  30201. weight: math.unit(150, "lb"),
  30202. name: "Back",
  30203. image: {
  30204. source: "./media/characters/myra-rue-delore/back.svg",
  30205. extra: 1341 / 1310,
  30206. bottom: 40 / 1381
  30207. }
  30208. },
  30209. frontDressed: {
  30210. height: math.unit(6, "feet"),
  30211. weight: math.unit(150, "lb"),
  30212. name: "Front (Dressed)",
  30213. image: {
  30214. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30215. extra: 1340 / 1308,
  30216. bottom: 67 / 1407
  30217. }
  30218. },
  30219. },
  30220. [
  30221. {
  30222. name: "Macro",
  30223. height: math.unit(150, "feet"),
  30224. default: true
  30225. },
  30226. ]
  30227. ))
  30228. characterMakers.push(() => makeCharacter(
  30229. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30230. {
  30231. front: {
  30232. height: math.unit(10, "feet"),
  30233. weight: math.unit(15015, "lb"),
  30234. name: "Front",
  30235. image: {
  30236. source: "./media/characters/fem!plat/front.svg",
  30237. extra: 2799 / 2604,
  30238. bottom: 149 / 2948
  30239. }
  30240. },
  30241. },
  30242. [
  30243. {
  30244. name: "Normal",
  30245. height: math.unit(10, "feet"),
  30246. default: true
  30247. },
  30248. {
  30249. name: "Macro",
  30250. height: math.unit(100, "feet")
  30251. },
  30252. {
  30253. name: "Megamacro",
  30254. height: math.unit(1000, "feet")
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(15 + 5 / 12, "feet"),
  30263. weight: math.unit(4600, "lb"),
  30264. name: "Front",
  30265. image: {
  30266. source: "./media/characters/neapolitan-ananassa/front.svg",
  30267. extra: 2903 / 2736,
  30268. bottom: 0 / 2903
  30269. }
  30270. },
  30271. side: {
  30272. height: math.unit(15 + 5 / 12, "feet"),
  30273. weight: math.unit(4600, "lb"),
  30274. name: "Side",
  30275. image: {
  30276. source: "./media/characters/neapolitan-ananassa/side.svg",
  30277. extra: 2925 / 2719,
  30278. bottom: 0 / 2925
  30279. }
  30280. },
  30281. back: {
  30282. height: math.unit(15 + 5 / 12, "feet"),
  30283. weight: math.unit(4600, "lb"),
  30284. name: "Back",
  30285. image: {
  30286. source: "./media/characters/neapolitan-ananassa/back.svg",
  30287. extra: 2903 / 2736,
  30288. bottom: 0 / 2903
  30289. }
  30290. },
  30291. },
  30292. [
  30293. {
  30294. name: "Normal",
  30295. height: math.unit(15 + 5 / 12, "feet"),
  30296. default: true
  30297. },
  30298. {
  30299. name: "Post-Millenium",
  30300. height: math.unit(35 + 5 / 12, "feet")
  30301. },
  30302. {
  30303. name: "Post-Era",
  30304. height: math.unit(450 + 5 / 12, "feet")
  30305. },
  30306. ]
  30307. ))
  30308. characterMakers.push(() => makeCharacter(
  30309. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30310. {
  30311. front: {
  30312. height: math.unit(300, "meters"),
  30313. weight: math.unit(125000, "tonnes"),
  30314. name: "Front",
  30315. image: {
  30316. source: "./media/characters/pazuzu/front.svg",
  30317. extra: 877 / 794,
  30318. bottom: 47 / 924
  30319. }
  30320. },
  30321. },
  30322. [
  30323. {
  30324. name: "Macro",
  30325. height: math.unit(300, "meters"),
  30326. default: true
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30332. {
  30333. side: {
  30334. height: math.unit(10 + 7 / 12, "feet"),
  30335. weight: math.unit(2.5, "tons"),
  30336. name: "Side",
  30337. image: {
  30338. source: "./media/characters/aasha/side.svg",
  30339. extra: 1345 / 1245,
  30340. bottom: 111 / 1456
  30341. }
  30342. },
  30343. back: {
  30344. height: math.unit(10 + 7 / 12, "feet"),
  30345. weight: math.unit(2.5, "tons"),
  30346. name: "Back",
  30347. image: {
  30348. source: "./media/characters/aasha/back.svg",
  30349. extra: 1133 / 1057,
  30350. bottom: 257 / 1390
  30351. }
  30352. },
  30353. },
  30354. [
  30355. {
  30356. name: "Normal",
  30357. height: math.unit(10 + 7 / 12, "feet"),
  30358. default: true
  30359. },
  30360. ]
  30361. ))
  30362. characterMakers.push(() => makeCharacter(
  30363. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30364. {
  30365. front: {
  30366. height: math.unit(6 + 3 / 12, "feet"),
  30367. name: "Front",
  30368. image: {
  30369. source: "./media/characters/nevan/front.svg",
  30370. extra: 704 / 704,
  30371. bottom: 28 / 732
  30372. }
  30373. },
  30374. back: {
  30375. height: math.unit(6 + 3 / 12, "feet"),
  30376. name: "Back",
  30377. image: {
  30378. source: "./media/characters/nevan/back.svg",
  30379. extra: 714 / 714,
  30380. bottom: 21 / 735
  30381. }
  30382. },
  30383. frontFlaccid: {
  30384. height: math.unit(6 + 3 / 12, "feet"),
  30385. name: "Front (Flaccid)",
  30386. image: {
  30387. source: "./media/characters/nevan/front-flaccid.svg",
  30388. extra: 704 / 704,
  30389. bottom: 28 / 732
  30390. }
  30391. },
  30392. frontErect: {
  30393. height: math.unit(6 + 3 / 12, "feet"),
  30394. name: "Front (Erect)",
  30395. image: {
  30396. source: "./media/characters/nevan/front-erect.svg",
  30397. extra: 704 / 704,
  30398. bottom: 28 / 732
  30399. }
  30400. },
  30401. backFlaccid: {
  30402. height: math.unit(6 + 3 / 12, "feet"),
  30403. name: "Back (Flaccid)",
  30404. image: {
  30405. source: "./media/characters/nevan/back-flaccid.svg",
  30406. extra: 714 / 714,
  30407. bottom: 21 / 735
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Normal",
  30414. height: math.unit(6 + 3 / 12, "feet"),
  30415. default: true
  30416. },
  30417. ]
  30418. ))
  30419. characterMakers.push(() => makeCharacter(
  30420. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30421. {
  30422. front: {
  30423. height: math.unit(4, "feet"),
  30424. name: "Front",
  30425. image: {
  30426. source: "./media/characters/arhan/front.svg",
  30427. extra: 3368 / 3133,
  30428. bottom: 0 / 3368
  30429. }
  30430. },
  30431. side: {
  30432. height: math.unit(4, "feet"),
  30433. name: "Side",
  30434. image: {
  30435. source: "./media/characters/arhan/side.svg",
  30436. extra: 3347 / 3105,
  30437. bottom: 0 / 3347
  30438. }
  30439. },
  30440. tongue: {
  30441. height: math.unit(1.42, "feet"),
  30442. name: "Tongue",
  30443. image: {
  30444. source: "./media/characters/arhan/tongue.svg"
  30445. }
  30446. },
  30447. head: {
  30448. height: math.unit(0.85, "feet"),
  30449. name: "Head",
  30450. image: {
  30451. source: "./media/characters/arhan/head.svg"
  30452. }
  30453. },
  30454. },
  30455. [
  30456. {
  30457. name: "Normal",
  30458. height: math.unit(4, "feet"),
  30459. default: true
  30460. },
  30461. ]
  30462. ))
  30463. characterMakers.push(() => makeCharacter(
  30464. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30465. {
  30466. front: {
  30467. height: math.unit(5 + 7.5 / 12, "feet"),
  30468. weight: math.unit(120, "lb"),
  30469. name: "Front",
  30470. image: {
  30471. source: "./media/characters/digi-duncan/front.svg",
  30472. extra: 330 / 326,
  30473. bottom: 16 / 346
  30474. }
  30475. },
  30476. side: {
  30477. height: math.unit(5 + 7.5 / 12, "feet"),
  30478. weight: math.unit(120, "lb"),
  30479. name: "Side",
  30480. image: {
  30481. source: "./media/characters/digi-duncan/side.svg",
  30482. extra: 341 / 337,
  30483. bottom: 1 / 342
  30484. }
  30485. },
  30486. back: {
  30487. height: math.unit(5 + 7.5 / 12, "feet"),
  30488. weight: math.unit(120, "lb"),
  30489. name: "Back",
  30490. image: {
  30491. source: "./media/characters/digi-duncan/back.svg",
  30492. extra: 330 / 326,
  30493. bottom: 12 / 342
  30494. }
  30495. },
  30496. },
  30497. [
  30498. {
  30499. name: "Speck",
  30500. height: math.unit(0.25, "mm")
  30501. },
  30502. {
  30503. name: "Micro",
  30504. height: math.unit(5, "mm")
  30505. },
  30506. {
  30507. name: "Tiny",
  30508. height: math.unit(0.5, "inches"),
  30509. default: true
  30510. },
  30511. {
  30512. name: "Human",
  30513. height: math.unit(5 + 7.5 / 12, "feet")
  30514. },
  30515. {
  30516. name: "Minigiant",
  30517. height: math.unit(8 + 5.25, "feet")
  30518. },
  30519. {
  30520. name: "Giant",
  30521. height: math.unit(2000, "feet")
  30522. },
  30523. {
  30524. name: "Mega",
  30525. height: math.unit(371.1, "miles")
  30526. },
  30527. ]
  30528. ))
  30529. characterMakers.push(() => makeCharacter(
  30530. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30531. {
  30532. front: {
  30533. height: math.unit(2, "meters"),
  30534. weight: math.unit(350, "kg"),
  30535. name: "Front",
  30536. image: {
  30537. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30538. extra: 898 / 838,
  30539. bottom: 9 / 907
  30540. }
  30541. },
  30542. },
  30543. [
  30544. {
  30545. name: "Micro",
  30546. height: math.unit(8, "meters")
  30547. },
  30548. {
  30549. name: "Normal",
  30550. height: math.unit(50, "meters"),
  30551. default: true
  30552. },
  30553. {
  30554. name: "Macro",
  30555. height: math.unit(500, "meters")
  30556. },
  30557. ]
  30558. ))
  30559. characterMakers.push(() => makeCharacter(
  30560. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30561. {
  30562. front: {
  30563. height: math.unit(6 + 6 / 12, "feet"),
  30564. name: "Front",
  30565. image: {
  30566. source: "./media/characters/khardesh/front.svg",
  30567. extra: 1788/1596,
  30568. bottom: 66/1854
  30569. }
  30570. },
  30571. back: {
  30572. height: math.unit(6 + 6 / 12, "feet"),
  30573. name: "Back",
  30574. image: {
  30575. source: "./media/characters/khardesh/back.svg",
  30576. extra: 1781/1584,
  30577. bottom: 68/1849
  30578. }
  30579. },
  30580. },
  30581. [
  30582. {
  30583. name: "Normal",
  30584. height: math.unit(6 + 6 / 12, "feet"),
  30585. default: true
  30586. },
  30587. {
  30588. name: "Normal+",
  30589. height: math.unit(4, "meters")
  30590. },
  30591. {
  30592. name: "Macro",
  30593. height: math.unit(50, "meters")
  30594. },
  30595. {
  30596. name: "Macro+",
  30597. height: math.unit(100, "meters")
  30598. },
  30599. {
  30600. name: "Megamacro",
  30601. height: math.unit(20, "km")
  30602. },
  30603. ]
  30604. ))
  30605. characterMakers.push(() => makeCharacter(
  30606. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30607. {
  30608. front: {
  30609. height: math.unit(6, "feet"),
  30610. weight: math.unit(150, "lb"),
  30611. name: "Front",
  30612. image: {
  30613. source: "./media/characters/kosho/front.svg",
  30614. extra: 1847 / 1847,
  30615. bottom: 86 / 1933
  30616. }
  30617. },
  30618. },
  30619. [
  30620. {
  30621. name: "Second-stage micro",
  30622. height: math.unit(0.5, "inches")
  30623. },
  30624. {
  30625. name: "First-stage micro",
  30626. height: math.unit(6, "inches")
  30627. },
  30628. {
  30629. name: "Normal",
  30630. height: math.unit(6, "feet"),
  30631. default: true
  30632. },
  30633. {
  30634. name: "First-stage macro",
  30635. height: math.unit(72, "feet")
  30636. },
  30637. {
  30638. name: "Second-stage macro",
  30639. height: math.unit(864, "feet")
  30640. },
  30641. ]
  30642. ))
  30643. characterMakers.push(() => makeCharacter(
  30644. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30645. {
  30646. normal: {
  30647. height: math.unit(4 + 6 / 12, "feet"),
  30648. name: "Normal",
  30649. image: {
  30650. source: "./media/characters/hydra/normal.svg",
  30651. extra: 2833 / 2634,
  30652. bottom: 68 / 2901
  30653. }
  30654. },
  30655. smol: {
  30656. height: math.unit(0.705, "inches"),
  30657. name: "Smol",
  30658. image: {
  30659. source: "./media/characters/hydra/smol.svg",
  30660. extra: 2715 / 2540,
  30661. bottom: 0 / 2715
  30662. }
  30663. },
  30664. },
  30665. [
  30666. {
  30667. name: "Normal",
  30668. height: math.unit(4 + 6 / 12, "feet"),
  30669. default: true
  30670. }
  30671. ]
  30672. ))
  30673. characterMakers.push(() => makeCharacter(
  30674. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30675. {
  30676. front: {
  30677. height: math.unit(0.6, "cm"),
  30678. name: "Front",
  30679. image: {
  30680. source: "./media/characters/daz/front.svg",
  30681. extra: 1682 / 1164,
  30682. bottom: 42 / 1724
  30683. }
  30684. },
  30685. },
  30686. [
  30687. {
  30688. name: "Normal",
  30689. height: math.unit(0.6, "cm"),
  30690. default: true
  30691. },
  30692. ]
  30693. ))
  30694. characterMakers.push(() => makeCharacter(
  30695. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30696. {
  30697. front: {
  30698. height: math.unit(6, "feet"),
  30699. weight: math.unit(235, "lb"),
  30700. name: "Front",
  30701. image: {
  30702. source: "./media/characters/theo-pangolin/front.svg",
  30703. extra: 1996 / 1969,
  30704. bottom: 115 / 2111
  30705. }
  30706. },
  30707. back: {
  30708. height: math.unit(6, "feet"),
  30709. weight: math.unit(235, "lb"),
  30710. name: "Back",
  30711. image: {
  30712. source: "./media/characters/theo-pangolin/back.svg",
  30713. extra: 1979 / 1979,
  30714. bottom: 40 / 2019
  30715. }
  30716. },
  30717. feral: {
  30718. height: math.unit(2, "feet"),
  30719. weight: math.unit(30, "lb"),
  30720. name: "Feral",
  30721. image: {
  30722. source: "./media/characters/theo-pangolin/feral.svg",
  30723. extra: 803 / 791,
  30724. bottom: 181 / 984
  30725. }
  30726. },
  30727. footFive: {
  30728. height: math.unit(1.43, "feet"),
  30729. name: "Foot (Five Toes)",
  30730. image: {
  30731. source: "./media/characters/theo-pangolin/foot-five.svg"
  30732. }
  30733. },
  30734. footFour: {
  30735. height: math.unit(1.43, "feet"),
  30736. name: "Foot (Four Toes)",
  30737. image: {
  30738. source: "./media/characters/theo-pangolin/foot-four.svg"
  30739. }
  30740. },
  30741. handFour: {
  30742. height: math.unit(0.81, "feet"),
  30743. name: "Hand (Four Fingers)",
  30744. image: {
  30745. source: "./media/characters/theo-pangolin/hand-four.svg"
  30746. }
  30747. },
  30748. handThree: {
  30749. height: math.unit(0.81, "feet"),
  30750. name: "Hand (Three Fingers)",
  30751. image: {
  30752. source: "./media/characters/theo-pangolin/hand-three.svg"
  30753. }
  30754. },
  30755. headFront: {
  30756. height: math.unit(1.37, "feet"),
  30757. name: "Head (Front)",
  30758. image: {
  30759. source: "./media/characters/theo-pangolin/head-front.svg"
  30760. }
  30761. },
  30762. headSide: {
  30763. height: math.unit(1.43, "feet"),
  30764. name: "Head (Side)",
  30765. image: {
  30766. source: "./media/characters/theo-pangolin/head-side.svg"
  30767. }
  30768. },
  30769. tongue: {
  30770. height: math.unit(2.29, "feet"),
  30771. name: "Tongue",
  30772. image: {
  30773. source: "./media/characters/theo-pangolin/tongue.svg"
  30774. }
  30775. },
  30776. },
  30777. [
  30778. {
  30779. name: "Normal",
  30780. height: math.unit(6, "feet")
  30781. },
  30782. {
  30783. name: "Macro",
  30784. height: math.unit(400, "feet"),
  30785. default: true
  30786. },
  30787. ]
  30788. ))
  30789. characterMakers.push(() => makeCharacter(
  30790. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30791. {
  30792. front: {
  30793. height: math.unit(6, "inches"),
  30794. weight: math.unit(0.036, "kg"),
  30795. name: "Front",
  30796. image: {
  30797. source: "./media/characters/renée/front.svg",
  30798. extra: 900 / 886,
  30799. bottom: 8 / 908
  30800. }
  30801. },
  30802. },
  30803. [
  30804. {
  30805. name: "Nano",
  30806. height: math.unit(1, "nm")
  30807. },
  30808. {
  30809. name: "Micro",
  30810. height: math.unit(1, "mm")
  30811. },
  30812. {
  30813. name: "Normal",
  30814. height: math.unit(6, "inches")
  30815. },
  30816. {
  30817. name: "Macro",
  30818. height: math.unit(2000, "feet"),
  30819. default: true
  30820. },
  30821. {
  30822. name: "Megamacro",
  30823. height: math.unit(2, "km")
  30824. },
  30825. {
  30826. name: "Gigamacro",
  30827. height: math.unit(2000, "km")
  30828. },
  30829. {
  30830. name: "Teramacro",
  30831. height: math.unit(250000, "km")
  30832. },
  30833. ]
  30834. ))
  30835. characterMakers.push(() => makeCharacter(
  30836. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30837. {
  30838. front: {
  30839. height: math.unit(4, "meters"),
  30840. weight: math.unit(150, "kg"),
  30841. name: "Front",
  30842. image: {
  30843. source: "./media/characters/caledvwlch/front.svg",
  30844. extra: 1760 / 1551,
  30845. bottom: 28 / 1788
  30846. }
  30847. },
  30848. side: {
  30849. height: math.unit(4, "meters"),
  30850. weight: math.unit(150, "kg"),
  30851. name: "Side",
  30852. image: {
  30853. source: "./media/characters/caledvwlch/side.svg",
  30854. extra: 1605 / 1536,
  30855. bottom: 31 / 1636
  30856. }
  30857. },
  30858. back: {
  30859. height: math.unit(4, "meters"),
  30860. weight: math.unit(150, "kg"),
  30861. name: "Back",
  30862. image: {
  30863. source: "./media/characters/caledvwlch/back.svg",
  30864. extra: 1635 / 1565,
  30865. bottom: 27 / 1662
  30866. }
  30867. },
  30868. },
  30869. [
  30870. {
  30871. name: "\"Incognito\"",
  30872. height: math.unit(4, "meters")
  30873. },
  30874. {
  30875. name: "Small rampage",
  30876. height: math.unit(600, "meters")
  30877. },
  30878. {
  30879. name: "Mega",
  30880. height: math.unit(30, "km")
  30881. },
  30882. {
  30883. name: "Home-size",
  30884. height: math.unit(50, "km"),
  30885. default: true
  30886. },
  30887. {
  30888. name: "Giga",
  30889. height: math.unit(300, "km")
  30890. },
  30891. {
  30892. name: "Lounging",
  30893. height: math.unit(11000, "km")
  30894. },
  30895. {
  30896. name: "Planet snacking",
  30897. height: math.unit(2000000, "km")
  30898. },
  30899. ]
  30900. ))
  30901. characterMakers.push(() => makeCharacter(
  30902. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30903. {
  30904. front: {
  30905. height: math.unit(6, "feet"),
  30906. weight: math.unit(215, "lb"),
  30907. name: "Front",
  30908. image: {
  30909. source: "./media/characters/sapphire-svell/front.svg",
  30910. extra: 495 / 455,
  30911. bottom: 20 / 515
  30912. }
  30913. },
  30914. back: {
  30915. height: math.unit(6, "feet"),
  30916. weight: math.unit(216, "lb"),
  30917. name: "Back",
  30918. image: {
  30919. source: "./media/characters/sapphire-svell/back.svg",
  30920. extra: 497 / 477,
  30921. bottom: 7 / 504
  30922. }
  30923. },
  30924. maw: {
  30925. height: math.unit(1.57, "feet"),
  30926. name: "Maw",
  30927. image: {
  30928. source: "./media/characters/sapphire-svell/maw.svg"
  30929. }
  30930. },
  30931. foot: {
  30932. height: math.unit(1.07, "feet"),
  30933. name: "Foot",
  30934. image: {
  30935. source: "./media/characters/sapphire-svell/foot.svg"
  30936. }
  30937. },
  30938. toering: {
  30939. height: math.unit(1.7, "inch"),
  30940. name: "Toering",
  30941. image: {
  30942. source: "./media/characters/sapphire-svell/toering.svg"
  30943. }
  30944. },
  30945. },
  30946. [
  30947. {
  30948. name: "Normal",
  30949. height: math.unit(300, "feet"),
  30950. default: true
  30951. },
  30952. {
  30953. name: "Augmented",
  30954. height: math.unit(1250, "feet")
  30955. },
  30956. {
  30957. name: "Unleashed",
  30958. height: math.unit(3000, "feet")
  30959. },
  30960. ]
  30961. ))
  30962. characterMakers.push(() => makeCharacter(
  30963. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30964. {
  30965. side: {
  30966. height: math.unit(2 + 3 / 12, "feet"),
  30967. weight: math.unit(110, "lb"),
  30968. name: "Side",
  30969. image: {
  30970. source: "./media/characters/glitch-flux/side.svg",
  30971. extra: 997 / 805,
  30972. bottom: 20 / 1017
  30973. }
  30974. },
  30975. },
  30976. [
  30977. {
  30978. name: "Normal",
  30979. height: math.unit(2 + 3 / 12, "feet"),
  30980. default: true
  30981. },
  30982. ]
  30983. ))
  30984. characterMakers.push(() => makeCharacter(
  30985. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30986. {
  30987. front: {
  30988. height: math.unit(4, "meters"),
  30989. name: "Front",
  30990. image: {
  30991. source: "./media/characters/mid/front.svg",
  30992. extra: 507 / 476,
  30993. bottom: 17 / 524
  30994. }
  30995. },
  30996. back: {
  30997. height: math.unit(4, "meters"),
  30998. name: "Back",
  30999. image: {
  31000. source: "./media/characters/mid/back.svg",
  31001. extra: 519 / 487,
  31002. bottom: 7 / 526
  31003. }
  31004. },
  31005. stuck: {
  31006. height: math.unit(2.2, "meters"),
  31007. name: "Stuck",
  31008. image: {
  31009. source: "./media/characters/mid/stuck.svg",
  31010. extra: 1951 / 1869,
  31011. bottom: 88 / 2039
  31012. }
  31013. }
  31014. },
  31015. [
  31016. {
  31017. name: "Normal",
  31018. height: math.unit(4, "meters"),
  31019. default: true
  31020. },
  31021. {
  31022. name: "Big",
  31023. height: math.unit(10, "meters")
  31024. },
  31025. {
  31026. name: "Macro",
  31027. height: math.unit(800, "meters")
  31028. },
  31029. {
  31030. name: "Megamacro",
  31031. height: math.unit(100, "km")
  31032. },
  31033. {
  31034. name: "Overgrown",
  31035. height: math.unit(1, "parsec")
  31036. },
  31037. ]
  31038. ))
  31039. characterMakers.push(() => makeCharacter(
  31040. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31041. {
  31042. front: {
  31043. height: math.unit(2.5, "meters"),
  31044. weight: math.unit(225, "kg"),
  31045. name: "Front",
  31046. image: {
  31047. source: "./media/characters/iris/front.svg",
  31048. extra: 3348 / 3251,
  31049. bottom: 205 / 3553
  31050. }
  31051. },
  31052. maw: {
  31053. height: math.unit(0.56, "meter"),
  31054. name: "Maw",
  31055. image: {
  31056. source: "./media/characters/iris/maw.svg"
  31057. }
  31058. },
  31059. },
  31060. [
  31061. {
  31062. name: "Mewter cat",
  31063. height: math.unit(1.2, "meters")
  31064. },
  31065. {
  31066. name: "Minimacro",
  31067. height: math.unit(2.5, "meters"),
  31068. default: true
  31069. },
  31070. {
  31071. name: "Macro",
  31072. height: math.unit(180, "meters")
  31073. },
  31074. {
  31075. name: "Megamacro",
  31076. height: math.unit(2746, "meters")
  31077. },
  31078. ]
  31079. ))
  31080. characterMakers.push(() => makeCharacter(
  31081. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31082. {
  31083. front: {
  31084. height: math.unit(6, "feet"),
  31085. weight: math.unit(135, "lb"),
  31086. name: "Front",
  31087. image: {
  31088. source: "./media/characters/axel/front.svg",
  31089. extra: 908 / 908,
  31090. bottom: 58 / 966
  31091. }
  31092. },
  31093. side: {
  31094. height: math.unit(6, "feet"),
  31095. weight: math.unit(135, "lb"),
  31096. name: "Side",
  31097. image: {
  31098. source: "./media/characters/axel/side.svg",
  31099. extra: 958 / 958,
  31100. bottom: 11 / 969
  31101. }
  31102. },
  31103. back: {
  31104. height: math.unit(6, "feet"),
  31105. weight: math.unit(135, "lb"),
  31106. name: "Back",
  31107. image: {
  31108. source: "./media/characters/axel/back.svg",
  31109. extra: 887 / 887,
  31110. bottom: 34 / 921
  31111. }
  31112. },
  31113. head: {
  31114. height: math.unit(1.07, "feet"),
  31115. name: "Head",
  31116. image: {
  31117. source: "./media/characters/axel/head.svg"
  31118. }
  31119. },
  31120. beak: {
  31121. height: math.unit(1.4, "feet"),
  31122. name: "Beak",
  31123. image: {
  31124. source: "./media/characters/axel/beak.svg"
  31125. }
  31126. },
  31127. beakSide: {
  31128. height: math.unit(1.4, "feet"),
  31129. name: "Beak Side",
  31130. image: {
  31131. source: "./media/characters/axel/beak-side.svg"
  31132. }
  31133. },
  31134. sheath: {
  31135. height: math.unit(0.5, "feet"),
  31136. name: "Sheath",
  31137. image: {
  31138. source: "./media/characters/axel/sheath.svg"
  31139. }
  31140. },
  31141. dick: {
  31142. height: math.unit(0.98, "feet"),
  31143. name: "Dick",
  31144. image: {
  31145. source: "./media/characters/axel/dick.svg"
  31146. }
  31147. },
  31148. },
  31149. [
  31150. {
  31151. name: "Macro",
  31152. height: math.unit(68, "meters"),
  31153. default: true
  31154. },
  31155. ]
  31156. ))
  31157. characterMakers.push(() => makeCharacter(
  31158. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31159. {
  31160. front: {
  31161. height: math.unit(3.5, "meters"),
  31162. weight: math.unit(1200, "kg"),
  31163. name: "Front",
  31164. image: {
  31165. source: "./media/characters/joanna/front.svg",
  31166. extra: 1596 / 1488,
  31167. bottom: 29 / 1625
  31168. }
  31169. },
  31170. back: {
  31171. height: math.unit(3.5, "meters"),
  31172. weight: math.unit(1200, "kg"),
  31173. name: "Back",
  31174. image: {
  31175. source: "./media/characters/joanna/back.svg",
  31176. extra: 1594 / 1495,
  31177. bottom: 26 / 1620
  31178. }
  31179. },
  31180. frontShorts: {
  31181. height: math.unit(3.5, "meters"),
  31182. weight: math.unit(1200, "kg"),
  31183. name: "Front (Shorts)",
  31184. image: {
  31185. source: "./media/characters/joanna/front-shorts.svg",
  31186. extra: 1596 / 1488,
  31187. bottom: 29 / 1625
  31188. }
  31189. },
  31190. frontBiker: {
  31191. height: math.unit(3.5, "meters"),
  31192. weight: math.unit(1200, "kg"),
  31193. name: "Front (Biker)",
  31194. image: {
  31195. source: "./media/characters/joanna/front-biker.svg",
  31196. extra: 1596 / 1488,
  31197. bottom: 29 / 1625
  31198. }
  31199. },
  31200. backBiker: {
  31201. height: math.unit(3.5, "meters"),
  31202. weight: math.unit(1200, "kg"),
  31203. name: "Back (Biker)",
  31204. image: {
  31205. source: "./media/characters/joanna/back-biker.svg",
  31206. extra: 1594 / 1495,
  31207. bottom: 88 / 1682
  31208. }
  31209. },
  31210. bikeLeft: {
  31211. height: math.unit(2.4, "meters"),
  31212. weight: math.unit(1600, "kg"),
  31213. name: "Bike (Left)",
  31214. image: {
  31215. source: "./media/characters/joanna/bike-left.svg",
  31216. extra: 720 / 720,
  31217. bottom: 8 / 728
  31218. }
  31219. },
  31220. bikeRight: {
  31221. height: math.unit(2.4, "meters"),
  31222. weight: math.unit(1600, "kg"),
  31223. name: "Bike (Right)",
  31224. image: {
  31225. source: "./media/characters/joanna/bike-right.svg",
  31226. extra: 720 / 720,
  31227. bottom: 8 / 728
  31228. }
  31229. },
  31230. },
  31231. [
  31232. {
  31233. name: "Incognito",
  31234. height: math.unit(3.5, "meters")
  31235. },
  31236. {
  31237. name: "Casual Big",
  31238. height: math.unit(200, "meters")
  31239. },
  31240. {
  31241. name: "Macro",
  31242. height: math.unit(600, "meters")
  31243. },
  31244. {
  31245. name: "Original",
  31246. height: math.unit(20, "km"),
  31247. default: true
  31248. },
  31249. {
  31250. name: "Giga",
  31251. height: math.unit(400, "km")
  31252. },
  31253. {
  31254. name: "Lounging",
  31255. height: math.unit(1500, "km")
  31256. },
  31257. {
  31258. name: "Planetary",
  31259. height: math.unit(200000, "km")
  31260. },
  31261. ]
  31262. ))
  31263. characterMakers.push(() => makeCharacter(
  31264. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31265. {
  31266. front: {
  31267. height: math.unit(6, "feet"),
  31268. weight: math.unit(150, "lb"),
  31269. name: "Front",
  31270. image: {
  31271. source: "./media/characters/hugo-sigil/front.svg",
  31272. extra: 522 / 500,
  31273. bottom: 2 / 524
  31274. }
  31275. },
  31276. back: {
  31277. height: math.unit(6, "feet"),
  31278. weight: math.unit(150, "lb"),
  31279. name: "Back",
  31280. image: {
  31281. source: "./media/characters/hugo-sigil/back.svg",
  31282. extra: 519 / 495,
  31283. bottom: 5 / 524
  31284. }
  31285. },
  31286. maw: {
  31287. height: math.unit(1.4, "feet"),
  31288. weight: math.unit(150, "lb"),
  31289. name: "Maw",
  31290. image: {
  31291. source: "./media/characters/hugo-sigil/maw.svg"
  31292. }
  31293. },
  31294. feet: {
  31295. height: math.unit(1.56, "feet"),
  31296. weight: math.unit(150, "lb"),
  31297. name: "Feet",
  31298. image: {
  31299. source: "./media/characters/hugo-sigil/feet.svg",
  31300. extra: 177 / 177,
  31301. bottom: 12 / 189
  31302. }
  31303. },
  31304. },
  31305. [
  31306. {
  31307. name: "Normal",
  31308. height: math.unit(6, "feet")
  31309. },
  31310. {
  31311. name: "Macro",
  31312. height: math.unit(200, "feet"),
  31313. default: true
  31314. },
  31315. ]
  31316. ))
  31317. characterMakers.push(() => makeCharacter(
  31318. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31319. {
  31320. front: {
  31321. height: math.unit(6, "feet"),
  31322. weight: math.unit(150, "lb"),
  31323. name: "Front",
  31324. image: {
  31325. source: "./media/characters/peri/front.svg",
  31326. extra: 2354 / 2233,
  31327. bottom: 49 / 2403
  31328. }
  31329. },
  31330. },
  31331. [
  31332. {
  31333. name: "Really Small",
  31334. height: math.unit(1, "nm")
  31335. },
  31336. {
  31337. name: "Micro",
  31338. height: math.unit(4, "inches")
  31339. },
  31340. {
  31341. name: "Normal",
  31342. height: math.unit(7, "inches"),
  31343. default: true
  31344. },
  31345. {
  31346. name: "Macro",
  31347. height: math.unit(400, "feet")
  31348. },
  31349. {
  31350. name: "Megamacro",
  31351. height: math.unit(100, "miles")
  31352. },
  31353. ]
  31354. ))
  31355. characterMakers.push(() => makeCharacter(
  31356. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31357. {
  31358. frontSlim: {
  31359. height: math.unit(7, "feet"),
  31360. name: "Front (Slim)",
  31361. image: {
  31362. source: "./media/characters/issilora/front-slim.svg",
  31363. extra: 529 / 449,
  31364. bottom: 53 / 582
  31365. }
  31366. },
  31367. sideSlim: {
  31368. height: math.unit(7, "feet"),
  31369. name: "Side (Slim)",
  31370. image: {
  31371. source: "./media/characters/issilora/side-slim.svg",
  31372. extra: 570 / 480,
  31373. bottom: 30 / 600
  31374. }
  31375. },
  31376. backSlim: {
  31377. height: math.unit(7, "feet"),
  31378. name: "Back (Slim)",
  31379. image: {
  31380. source: "./media/characters/issilora/back-slim.svg",
  31381. extra: 537 / 455,
  31382. bottom: 46 / 583
  31383. }
  31384. },
  31385. frontBuff: {
  31386. height: math.unit(7, "feet"),
  31387. name: "Front (Buff)",
  31388. image: {
  31389. source: "./media/characters/issilora/front-buff.svg",
  31390. extra: 2310 / 2035,
  31391. bottom: 335 / 2645
  31392. }
  31393. },
  31394. head: {
  31395. height: math.unit(1.94, "feet"),
  31396. name: "Head",
  31397. image: {
  31398. source: "./media/characters/issilora/head.svg"
  31399. }
  31400. },
  31401. },
  31402. [
  31403. {
  31404. name: "Minimum",
  31405. height: math.unit(7, "feet")
  31406. },
  31407. {
  31408. name: "Comfortable",
  31409. height: math.unit(17, "feet")
  31410. },
  31411. {
  31412. name: "Fun Size",
  31413. height: math.unit(47, "feet")
  31414. },
  31415. {
  31416. name: "Natural Macro",
  31417. height: math.unit(137, "feet"),
  31418. default: true
  31419. },
  31420. {
  31421. name: "Maximum Kaiju",
  31422. height: math.unit(397, "feet")
  31423. },
  31424. ]
  31425. ))
  31426. characterMakers.push(() => makeCharacter(
  31427. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31428. {
  31429. front: {
  31430. height: math.unit(50 + 9/12, "feet"),
  31431. weight: math.unit(32.8, "tons"),
  31432. name: "Front",
  31433. image: {
  31434. source: "./media/characters/irb'iiritaahn/front.svg",
  31435. extra: 1878/1826,
  31436. bottom: 326/2204
  31437. }
  31438. },
  31439. back: {
  31440. height: math.unit(50 + 9/12, "feet"),
  31441. weight: math.unit(32.8, "tons"),
  31442. name: "Back",
  31443. image: {
  31444. source: "./media/characters/irb'iiritaahn/back.svg",
  31445. extra: 2052/2018,
  31446. bottom: 152/2204
  31447. }
  31448. },
  31449. head: {
  31450. height: math.unit(12.86, "feet"),
  31451. name: "Head",
  31452. image: {
  31453. source: "./media/characters/irb'iiritaahn/head.svg"
  31454. }
  31455. },
  31456. maw: {
  31457. height: math.unit(9.66, "feet"),
  31458. name: "Maw",
  31459. image: {
  31460. source: "./media/characters/irb'iiritaahn/maw.svg"
  31461. }
  31462. },
  31463. frontDick: {
  31464. height: math.unit(8.78461, "feet"),
  31465. name: "Front Dick",
  31466. image: {
  31467. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31468. }
  31469. },
  31470. rearDick: {
  31471. height: math.unit(8.78461, "feet"),
  31472. name: "Rear Dick",
  31473. image: {
  31474. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31475. }
  31476. },
  31477. rearDickUnfolded: {
  31478. height: math.unit(8.78, "feet"),
  31479. name: "Rear Dick (Unfolded)",
  31480. image: {
  31481. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31482. }
  31483. },
  31484. wings: {
  31485. height: math.unit(43, "feet"),
  31486. name: "Wings",
  31487. image: {
  31488. source: "./media/characters/irb'iiritaahn/wings.svg"
  31489. }
  31490. },
  31491. },
  31492. [
  31493. {
  31494. name: "Macro",
  31495. height: math.unit(50 + 9/12, "feet"),
  31496. default: true
  31497. },
  31498. ]
  31499. ))
  31500. characterMakers.push(() => makeCharacter(
  31501. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31502. {
  31503. front: {
  31504. height: math.unit(205, "cm"),
  31505. weight: math.unit(102, "kg"),
  31506. name: "Front",
  31507. image: {
  31508. source: "./media/characters/irbisgreif/front.svg",
  31509. extra: 785/706,
  31510. bottom: 13/798
  31511. }
  31512. },
  31513. back: {
  31514. height: math.unit(205, "cm"),
  31515. weight: math.unit(102, "kg"),
  31516. name: "Back",
  31517. image: {
  31518. source: "./media/characters/irbisgreif/back.svg",
  31519. extra: 713/701,
  31520. bottom: 26/739
  31521. }
  31522. },
  31523. frontDressed: {
  31524. height: math.unit(216, "cm"),
  31525. weight: math.unit(102, "kg"),
  31526. name: "Front-dressed",
  31527. image: {
  31528. source: "./media/characters/irbisgreif/front-dressed.svg",
  31529. extra: 902/776,
  31530. bottom: 14/916
  31531. }
  31532. },
  31533. sideDressed: {
  31534. height: math.unit(195, "cm"),
  31535. weight: math.unit(102, "kg"),
  31536. name: "Side-dressed",
  31537. image: {
  31538. source: "./media/characters/irbisgreif/side-dressed.svg",
  31539. extra: 788/688,
  31540. bottom: 21/809
  31541. }
  31542. },
  31543. backDressed: {
  31544. height: math.unit(216, "cm"),
  31545. weight: math.unit(102, "kg"),
  31546. name: "Back-dressed",
  31547. image: {
  31548. source: "./media/characters/irbisgreif/back-dressed.svg",
  31549. extra: 901/783,
  31550. bottom: 10/911
  31551. }
  31552. },
  31553. dick: {
  31554. height: math.unit(0.49, "feet"),
  31555. name: "Dick",
  31556. image: {
  31557. source: "./media/characters/irbisgreif/dick.svg"
  31558. }
  31559. },
  31560. wingTop: {
  31561. height: math.unit(1.93 , "feet"),
  31562. name: "Wing-top",
  31563. image: {
  31564. source: "./media/characters/irbisgreif/wing-top.svg"
  31565. }
  31566. },
  31567. wingBottom: {
  31568. height: math.unit(1.93 , "feet"),
  31569. name: "Wing-bottom",
  31570. image: {
  31571. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31572. }
  31573. },
  31574. },
  31575. [
  31576. {
  31577. name: "Normal",
  31578. height: math.unit(216, "cm"),
  31579. default: true
  31580. },
  31581. ]
  31582. ))
  31583. characterMakers.push(() => makeCharacter(
  31584. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31585. {
  31586. front: {
  31587. height: math.unit(6, "feet"),
  31588. weight: math.unit(150, "lb"),
  31589. name: "Front",
  31590. image: {
  31591. source: "./media/characters/pride/front.svg",
  31592. extra: 1299/1230,
  31593. bottom: 18/1317
  31594. }
  31595. },
  31596. },
  31597. [
  31598. {
  31599. name: "Normal",
  31600. height: math.unit(7, "feet")
  31601. },
  31602. {
  31603. name: "Mini-macro",
  31604. height: math.unit(11, "feet")
  31605. },
  31606. {
  31607. name: "Macro",
  31608. height: math.unit(15, "meters"),
  31609. default: true
  31610. },
  31611. {
  31612. name: "Macro+",
  31613. height: math.unit(40, "meters")
  31614. },
  31615. ]
  31616. ))
  31617. characterMakers.push(() => makeCharacter(
  31618. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31619. {
  31620. front: {
  31621. height: math.unit(4 + 2 / 12, "feet"),
  31622. weight: math.unit(95, "lb"),
  31623. name: "Front",
  31624. image: {
  31625. source: "./media/characters/vaelophis-nyx/front.svg",
  31626. extra: 2532/2330,
  31627. bottom: 0/2532
  31628. }
  31629. },
  31630. back: {
  31631. height: math.unit(4 + 2 / 12, "feet"),
  31632. weight: math.unit(95, "lb"),
  31633. name: "Back",
  31634. image: {
  31635. source: "./media/characters/vaelophis-nyx/back.svg",
  31636. extra: 2484/2361,
  31637. bottom: 0/2484
  31638. }
  31639. },
  31640. feralSide: {
  31641. height: math.unit(2 + 1/12, "feet"),
  31642. weight: math.unit(20, "lb"),
  31643. name: "Feral (Side)",
  31644. image: {
  31645. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31646. extra: 1721/1581,
  31647. bottom: 70/1791
  31648. }
  31649. },
  31650. feralLazing: {
  31651. height: math.unit(1.08, "feet"),
  31652. weight: math.unit(20, "lb"),
  31653. name: "Feral (Lazing)",
  31654. image: {
  31655. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31656. extra: 822/822,
  31657. bottom: 248/1070
  31658. }
  31659. },
  31660. ear: {
  31661. height: math.unit(0.416, "feet"),
  31662. name: "Ear",
  31663. image: {
  31664. source: "./media/characters/vaelophis-nyx/ear.svg"
  31665. }
  31666. },
  31667. eye: {
  31668. height: math.unit(0.0748, "feet"),
  31669. name: "Eye",
  31670. image: {
  31671. source: "./media/characters/vaelophis-nyx/eye.svg"
  31672. }
  31673. },
  31674. mouth: {
  31675. height: math.unit(0.378, "feet"),
  31676. name: "Mouth",
  31677. image: {
  31678. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31679. }
  31680. },
  31681. spade: {
  31682. height: math.unit(0.55, "feet"),
  31683. name: "Spade",
  31684. image: {
  31685. source: "./media/characters/vaelophis-nyx/spade.svg"
  31686. }
  31687. },
  31688. },
  31689. [
  31690. {
  31691. name: "Normal",
  31692. height: math.unit(4 + 2/12, "feet"),
  31693. default: true
  31694. },
  31695. ]
  31696. ))
  31697. characterMakers.push(() => makeCharacter(
  31698. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31699. {
  31700. front: {
  31701. height: math.unit(7, "feet"),
  31702. weight: math.unit(231, "lb"),
  31703. name: "Front",
  31704. image: {
  31705. source: "./media/characters/flux/front.svg",
  31706. extra: 919/871,
  31707. bottom: 0/919
  31708. }
  31709. },
  31710. back: {
  31711. height: math.unit(7, "feet"),
  31712. weight: math.unit(231, "lb"),
  31713. name: "Back",
  31714. image: {
  31715. source: "./media/characters/flux/back.svg",
  31716. extra: 1040/992,
  31717. bottom: 0/1040
  31718. }
  31719. },
  31720. frontDressed: {
  31721. height: math.unit(7, "feet"),
  31722. weight: math.unit(231, "lb"),
  31723. name: "Front (Dressed)",
  31724. image: {
  31725. source: "./media/characters/flux/front-dressed.svg",
  31726. extra: 919/871,
  31727. bottom: 0/919
  31728. }
  31729. },
  31730. feralSide: {
  31731. height: math.unit(5, "feet"),
  31732. weight: math.unit(150, "lb"),
  31733. name: "Feral (Side)",
  31734. image: {
  31735. source: "./media/characters/flux/feral-side.svg",
  31736. extra: 598/528,
  31737. bottom: 28/626
  31738. }
  31739. },
  31740. head: {
  31741. height: math.unit(1.585, "feet"),
  31742. name: "Head",
  31743. image: {
  31744. source: "./media/characters/flux/head.svg"
  31745. }
  31746. },
  31747. headSide: {
  31748. height: math.unit(1.74, "feet"),
  31749. name: "Head (Side)",
  31750. image: {
  31751. source: "./media/characters/flux/head-side.svg"
  31752. }
  31753. },
  31754. headSideFire: {
  31755. height: math.unit(1.76, "feet"),
  31756. name: "Head (Side, Fire)",
  31757. image: {
  31758. source: "./media/characters/flux/head-side-fire.svg"
  31759. }
  31760. },
  31761. },
  31762. [
  31763. {
  31764. name: "Normal",
  31765. height: math.unit(7, "feet"),
  31766. default: true
  31767. },
  31768. ]
  31769. ))
  31770. characterMakers.push(() => makeCharacter(
  31771. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31772. {
  31773. front: {
  31774. height: math.unit(9, "feet"),
  31775. weight: math.unit(1012, "lb"),
  31776. name: "Front",
  31777. image: {
  31778. source: "./media/characters/ulfra-lupae/front.svg",
  31779. extra: 1083/1011,
  31780. bottom: 67/1150
  31781. }
  31782. },
  31783. },
  31784. [
  31785. {
  31786. name: "Micro",
  31787. height: math.unit(6, "inches")
  31788. },
  31789. {
  31790. name: "Socializing",
  31791. height: math.unit(6 + 5/12, "feet")
  31792. },
  31793. {
  31794. name: "Normal",
  31795. height: math.unit(9, "feet"),
  31796. default: true
  31797. },
  31798. {
  31799. name: "Macro",
  31800. height: math.unit(150, "feet")
  31801. },
  31802. ]
  31803. ))
  31804. characterMakers.push(() => makeCharacter(
  31805. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31806. {
  31807. front: {
  31808. height: math.unit(5 + 2/12, "feet"),
  31809. weight: math.unit(120, "lb"),
  31810. name: "Front",
  31811. image: {
  31812. source: "./media/characters/timber/front.svg",
  31813. extra: 2814/2705,
  31814. bottom: 181/2995
  31815. }
  31816. },
  31817. },
  31818. [
  31819. {
  31820. name: "Normal",
  31821. height: math.unit(5 + 2/12, "feet"),
  31822. default: true
  31823. },
  31824. ]
  31825. ))
  31826. characterMakers.push(() => makeCharacter(
  31827. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31828. {
  31829. front: {
  31830. height: math.unit(9, "feet"),
  31831. name: "Front",
  31832. image: {
  31833. source: "./media/characters/nicki/front.svg",
  31834. extra: 1240/990,
  31835. bottom: 45/1285
  31836. },
  31837. form: "anthro",
  31838. default: true
  31839. },
  31840. side: {
  31841. height: math.unit(9, "feet"),
  31842. name: "Side",
  31843. image: {
  31844. source: "./media/characters/nicki/side.svg",
  31845. extra: 1047/973,
  31846. bottom: 61/1108
  31847. },
  31848. form: "anthro"
  31849. },
  31850. back: {
  31851. height: math.unit(9, "feet"),
  31852. name: "Back",
  31853. image: {
  31854. source: "./media/characters/nicki/back.svg",
  31855. extra: 1006/965,
  31856. bottom: 39/1045
  31857. },
  31858. form: "anthro"
  31859. },
  31860. taur: {
  31861. height: math.unit(15, "feet"),
  31862. name: "Taur",
  31863. image: {
  31864. source: "./media/characters/nicki/taur.svg",
  31865. extra: 1592/1347,
  31866. bottom: 0/1592
  31867. },
  31868. form: "taur",
  31869. default: true
  31870. },
  31871. },
  31872. [
  31873. {
  31874. name: "Normal",
  31875. height: math.unit(9, "feet"),
  31876. form: "anthro",
  31877. default: true
  31878. },
  31879. {
  31880. name: "Normal",
  31881. height: math.unit(15, "feet"),
  31882. form: "taur",
  31883. default: true
  31884. }
  31885. ],
  31886. {
  31887. "anthro": {
  31888. name: "Anthro",
  31889. default: true
  31890. },
  31891. "taur": {
  31892. name: "Taur"
  31893. }
  31894. }
  31895. ))
  31896. characterMakers.push(() => makeCharacter(
  31897. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31898. {
  31899. front: {
  31900. height: math.unit(7 + 10/12, "feet"),
  31901. weight: math.unit(3.5, "tons"),
  31902. name: "Front",
  31903. image: {
  31904. source: "./media/characters/lee/front.svg",
  31905. extra: 1773/1615,
  31906. bottom: 86/1859
  31907. }
  31908. },
  31909. hand: {
  31910. height: math.unit(1.78, "feet"),
  31911. name: "Hand",
  31912. image: {
  31913. source: "./media/characters/lee/hand.svg"
  31914. }
  31915. },
  31916. maw: {
  31917. height: math.unit(1.18, "feet"),
  31918. name: "Maw",
  31919. image: {
  31920. source: "./media/characters/lee/maw.svg"
  31921. }
  31922. },
  31923. },
  31924. [
  31925. {
  31926. name: "Normal",
  31927. height: math.unit(7 + 10/12, "feet"),
  31928. default: true
  31929. },
  31930. ]
  31931. ))
  31932. characterMakers.push(() => makeCharacter(
  31933. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31934. {
  31935. front: {
  31936. height: math.unit(9, "feet"),
  31937. name: "Front",
  31938. image: {
  31939. source: "./media/characters/guti/front.svg",
  31940. extra: 4551/4355,
  31941. bottom: 123/4674
  31942. }
  31943. },
  31944. tongue: {
  31945. height: math.unit(1, "feet"),
  31946. name: "Tongue",
  31947. image: {
  31948. source: "./media/characters/guti/tongue.svg"
  31949. }
  31950. },
  31951. paw: {
  31952. height: math.unit(1.18, "feet"),
  31953. name: "Paw",
  31954. image: {
  31955. source: "./media/characters/guti/paw.svg"
  31956. }
  31957. },
  31958. },
  31959. [
  31960. {
  31961. name: "Normal",
  31962. height: math.unit(9, "feet"),
  31963. default: true
  31964. },
  31965. ]
  31966. ))
  31967. characterMakers.push(() => makeCharacter(
  31968. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31969. {
  31970. side: {
  31971. height: math.unit(5, "meters"),
  31972. name: "Side",
  31973. image: {
  31974. source: "./media/characters/vesper/side.svg",
  31975. extra: 1605/1518,
  31976. bottom: 0/1605
  31977. }
  31978. },
  31979. },
  31980. [
  31981. {
  31982. name: "Small",
  31983. height: math.unit(5, "meters")
  31984. },
  31985. {
  31986. name: "Sage",
  31987. height: math.unit(100, "meters"),
  31988. default: true
  31989. },
  31990. {
  31991. name: "Fun Size",
  31992. height: math.unit(600, "meters")
  31993. },
  31994. {
  31995. name: "Goddess",
  31996. height: math.unit(20000, "km")
  31997. },
  31998. {
  31999. name: "Maximum",
  32000. height: math.unit(5, "galaxies")
  32001. },
  32002. ]
  32003. ))
  32004. characterMakers.push(() => makeCharacter(
  32005. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32006. {
  32007. front: {
  32008. height: math.unit(6 + 3/12, "feet"),
  32009. weight: math.unit(190, "lb"),
  32010. name: "Front",
  32011. image: {
  32012. source: "./media/characters/gawain/front.svg",
  32013. extra: 2222/2139,
  32014. bottom: 90/2312
  32015. }
  32016. },
  32017. back: {
  32018. height: math.unit(6 + 3/12, "feet"),
  32019. weight: math.unit(190, "lb"),
  32020. name: "Back",
  32021. image: {
  32022. source: "./media/characters/gawain/back.svg",
  32023. extra: 2199/2111,
  32024. bottom: 73/2272
  32025. }
  32026. },
  32027. },
  32028. [
  32029. {
  32030. name: "Normal",
  32031. height: math.unit(6 + 3/12, "feet"),
  32032. default: true
  32033. },
  32034. ]
  32035. ))
  32036. characterMakers.push(() => makeCharacter(
  32037. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32038. {
  32039. side: {
  32040. height: math.unit(3.5, "meters"),
  32041. weight: math.unit(16000, "lb"),
  32042. name: "Side",
  32043. image: {
  32044. source: "./media/characters/dascalti/side.svg",
  32045. extra: 392/273,
  32046. bottom: 47/439
  32047. }
  32048. },
  32049. breath: {
  32050. height: math.unit(7.4, "feet"),
  32051. name: "Breath",
  32052. image: {
  32053. source: "./media/characters/dascalti/breath.svg"
  32054. }
  32055. },
  32056. fed: {
  32057. height: math.unit(3.6, "meters"),
  32058. weight: math.unit(16000, "lb"),
  32059. name: "Fed",
  32060. image: {
  32061. source: "./media/characters/dascalti/fed.svg",
  32062. extra: 1419/820,
  32063. bottom: 95/1514
  32064. }
  32065. },
  32066. },
  32067. [
  32068. {
  32069. name: "Normal",
  32070. height: math.unit(3.5, "meters"),
  32071. default: true
  32072. },
  32073. ]
  32074. ))
  32075. characterMakers.push(() => makeCharacter(
  32076. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32077. {
  32078. front: {
  32079. height: math.unit(3 + 5/12, "feet"),
  32080. name: "Front",
  32081. image: {
  32082. source: "./media/characters/mauve/front.svg",
  32083. extra: 1126/1033,
  32084. bottom: 65/1191
  32085. }
  32086. },
  32087. side: {
  32088. height: math.unit(3 + 5/12, "feet"),
  32089. name: "Side",
  32090. image: {
  32091. source: "./media/characters/mauve/side.svg",
  32092. extra: 1089/1001,
  32093. bottom: 29/1118
  32094. }
  32095. },
  32096. back: {
  32097. height: math.unit(3 + 5/12, "feet"),
  32098. name: "Back",
  32099. image: {
  32100. source: "./media/characters/mauve/back.svg",
  32101. extra: 1173/1053,
  32102. bottom: 109/1282
  32103. }
  32104. },
  32105. },
  32106. [
  32107. {
  32108. name: "Normal",
  32109. height: math.unit(3 + 5/12, "feet"),
  32110. default: true
  32111. },
  32112. ]
  32113. ))
  32114. characterMakers.push(() => makeCharacter(
  32115. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32116. {
  32117. front: {
  32118. height: math.unit(6 + 3/12, "feet"),
  32119. weight: math.unit(430, "lb"),
  32120. name: "Front",
  32121. image: {
  32122. source: "./media/characters/carlos/front.svg",
  32123. extra: 1964/1913,
  32124. bottom: 70/2034
  32125. }
  32126. },
  32127. },
  32128. [
  32129. {
  32130. name: "Normal",
  32131. height: math.unit(6 + 3/12, "feet"),
  32132. default: true
  32133. },
  32134. ]
  32135. ))
  32136. characterMakers.push(() => makeCharacter(
  32137. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32138. {
  32139. back: {
  32140. height: math.unit(5 + 10/12, "feet"),
  32141. weight: math.unit(200, "lb"),
  32142. name: "Back",
  32143. image: {
  32144. source: "./media/characters/jax/back.svg",
  32145. extra: 764/739,
  32146. bottom: 25/789
  32147. }
  32148. },
  32149. },
  32150. [
  32151. {
  32152. name: "Normal",
  32153. height: math.unit(5 + 10/12, "feet"),
  32154. default: true
  32155. },
  32156. ]
  32157. ))
  32158. characterMakers.push(() => makeCharacter(
  32159. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32160. {
  32161. front: {
  32162. height: math.unit(8, "feet"),
  32163. weight: math.unit(250, "lb"),
  32164. name: "Front",
  32165. image: {
  32166. source: "./media/characters/eikthynir/front.svg",
  32167. extra: 1332/1166,
  32168. bottom: 82/1414
  32169. }
  32170. },
  32171. back: {
  32172. height: math.unit(8, "feet"),
  32173. weight: math.unit(250, "lb"),
  32174. name: "Back",
  32175. image: {
  32176. source: "./media/characters/eikthynir/back.svg",
  32177. extra: 1342/1190,
  32178. bottom: 19/1361
  32179. }
  32180. },
  32181. dick: {
  32182. height: math.unit(2.35, "feet"),
  32183. name: "Dick",
  32184. image: {
  32185. source: "./media/characters/eikthynir/dick.svg"
  32186. }
  32187. },
  32188. },
  32189. [
  32190. {
  32191. name: "Normal",
  32192. height: math.unit(8, "feet"),
  32193. default: true
  32194. },
  32195. ]
  32196. ))
  32197. characterMakers.push(() => makeCharacter(
  32198. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32199. {
  32200. front: {
  32201. height: math.unit(99, "meters"),
  32202. weight: math.unit(13000, "tons"),
  32203. name: "Front",
  32204. image: {
  32205. source: "./media/characters/zlmos/front.svg",
  32206. extra: 2202/1992,
  32207. bottom: 315/2517
  32208. }
  32209. },
  32210. },
  32211. [
  32212. {
  32213. name: "Macro",
  32214. height: math.unit(99, "meters"),
  32215. default: true
  32216. },
  32217. ]
  32218. ))
  32219. characterMakers.push(() => makeCharacter(
  32220. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32221. {
  32222. front: {
  32223. height: math.unit(6 + 5/12, "feet"),
  32224. name: "Front",
  32225. image: {
  32226. source: "./media/characters/purri/front.svg",
  32227. extra: 1698/1610,
  32228. bottom: 32/1730
  32229. }
  32230. },
  32231. frontAlt: {
  32232. height: math.unit(6 + 5/12, "feet"),
  32233. name: "Front (Alt)",
  32234. image: {
  32235. source: "./media/characters/purri/front-alt.svg",
  32236. extra: 450/420,
  32237. bottom: 26/476
  32238. }
  32239. },
  32240. boots: {
  32241. height: math.unit(5.5, "feet"),
  32242. name: "Boots",
  32243. image: {
  32244. source: "./media/characters/purri/boots.svg",
  32245. extra: 905/853,
  32246. bottom: 18/923
  32247. }
  32248. },
  32249. lying: {
  32250. height: math.unit(2, "feet"),
  32251. name: "Lying",
  32252. image: {
  32253. source: "./media/characters/purri/lying.svg",
  32254. extra: 940/843,
  32255. bottom: 146/1086
  32256. }
  32257. },
  32258. devious: {
  32259. height: math.unit(1.77, "feet"),
  32260. name: "Devious",
  32261. image: {
  32262. source: "./media/characters/purri/devious.svg",
  32263. extra: 1440/1155,
  32264. bottom: 147/1587
  32265. }
  32266. },
  32267. bean: {
  32268. height: math.unit(1.94, "feet"),
  32269. name: "Bean",
  32270. image: {
  32271. source: "./media/characters/purri/bean.svg"
  32272. }
  32273. },
  32274. },
  32275. [
  32276. {
  32277. name: "Micro",
  32278. height: math.unit(1, "mm")
  32279. },
  32280. {
  32281. name: "Normal",
  32282. height: math.unit(6 + 5/12, "feet"),
  32283. default: true
  32284. },
  32285. {
  32286. name: "Macro :3c",
  32287. height: math.unit(2, "miles")
  32288. },
  32289. ]
  32290. ))
  32291. characterMakers.push(() => makeCharacter(
  32292. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32293. {
  32294. front: {
  32295. height: math.unit(6 + 2/12, "feet"),
  32296. weight: math.unit(250, "lb"),
  32297. name: "Front",
  32298. image: {
  32299. source: "./media/characters/moonlight/front.svg",
  32300. extra: 1044/908,
  32301. bottom: 56/1100
  32302. }
  32303. },
  32304. feral: {
  32305. height: math.unit(3 + 1/12, "feet"),
  32306. weight: math.unit(50, "kg"),
  32307. name: "Feral",
  32308. image: {
  32309. source: "./media/characters/moonlight/feral.svg",
  32310. extra: 3705/2791,
  32311. bottom: 145/3850
  32312. }
  32313. },
  32314. paw: {
  32315. height: math.unit(1, "feet"),
  32316. name: "Paw",
  32317. image: {
  32318. source: "./media/characters/moonlight/paw.svg"
  32319. }
  32320. },
  32321. paws: {
  32322. height: math.unit(0.98, "feet"),
  32323. name: "Paws",
  32324. image: {
  32325. source: "./media/characters/moonlight/paws.svg",
  32326. extra: 939/939,
  32327. bottom: 50/989
  32328. }
  32329. },
  32330. mouth: {
  32331. height: math.unit(0.48, "feet"),
  32332. name: "Mouth",
  32333. image: {
  32334. source: "./media/characters/moonlight/mouth.svg"
  32335. }
  32336. },
  32337. dick: {
  32338. height: math.unit(1.46, "feet"),
  32339. name: "Dick",
  32340. image: {
  32341. source: "./media/characters/moonlight/dick.svg"
  32342. }
  32343. },
  32344. },
  32345. [
  32346. {
  32347. name: "Normal",
  32348. height: math.unit(6 + 2/12, "feet"),
  32349. default: true
  32350. },
  32351. {
  32352. name: "Macro",
  32353. height: math.unit(300, "feet")
  32354. },
  32355. {
  32356. name: "Macro+",
  32357. height: math.unit(1, "mile")
  32358. },
  32359. {
  32360. name: "Mt. Moon",
  32361. height: math.unit(5, "miles")
  32362. },
  32363. {
  32364. name: "Megamacro",
  32365. height: math.unit(15, "miles")
  32366. },
  32367. ]
  32368. ))
  32369. characterMakers.push(() => makeCharacter(
  32370. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32371. {
  32372. back: {
  32373. height: math.unit(6, "feet"),
  32374. weight: math.unit(150, "lb"),
  32375. name: "Back",
  32376. image: {
  32377. source: "./media/characters/sylen/back.svg",
  32378. extra: 1335/1273,
  32379. bottom: 107/1442
  32380. }
  32381. },
  32382. },
  32383. [
  32384. {
  32385. name: "Normal",
  32386. height: math.unit(5 + 5/12, "feet")
  32387. },
  32388. {
  32389. name: "Megamacro",
  32390. height: math.unit(3, "miles"),
  32391. default: true
  32392. },
  32393. ]
  32394. ))
  32395. characterMakers.push(() => makeCharacter(
  32396. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32397. {
  32398. front: {
  32399. height: math.unit(6, "feet"),
  32400. weight: math.unit(190, "lb"),
  32401. name: "Front",
  32402. image: {
  32403. source: "./media/characters/huttser/front.svg",
  32404. extra: 1152/1058,
  32405. bottom: 23/1175
  32406. }
  32407. },
  32408. side: {
  32409. height: math.unit(6, "feet"),
  32410. weight: math.unit(190, "lb"),
  32411. name: "Side",
  32412. image: {
  32413. source: "./media/characters/huttser/side.svg",
  32414. extra: 1174/1065,
  32415. bottom: 18/1192
  32416. }
  32417. },
  32418. back: {
  32419. height: math.unit(6, "feet"),
  32420. weight: math.unit(190, "lb"),
  32421. name: "Back",
  32422. image: {
  32423. source: "./media/characters/huttser/back.svg",
  32424. extra: 1158/1056,
  32425. bottom: 12/1170
  32426. }
  32427. },
  32428. },
  32429. [
  32430. ]
  32431. ))
  32432. characterMakers.push(() => makeCharacter(
  32433. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32434. {
  32435. side: {
  32436. height: math.unit(12 + 9/12, "feet"),
  32437. weight: math.unit(15000, "lb"),
  32438. name: "Side",
  32439. image: {
  32440. source: "./media/characters/faan/side.svg",
  32441. extra: 2747/2697,
  32442. bottom: 0/2747
  32443. }
  32444. },
  32445. front: {
  32446. height: math.unit(12 + 9/12, "feet"),
  32447. weight: math.unit(15000, "lb"),
  32448. name: "Front",
  32449. image: {
  32450. source: "./media/characters/faan/front.svg",
  32451. extra: 607/571,
  32452. bottom: 24/631
  32453. }
  32454. },
  32455. head: {
  32456. height: math.unit(2.85, "feet"),
  32457. name: "Head",
  32458. image: {
  32459. source: "./media/characters/faan/head.svg"
  32460. }
  32461. },
  32462. headAlt: {
  32463. height: math.unit(3.13, "feet"),
  32464. name: "Head-alt",
  32465. image: {
  32466. source: "./media/characters/faan/head-alt.svg"
  32467. }
  32468. },
  32469. },
  32470. [
  32471. {
  32472. name: "Normal",
  32473. height: math.unit(12 + 9/12, "feet"),
  32474. default: true
  32475. },
  32476. ]
  32477. ))
  32478. characterMakers.push(() => makeCharacter(
  32479. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32480. {
  32481. front: {
  32482. height: math.unit(6, "feet"),
  32483. weight: math.unit(300, "lb"),
  32484. name: "Front",
  32485. image: {
  32486. source: "./media/characters/tanio/front.svg",
  32487. extra: 711/673,
  32488. bottom: 25/736
  32489. }
  32490. },
  32491. },
  32492. [
  32493. {
  32494. name: "Normal",
  32495. height: math.unit(6, "feet"),
  32496. default: true
  32497. },
  32498. ]
  32499. ))
  32500. characterMakers.push(() => makeCharacter(
  32501. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32502. {
  32503. front: {
  32504. height: math.unit(3, "inches"),
  32505. name: "Front",
  32506. image: {
  32507. source: "./media/characters/noboru/front.svg",
  32508. extra: 1039/932,
  32509. bottom: 18/1057
  32510. }
  32511. },
  32512. },
  32513. [
  32514. {
  32515. name: "Micro",
  32516. height: math.unit(3, "inches"),
  32517. default: true
  32518. },
  32519. ]
  32520. ))
  32521. characterMakers.push(() => makeCharacter(
  32522. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32523. {
  32524. front: {
  32525. height: math.unit(1.85, "meters"),
  32526. weight: math.unit(80, "kg"),
  32527. name: "Front",
  32528. image: {
  32529. source: "./media/characters/daniel-barrett/front.svg",
  32530. extra: 355/337,
  32531. bottom: 9/364
  32532. }
  32533. },
  32534. },
  32535. [
  32536. {
  32537. name: "Pico",
  32538. height: math.unit(0.0433, "mm")
  32539. },
  32540. {
  32541. name: "Nano",
  32542. height: math.unit(1.5, "mm")
  32543. },
  32544. {
  32545. name: "Micro",
  32546. height: math.unit(5.3, "cm"),
  32547. default: true
  32548. },
  32549. {
  32550. name: "Normal",
  32551. height: math.unit(1.85, "meters")
  32552. },
  32553. {
  32554. name: "Macro",
  32555. height: math.unit(64.7, "meters")
  32556. },
  32557. {
  32558. name: "Megamacro",
  32559. height: math.unit(2.26, "km")
  32560. },
  32561. {
  32562. name: "Gigamacro",
  32563. height: math.unit(79, "km")
  32564. },
  32565. {
  32566. name: "Teramacro",
  32567. height: math.unit(2765, "km")
  32568. },
  32569. {
  32570. name: "Petamacro",
  32571. height: math.unit(96678, "km")
  32572. },
  32573. ]
  32574. ))
  32575. characterMakers.push(() => makeCharacter(
  32576. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32577. {
  32578. front: {
  32579. height: math.unit(30, "meters"),
  32580. weight: math.unit(400, "tons"),
  32581. name: "Front",
  32582. image: {
  32583. source: "./media/characters/zeel/front.svg",
  32584. extra: 2599/2599,
  32585. bottom: 226/2825
  32586. }
  32587. },
  32588. },
  32589. [
  32590. {
  32591. name: "Macro",
  32592. height: math.unit(30, "meters"),
  32593. default: true
  32594. },
  32595. ]
  32596. ))
  32597. characterMakers.push(() => makeCharacter(
  32598. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32599. {
  32600. front: {
  32601. height: math.unit(6 + 7/12, "feet"),
  32602. weight: math.unit(210, "lb"),
  32603. name: "Front",
  32604. image: {
  32605. source: "./media/characters/tarn/front.svg",
  32606. extra: 3517/3220,
  32607. bottom: 91/3608
  32608. }
  32609. },
  32610. back: {
  32611. height: math.unit(6 + 7/12, "feet"),
  32612. weight: math.unit(210, "lb"),
  32613. name: "Back",
  32614. image: {
  32615. source: "./media/characters/tarn/back.svg",
  32616. extra: 3566/3241,
  32617. bottom: 34/3600
  32618. }
  32619. },
  32620. dick: {
  32621. height: math.unit(1.65, "feet"),
  32622. name: "Dick",
  32623. image: {
  32624. source: "./media/characters/tarn/dick.svg"
  32625. }
  32626. },
  32627. paw: {
  32628. height: math.unit(1.80, "feet"),
  32629. name: "Paw",
  32630. image: {
  32631. source: "./media/characters/tarn/paw.svg"
  32632. }
  32633. },
  32634. tongue: {
  32635. height: math.unit(0.97, "feet"),
  32636. name: "Tongue",
  32637. image: {
  32638. source: "./media/characters/tarn/tongue.svg"
  32639. }
  32640. },
  32641. },
  32642. [
  32643. {
  32644. name: "Micro",
  32645. height: math.unit(4, "inches")
  32646. },
  32647. {
  32648. name: "Normal",
  32649. height: math.unit(6 + 7/12, "feet"),
  32650. default: true
  32651. },
  32652. {
  32653. name: "Macro",
  32654. height: math.unit(300, "feet")
  32655. },
  32656. ]
  32657. ))
  32658. characterMakers.push(() => makeCharacter(
  32659. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32660. {
  32661. front: {
  32662. height: math.unit(5 + 7/12, "feet"),
  32663. weight: math.unit(80, "kg"),
  32664. name: "Front",
  32665. image: {
  32666. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32667. extra: 3023/2865,
  32668. bottom: 33/3056
  32669. }
  32670. },
  32671. back: {
  32672. height: math.unit(5 + 7/12, "feet"),
  32673. weight: math.unit(80, "kg"),
  32674. name: "Back",
  32675. image: {
  32676. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32677. extra: 3020/2886,
  32678. bottom: 30/3050
  32679. }
  32680. },
  32681. dick: {
  32682. height: math.unit(0.98, "feet"),
  32683. name: "Dick",
  32684. image: {
  32685. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32686. }
  32687. },
  32688. anatomy: {
  32689. height: math.unit(2.86, "feet"),
  32690. name: "Anatomy",
  32691. image: {
  32692. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32693. }
  32694. },
  32695. },
  32696. [
  32697. {
  32698. name: "Really Small",
  32699. height: math.unit(2, "inches")
  32700. },
  32701. {
  32702. name: "Micro",
  32703. height: math.unit(5.583, "inches")
  32704. },
  32705. {
  32706. name: "Normal",
  32707. height: math.unit(5 + 7/12, "feet"),
  32708. default: true
  32709. },
  32710. {
  32711. name: "Macro",
  32712. height: math.unit(67, "feet")
  32713. },
  32714. {
  32715. name: "Megamacro",
  32716. height: math.unit(134, "feet")
  32717. },
  32718. ]
  32719. ))
  32720. characterMakers.push(() => makeCharacter(
  32721. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32722. {
  32723. front: {
  32724. height: math.unit(9, "feet"),
  32725. weight: math.unit(120, "lb"),
  32726. name: "Front",
  32727. image: {
  32728. source: "./media/characters/sally/front.svg",
  32729. extra: 1506/1349,
  32730. bottom: 66/1572
  32731. }
  32732. },
  32733. },
  32734. [
  32735. {
  32736. name: "Normal",
  32737. height: math.unit(9, "feet"),
  32738. default: true
  32739. },
  32740. ]
  32741. ))
  32742. characterMakers.push(() => makeCharacter(
  32743. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32744. {
  32745. front: {
  32746. height: math.unit(8, "feet"),
  32747. weight: math.unit(900, "lb"),
  32748. name: "Front",
  32749. image: {
  32750. source: "./media/characters/owen/front.svg",
  32751. extra: 1761/1657,
  32752. bottom: 74/1835
  32753. }
  32754. },
  32755. side: {
  32756. height: math.unit(8, "feet"),
  32757. weight: math.unit(900, "lb"),
  32758. name: "Side",
  32759. image: {
  32760. source: "./media/characters/owen/side.svg",
  32761. extra: 1797/1734,
  32762. bottom: 30/1827
  32763. }
  32764. },
  32765. back: {
  32766. height: math.unit(8, "feet"),
  32767. weight: math.unit(900, "lb"),
  32768. name: "Back",
  32769. image: {
  32770. source: "./media/characters/owen/back.svg",
  32771. extra: 1796/1706,
  32772. bottom: 59/1855
  32773. }
  32774. },
  32775. maw: {
  32776. height: math.unit(1.76, "feet"),
  32777. name: "Maw",
  32778. image: {
  32779. source: "./media/characters/owen/maw.svg"
  32780. }
  32781. },
  32782. },
  32783. [
  32784. {
  32785. name: "Normal",
  32786. height: math.unit(8, "feet"),
  32787. default: true
  32788. },
  32789. ]
  32790. ))
  32791. characterMakers.push(() => makeCharacter(
  32792. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32793. {
  32794. front: {
  32795. height: math.unit(4, "feet"),
  32796. weight: math.unit(400, "lb"),
  32797. name: "Front",
  32798. image: {
  32799. source: "./media/characters/ryth/front.svg",
  32800. extra: 1920/1748,
  32801. bottom: 42/1962
  32802. }
  32803. },
  32804. back: {
  32805. height: math.unit(4, "feet"),
  32806. weight: math.unit(400, "lb"),
  32807. name: "Back",
  32808. image: {
  32809. source: "./media/characters/ryth/back.svg",
  32810. extra: 1897/1690,
  32811. bottom: 89/1986
  32812. }
  32813. },
  32814. mouth: {
  32815. height: math.unit(1.39, "feet"),
  32816. name: "Mouth",
  32817. image: {
  32818. source: "./media/characters/ryth/mouth.svg"
  32819. }
  32820. },
  32821. tailmaw: {
  32822. height: math.unit(1.23, "feet"),
  32823. name: "Tailmaw",
  32824. image: {
  32825. source: "./media/characters/ryth/tailmaw.svg"
  32826. }
  32827. },
  32828. goia: {
  32829. height: math.unit(4, "meters"),
  32830. weight: math.unit(10800, "lb"),
  32831. name: "Goia",
  32832. image: {
  32833. source: "./media/characters/ryth/goia.svg",
  32834. extra: 745/640,
  32835. bottom: 107/852
  32836. }
  32837. },
  32838. goiaFront: {
  32839. height: math.unit(4, "meters"),
  32840. weight: math.unit(10800, "lb"),
  32841. name: "Goia (Front)",
  32842. image: {
  32843. source: "./media/characters/ryth/goia-front.svg",
  32844. extra: 750/586,
  32845. bottom: 114/864
  32846. }
  32847. },
  32848. goiaMaw: {
  32849. height: math.unit(5.55, "feet"),
  32850. name: "Goia Maw",
  32851. image: {
  32852. source: "./media/characters/ryth/goia-maw.svg"
  32853. }
  32854. },
  32855. goiaForepaw: {
  32856. height: math.unit(3.5, "feet"),
  32857. name: "Goia Forepaw",
  32858. image: {
  32859. source: "./media/characters/ryth/goia-forepaw.svg"
  32860. }
  32861. },
  32862. goiaHindpaw: {
  32863. height: math.unit(5.55, "feet"),
  32864. name: "Goia Hindpaw",
  32865. image: {
  32866. source: "./media/characters/ryth/goia-hindpaw.svg"
  32867. }
  32868. },
  32869. },
  32870. [
  32871. {
  32872. name: "Normal",
  32873. height: math.unit(4, "feet"),
  32874. default: true
  32875. },
  32876. ]
  32877. ))
  32878. characterMakers.push(() => makeCharacter(
  32879. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32880. {
  32881. front: {
  32882. height: math.unit(7, "feet"),
  32883. weight: math.unit(180, "lb"),
  32884. name: "Front",
  32885. image: {
  32886. source: "./media/characters/necrolance/front.svg",
  32887. extra: 1062/947,
  32888. bottom: 41/1103
  32889. }
  32890. },
  32891. back: {
  32892. height: math.unit(7, "feet"),
  32893. weight: math.unit(180, "lb"),
  32894. name: "Back",
  32895. image: {
  32896. source: "./media/characters/necrolance/back.svg",
  32897. extra: 1045/984,
  32898. bottom: 14/1059
  32899. }
  32900. },
  32901. wing: {
  32902. height: math.unit(2.67, "feet"),
  32903. name: "Wing",
  32904. image: {
  32905. source: "./media/characters/necrolance/wing.svg"
  32906. }
  32907. },
  32908. },
  32909. [
  32910. {
  32911. name: "Normal",
  32912. height: math.unit(7, "feet"),
  32913. default: true
  32914. },
  32915. ]
  32916. ))
  32917. characterMakers.push(() => makeCharacter(
  32918. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32919. {
  32920. front: {
  32921. height: math.unit(76, "meters"),
  32922. weight: math.unit(30000, "tons"),
  32923. name: "Front",
  32924. image: {
  32925. source: "./media/characters/tyler/front.svg",
  32926. extra: 1640/1640,
  32927. bottom: 114/1754
  32928. }
  32929. },
  32930. },
  32931. [
  32932. {
  32933. name: "Macro",
  32934. height: math.unit(76, "meters"),
  32935. default: true
  32936. },
  32937. ]
  32938. ))
  32939. characterMakers.push(() => makeCharacter(
  32940. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32941. {
  32942. front: {
  32943. height: math.unit(4 + 11/12, "feet"),
  32944. weight: math.unit(132, "lb"),
  32945. name: "Front",
  32946. image: {
  32947. source: "./media/characters/icey/front.svg",
  32948. extra: 2750/2550,
  32949. bottom: 33/2783
  32950. }
  32951. },
  32952. back: {
  32953. height: math.unit(4 + 11/12, "feet"),
  32954. weight: math.unit(132, "lb"),
  32955. name: "Back",
  32956. image: {
  32957. source: "./media/characters/icey/back.svg",
  32958. extra: 2624/2481,
  32959. bottom: 35/2659
  32960. }
  32961. },
  32962. },
  32963. [
  32964. {
  32965. name: "Normal",
  32966. height: math.unit(4 + 11/12, "feet"),
  32967. default: true
  32968. },
  32969. ]
  32970. ))
  32971. characterMakers.push(() => makeCharacter(
  32972. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32973. {
  32974. front: {
  32975. height: math.unit(100, "feet"),
  32976. weight: math.unit(0, "lb"),
  32977. name: "Front",
  32978. image: {
  32979. source: "./media/characters/smile/front.svg",
  32980. extra: 2983/2912,
  32981. bottom: 162/3145
  32982. }
  32983. },
  32984. back: {
  32985. height: math.unit(100, "feet"),
  32986. weight: math.unit(0, "lb"),
  32987. name: "Back",
  32988. image: {
  32989. source: "./media/characters/smile/back.svg",
  32990. extra: 3143/3031,
  32991. bottom: 91/3234
  32992. }
  32993. },
  32994. head: {
  32995. height: math.unit(26.3, "feet"),
  32996. weight: math.unit(0, "lb"),
  32997. name: "Head",
  32998. image: {
  32999. source: "./media/characters/smile/head.svg"
  33000. }
  33001. },
  33002. collar: {
  33003. height: math.unit(5.3, "feet"),
  33004. weight: math.unit(0, "lb"),
  33005. name: "Collar",
  33006. image: {
  33007. source: "./media/characters/smile/collar.svg"
  33008. }
  33009. },
  33010. },
  33011. [
  33012. {
  33013. name: "Macro",
  33014. height: math.unit(100, "feet"),
  33015. default: true
  33016. },
  33017. ]
  33018. ))
  33019. characterMakers.push(() => makeCharacter(
  33020. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33021. {
  33022. dragon: {
  33023. height: math.unit(26, "feet"),
  33024. weight: math.unit(36, "tons"),
  33025. name: "Dragon",
  33026. image: {
  33027. source: "./media/characters/arimphae/dragon.svg",
  33028. extra: 1574/983,
  33029. bottom: 357/1931
  33030. }
  33031. },
  33032. drake: {
  33033. height: math.unit(9, "feet"),
  33034. weight: math.unit(1.5, "tons"),
  33035. name: "Drake",
  33036. image: {
  33037. source: "./media/characters/arimphae/drake.svg",
  33038. extra: 1120/925,
  33039. bottom: 435/1555
  33040. }
  33041. },
  33042. },
  33043. [
  33044. {
  33045. name: "Small",
  33046. height: math.unit(26*5/9, "feet")
  33047. },
  33048. {
  33049. name: "Normal",
  33050. height: math.unit(26, "feet"),
  33051. default: true
  33052. },
  33053. ]
  33054. ))
  33055. characterMakers.push(() => makeCharacter(
  33056. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33057. {
  33058. front: {
  33059. height: math.unit(8 + 9/12, "feet"),
  33060. name: "Front",
  33061. image: {
  33062. source: "./media/characters/xander/front.svg",
  33063. extra: 1237/974,
  33064. bottom: 94/1331
  33065. }
  33066. },
  33067. },
  33068. [
  33069. {
  33070. name: "Normal",
  33071. height: math.unit(8 + 9/12, "feet"),
  33072. default: true
  33073. },
  33074. {
  33075. name: "Gaze Grabber",
  33076. height: math.unit(13 + 8/12, "feet")
  33077. },
  33078. {
  33079. name: "Jaw Dropper",
  33080. height: math.unit(27, "feet")
  33081. },
  33082. {
  33083. name: "Show Stopper",
  33084. height: math.unit(136, "feet")
  33085. },
  33086. {
  33087. name: "Superstar",
  33088. height: math.unit(1.9e6, "miles")
  33089. },
  33090. ]
  33091. ))
  33092. characterMakers.push(() => makeCharacter(
  33093. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33094. {
  33095. side: {
  33096. height: math.unit(2100, "feet"),
  33097. name: "Side",
  33098. image: {
  33099. source: "./media/characters/osiris/side.svg",
  33100. extra: 1105/939,
  33101. bottom: 167/1272
  33102. }
  33103. },
  33104. },
  33105. [
  33106. {
  33107. name: "Macro",
  33108. height: math.unit(2100, "feet"),
  33109. default: true
  33110. },
  33111. ]
  33112. ))
  33113. characterMakers.push(() => makeCharacter(
  33114. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33115. {
  33116. front: {
  33117. height: math.unit(6 + 8/12, "feet"),
  33118. weight: math.unit(225, "lb"),
  33119. name: "Front",
  33120. image: {
  33121. source: "./media/characters/rhys-londe/front.svg",
  33122. extra: 2258/2141,
  33123. bottom: 188/2446
  33124. }
  33125. },
  33126. back: {
  33127. height: math.unit(6 + 8/12, "feet"),
  33128. weight: math.unit(225, "lb"),
  33129. name: "Back",
  33130. image: {
  33131. source: "./media/characters/rhys-londe/back.svg",
  33132. extra: 2237/2137,
  33133. bottom: 63/2300
  33134. }
  33135. },
  33136. frontNsfw: {
  33137. height: math.unit(6 + 8/12, "feet"),
  33138. weight: math.unit(225, "lb"),
  33139. name: "Front (NSFW)",
  33140. image: {
  33141. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33142. extra: 2258/2141,
  33143. bottom: 188/2446
  33144. }
  33145. },
  33146. backNsfw: {
  33147. height: math.unit(6 + 8/12, "feet"),
  33148. weight: math.unit(225, "lb"),
  33149. name: "Back (NSFW)",
  33150. image: {
  33151. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33152. extra: 2237/2137,
  33153. bottom: 63/2300
  33154. }
  33155. },
  33156. dick: {
  33157. height: math.unit(30, "inches"),
  33158. name: "Dick",
  33159. image: {
  33160. source: "./media/characters/rhys-londe/dick.svg"
  33161. }
  33162. },
  33163. maw: {
  33164. height: math.unit(1.6, "feet"),
  33165. name: "Maw",
  33166. image: {
  33167. source: "./media/characters/rhys-londe/maw.svg"
  33168. }
  33169. },
  33170. },
  33171. [
  33172. {
  33173. name: "Normal",
  33174. height: math.unit(6 + 8/12, "feet"),
  33175. default: true
  33176. },
  33177. ]
  33178. ))
  33179. characterMakers.push(() => makeCharacter(
  33180. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33181. {
  33182. front: {
  33183. height: math.unit(3 + 10/12, "feet"),
  33184. weight: math.unit(90, "lb"),
  33185. name: "Front",
  33186. image: {
  33187. source: "./media/characters/taivas-ensim/front.svg",
  33188. extra: 1327/1216,
  33189. bottom: 96/1423
  33190. }
  33191. },
  33192. back: {
  33193. height: math.unit(3 + 10/12, "feet"),
  33194. weight: math.unit(90, "lb"),
  33195. name: "Back",
  33196. image: {
  33197. source: "./media/characters/taivas-ensim/back.svg",
  33198. extra: 1355/1247,
  33199. bottom: 11/1366
  33200. }
  33201. },
  33202. frontNsfw: {
  33203. height: math.unit(3 + 10/12, "feet"),
  33204. weight: math.unit(90, "lb"),
  33205. name: "Front (NSFW)",
  33206. image: {
  33207. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33208. extra: 1327/1216,
  33209. bottom: 96/1423
  33210. }
  33211. },
  33212. backNsfw: {
  33213. height: math.unit(3 + 10/12, "feet"),
  33214. weight: math.unit(90, "lb"),
  33215. name: "Back (NSFW)",
  33216. image: {
  33217. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33218. extra: 1355/1247,
  33219. bottom: 11/1366
  33220. }
  33221. },
  33222. },
  33223. [
  33224. {
  33225. name: "Normal",
  33226. height: math.unit(3 + 10/12, "feet"),
  33227. default: true
  33228. },
  33229. ]
  33230. ))
  33231. characterMakers.push(() => makeCharacter(
  33232. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33233. {
  33234. front: {
  33235. height: math.unit(9 + 6/12, "feet"),
  33236. weight: math.unit(940, "lb"),
  33237. name: "Front",
  33238. image: {
  33239. source: "./media/characters/byliss/front.svg",
  33240. extra: 1327/1290,
  33241. bottom: 82/1409
  33242. }
  33243. },
  33244. back: {
  33245. height: math.unit(9 + 6/12, "feet"),
  33246. weight: math.unit(940, "lb"),
  33247. name: "Back",
  33248. image: {
  33249. source: "./media/characters/byliss/back.svg",
  33250. extra: 1376/1349,
  33251. bottom: 9/1385
  33252. }
  33253. },
  33254. frontNsfw: {
  33255. height: math.unit(9 + 6/12, "feet"),
  33256. weight: math.unit(940, "lb"),
  33257. name: "Front (NSFW)",
  33258. image: {
  33259. source: "./media/characters/byliss/front-nsfw.svg",
  33260. extra: 1327/1290,
  33261. bottom: 82/1409
  33262. }
  33263. },
  33264. backNsfw: {
  33265. height: math.unit(9 + 6/12, "feet"),
  33266. weight: math.unit(940, "lb"),
  33267. name: "Back (NSFW)",
  33268. image: {
  33269. source: "./media/characters/byliss/back-nsfw.svg",
  33270. extra: 1376/1349,
  33271. bottom: 9/1385
  33272. }
  33273. },
  33274. },
  33275. [
  33276. {
  33277. name: "Normal",
  33278. height: math.unit(9 + 6/12, "feet"),
  33279. default: true
  33280. },
  33281. ]
  33282. ))
  33283. characterMakers.push(() => makeCharacter(
  33284. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33285. {
  33286. front: {
  33287. height: math.unit(5 + 2/12, "feet"),
  33288. weight: math.unit(200, "lb"),
  33289. name: "Front",
  33290. image: {
  33291. source: "./media/characters/noraly/front.svg",
  33292. extra: 4985/4773,
  33293. bottom: 150/5135
  33294. }
  33295. },
  33296. full: {
  33297. height: math.unit(5 + 2/12, "feet"),
  33298. weight: math.unit(164, "lb"),
  33299. name: "Full",
  33300. image: {
  33301. source: "./media/characters/noraly/full.svg",
  33302. extra: 1114/1059,
  33303. bottom: 35/1149
  33304. }
  33305. },
  33306. fuller: {
  33307. height: math.unit(5 + 2/12, "feet"),
  33308. weight: math.unit(230, "lb"),
  33309. name: "Fuller",
  33310. image: {
  33311. source: "./media/characters/noraly/fuller.svg",
  33312. extra: 1114/1059,
  33313. bottom: 35/1149
  33314. }
  33315. },
  33316. fullest: {
  33317. height: math.unit(5 + 2/12, "feet"),
  33318. weight: math.unit(300, "lb"),
  33319. name: "Fullest",
  33320. image: {
  33321. source: "./media/characters/noraly/fullest.svg",
  33322. extra: 1114/1059,
  33323. bottom: 35/1149
  33324. }
  33325. },
  33326. },
  33327. [
  33328. {
  33329. name: "Normal",
  33330. height: math.unit(5 + 2/12, "feet"),
  33331. default: true
  33332. },
  33333. ]
  33334. ))
  33335. characterMakers.push(() => makeCharacter(
  33336. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33337. {
  33338. front: {
  33339. height: math.unit(5 + 2/12, "feet"),
  33340. weight: math.unit(210, "lb"),
  33341. name: "Front",
  33342. image: {
  33343. source: "./media/characters/pera/front.svg",
  33344. extra: 1560/1531,
  33345. bottom: 165/1725
  33346. }
  33347. },
  33348. back: {
  33349. height: math.unit(5 + 2/12, "feet"),
  33350. weight: math.unit(210, "lb"),
  33351. name: "Back",
  33352. image: {
  33353. source: "./media/characters/pera/back.svg",
  33354. extra: 1523/1493,
  33355. bottom: 152/1675
  33356. }
  33357. },
  33358. dick: {
  33359. height: math.unit(2.4, "feet"),
  33360. name: "Dick",
  33361. image: {
  33362. source: "./media/characters/pera/dick.svg"
  33363. }
  33364. },
  33365. },
  33366. [
  33367. {
  33368. name: "Normal",
  33369. height: math.unit(5 + 2/12, "feet"),
  33370. default: true
  33371. },
  33372. ]
  33373. ))
  33374. characterMakers.push(() => makeCharacter(
  33375. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33376. {
  33377. front: {
  33378. height: math.unit(12, "feet"),
  33379. weight: math.unit(3200, "lb"),
  33380. name: "Front",
  33381. image: {
  33382. source: "./media/characters/julian/front.svg",
  33383. extra: 2962/2701,
  33384. bottom: 184/3146
  33385. }
  33386. },
  33387. maw: {
  33388. height: math.unit(5.35, "feet"),
  33389. name: "Maw",
  33390. image: {
  33391. source: "./media/characters/julian/maw.svg"
  33392. }
  33393. },
  33394. paw: {
  33395. height: math.unit(3.07, "feet"),
  33396. name: "Paw",
  33397. image: {
  33398. source: "./media/characters/julian/paw.svg"
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Default",
  33405. height: math.unit(12, "feet"),
  33406. default: true
  33407. },
  33408. {
  33409. name: "Big",
  33410. height: math.unit(50, "feet")
  33411. },
  33412. {
  33413. name: "Really Big",
  33414. height: math.unit(1, "mile")
  33415. },
  33416. {
  33417. name: "Extremely Big",
  33418. height: math.unit(100, "miles")
  33419. },
  33420. {
  33421. name: "Planet Hugger",
  33422. height: math.unit(200, "megameters")
  33423. },
  33424. {
  33425. name: "Unreasonably Big",
  33426. height: math.unit(1e300, "meters")
  33427. },
  33428. ]
  33429. ))
  33430. characterMakers.push(() => makeCharacter(
  33431. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33432. {
  33433. solgooleo: {
  33434. height: math.unit(4, "meters"),
  33435. weight: math.unit(6000*1.5, "kg"),
  33436. volume: math.unit(6000, "liters"),
  33437. name: "Solgooleo",
  33438. image: {
  33439. source: "./media/characters/pi/solgooleo.svg",
  33440. extra: 388/331,
  33441. bottom: 29/417
  33442. }
  33443. },
  33444. },
  33445. [
  33446. {
  33447. name: "Normal",
  33448. height: math.unit(4, "meters"),
  33449. default: true
  33450. },
  33451. ]
  33452. ))
  33453. characterMakers.push(() => makeCharacter(
  33454. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33455. {
  33456. front: {
  33457. height: math.unit(8, "feet"),
  33458. weight: math.unit(4, "tons"),
  33459. name: "Front",
  33460. image: {
  33461. source: "./media/characters/shaun/front.svg",
  33462. extra: 503/495,
  33463. bottom: 20/523
  33464. }
  33465. },
  33466. back: {
  33467. height: math.unit(8, "feet"),
  33468. weight: math.unit(4, "tons"),
  33469. name: "Back",
  33470. image: {
  33471. source: "./media/characters/shaun/back.svg",
  33472. extra: 487/480,
  33473. bottom: 20/507
  33474. }
  33475. },
  33476. },
  33477. [
  33478. {
  33479. name: "Lorg",
  33480. height: math.unit(8, "feet"),
  33481. default: true
  33482. },
  33483. ]
  33484. ))
  33485. characterMakers.push(() => makeCharacter(
  33486. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33487. {
  33488. frontAnthro: {
  33489. height: math.unit(7, "feet"),
  33490. name: "Front",
  33491. image: {
  33492. source: "./media/characters/sini/front-anthro.svg",
  33493. extra: 726/678,
  33494. bottom: 35/761
  33495. },
  33496. form: "anthro",
  33497. default: true
  33498. },
  33499. backAnthro: {
  33500. height: math.unit(7, "feet"),
  33501. name: "Back",
  33502. image: {
  33503. source: "./media/characters/sini/back-anthro.svg",
  33504. extra: 743/701,
  33505. bottom: 12/755
  33506. },
  33507. form: "anthro",
  33508. },
  33509. frontAnthroNsfw: {
  33510. height: math.unit(7, "feet"),
  33511. name: "Front (NSFW)",
  33512. image: {
  33513. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33514. extra: 726/678,
  33515. bottom: 35/761
  33516. },
  33517. form: "anthro"
  33518. },
  33519. backAnthroNsfw: {
  33520. height: math.unit(7, "feet"),
  33521. name: "Back (NSFW)",
  33522. image: {
  33523. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33524. extra: 743/701,
  33525. bottom: 12/755
  33526. },
  33527. form: "anthro",
  33528. },
  33529. mawAnthro: {
  33530. height: math.unit(2.14, "feet"),
  33531. name: "Maw",
  33532. image: {
  33533. source: "./media/characters/sini/maw-anthro.svg"
  33534. },
  33535. form: "anthro"
  33536. },
  33537. dick: {
  33538. height: math.unit(1.45, "feet"),
  33539. name: "Dick",
  33540. image: {
  33541. source: "./media/characters/sini/dick-anthro.svg"
  33542. },
  33543. form: "anthro"
  33544. },
  33545. feral: {
  33546. height: math.unit(16, "feet"),
  33547. name: "Feral",
  33548. image: {
  33549. source: "./media/characters/sini/feral.svg",
  33550. extra: 814/605,
  33551. bottom: 11/825
  33552. },
  33553. form: "feral",
  33554. default: true
  33555. },
  33556. feralNsfw: {
  33557. height: math.unit(16, "feet"),
  33558. name: "Feral (NSFW)",
  33559. image: {
  33560. source: "./media/characters/sini/feral-nsfw.svg",
  33561. extra: 814/605,
  33562. bottom: 11/825
  33563. },
  33564. form: "feral"
  33565. },
  33566. mawFeral: {
  33567. height: math.unit(5.66, "feet"),
  33568. name: "Maw",
  33569. image: {
  33570. source: "./media/characters/sini/maw-feral.svg"
  33571. },
  33572. form: "feral",
  33573. },
  33574. pawFeral: {
  33575. height: math.unit(5.17, "feet"),
  33576. name: "Paw",
  33577. image: {
  33578. source: "./media/characters/sini/paw-feral.svg"
  33579. },
  33580. form: "feral",
  33581. },
  33582. rumpFeral: {
  33583. height: math.unit(13.11, "feet"),
  33584. name: "Rump",
  33585. image: {
  33586. source: "./media/characters/sini/rump-feral.svg"
  33587. },
  33588. form: "feral",
  33589. },
  33590. dickFeral: {
  33591. height: math.unit(1, "feet"),
  33592. name: "Dick",
  33593. image: {
  33594. source: "./media/characters/sini/dick-feral.svg"
  33595. },
  33596. form: "feral",
  33597. },
  33598. eyeFeral: {
  33599. height: math.unit(1.23, "feet"),
  33600. name: "Eye",
  33601. image: {
  33602. source: "./media/characters/sini/eye-feral.svg"
  33603. },
  33604. form: "feral",
  33605. },
  33606. },
  33607. [
  33608. {
  33609. name: "Normal",
  33610. height: math.unit(7, "feet"),
  33611. default: true,
  33612. form: "anthro"
  33613. },
  33614. {
  33615. name: "Normal",
  33616. height: math.unit(16, "feet"),
  33617. default: true,
  33618. form: "feral"
  33619. },
  33620. ],
  33621. {
  33622. "anthro": {
  33623. name: "Anthro",
  33624. default: true
  33625. },
  33626. "feral": {
  33627. name: "Feral",
  33628. }
  33629. }
  33630. ))
  33631. characterMakers.push(() => makeCharacter(
  33632. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33633. {
  33634. side: {
  33635. height: math.unit(13, "meters"),
  33636. weight: math.unit(9072, "kg"),
  33637. name: "Side",
  33638. image: {
  33639. source: "./media/characters/raylldo/side.svg",
  33640. extra: 403/344,
  33641. bottom: 42/445
  33642. }
  33643. },
  33644. leaping: {
  33645. height: math.unit(12.3, "meters"),
  33646. weight: math.unit(9072, "kg"),
  33647. name: "Leaping",
  33648. image: {
  33649. source: "./media/characters/raylldo/leaping.svg",
  33650. extra: 470/249,
  33651. bottom: 13/483
  33652. }
  33653. },
  33654. flying: {
  33655. height: math.unit(18, "meters"),
  33656. weight: math.unit(9072, "kg"),
  33657. name: "Flying",
  33658. image: {
  33659. source: "./media/characters/raylldo/flying.svg"
  33660. }
  33661. },
  33662. head: {
  33663. height: math.unit(5.85, "meters"),
  33664. name: "Head",
  33665. image: {
  33666. source: "./media/characters/raylldo/head.svg"
  33667. }
  33668. },
  33669. maw: {
  33670. height: math.unit(5.32, "meters"),
  33671. name: "Maw",
  33672. image: {
  33673. source: "./media/characters/raylldo/maw.svg"
  33674. }
  33675. },
  33676. eye: {
  33677. height: math.unit(0.54, "meters"),
  33678. name: "Eye",
  33679. image: {
  33680. source: "./media/characters/raylldo/eye.svg"
  33681. }
  33682. },
  33683. },
  33684. [
  33685. {
  33686. name: "Normal",
  33687. height: math.unit(13, "meters"),
  33688. default: true
  33689. },
  33690. ]
  33691. ))
  33692. characterMakers.push(() => makeCharacter(
  33693. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33694. {
  33695. anthroFront: {
  33696. height: math.unit(9, "feet"),
  33697. weight: math.unit(600, "lb"),
  33698. name: "Anthro (Front)",
  33699. image: {
  33700. source: "./media/characters/glint/anthro-front.svg",
  33701. extra: 1097/1018,
  33702. bottom: 28/1125
  33703. }
  33704. },
  33705. anthroBack: {
  33706. height: math.unit(9, "feet"),
  33707. weight: math.unit(600, "lb"),
  33708. name: "Anthro (Back)",
  33709. image: {
  33710. source: "./media/characters/glint/anthro-back.svg",
  33711. extra: 1154/997,
  33712. bottom: 36/1190
  33713. }
  33714. },
  33715. feral: {
  33716. height: math.unit(11, "feet"),
  33717. weight: math.unit(50000, "lb"),
  33718. name: "Feral",
  33719. image: {
  33720. source: "./media/characters/glint/feral.svg",
  33721. extra: 3035/1585,
  33722. bottom: 1169/4204
  33723. }
  33724. },
  33725. dickAnthro: {
  33726. height: math.unit(0.7, "meters"),
  33727. name: "Dick (Anthro)",
  33728. image: {
  33729. source: "./media/characters/glint/dick-anthro.svg"
  33730. }
  33731. },
  33732. dickFeral: {
  33733. height: math.unit(2.65, "meters"),
  33734. name: "Dick (Feral)",
  33735. image: {
  33736. source: "./media/characters/glint/dick-feral.svg"
  33737. }
  33738. },
  33739. slitHidden: {
  33740. height: math.unit(5.85, "meters"),
  33741. name: "Slit (Hidden)",
  33742. image: {
  33743. source: "./media/characters/glint/slit-hidden.svg"
  33744. }
  33745. },
  33746. slitErect: {
  33747. height: math.unit(5.85, "meters"),
  33748. name: "Slit (Erect)",
  33749. image: {
  33750. source: "./media/characters/glint/slit-erect.svg"
  33751. }
  33752. },
  33753. mawAnthro: {
  33754. height: math.unit(0.63, "meters"),
  33755. name: "Maw (Anthro)",
  33756. image: {
  33757. source: "./media/characters/glint/maw.svg"
  33758. }
  33759. },
  33760. mawFeral: {
  33761. height: math.unit(2.89, "meters"),
  33762. name: "Maw (Feral)",
  33763. image: {
  33764. source: "./media/characters/glint/maw.svg"
  33765. }
  33766. },
  33767. },
  33768. [
  33769. {
  33770. name: "Normal",
  33771. height: math.unit(9, "feet"),
  33772. default: true
  33773. },
  33774. ]
  33775. ))
  33776. characterMakers.push(() => makeCharacter(
  33777. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33778. {
  33779. side: {
  33780. height: math.unit(15, "feet"),
  33781. weight: math.unit(5000, "kg"),
  33782. name: "Side",
  33783. image: {
  33784. source: "./media/characters/kairne/side.svg",
  33785. extra: 979/811,
  33786. bottom: 13/992
  33787. }
  33788. },
  33789. front: {
  33790. height: math.unit(15, "feet"),
  33791. weight: math.unit(5000, "kg"),
  33792. name: "Front",
  33793. image: {
  33794. source: "./media/characters/kairne/front.svg",
  33795. extra: 908/814,
  33796. bottom: 26/934
  33797. }
  33798. },
  33799. sideNsfw: {
  33800. height: math.unit(15, "feet"),
  33801. weight: math.unit(5000, "kg"),
  33802. name: "Side (NSFW)",
  33803. image: {
  33804. source: "./media/characters/kairne/side-nsfw.svg",
  33805. extra: 979/811,
  33806. bottom: 13/992
  33807. }
  33808. },
  33809. frontNsfw: {
  33810. height: math.unit(15, "feet"),
  33811. weight: math.unit(5000, "kg"),
  33812. name: "Front (NSFW)",
  33813. image: {
  33814. source: "./media/characters/kairne/front-nsfw.svg",
  33815. extra: 908/814,
  33816. bottom: 26/934
  33817. }
  33818. },
  33819. dickCaged: {
  33820. height: math.unit(0.65, "meters"),
  33821. name: "Dick-caged",
  33822. image: {
  33823. source: "./media/characters/kairne/dick-caged.svg"
  33824. }
  33825. },
  33826. dick: {
  33827. height: math.unit(0.79, "meters"),
  33828. name: "Dick",
  33829. image: {
  33830. source: "./media/characters/kairne/dick.svg"
  33831. }
  33832. },
  33833. genitals: {
  33834. height: math.unit(1.29, "meters"),
  33835. name: "Genitals",
  33836. image: {
  33837. source: "./media/characters/kairne/genitals.svg"
  33838. }
  33839. },
  33840. maw: {
  33841. height: math.unit(1.73, "meters"),
  33842. name: "Maw",
  33843. image: {
  33844. source: "./media/characters/kairne/maw.svg"
  33845. }
  33846. },
  33847. },
  33848. [
  33849. {
  33850. name: "Normal",
  33851. height: math.unit(15, "feet"),
  33852. default: true
  33853. },
  33854. ]
  33855. ))
  33856. characterMakers.push(() => makeCharacter(
  33857. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33858. {
  33859. front: {
  33860. height: math.unit(5 + 8/12, "feet"),
  33861. weight: math.unit(139, "lb"),
  33862. name: "Front",
  33863. image: {
  33864. source: "./media/characters/biscuit-jackal/front.svg",
  33865. extra: 2106/1961,
  33866. bottom: 58/2164
  33867. }
  33868. },
  33869. back: {
  33870. height: math.unit(5 + 8/12, "feet"),
  33871. weight: math.unit(139, "lb"),
  33872. name: "Back",
  33873. image: {
  33874. source: "./media/characters/biscuit-jackal/back.svg",
  33875. extra: 2132/1976,
  33876. bottom: 57/2189
  33877. }
  33878. },
  33879. werejackal: {
  33880. height: math.unit(6 + 3/12, "feet"),
  33881. weight: math.unit(188, "lb"),
  33882. name: "Werejackal",
  33883. image: {
  33884. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33885. extra: 2373/2178,
  33886. bottom: 53/2426
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Normal",
  33893. height: math.unit(5 + 8/12, "feet"),
  33894. default: true
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33900. {
  33901. front: {
  33902. height: math.unit(140, "cm"),
  33903. weight: math.unit(45, "kg"),
  33904. name: "Front",
  33905. image: {
  33906. source: "./media/characters/tayra-white/front.svg",
  33907. extra: 2229/2192,
  33908. bottom: 75/2304
  33909. }
  33910. },
  33911. },
  33912. [
  33913. {
  33914. name: "Normal",
  33915. height: math.unit(140, "cm"),
  33916. default: true
  33917. },
  33918. ]
  33919. ))
  33920. characterMakers.push(() => makeCharacter(
  33921. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33922. {
  33923. front: {
  33924. height: math.unit(4 + 5/12, "feet"),
  33925. name: "Front",
  33926. image: {
  33927. source: "./media/characters/scoop/front.svg",
  33928. extra: 1257/1136,
  33929. bottom: 69/1326
  33930. }
  33931. },
  33932. back: {
  33933. height: math.unit(4 + 5/12, "feet"),
  33934. name: "Back",
  33935. image: {
  33936. source: "./media/characters/scoop/back.svg",
  33937. extra: 1321/1152,
  33938. bottom: 32/1353
  33939. }
  33940. },
  33941. maw: {
  33942. height: math.unit(0.68, "feet"),
  33943. name: "Maw",
  33944. image: {
  33945. source: "./media/characters/scoop/maw.svg"
  33946. }
  33947. },
  33948. },
  33949. [
  33950. {
  33951. name: "Really Small",
  33952. height: math.unit(1, "mm")
  33953. },
  33954. {
  33955. name: "Micro",
  33956. height: math.unit(1, "inch")
  33957. },
  33958. {
  33959. name: "Normal",
  33960. height: math.unit(4 + 5/12, "feet"),
  33961. default: true
  33962. },
  33963. {
  33964. name: "Macro",
  33965. height: math.unit(200, "feet")
  33966. },
  33967. {
  33968. name: "Megamacro",
  33969. height: math.unit(3240, "feet")
  33970. },
  33971. {
  33972. name: "Teramacro",
  33973. height: math.unit(2500, "miles")
  33974. },
  33975. ]
  33976. ))
  33977. characterMakers.push(() => makeCharacter(
  33978. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33979. {
  33980. front: {
  33981. height: math.unit(15 + 7/12, "feet"),
  33982. weight: math.unit(1150, "tons"),
  33983. name: "Front",
  33984. image: {
  33985. source: "./media/characters/saphinara/front.svg",
  33986. extra: 1837/1643,
  33987. bottom: 84/1921
  33988. },
  33989. form: "normal",
  33990. default: true
  33991. },
  33992. side: {
  33993. height: math.unit(15 + 7/12, "feet"),
  33994. weight: math.unit(1150, "tons"),
  33995. name: "Side",
  33996. image: {
  33997. source: "./media/characters/saphinara/side.svg",
  33998. extra: 605/547,
  33999. bottom: 6/611
  34000. },
  34001. form: "normal"
  34002. },
  34003. back: {
  34004. height: math.unit(15 + 7/12, "feet"),
  34005. weight: math.unit(1150, "tons"),
  34006. name: "Back",
  34007. image: {
  34008. source: "./media/characters/saphinara/back.svg",
  34009. extra: 591/531,
  34010. bottom: 13/604
  34011. },
  34012. form: "normal"
  34013. },
  34014. frontTail: {
  34015. height: math.unit(15 + 7/12, "feet"),
  34016. weight: math.unit(1150, "tons"),
  34017. name: "Front (Full Tail)",
  34018. image: {
  34019. source: "./media/characters/saphinara/front-tail.svg",
  34020. extra: 2256/1630,
  34021. bottom: 261/2517
  34022. },
  34023. form: "normal"
  34024. },
  34025. insides: {
  34026. height: math.unit(11.92, "feet"),
  34027. name: "Insides",
  34028. image: {
  34029. source: "./media/characters/saphinara/insides.svg"
  34030. },
  34031. form: "normal"
  34032. },
  34033. head: {
  34034. height: math.unit(4.17, "feet"),
  34035. name: "Head",
  34036. image: {
  34037. source: "./media/characters/saphinara/head.svg"
  34038. },
  34039. form: "normal"
  34040. },
  34041. tongue: {
  34042. height: math.unit(4.60, "feet"),
  34043. name: "Tongue",
  34044. image: {
  34045. source: "./media/characters/saphinara/tongue.svg"
  34046. },
  34047. form: "normal"
  34048. },
  34049. headEnraged: {
  34050. height: math.unit(5.55, "feet"),
  34051. name: "Head (Enraged)",
  34052. image: {
  34053. source: "./media/characters/saphinara/head-enraged.svg"
  34054. },
  34055. form: "normal"
  34056. },
  34057. wings: {
  34058. height: math.unit(11.95, "feet"),
  34059. name: "Wings",
  34060. image: {
  34061. source: "./media/characters/saphinara/wings.svg"
  34062. },
  34063. form: "normal"
  34064. },
  34065. feathers: {
  34066. height: math.unit(8.92, "feet"),
  34067. name: "Feathers",
  34068. image: {
  34069. source: "./media/characters/saphinara/feathers.svg"
  34070. },
  34071. form: "normal"
  34072. },
  34073. shackles: {
  34074. height: math.unit(2, "feet"),
  34075. name: "Shackles",
  34076. image: {
  34077. source: "./media/characters/saphinara/shackles.svg"
  34078. },
  34079. form: "normal"
  34080. },
  34081. eyes: {
  34082. height: math.unit(1.331, "feet"),
  34083. name: "Eyes",
  34084. image: {
  34085. source: "./media/characters/saphinara/eyes.svg"
  34086. },
  34087. form: "normal"
  34088. },
  34089. eyesEnraged: {
  34090. height: math.unit(1.331, "feet"),
  34091. name: "Eyes (Enraged)",
  34092. image: {
  34093. source: "./media/characters/saphinara/eyes-enraged.svg"
  34094. },
  34095. form: "normal"
  34096. },
  34097. trueFormSide: {
  34098. height: math.unit(200, "feet"),
  34099. weight: math.unit(1e7, "tons"),
  34100. name: "Side",
  34101. image: {
  34102. source: "./media/characters/saphinara/true-form-side.svg",
  34103. extra: 1399/770,
  34104. bottom: 97/1496
  34105. },
  34106. form: "true-form",
  34107. default: true
  34108. },
  34109. trueFormMaw: {
  34110. height: math.unit(71.5, "feet"),
  34111. name: "Maw",
  34112. image: {
  34113. source: "./media/characters/saphinara/true-form-maw.svg",
  34114. extra: 2302/1453,
  34115. bottom: 0/2302
  34116. },
  34117. form: "true-form"
  34118. },
  34119. },
  34120. [
  34121. {
  34122. name: "Normal",
  34123. height: math.unit(15 + 7/12, "feet"),
  34124. default: true,
  34125. form: "normal"
  34126. },
  34127. {
  34128. name: "Angry",
  34129. height: math.unit(30 + 6/12, "feet"),
  34130. form: "normal"
  34131. },
  34132. {
  34133. name: "Enraged",
  34134. height: math.unit(102 + 1/12, "feet"),
  34135. form: "normal"
  34136. },
  34137. {
  34138. name: "True",
  34139. height: math.unit(200, "feet"),
  34140. default: true,
  34141. form: "true-form"
  34142. }
  34143. ],
  34144. {
  34145. "normal": {
  34146. name: "Normal",
  34147. default: true
  34148. },
  34149. "true-form": {
  34150. name: "True Form"
  34151. }
  34152. }
  34153. ))
  34154. characterMakers.push(() => makeCharacter(
  34155. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34156. {
  34157. front: {
  34158. height: math.unit(6 + 8/12, "feet"),
  34159. weight: math.unit(300, "lb"),
  34160. name: "Front",
  34161. image: {
  34162. source: "./media/characters/jrain/front.svg",
  34163. extra: 3039/2865,
  34164. bottom: 399/3438
  34165. }
  34166. },
  34167. back: {
  34168. height: math.unit(6 + 8/12, "feet"),
  34169. weight: math.unit(300, "lb"),
  34170. name: "Back",
  34171. image: {
  34172. source: "./media/characters/jrain/back.svg",
  34173. extra: 3089/2938,
  34174. bottom: 172/3261
  34175. }
  34176. },
  34177. head: {
  34178. height: math.unit(2.14, "feet"),
  34179. name: "Head",
  34180. image: {
  34181. source: "./media/characters/jrain/head.svg"
  34182. }
  34183. },
  34184. maw: {
  34185. height: math.unit(1.77, "feet"),
  34186. name: "Maw",
  34187. image: {
  34188. source: "./media/characters/jrain/maw.svg"
  34189. }
  34190. },
  34191. leftHand: {
  34192. height: math.unit(1.1, "feet"),
  34193. name: "Left Hand",
  34194. image: {
  34195. source: "./media/characters/jrain/left-hand.svg"
  34196. }
  34197. },
  34198. rightHand: {
  34199. height: math.unit(1.1, "feet"),
  34200. name: "Right Hand",
  34201. image: {
  34202. source: "./media/characters/jrain/right-hand.svg"
  34203. }
  34204. },
  34205. eye: {
  34206. height: math.unit(0.35, "feet"),
  34207. name: "Eye",
  34208. image: {
  34209. source: "./media/characters/jrain/eye.svg"
  34210. }
  34211. },
  34212. },
  34213. [
  34214. {
  34215. name: "Normal",
  34216. height: math.unit(6 + 8/12, "feet"),
  34217. default: true
  34218. },
  34219. {
  34220. name: "Casually Large",
  34221. height: math.unit(25, "feet")
  34222. },
  34223. {
  34224. name: "Giant",
  34225. height: math.unit(100, "feet")
  34226. },
  34227. {
  34228. name: "Kaiju",
  34229. height: math.unit(300, "feet")
  34230. },
  34231. ]
  34232. ))
  34233. characterMakers.push(() => makeCharacter(
  34234. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34235. {
  34236. dragon: {
  34237. height: math.unit(5, "meters"),
  34238. name: "Dragon",
  34239. image: {
  34240. source: "./media/characters/sabrina/dragon.svg",
  34241. extra: 3670 / 2365,
  34242. bottom: 333 / 4003
  34243. }
  34244. },
  34245. gryphon: {
  34246. height: math.unit(3, "meters"),
  34247. name: "Gryphon",
  34248. image: {
  34249. source: "./media/characters/sabrina/gryphon.svg",
  34250. extra: 1576 / 945,
  34251. bottom: 71 / 1647
  34252. }
  34253. },
  34254. snake: {
  34255. height: math.unit(12, "meters"),
  34256. name: "Snake",
  34257. image: {
  34258. source: "./media/characters/sabrina/snake.svg",
  34259. extra: 1758 / 1320,
  34260. bottom: 186 / 1944
  34261. }
  34262. },
  34263. collar: {
  34264. height: math.unit(1.86, "meters"),
  34265. name: "Collar",
  34266. image: {
  34267. source: "./media/characters/sabrina/collar.svg"
  34268. }
  34269. },
  34270. eye: {
  34271. height: math.unit(0.53, "meters"),
  34272. name: "Eye",
  34273. image: {
  34274. source: "./media/characters/sabrina/eye.svg"
  34275. }
  34276. },
  34277. foot: {
  34278. height: math.unit(1.86, "meters"),
  34279. name: "Foot",
  34280. image: {
  34281. source: "./media/characters/sabrina/foot.svg"
  34282. }
  34283. },
  34284. hand: {
  34285. height: math.unit(1.32, "meters"),
  34286. name: "Hand",
  34287. image: {
  34288. source: "./media/characters/sabrina/hand.svg"
  34289. }
  34290. },
  34291. head: {
  34292. height: math.unit(2.44, "meters"),
  34293. name: "Head",
  34294. image: {
  34295. source: "./media/characters/sabrina/head.svg"
  34296. }
  34297. },
  34298. headAngry: {
  34299. height: math.unit(2.44, "meters"),
  34300. name: "Head (Angry))",
  34301. image: {
  34302. source: "./media/characters/sabrina/head-angry.svg"
  34303. }
  34304. },
  34305. maw: {
  34306. height: math.unit(1.65, "meters"),
  34307. name: "Maw",
  34308. image: {
  34309. source: "./media/characters/sabrina/maw.svg"
  34310. }
  34311. },
  34312. spikes: {
  34313. height: math.unit(1.69, "meters"),
  34314. name: "Spikes",
  34315. image: {
  34316. source: "./media/characters/sabrina/spikes.svg"
  34317. }
  34318. },
  34319. stomach: {
  34320. height: math.unit(1.15, "meters"),
  34321. name: "Stomach",
  34322. image: {
  34323. source: "./media/characters/sabrina/stomach.svg"
  34324. }
  34325. },
  34326. tongue: {
  34327. height: math.unit(1.27, "meters"),
  34328. name: "Tongue",
  34329. image: {
  34330. source: "./media/characters/sabrina/tongue.svg"
  34331. }
  34332. },
  34333. wingDorsal: {
  34334. height: math.unit(4.85, "meters"),
  34335. name: "Wing (Dorsal)",
  34336. image: {
  34337. source: "./media/characters/sabrina/wing-dorsal.svg"
  34338. }
  34339. },
  34340. wingVentral: {
  34341. height: math.unit(4.85, "meters"),
  34342. name: "Wing (Ventral)",
  34343. image: {
  34344. source: "./media/characters/sabrina/wing-ventral.svg"
  34345. }
  34346. },
  34347. },
  34348. [
  34349. {
  34350. name: "Normal",
  34351. height: math.unit(5, "meters"),
  34352. default: true
  34353. },
  34354. ]
  34355. ))
  34356. characterMakers.push(() => makeCharacter(
  34357. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34358. {
  34359. frontMaid: {
  34360. height: math.unit(5 + 5/12, "feet"),
  34361. weight: math.unit(130, "lb"),
  34362. name: "Front (Maid)",
  34363. image: {
  34364. source: "./media/characters/midnight-tales/front-maid.svg",
  34365. extra: 489/454,
  34366. bottom: 61/550
  34367. }
  34368. },
  34369. frontFormal: {
  34370. height: math.unit(5 + 5/12, "feet"),
  34371. weight: math.unit(130, "lb"),
  34372. name: "Front (Formal)",
  34373. image: {
  34374. source: "./media/characters/midnight-tales/front-formal.svg",
  34375. extra: 489/454,
  34376. bottom: 61/550
  34377. }
  34378. },
  34379. back: {
  34380. height: math.unit(5 + 5/12, "feet"),
  34381. weight: math.unit(130, "lb"),
  34382. name: "Back",
  34383. image: {
  34384. source: "./media/characters/midnight-tales/back.svg",
  34385. extra: 498/456,
  34386. bottom: 33/531
  34387. }
  34388. },
  34389. frontBeast: {
  34390. height: math.unit(40, "feet"),
  34391. weight: math.unit(64000, "lb"),
  34392. name: "Front (Beast)",
  34393. image: {
  34394. source: "./media/characters/midnight-tales/front-beast.svg",
  34395. extra: 927/860,
  34396. bottom: 53/980
  34397. }
  34398. },
  34399. backBeast: {
  34400. height: math.unit(40, "feet"),
  34401. weight: math.unit(64000, "lb"),
  34402. name: "Back (Beast)",
  34403. image: {
  34404. source: "./media/characters/midnight-tales/back-beast.svg",
  34405. extra: 929/855,
  34406. bottom: 16/945
  34407. }
  34408. },
  34409. footBeast: {
  34410. height: math.unit(6.7, "feet"),
  34411. name: "Foot (Beast)",
  34412. image: {
  34413. source: "./media/characters/midnight-tales/foot-beast.svg"
  34414. }
  34415. },
  34416. headBeast: {
  34417. height: math.unit(8, "feet"),
  34418. name: "Head (Beast)",
  34419. image: {
  34420. source: "./media/characters/midnight-tales/head-beast.svg"
  34421. }
  34422. },
  34423. },
  34424. [
  34425. {
  34426. name: "Normal",
  34427. height: math.unit(5 + 5 / 12, "feet"),
  34428. default: true
  34429. },
  34430. {
  34431. name: "Macro",
  34432. height: math.unit(25, "feet")
  34433. },
  34434. ]
  34435. ))
  34436. characterMakers.push(() => makeCharacter(
  34437. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34438. {
  34439. front: {
  34440. height: math.unit(5 + 10/12, "feet"),
  34441. name: "Front",
  34442. image: {
  34443. source: "./media/characters/argon/front.svg",
  34444. extra: 2009/1935,
  34445. bottom: 118/2127
  34446. }
  34447. },
  34448. back: {
  34449. height: math.unit(5 + 10/12, "feet"),
  34450. name: "Back",
  34451. image: {
  34452. source: "./media/characters/argon/back.svg",
  34453. extra: 2047/1992,
  34454. bottom: 20/2067
  34455. }
  34456. },
  34457. frontDressed: {
  34458. height: math.unit(5 + 10/12, "feet"),
  34459. name: "Front (Dressed)",
  34460. image: {
  34461. source: "./media/characters/argon/front-dressed.svg",
  34462. extra: 2009/1935,
  34463. bottom: 118/2127
  34464. }
  34465. },
  34466. },
  34467. [
  34468. {
  34469. name: "Normal",
  34470. height: math.unit(5 + 10/12, "feet"),
  34471. default: true
  34472. },
  34473. ]
  34474. ))
  34475. characterMakers.push(() => makeCharacter(
  34476. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34477. {
  34478. front: {
  34479. height: math.unit(8 + 6/12, "feet"),
  34480. weight: math.unit(1150, "lb"),
  34481. name: "Front",
  34482. image: {
  34483. source: "./media/characters/kichi/front.svg",
  34484. extra: 1267/1164,
  34485. bottom: 61/1328
  34486. }
  34487. },
  34488. back: {
  34489. height: math.unit(8 + 6/12, "feet"),
  34490. weight: math.unit(1150, "lb"),
  34491. name: "Back",
  34492. image: {
  34493. source: "./media/characters/kichi/back.svg",
  34494. extra: 1273/1166,
  34495. bottom: 33/1306
  34496. }
  34497. },
  34498. },
  34499. [
  34500. {
  34501. name: "Normal",
  34502. height: math.unit(8 + 6/12, "feet"),
  34503. default: true
  34504. },
  34505. ]
  34506. ))
  34507. characterMakers.push(() => makeCharacter(
  34508. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34509. {
  34510. front: {
  34511. height: math.unit(6, "feet"),
  34512. weight: math.unit(210, "lb"),
  34513. name: "Front",
  34514. image: {
  34515. source: "./media/characters/manetel-greyscale/front.svg",
  34516. extra: 350/312,
  34517. bottom: 8/358
  34518. }
  34519. },
  34520. },
  34521. [
  34522. {
  34523. name: "Micro",
  34524. height: math.unit(2, "inches")
  34525. },
  34526. {
  34527. name: "Normal",
  34528. height: math.unit(6, "feet"),
  34529. default: true
  34530. },
  34531. {
  34532. name: "Minimacro",
  34533. height: math.unit(17, "feet")
  34534. },
  34535. {
  34536. name: "Macro",
  34537. height: math.unit(117, "feet")
  34538. },
  34539. ]
  34540. ))
  34541. characterMakers.push(() => makeCharacter(
  34542. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34543. {
  34544. side: {
  34545. height: math.unit(5 + 1/12, "feet"),
  34546. weight: math.unit(418, "lb"),
  34547. name: "Side",
  34548. image: {
  34549. source: "./media/characters/softpurr/side.svg",
  34550. extra: 1993/1945,
  34551. bottom: 134/2127
  34552. }
  34553. },
  34554. front: {
  34555. height: math.unit(5 + 1/12, "feet"),
  34556. weight: math.unit(418, "lb"),
  34557. name: "Front",
  34558. image: {
  34559. source: "./media/characters/softpurr/front.svg",
  34560. extra: 1950/1856,
  34561. bottom: 174/2124
  34562. }
  34563. },
  34564. paw: {
  34565. height: math.unit(1, "feet"),
  34566. name: "Paw",
  34567. image: {
  34568. source: "./media/characters/softpurr/paw.svg"
  34569. }
  34570. },
  34571. },
  34572. [
  34573. {
  34574. name: "Normal",
  34575. height: math.unit(5 + 1/12, "feet"),
  34576. default: true
  34577. },
  34578. ]
  34579. ))
  34580. characterMakers.push(() => makeCharacter(
  34581. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34582. {
  34583. front: {
  34584. height: math.unit(260, "meters"),
  34585. name: "Front",
  34586. image: {
  34587. source: "./media/characters/anahita/front.svg",
  34588. extra: 665/635,
  34589. bottom: 89/754
  34590. }
  34591. },
  34592. },
  34593. [
  34594. {
  34595. name: "Macro",
  34596. height: math.unit(260, "meters"),
  34597. default: true
  34598. },
  34599. ]
  34600. ))
  34601. characterMakers.push(() => makeCharacter(
  34602. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34603. {
  34604. front: {
  34605. height: math.unit(4 + 10/12, "feet"),
  34606. weight: math.unit(160, "lb"),
  34607. name: "Front",
  34608. image: {
  34609. source: "./media/characters/chip-mouse/front.svg",
  34610. extra: 3528/3408,
  34611. bottom: 0/3528
  34612. }
  34613. },
  34614. frontNsfw: {
  34615. height: math.unit(4 + 10/12, "feet"),
  34616. weight: math.unit(160, "lb"),
  34617. name: "Front (NSFW)",
  34618. image: {
  34619. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34620. extra: 3528/3408,
  34621. bottom: 0/3528
  34622. }
  34623. },
  34624. },
  34625. [
  34626. {
  34627. name: "Normal",
  34628. height: math.unit(4 + 10/12, "feet"),
  34629. default: true
  34630. },
  34631. ]
  34632. ))
  34633. characterMakers.push(() => makeCharacter(
  34634. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34635. {
  34636. side: {
  34637. height: math.unit(10, "feet"),
  34638. weight: math.unit(14000, "lb"),
  34639. name: "Side",
  34640. image: {
  34641. source: "./media/characters/kremm/side.svg",
  34642. extra: 1390/1053,
  34643. bottom: 90/1480
  34644. }
  34645. },
  34646. gut: {
  34647. height: math.unit(5.8, "feet"),
  34648. name: "Gut",
  34649. image: {
  34650. source: "./media/characters/kremm/gut.svg"
  34651. }
  34652. },
  34653. ass: {
  34654. height: math.unit(6.1, "feet"),
  34655. name: "Ass",
  34656. image: {
  34657. source: "./media/characters/kremm/ass.svg"
  34658. }
  34659. },
  34660. jaws: {
  34661. height: math.unit(2.2, "feet"),
  34662. name: "Jaws",
  34663. image: {
  34664. source: "./media/characters/kremm/jaws.svg"
  34665. }
  34666. },
  34667. dick: {
  34668. height: math.unit(4.26, "feet"),
  34669. name: "Dick",
  34670. image: {
  34671. source: "./media/characters/kremm/dick.svg"
  34672. }
  34673. },
  34674. },
  34675. [
  34676. {
  34677. name: "Normal",
  34678. height: math.unit(10, "feet"),
  34679. default: true
  34680. },
  34681. ]
  34682. ))
  34683. characterMakers.push(() => makeCharacter(
  34684. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34685. {
  34686. front: {
  34687. height: math.unit(30, "stories"),
  34688. name: "Front",
  34689. image: {
  34690. source: "./media/characters/kai/front.svg",
  34691. extra: 1892/1718,
  34692. bottom: 162/2054
  34693. }
  34694. },
  34695. },
  34696. [
  34697. {
  34698. name: "Macro",
  34699. height: math.unit(30, "stories"),
  34700. default: true
  34701. },
  34702. ]
  34703. ))
  34704. characterMakers.push(() => makeCharacter(
  34705. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34706. {
  34707. front: {
  34708. height: math.unit(6 + 4/12, "feet"),
  34709. weight: math.unit(145, "lb"),
  34710. name: "Front",
  34711. image: {
  34712. source: "./media/characters/sykes/front.svg",
  34713. extra: 1321 / 1187,
  34714. bottom: 66 / 1387
  34715. }
  34716. },
  34717. back: {
  34718. height: math.unit(6 + 4/12, "feet"),
  34719. weight: math.unit(145, "lb"),
  34720. name: "Back",
  34721. image: {
  34722. source: "./media/characters/sykes/back.svg",
  34723. extra: 1326/1181,
  34724. bottom: 31/1357
  34725. }
  34726. },
  34727. traditionalOutfit: {
  34728. height: math.unit(6 + 4/12, "feet"),
  34729. weight: math.unit(145, "lb"),
  34730. name: "Traditional Outfit",
  34731. image: {
  34732. source: "./media/characters/sykes/traditional-outfit.svg",
  34733. extra: 1321 / 1187,
  34734. bottom: 66 / 1387
  34735. }
  34736. },
  34737. adventureOutfit: {
  34738. height: math.unit(6 + 4/12, "feet"),
  34739. weight: math.unit(145, "lb"),
  34740. name: "Adventure Outfit",
  34741. image: {
  34742. source: "./media/characters/sykes/adventure-outfit.svg",
  34743. extra: 1321 / 1187,
  34744. bottom: 66 / 1387
  34745. }
  34746. },
  34747. handLeft: {
  34748. height: math.unit(0.9, "feet"),
  34749. name: "Hand (Left)",
  34750. image: {
  34751. source: "./media/characters/sykes/hand-left.svg"
  34752. }
  34753. },
  34754. handRight: {
  34755. height: math.unit(0.839, "feet"),
  34756. name: "Hand (Right)",
  34757. image: {
  34758. source: "./media/characters/sykes/hand-right.svg"
  34759. }
  34760. },
  34761. leftFoot: {
  34762. height: math.unit(1.2, "feet"),
  34763. name: "Foot (Left)",
  34764. image: {
  34765. source: "./media/characters/sykes/foot-left.svg"
  34766. }
  34767. },
  34768. rightFoot: {
  34769. height: math.unit(1.2, "feet"),
  34770. name: "Foot (Right)",
  34771. image: {
  34772. source: "./media/characters/sykes/foot-right.svg"
  34773. }
  34774. },
  34775. maw: {
  34776. height: math.unit(1.93, "feet"),
  34777. name: "Maw",
  34778. image: {
  34779. source: "./media/characters/sykes/maw.svg"
  34780. }
  34781. },
  34782. teeth: {
  34783. height: math.unit(0.51, "feet"),
  34784. name: "Teeth",
  34785. image: {
  34786. source: "./media/characters/sykes/teeth.svg"
  34787. }
  34788. },
  34789. tongue: {
  34790. height: math.unit(2.13, "feet"),
  34791. name: "Tongue",
  34792. image: {
  34793. source: "./media/characters/sykes/tongue.svg"
  34794. }
  34795. },
  34796. uvula: {
  34797. height: math.unit(0.16, "feet"),
  34798. name: "Uvula",
  34799. image: {
  34800. source: "./media/characters/sykes/uvula.svg"
  34801. }
  34802. },
  34803. collar: {
  34804. height: math.unit(0.287, "feet"),
  34805. name: "Collar",
  34806. image: {
  34807. source: "./media/characters/sykes/collar.svg"
  34808. }
  34809. },
  34810. tail: {
  34811. height: math.unit(3.8, "feet"),
  34812. name: "Tail",
  34813. image: {
  34814. source: "./media/characters/sykes/tail.svg"
  34815. }
  34816. },
  34817. },
  34818. [
  34819. {
  34820. name: "Shrunken",
  34821. height: math.unit(5, "inches")
  34822. },
  34823. {
  34824. name: "Normal",
  34825. height: math.unit(6 + 4 / 12, "feet"),
  34826. default: true
  34827. },
  34828. {
  34829. name: "Big",
  34830. height: math.unit(15, "feet")
  34831. },
  34832. ]
  34833. ))
  34834. characterMakers.push(() => makeCharacter(
  34835. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34836. {
  34837. front: {
  34838. height: math.unit(5 + 8/12, "feet"),
  34839. weight: math.unit(190, "lb"),
  34840. name: "Front",
  34841. image: {
  34842. source: "./media/characters/oven-otter/front.svg",
  34843. extra: 1809/1740,
  34844. bottom: 181/1990
  34845. }
  34846. },
  34847. back: {
  34848. height: math.unit(5 + 8/12, "feet"),
  34849. weight: math.unit(190, "lb"),
  34850. name: "Back",
  34851. image: {
  34852. source: "./media/characters/oven-otter/back.svg",
  34853. extra: 1709/1635,
  34854. bottom: 118/1827
  34855. }
  34856. },
  34857. hand: {
  34858. height: math.unit(1.07, "feet"),
  34859. name: "Hand",
  34860. image: {
  34861. source: "./media/characters/oven-otter/hand.svg"
  34862. }
  34863. },
  34864. beans: {
  34865. height: math.unit(1.74, "feet"),
  34866. name: "Beans",
  34867. image: {
  34868. source: "./media/characters/oven-otter/beans.svg"
  34869. }
  34870. },
  34871. },
  34872. [
  34873. {
  34874. name: "Micro",
  34875. height: math.unit(0.5, "inches")
  34876. },
  34877. {
  34878. name: "Normal",
  34879. height: math.unit(5 + 8/12, "feet"),
  34880. default: true
  34881. },
  34882. {
  34883. name: "Macro",
  34884. height: math.unit(250, "feet")
  34885. },
  34886. {
  34887. name: "Really High",
  34888. height: math.unit(420, "feet")
  34889. },
  34890. ]
  34891. ))
  34892. characterMakers.push(() => makeCharacter(
  34893. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34894. {
  34895. front: {
  34896. height: math.unit(5, "meters"),
  34897. weight: math.unit(292000000000000, "kg"),
  34898. name: "Front",
  34899. image: {
  34900. source: "./media/characters/devourer/front.svg",
  34901. extra: 1800/1733,
  34902. bottom: 211/2011
  34903. }
  34904. },
  34905. maw: {
  34906. height: math.unit(1.1, "meter"),
  34907. name: "Maw",
  34908. image: {
  34909. source: "./media/characters/devourer/maw.svg"
  34910. }
  34911. },
  34912. },
  34913. [
  34914. {
  34915. name: "Small",
  34916. height: math.unit(3, "meters")
  34917. },
  34918. {
  34919. name: "Large",
  34920. height: math.unit(5, "meters"),
  34921. default: true
  34922. },
  34923. ]
  34924. ))
  34925. characterMakers.push(() => makeCharacter(
  34926. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34927. {
  34928. front: {
  34929. height: math.unit(6, "feet"),
  34930. weight: math.unit(400, "lb"),
  34931. name: "Front",
  34932. image: {
  34933. source: "./media/characters/ellarby/front.svg",
  34934. extra: 1909/1763,
  34935. bottom: 80/1989
  34936. }
  34937. },
  34938. back: {
  34939. height: math.unit(6, "feet"),
  34940. weight: math.unit(400, "lb"),
  34941. name: "Back",
  34942. image: {
  34943. source: "./media/characters/ellarby/back.svg",
  34944. extra: 1914/1784,
  34945. bottom: 172/2086
  34946. }
  34947. },
  34948. },
  34949. [
  34950. {
  34951. name: "Mischief",
  34952. height: math.unit(18, "inches")
  34953. },
  34954. {
  34955. name: "Trouble",
  34956. height: math.unit(12, "feet")
  34957. },
  34958. {
  34959. name: "Havoc",
  34960. height: math.unit(200, "feet"),
  34961. default: true
  34962. },
  34963. {
  34964. name: "Pandemonium",
  34965. height: math.unit(1, "mile")
  34966. },
  34967. {
  34968. name: "Catastrophe",
  34969. height: math.unit(100, "miles")
  34970. },
  34971. ]
  34972. ))
  34973. characterMakers.push(() => makeCharacter(
  34974. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34975. {
  34976. front: {
  34977. height: math.unit(4.7, "meters"),
  34978. weight: math.unit(6500, "kg"),
  34979. name: "Front",
  34980. image: {
  34981. source: "./media/characters/vex/front.svg",
  34982. extra: 1288/1140,
  34983. bottom: 100/1388
  34984. }
  34985. },
  34986. },
  34987. [
  34988. {
  34989. name: "Normal",
  34990. height: math.unit(4.7, "meters"),
  34991. default: true
  34992. },
  34993. ]
  34994. ))
  34995. characterMakers.push(() => makeCharacter(
  34996. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34997. {
  34998. normal: {
  34999. height: math.unit(6, "feet"),
  35000. weight: math.unit(350, "lb"),
  35001. name: "Normal",
  35002. image: {
  35003. source: "./media/characters/teshy/normal.svg",
  35004. extra: 1795/1735,
  35005. bottom: 16/1811
  35006. }
  35007. },
  35008. monsterFront: {
  35009. height: math.unit(12, "feet"),
  35010. weight: math.unit(4700, "lb"),
  35011. name: "Monster (Front)",
  35012. image: {
  35013. source: "./media/characters/teshy/monster-front.svg",
  35014. extra: 2042/2034,
  35015. bottom: 128/2170
  35016. }
  35017. },
  35018. monsterSide: {
  35019. height: math.unit(12, "feet"),
  35020. weight: math.unit(4700, "lb"),
  35021. name: "Monster (Side)",
  35022. image: {
  35023. source: "./media/characters/teshy/monster-side.svg",
  35024. extra: 2067/2056,
  35025. bottom: 70/2137
  35026. }
  35027. },
  35028. monsterBack: {
  35029. height: math.unit(12, "feet"),
  35030. weight: math.unit(4700, "lb"),
  35031. name: "Monster (Back)",
  35032. image: {
  35033. source: "./media/characters/teshy/monster-back.svg",
  35034. extra: 1921/1914,
  35035. bottom: 171/2092
  35036. }
  35037. },
  35038. },
  35039. [
  35040. {
  35041. name: "Normal",
  35042. height: math.unit(6, "feet"),
  35043. default: true
  35044. },
  35045. ]
  35046. ))
  35047. characterMakers.push(() => makeCharacter(
  35048. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35049. {
  35050. front: {
  35051. height: math.unit(6, "feet"),
  35052. name: "Front",
  35053. image: {
  35054. source: "./media/characters/ramey/front.svg",
  35055. extra: 790/787,
  35056. bottom: 27/817
  35057. }
  35058. },
  35059. },
  35060. [
  35061. {
  35062. name: "Normal",
  35063. height: math.unit(6, "feet"),
  35064. default: true
  35065. },
  35066. ]
  35067. ))
  35068. characterMakers.push(() => makeCharacter(
  35069. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35070. {
  35071. front: {
  35072. height: math.unit(5 + 5/12, "feet"),
  35073. weight: math.unit(120, "lb"),
  35074. name: "Front",
  35075. image: {
  35076. source: "./media/characters/phirae/front.svg",
  35077. extra: 2491/2436,
  35078. bottom: 38/2529
  35079. }
  35080. },
  35081. },
  35082. [
  35083. {
  35084. name: "Normal",
  35085. height: math.unit(5 + 5/12, "feet"),
  35086. default: true
  35087. },
  35088. ]
  35089. ))
  35090. characterMakers.push(() => makeCharacter(
  35091. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35092. {
  35093. front: {
  35094. height: math.unit(5 + 3/12, "feet"),
  35095. name: "Front",
  35096. image: {
  35097. source: "./media/characters/stagglas/front.svg",
  35098. extra: 962/882,
  35099. bottom: 53/1015
  35100. }
  35101. },
  35102. feral: {
  35103. height: math.unit(335, "cm"),
  35104. name: "Feral",
  35105. image: {
  35106. source: "./media/characters/stagglas/feral.svg",
  35107. extra: 1732/1090,
  35108. bottom: 48/1780
  35109. }
  35110. },
  35111. },
  35112. [
  35113. {
  35114. name: "Normal",
  35115. height: math.unit(5 + 3/12, "feet"),
  35116. default: true
  35117. },
  35118. ]
  35119. ))
  35120. characterMakers.push(() => makeCharacter(
  35121. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35122. {
  35123. front: {
  35124. height: math.unit(5 + 4/12, "feet"),
  35125. weight: math.unit(145, "lb"),
  35126. name: "Front",
  35127. image: {
  35128. source: "./media/characters/starra/front.svg",
  35129. extra: 1790/1691,
  35130. bottom: 91/1881
  35131. }
  35132. },
  35133. },
  35134. [
  35135. {
  35136. name: "Normal",
  35137. height: math.unit(5 + 4/12, "feet"),
  35138. default: true
  35139. },
  35140. ]
  35141. ))
  35142. characterMakers.push(() => makeCharacter(
  35143. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35144. {
  35145. front: {
  35146. height: math.unit(2.2, "meters"),
  35147. name: "Front",
  35148. image: {
  35149. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35150. extra: 1194/1005,
  35151. bottom: 25/1219
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Normal",
  35158. height: math.unit(2.2, "meters"),
  35159. default: true
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35165. {
  35166. side: {
  35167. height: math.unit(8 + 2/12, "feet"),
  35168. weight: math.unit(1240, "lb"),
  35169. name: "Side",
  35170. image: {
  35171. source: "./media/characters/mika-valentine/side.svg",
  35172. extra: 2670/2501,
  35173. bottom: 250/2920
  35174. }
  35175. },
  35176. },
  35177. [
  35178. {
  35179. name: "Normal",
  35180. height: math.unit(8 + 2/12, "feet"),
  35181. default: true
  35182. },
  35183. ]
  35184. ))
  35185. characterMakers.push(() => makeCharacter(
  35186. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35187. {
  35188. front: {
  35189. height: math.unit(7 + 2/12, "feet"),
  35190. name: "Front",
  35191. image: {
  35192. source: "./media/characters/xoltol/front.svg",
  35193. extra: 2212/2124,
  35194. bottom: 84/2296
  35195. }
  35196. },
  35197. side: {
  35198. height: math.unit(7 + 2/12, "feet"),
  35199. name: "Side",
  35200. image: {
  35201. source: "./media/characters/xoltol/side.svg",
  35202. extra: 2273/2197,
  35203. bottom: 26/2299
  35204. }
  35205. },
  35206. hand: {
  35207. height: math.unit(2.5, "feet"),
  35208. name: "Hand",
  35209. image: {
  35210. source: "./media/characters/xoltol/hand.svg"
  35211. }
  35212. },
  35213. },
  35214. [
  35215. {
  35216. name: "Small-ish",
  35217. height: math.unit(5 + 11/12, "feet")
  35218. },
  35219. {
  35220. name: "Normal",
  35221. height: math.unit(7 + 2/12, "feet")
  35222. },
  35223. {
  35224. name: "\"Macro\"",
  35225. height: math.unit(14 + 9/12, "feet"),
  35226. default: true
  35227. },
  35228. {
  35229. name: "Alternate Height",
  35230. height: math.unit(20, "feet")
  35231. },
  35232. {
  35233. name: "Actually Macro",
  35234. height: math.unit(100, "feet")
  35235. },
  35236. ]
  35237. ))
  35238. characterMakers.push(() => makeCharacter(
  35239. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35240. {
  35241. front: {
  35242. height: math.unit(5 + 2/12, "feet"),
  35243. name: "Front",
  35244. image: {
  35245. source: "./media/characters/kotetsu-redwood/front.svg",
  35246. extra: 1053/942,
  35247. bottom: 60/1113
  35248. }
  35249. },
  35250. },
  35251. [
  35252. {
  35253. name: "Normal",
  35254. height: math.unit(5 + 2/12, "feet"),
  35255. default: true
  35256. },
  35257. ]
  35258. ))
  35259. characterMakers.push(() => makeCharacter(
  35260. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35261. {
  35262. front: {
  35263. height: math.unit(2.4, "meters"),
  35264. weight: math.unit(125, "kg"),
  35265. name: "Front",
  35266. image: {
  35267. source: "./media/characters/lilith/front.svg",
  35268. extra: 1590/1513,
  35269. bottom: 203/1793
  35270. }
  35271. },
  35272. },
  35273. [
  35274. {
  35275. name: "Humanoid",
  35276. height: math.unit(2.4, "meters")
  35277. },
  35278. {
  35279. name: "Normal",
  35280. height: math.unit(6, "meters"),
  35281. default: true
  35282. },
  35283. {
  35284. name: "Largest",
  35285. height: math.unit(55, "meters")
  35286. },
  35287. ]
  35288. ))
  35289. characterMakers.push(() => makeCharacter(
  35290. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35291. {
  35292. front: {
  35293. height: math.unit(8 + 4/12, "feet"),
  35294. weight: math.unit(535, "lb"),
  35295. name: "Front",
  35296. image: {
  35297. source: "./media/characters/beh'kah-bolger/front.svg",
  35298. extra: 1660/1603,
  35299. bottom: 37/1697
  35300. }
  35301. },
  35302. },
  35303. [
  35304. {
  35305. name: "Normal",
  35306. height: math.unit(8 + 4/12, "feet"),
  35307. default: true
  35308. },
  35309. {
  35310. name: "Kaiju",
  35311. height: math.unit(250, "feet")
  35312. },
  35313. {
  35314. name: "Still Growing",
  35315. height: math.unit(10, "miles")
  35316. },
  35317. {
  35318. name: "Continental",
  35319. height: math.unit(5000, "miles")
  35320. },
  35321. {
  35322. name: "Final Form",
  35323. height: math.unit(2500000, "miles")
  35324. },
  35325. ]
  35326. ))
  35327. characterMakers.push(() => makeCharacter(
  35328. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35329. {
  35330. front: {
  35331. height: math.unit(7 + 2/12, "feet"),
  35332. weight: math.unit(230, "kg"),
  35333. name: "Front",
  35334. image: {
  35335. source: "./media/characters/tatyana-milewska/front.svg",
  35336. extra: 1199/1150,
  35337. bottom: 86/1285
  35338. }
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Normal",
  35344. height: math.unit(7 + 2/12, "feet"),
  35345. default: true
  35346. },
  35347. {
  35348. name: "Big",
  35349. height: math.unit(12, "feet")
  35350. },
  35351. {
  35352. name: "Minimacro",
  35353. height: math.unit(20, "feet")
  35354. },
  35355. {
  35356. name: "Macro",
  35357. height: math.unit(120, "feet")
  35358. },
  35359. ]
  35360. ))
  35361. characterMakers.push(() => makeCharacter(
  35362. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35363. {
  35364. front: {
  35365. height: math.unit(7 + 8/12, "feet"),
  35366. weight: math.unit(152, "kg"),
  35367. name: "Front",
  35368. image: {
  35369. source: "./media/characters/helen-arri/front.svg",
  35370. extra: 440/423,
  35371. bottom: 14/454
  35372. }
  35373. },
  35374. back: {
  35375. height: math.unit(7 + 8/12, "feet"),
  35376. weight: math.unit(152, "kg"),
  35377. name: "Back",
  35378. image: {
  35379. source: "./media/characters/helen-arri/back.svg",
  35380. extra: 443/426,
  35381. bottom: 8/451
  35382. }
  35383. },
  35384. },
  35385. [
  35386. {
  35387. name: "Normal",
  35388. height: math.unit(7 + 8/12, "feet"),
  35389. default: true
  35390. },
  35391. {
  35392. name: "Big",
  35393. height: math.unit(14, "feet")
  35394. },
  35395. {
  35396. name: "Minimacro",
  35397. height: math.unit(24, "feet")
  35398. },
  35399. {
  35400. name: "Macro",
  35401. height: math.unit(140, "feet")
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35407. {
  35408. front: {
  35409. height: math.unit(6, "meters"),
  35410. name: "Front",
  35411. image: {
  35412. source: "./media/characters/ehanu-rehu/front.svg",
  35413. extra: 1800/1800,
  35414. bottom: 59/1859
  35415. }
  35416. },
  35417. },
  35418. [
  35419. {
  35420. name: "Normal",
  35421. height: math.unit(6, "meters"),
  35422. default: true
  35423. },
  35424. ]
  35425. ))
  35426. characterMakers.push(() => makeCharacter(
  35427. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35428. {
  35429. front: {
  35430. height: math.unit(7 + 3/12, "feet"),
  35431. name: "Front",
  35432. image: {
  35433. source: "./media/characters/renholder/front.svg",
  35434. extra: 3096/2960,
  35435. bottom: 250/3346
  35436. }
  35437. },
  35438. },
  35439. [
  35440. {
  35441. name: "Normal Bat",
  35442. height: math.unit(7 + 3/12, "feet"),
  35443. default: true
  35444. },
  35445. {
  35446. name: "Slightly Tall Bat",
  35447. height: math.unit(100, "feet")
  35448. },
  35449. {
  35450. name: "Big Bat",
  35451. height: math.unit(1000, "feet")
  35452. },
  35453. {
  35454. name: "City-Sized Bat",
  35455. height: math.unit(200000, "feet")
  35456. },
  35457. {
  35458. name: "Bigger Bat",
  35459. height: math.unit(10000, "miles")
  35460. },
  35461. {
  35462. name: "Solar Sized Bat",
  35463. height: math.unit(100, "AU")
  35464. },
  35465. {
  35466. name: "Galactic Bat",
  35467. height: math.unit(200000, "lightyears")
  35468. },
  35469. {
  35470. name: "Universally Known Bat",
  35471. height: math.unit(1, "universe")
  35472. },
  35473. ]
  35474. ))
  35475. characterMakers.push(() => makeCharacter(
  35476. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35477. {
  35478. front: {
  35479. height: math.unit(6 + 11/12, "feet"),
  35480. weight: math.unit(250, "lb"),
  35481. name: "Front",
  35482. image: {
  35483. source: "./media/characters/cookiecat/front.svg",
  35484. extra: 893/827,
  35485. bottom: 14/907
  35486. }
  35487. },
  35488. },
  35489. [
  35490. {
  35491. name: "Micro",
  35492. height: math.unit(3, "inches")
  35493. },
  35494. {
  35495. name: "Normal",
  35496. height: math.unit(6 + 11/12, "feet"),
  35497. default: true
  35498. },
  35499. {
  35500. name: "Macro",
  35501. height: math.unit(100, "feet")
  35502. },
  35503. {
  35504. name: "Macro+",
  35505. height: math.unit(404, "feet")
  35506. },
  35507. {
  35508. name: "Megamacro",
  35509. height: math.unit(165, "miles")
  35510. },
  35511. {
  35512. name: "Planetary",
  35513. height: math.unit(4600, "miles")
  35514. },
  35515. ]
  35516. ))
  35517. characterMakers.push(() => makeCharacter(
  35518. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35519. {
  35520. front: {
  35521. height: math.unit(10 + 3/12, "feet"),
  35522. weight: math.unit(1500, "lb"),
  35523. name: "Front",
  35524. image: {
  35525. source: "./media/characters/tux-kusanagi/front.svg",
  35526. extra: 944/840,
  35527. bottom: 39/983
  35528. }
  35529. },
  35530. back: {
  35531. height: math.unit(10 + 3/12, "feet"),
  35532. weight: math.unit(1500, "lb"),
  35533. name: "Back",
  35534. image: {
  35535. source: "./media/characters/tux-kusanagi/back.svg",
  35536. extra: 941/842,
  35537. bottom: 28/969
  35538. }
  35539. },
  35540. rump: {
  35541. height: math.unit(5.25, "feet"),
  35542. name: "Rump",
  35543. image: {
  35544. source: "./media/characters/tux-kusanagi/rump.svg"
  35545. }
  35546. },
  35547. beak: {
  35548. height: math.unit(1.54, "feet"),
  35549. name: "Beak",
  35550. image: {
  35551. source: "./media/characters/tux-kusanagi/beak.svg"
  35552. }
  35553. },
  35554. },
  35555. [
  35556. {
  35557. name: "Normal",
  35558. height: math.unit(10 + 3/12, "feet"),
  35559. default: true
  35560. },
  35561. ]
  35562. ))
  35563. characterMakers.push(() => makeCharacter(
  35564. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35565. {
  35566. front: {
  35567. height: math.unit(58, "feet"),
  35568. weight: math.unit(200, "tons"),
  35569. name: "Front",
  35570. image: {
  35571. source: "./media/characters/uzarmazari/front.svg",
  35572. extra: 1575/1455,
  35573. bottom: 152/1727
  35574. }
  35575. },
  35576. back: {
  35577. height: math.unit(58, "feet"),
  35578. weight: math.unit(200, "tons"),
  35579. name: "Back",
  35580. image: {
  35581. source: "./media/characters/uzarmazari/back.svg",
  35582. extra: 1585/1510,
  35583. bottom: 157/1742
  35584. }
  35585. },
  35586. head: {
  35587. height: math.unit(26, "feet"),
  35588. name: "Head",
  35589. image: {
  35590. source: "./media/characters/uzarmazari/head.svg"
  35591. }
  35592. },
  35593. },
  35594. [
  35595. {
  35596. name: "Normal",
  35597. height: math.unit(58, "feet"),
  35598. default: true
  35599. },
  35600. ]
  35601. ))
  35602. characterMakers.push(() => makeCharacter(
  35603. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35604. {
  35605. side: {
  35606. height: math.unit(15, "feet"),
  35607. name: "Side",
  35608. image: {
  35609. source: "./media/characters/akitu/side.svg",
  35610. extra: 1421/1321,
  35611. bottom: 157/1578
  35612. }
  35613. },
  35614. front: {
  35615. height: math.unit(15, "feet"),
  35616. name: "Front",
  35617. image: {
  35618. source: "./media/characters/akitu/front.svg",
  35619. extra: 1435/1326,
  35620. bottom: 232/1667
  35621. }
  35622. },
  35623. },
  35624. [
  35625. {
  35626. name: "Normal",
  35627. height: math.unit(15, "feet"),
  35628. default: true
  35629. },
  35630. ]
  35631. ))
  35632. characterMakers.push(() => makeCharacter(
  35633. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35634. {
  35635. front: {
  35636. height: math.unit(10 + 8/12, "feet"),
  35637. name: "Front",
  35638. image: {
  35639. source: "./media/characters/azalie-croixland/front.svg",
  35640. extra: 1972/1856,
  35641. bottom: 31/2003
  35642. }
  35643. },
  35644. },
  35645. [
  35646. {
  35647. name: "Original Height",
  35648. height: math.unit(5 + 4/12, "feet")
  35649. },
  35650. {
  35651. name: "Normal Height",
  35652. height: math.unit(10 + 8/12, "feet"),
  35653. default: true
  35654. },
  35655. ]
  35656. ))
  35657. characterMakers.push(() => makeCharacter(
  35658. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35659. {
  35660. side: {
  35661. height: math.unit(7 + 1/12, "feet"),
  35662. weight: math.unit(245, "lb"),
  35663. name: "Side",
  35664. image: {
  35665. source: "./media/characters/kavus-kazian/side.svg",
  35666. extra: 349/342,
  35667. bottom: 15/364
  35668. }
  35669. },
  35670. },
  35671. [
  35672. {
  35673. name: "Normal",
  35674. height: math.unit(7 + 1/12, "feet"),
  35675. default: true
  35676. },
  35677. ]
  35678. ))
  35679. characterMakers.push(() => makeCharacter(
  35680. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35681. {
  35682. normalFront: {
  35683. height: math.unit(5 + 11/12, "feet"),
  35684. name: "Front",
  35685. image: {
  35686. source: "./media/characters/moonlight-rose/normal-front.svg",
  35687. extra: 1980/1825,
  35688. bottom: 18/1998
  35689. },
  35690. form: "normal",
  35691. default: true
  35692. },
  35693. normalBack: {
  35694. height: math.unit(5 + 11/12, "feet"),
  35695. name: "Back",
  35696. image: {
  35697. source: "./media/characters/moonlight-rose/normal-back.svg",
  35698. extra: 2010/1839,
  35699. bottom: 10/2020
  35700. },
  35701. form: "normal"
  35702. },
  35703. demonFront: {
  35704. height: math.unit(1.5, "earths"),
  35705. name: "Front",
  35706. image: {
  35707. source: "./media/characters/moonlight-rose/demon.svg",
  35708. extra: 1400/1294,
  35709. bottom: 45/1445
  35710. },
  35711. form: "demon",
  35712. default: true
  35713. },
  35714. terraFront: {
  35715. height: math.unit(1.5, "earths"),
  35716. name: "Front",
  35717. image: {
  35718. source: "./media/characters/moonlight-rose/terra.svg"
  35719. },
  35720. form: "terra",
  35721. default: true
  35722. },
  35723. jupiterFront: {
  35724. height: math.unit(69911*2, "km"),
  35725. name: "Front",
  35726. image: {
  35727. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35728. extra: 1367/1286,
  35729. bottom: 55/1422
  35730. },
  35731. form: "jupiter",
  35732. default: true
  35733. },
  35734. neptuneFront: {
  35735. height: math.unit(24622*2, "feet"),
  35736. name: "Front",
  35737. image: {
  35738. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35739. extra: 1851/1712,
  35740. bottom: 0/1851
  35741. },
  35742. form: "neptune",
  35743. default: true
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "\"Natural\" Height",
  35749. height: math.unit(5 + 11/12, "feet"),
  35750. form: "normal"
  35751. },
  35752. {
  35753. name: "Smallest comfortable size",
  35754. height: math.unit(40, "meters"),
  35755. form: "normal"
  35756. },
  35757. {
  35758. name: "Common size",
  35759. height: math.unit(50, "km"),
  35760. form: "normal",
  35761. default: true
  35762. },
  35763. {
  35764. name: "Normal",
  35765. height: math.unit(1.5, "earths"),
  35766. form: "demon",
  35767. default: true
  35768. },
  35769. {
  35770. name: "Universal",
  35771. height: math.unit(15, "universes"),
  35772. form: "demon"
  35773. },
  35774. {
  35775. name: "Earth",
  35776. height: math.unit(1.5, "earths"),
  35777. form: "terra",
  35778. default: true
  35779. },
  35780. {
  35781. name: "Super Earth",
  35782. height: math.unit(67.5, "earths"),
  35783. form: "terra"
  35784. },
  35785. {
  35786. name: "Doesn't fit in a solar system...",
  35787. height: math.unit(1, "galaxy"),
  35788. form: "terra"
  35789. },
  35790. {
  35791. name: "Saturn",
  35792. height: math.unit(58232*2, "km"),
  35793. form: "jupiter"
  35794. },
  35795. {
  35796. name: "Jupiter",
  35797. height: math.unit(69911*2, "km"),
  35798. form: "jupiter",
  35799. default: true
  35800. },
  35801. {
  35802. name: "HD 100546 b",
  35803. height: math.unit(482938, "km"),
  35804. form: "jupiter"
  35805. },
  35806. {
  35807. name: "Enceladus",
  35808. height: math.unit(513*2, "km"),
  35809. form: "neptune"
  35810. },
  35811. {
  35812. name: "Europe",
  35813. height: math.unit(1560*2, "km"),
  35814. form: "neptune"
  35815. },
  35816. {
  35817. name: "Neptune",
  35818. height: math.unit(24622*2, "km"),
  35819. form: "neptune",
  35820. default: true
  35821. },
  35822. {
  35823. name: "CoRoT-9b",
  35824. height: math.unit(75067*2, "km"),
  35825. form: "neptune"
  35826. },
  35827. ],
  35828. {
  35829. "normal": {
  35830. name: "Normal",
  35831. default: true
  35832. },
  35833. "demon": {
  35834. name: "Demon"
  35835. },
  35836. "terra": {
  35837. name: "Terra"
  35838. },
  35839. "jupiter": {
  35840. name: "Jupiter"
  35841. },
  35842. "neptune": {
  35843. name: "Neptune"
  35844. }
  35845. }
  35846. ))
  35847. characterMakers.push(() => makeCharacter(
  35848. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35849. {
  35850. front: {
  35851. height: math.unit(16, "feet"),
  35852. weight: math.unit(610, "kg"),
  35853. name: "Front",
  35854. image: {
  35855. source: "./media/characters/huckle/front.svg",
  35856. extra: 1731/1625,
  35857. bottom: 33/1764
  35858. }
  35859. },
  35860. back: {
  35861. height: math.unit(16, "feet"),
  35862. weight: math.unit(610, "kg"),
  35863. name: "Back",
  35864. image: {
  35865. source: "./media/characters/huckle/back.svg",
  35866. extra: 1738/1651,
  35867. bottom: 37/1775
  35868. }
  35869. },
  35870. laughing: {
  35871. height: math.unit(3.75, "feet"),
  35872. name: "Laughing",
  35873. image: {
  35874. source: "./media/characters/huckle/laughing.svg"
  35875. }
  35876. },
  35877. angry: {
  35878. height: math.unit(4.15, "feet"),
  35879. name: "Angry",
  35880. image: {
  35881. source: "./media/characters/huckle/angry.svg"
  35882. }
  35883. },
  35884. },
  35885. [
  35886. {
  35887. name: "Normal",
  35888. height: math.unit(16, "feet"),
  35889. default: true
  35890. },
  35891. {
  35892. name: "Mini Macro",
  35893. height: math.unit(463, "feet")
  35894. },
  35895. {
  35896. name: "Macro",
  35897. height: math.unit(1680, "meters")
  35898. },
  35899. {
  35900. name: "Mega Macro",
  35901. height: math.unit(175, "km")
  35902. },
  35903. {
  35904. name: "Terra Macro",
  35905. height: math.unit(32, "gigameters")
  35906. },
  35907. {
  35908. name: "Multiverse+",
  35909. height: math.unit(2.56e23, "yottameters")
  35910. },
  35911. ]
  35912. ))
  35913. characterMakers.push(() => makeCharacter(
  35914. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35915. {
  35916. front: {
  35917. height: math.unit(6 + 9/12, "feet"),
  35918. weight: math.unit(280, "lb"),
  35919. name: "Front",
  35920. image: {
  35921. source: "./media/characters/candy/front.svg",
  35922. extra: 234/217,
  35923. bottom: 11/245
  35924. }
  35925. },
  35926. },
  35927. [
  35928. {
  35929. name: "Really Small",
  35930. height: math.unit(0.1, "nm")
  35931. },
  35932. {
  35933. name: "Micro",
  35934. height: math.unit(2, "inches")
  35935. },
  35936. {
  35937. name: "Normal",
  35938. height: math.unit(6 + 9/12, "feet"),
  35939. default: true
  35940. },
  35941. {
  35942. name: "Small Macro",
  35943. height: math.unit(69, "feet")
  35944. },
  35945. {
  35946. name: "Macro",
  35947. height: math.unit(160, "feet")
  35948. },
  35949. {
  35950. name: "Megamacro",
  35951. height: math.unit(22000, "miles")
  35952. },
  35953. {
  35954. name: "Gigamacro",
  35955. height: math.unit(50000, "miles")
  35956. },
  35957. ]
  35958. ))
  35959. characterMakers.push(() => makeCharacter(
  35960. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35961. {
  35962. front: {
  35963. height: math.unit(4, "feet"),
  35964. weight: math.unit(90, "lb"),
  35965. name: "Front",
  35966. image: {
  35967. source: "./media/characters/joey-mcdonald/front.svg",
  35968. extra: 1059/852,
  35969. bottom: 33/1092
  35970. }
  35971. },
  35972. back: {
  35973. height: math.unit(4, "feet"),
  35974. weight: math.unit(90, "lb"),
  35975. name: "Back",
  35976. image: {
  35977. source: "./media/characters/joey-mcdonald/back.svg",
  35978. extra: 1077/879,
  35979. bottom: 5/1082
  35980. }
  35981. },
  35982. frontKobold: {
  35983. height: math.unit(4, "feet"),
  35984. weight: math.unit(100, "lb"),
  35985. name: "Front-kobold",
  35986. image: {
  35987. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35988. extra: 1480/1367,
  35989. bottom: 0/1480
  35990. }
  35991. },
  35992. backKobold: {
  35993. height: math.unit(4, "feet"),
  35994. weight: math.unit(100, "lb"),
  35995. name: "Back-kobold",
  35996. image: {
  35997. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35998. extra: 1449/1361,
  35999. bottom: 0/1449
  36000. }
  36001. },
  36002. },
  36003. [
  36004. {
  36005. name: "Normal",
  36006. height: math.unit(4, "feet"),
  36007. default: true
  36008. },
  36009. ]
  36010. ))
  36011. characterMakers.push(() => makeCharacter(
  36012. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36013. {
  36014. front: {
  36015. height: math.unit(12 + 6/12, "feet"),
  36016. name: "Front",
  36017. image: {
  36018. source: "./media/characters/kass-lockheed/front.svg",
  36019. extra: 354/343,
  36020. bottom: 9/363
  36021. }
  36022. },
  36023. back: {
  36024. height: math.unit(12 + 6/12, "feet"),
  36025. name: "Back",
  36026. image: {
  36027. source: "./media/characters/kass-lockheed/back.svg",
  36028. extra: 364/352,
  36029. bottom: 3/367
  36030. }
  36031. },
  36032. dick: {
  36033. height: math.unit(3.12, "feet"),
  36034. name: "Dick",
  36035. image: {
  36036. source: "./media/characters/kass-lockheed/dick.svg"
  36037. }
  36038. },
  36039. head: {
  36040. height: math.unit(2.6, "feet"),
  36041. name: "Head",
  36042. image: {
  36043. source: "./media/characters/kass-lockheed/head.svg"
  36044. }
  36045. },
  36046. bleh: {
  36047. height: math.unit(2.85, "feet"),
  36048. name: "Bleh",
  36049. image: {
  36050. source: "./media/characters/kass-lockheed/bleh.svg"
  36051. }
  36052. },
  36053. smug: {
  36054. height: math.unit(2.85, "feet"),
  36055. name: "Smug",
  36056. image: {
  36057. source: "./media/characters/kass-lockheed/smug.svg"
  36058. }
  36059. },
  36060. },
  36061. [
  36062. {
  36063. name: "Normal",
  36064. height: math.unit(12 + 6/12, "feet"),
  36065. default: true
  36066. },
  36067. ]
  36068. ))
  36069. characterMakers.push(() => makeCharacter(
  36070. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36071. {
  36072. front: {
  36073. height: math.unit(6 + 2/12, "feet"),
  36074. name: "Front",
  36075. image: {
  36076. source: "./media/characters/taylor/front.svg",
  36077. extra: 639/495,
  36078. bottom: 12/651
  36079. }
  36080. },
  36081. },
  36082. [
  36083. {
  36084. name: "Normal",
  36085. height: math.unit(6 + 2/12, "feet"),
  36086. default: true
  36087. },
  36088. {
  36089. name: "Big",
  36090. height: math.unit(15, "feet")
  36091. },
  36092. {
  36093. name: "Lorg",
  36094. height: math.unit(80, "feet")
  36095. },
  36096. {
  36097. name: "Too Lorg",
  36098. height: math.unit(120, "feet")
  36099. },
  36100. ]
  36101. ))
  36102. characterMakers.push(() => makeCharacter(
  36103. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36104. {
  36105. front: {
  36106. height: math.unit(15, "feet"),
  36107. name: "Front",
  36108. image: {
  36109. source: "./media/characters/kaizer/front.svg",
  36110. extra: 1612/1436,
  36111. bottom: 43/1655
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Normal",
  36118. height: math.unit(15, "feet"),
  36119. default: true
  36120. },
  36121. ]
  36122. ))
  36123. characterMakers.push(() => makeCharacter(
  36124. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36125. {
  36126. front: {
  36127. height: math.unit(2, "feet"),
  36128. weight: math.unit(30, "lb"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/sandy/front.svg",
  36132. extra: 1439/1307,
  36133. bottom: 194/1633
  36134. }
  36135. },
  36136. },
  36137. [
  36138. {
  36139. name: "Normal",
  36140. height: math.unit(2, "feet"),
  36141. default: true
  36142. },
  36143. ]
  36144. ))
  36145. characterMakers.push(() => makeCharacter(
  36146. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36147. {
  36148. front: {
  36149. height: math.unit(3, "feet"),
  36150. name: "Front",
  36151. image: {
  36152. source: "./media/characters/mellvi/front.svg",
  36153. extra: 1831/1630,
  36154. bottom: 58/1889
  36155. }
  36156. },
  36157. },
  36158. [
  36159. {
  36160. name: "Normal",
  36161. height: math.unit(3, "feet"),
  36162. default: true
  36163. },
  36164. ]
  36165. ))
  36166. characterMakers.push(() => makeCharacter(
  36167. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36168. {
  36169. front: {
  36170. height: math.unit(5 + 11/12, "feet"),
  36171. weight: math.unit(200, "lb"),
  36172. name: "Front",
  36173. image: {
  36174. source: "./media/characters/shirou/front.svg",
  36175. extra: 2491/2383,
  36176. bottom: 189/2680
  36177. }
  36178. },
  36179. back: {
  36180. height: math.unit(5 + 11/12, "feet"),
  36181. weight: math.unit(200, "lb"),
  36182. name: "Back",
  36183. image: {
  36184. source: "./media/characters/shirou/back.svg",
  36185. extra: 2554/2450,
  36186. bottom: 76/2630
  36187. }
  36188. },
  36189. },
  36190. [
  36191. {
  36192. name: "Normal",
  36193. height: math.unit(5 + 11/12, "feet"),
  36194. default: true
  36195. },
  36196. ]
  36197. ))
  36198. characterMakers.push(() => makeCharacter(
  36199. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36200. {
  36201. front: {
  36202. height: math.unit(6 + 3/12, "feet"),
  36203. weight: math.unit(177, "lb"),
  36204. name: "Front",
  36205. image: {
  36206. source: "./media/characters/noryu/front.svg",
  36207. extra: 973/885,
  36208. bottom: 10/983
  36209. }
  36210. },
  36211. },
  36212. [
  36213. {
  36214. name: "Normal",
  36215. height: math.unit(6 + 3/12, "feet"),
  36216. default: true
  36217. },
  36218. ]
  36219. ))
  36220. characterMakers.push(() => makeCharacter(
  36221. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36222. {
  36223. front: {
  36224. height: math.unit(5 + 6/12, "feet"),
  36225. weight: math.unit(170, "lb"),
  36226. name: "Front",
  36227. image: {
  36228. source: "./media/characters/mevolas-rubenido/front.svg",
  36229. extra: 2109/1901,
  36230. bottom: 96/2205
  36231. }
  36232. },
  36233. },
  36234. [
  36235. {
  36236. name: "Normal",
  36237. height: math.unit(5 + 6/12, "feet"),
  36238. default: true
  36239. },
  36240. ]
  36241. ))
  36242. characterMakers.push(() => makeCharacter(
  36243. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36244. {
  36245. front: {
  36246. height: math.unit(100, "feet"),
  36247. name: "Front",
  36248. image: {
  36249. source: "./media/characters/dee/front.svg",
  36250. extra: 2153/2036,
  36251. bottom: 59/2212
  36252. }
  36253. },
  36254. back: {
  36255. height: math.unit(100, "feet"),
  36256. name: "Back",
  36257. image: {
  36258. source: "./media/characters/dee/back.svg",
  36259. extra: 2183/2058,
  36260. bottom: 75/2258
  36261. }
  36262. },
  36263. foot: {
  36264. height: math.unit(19.43, "feet"),
  36265. name: "Foot",
  36266. image: {
  36267. source: "./media/characters/dee/foot.svg"
  36268. }
  36269. },
  36270. hoof: {
  36271. height: math.unit(20.6, "feet"),
  36272. name: "Hoof",
  36273. image: {
  36274. source: "./media/characters/dee/hoof.svg"
  36275. }
  36276. },
  36277. },
  36278. [
  36279. {
  36280. name: "Macro",
  36281. height: math.unit(100, "feet"),
  36282. default: true
  36283. },
  36284. ]
  36285. ))
  36286. characterMakers.push(() => makeCharacter(
  36287. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36288. {
  36289. front: {
  36290. height: math.unit(5 + 6/12, "feet"),
  36291. name: "Front",
  36292. image: {
  36293. source: "./media/characters/teh/front.svg",
  36294. extra: 1002/847,
  36295. bottom: 62/1064
  36296. }
  36297. },
  36298. },
  36299. [
  36300. {
  36301. name: "Normal",
  36302. height: math.unit(5 + 6/12, "feet"),
  36303. default: true
  36304. },
  36305. ]
  36306. ))
  36307. characterMakers.push(() => makeCharacter(
  36308. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36309. {
  36310. side: {
  36311. height: math.unit(6 + 1/12, "feet"),
  36312. weight: math.unit(204, "lb"),
  36313. name: "Side",
  36314. image: {
  36315. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36316. extra: 974/775,
  36317. bottom: 169/1143
  36318. }
  36319. },
  36320. sitting: {
  36321. height: math.unit(6 + 2/12, "feet"),
  36322. weight: math.unit(204, "lb"),
  36323. name: "Sitting",
  36324. image: {
  36325. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36326. extra: 1175/964,
  36327. bottom: 378/1553
  36328. }
  36329. },
  36330. },
  36331. [
  36332. {
  36333. name: "Normal",
  36334. height: math.unit(6 + 1/12, "feet"),
  36335. default: true
  36336. },
  36337. ]
  36338. ))
  36339. characterMakers.push(() => makeCharacter(
  36340. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36341. {
  36342. front: {
  36343. height: math.unit(6, "inches"),
  36344. name: "Front",
  36345. image: {
  36346. source: "./media/characters/tululi/front.svg",
  36347. extra: 1997/1876,
  36348. bottom: 20/2017
  36349. }
  36350. },
  36351. },
  36352. [
  36353. {
  36354. name: "Normal",
  36355. height: math.unit(6, "inches"),
  36356. default: true
  36357. },
  36358. ]
  36359. ))
  36360. characterMakers.push(() => makeCharacter(
  36361. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36362. {
  36363. front: {
  36364. height: math.unit(4 + 1/12, "feet"),
  36365. name: "Front",
  36366. image: {
  36367. source: "./media/characters/star/front.svg",
  36368. extra: 1493/1189,
  36369. bottom: 48/1541
  36370. }
  36371. },
  36372. },
  36373. [
  36374. {
  36375. name: "Normal",
  36376. height: math.unit(4 + 1/12, "feet"),
  36377. default: true
  36378. },
  36379. ]
  36380. ))
  36381. characterMakers.push(() => makeCharacter(
  36382. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36383. {
  36384. front: {
  36385. height: math.unit(6 + 3/12, "feet"),
  36386. name: "Front",
  36387. image: {
  36388. source: "./media/characters/comet/front.svg",
  36389. extra: 1681/1462,
  36390. bottom: 26/1707
  36391. }
  36392. },
  36393. },
  36394. [
  36395. {
  36396. name: "Normal",
  36397. height: math.unit(6 + 3/12, "feet"),
  36398. default: true
  36399. },
  36400. ]
  36401. ))
  36402. characterMakers.push(() => makeCharacter(
  36403. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36404. {
  36405. front: {
  36406. height: math.unit(950, "feet"),
  36407. name: "Front",
  36408. image: {
  36409. source: "./media/characters/vortex/front.svg",
  36410. extra: 1497/1434,
  36411. bottom: 56/1553
  36412. }
  36413. },
  36414. maw: {
  36415. height: math.unit(285, "feet"),
  36416. name: "Maw",
  36417. image: {
  36418. source: "./media/characters/vortex/maw.svg"
  36419. }
  36420. },
  36421. },
  36422. [
  36423. {
  36424. name: "Macro",
  36425. height: math.unit(950, "feet"),
  36426. default: true
  36427. },
  36428. ]
  36429. ))
  36430. characterMakers.push(() => makeCharacter(
  36431. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36432. {
  36433. front: {
  36434. height: math.unit(600, "feet"),
  36435. weight: math.unit(0.02, "grams"),
  36436. name: "Front",
  36437. image: {
  36438. source: "./media/characters/doodle/front.svg",
  36439. extra: 1578/1413,
  36440. bottom: 37/1615
  36441. }
  36442. },
  36443. },
  36444. [
  36445. {
  36446. name: "Macro",
  36447. height: math.unit(600, "feet"),
  36448. default: true
  36449. },
  36450. ]
  36451. ))
  36452. characterMakers.push(() => makeCharacter(
  36453. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36454. {
  36455. front: {
  36456. height: math.unit(6 + 6/12, "feet"),
  36457. name: "Front",
  36458. image: {
  36459. source: "./media/characters/jai/front.svg",
  36460. extra: 1645/1534,
  36461. bottom: 115/1760
  36462. }
  36463. },
  36464. },
  36465. [
  36466. {
  36467. name: "Normal",
  36468. height: math.unit(6 + 6/12, "feet"),
  36469. default: true
  36470. },
  36471. ]
  36472. ))
  36473. characterMakers.push(() => makeCharacter(
  36474. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36475. {
  36476. front: {
  36477. height: math.unit(6 + 8/12, "feet"),
  36478. name: "Front",
  36479. image: {
  36480. source: "./media/characters/pixel/front.svg",
  36481. extra: 1900/1735,
  36482. bottom: 63/1963
  36483. }
  36484. },
  36485. },
  36486. [
  36487. {
  36488. name: "Normal",
  36489. height: math.unit(6 + 8/12, "feet"),
  36490. default: true
  36491. },
  36492. ]
  36493. ))
  36494. characterMakers.push(() => makeCharacter(
  36495. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36496. {
  36497. back: {
  36498. height: math.unit(4 + 1/12, "feet"),
  36499. weight: math.unit(75, "lb"),
  36500. name: "Back",
  36501. image: {
  36502. source: "./media/characters/rhett/back.svg",
  36503. extra: 930/878,
  36504. bottom: 25/955
  36505. }
  36506. },
  36507. front: {
  36508. height: math.unit(4 + 1/12, "feet"),
  36509. weight: math.unit(75, "lb"),
  36510. name: "Front",
  36511. image: {
  36512. source: "./media/characters/rhett/front.svg",
  36513. extra: 1682/1586,
  36514. bottom: 92/1774
  36515. }
  36516. },
  36517. },
  36518. [
  36519. {
  36520. name: "Micro",
  36521. height: math.unit(8, "inches")
  36522. },
  36523. {
  36524. name: "Tiny",
  36525. height: math.unit(2, "feet")
  36526. },
  36527. {
  36528. name: "Normal",
  36529. height: math.unit(4 + 1/12, "feet"),
  36530. default: true
  36531. },
  36532. ]
  36533. ))
  36534. characterMakers.push(() => makeCharacter(
  36535. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36536. {
  36537. front: {
  36538. height: math.unit(3 + 3/12, "feet"),
  36539. name: "Front",
  36540. image: {
  36541. source: "./media/characters/penny/front.svg",
  36542. extra: 1406/1311,
  36543. bottom: 26/1432
  36544. }
  36545. },
  36546. },
  36547. [
  36548. {
  36549. name: "Normal",
  36550. height: math.unit(3 + 3/12, "feet"),
  36551. default: true
  36552. },
  36553. ]
  36554. ))
  36555. characterMakers.push(() => makeCharacter(
  36556. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36557. {
  36558. front: {
  36559. height: math.unit(4 + 11/12, "feet"),
  36560. name: "Front",
  36561. image: {
  36562. source: "./media/characters/monty/front.svg",
  36563. extra: 1479/1209,
  36564. bottom: 0/1479
  36565. }
  36566. },
  36567. },
  36568. [
  36569. {
  36570. name: "Normal",
  36571. height: math.unit(4 + 11/12, "feet"),
  36572. default: true
  36573. },
  36574. ]
  36575. ))
  36576. characterMakers.push(() => makeCharacter(
  36577. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36578. {
  36579. front: {
  36580. height: math.unit(8 + 4/12, "feet"),
  36581. name: "Front",
  36582. image: {
  36583. source: "./media/characters/sterling/front.svg",
  36584. extra: 1420/1236,
  36585. bottom: 27/1447
  36586. }
  36587. },
  36588. },
  36589. [
  36590. {
  36591. name: "Normal",
  36592. height: math.unit(8 + 4/12, "feet"),
  36593. default: true
  36594. },
  36595. ]
  36596. ))
  36597. characterMakers.push(() => makeCharacter(
  36598. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36599. {
  36600. front: {
  36601. height: math.unit(15, "feet"),
  36602. name: "Front",
  36603. image: {
  36604. source: "./media/characters/marble/front.svg",
  36605. extra: 973/937,
  36606. bottom: 32/1005
  36607. }
  36608. },
  36609. },
  36610. [
  36611. {
  36612. name: "Normal",
  36613. height: math.unit(15, "feet"),
  36614. default: true
  36615. },
  36616. ]
  36617. ))
  36618. characterMakers.push(() => makeCharacter(
  36619. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36620. {
  36621. front: {
  36622. height: math.unit(3, "inches"),
  36623. name: "Front",
  36624. image: {
  36625. source: "./media/characters/powder/front.svg",
  36626. extra: 1504/1334,
  36627. bottom: 518/2022
  36628. }
  36629. },
  36630. },
  36631. [
  36632. {
  36633. name: "Normal",
  36634. height: math.unit(3, "inches"),
  36635. default: true
  36636. },
  36637. ]
  36638. ))
  36639. characterMakers.push(() => makeCharacter(
  36640. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36641. {
  36642. front: {
  36643. height: math.unit(4 + 5/12, "feet"),
  36644. name: "Front",
  36645. image: {
  36646. source: "./media/characters/joey-raccoon/front.svg",
  36647. extra: 1273/1197,
  36648. bottom: 0/1273
  36649. }
  36650. },
  36651. },
  36652. [
  36653. {
  36654. name: "Normal",
  36655. height: math.unit(4 + 5/12, "feet"),
  36656. default: true
  36657. },
  36658. ]
  36659. ))
  36660. characterMakers.push(() => makeCharacter(
  36661. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36662. {
  36663. front: {
  36664. height: math.unit(8 + 4/12, "feet"),
  36665. name: "Front",
  36666. image: {
  36667. source: "./media/characters/vick/front.svg",
  36668. extra: 2187/2118,
  36669. bottom: 47/2234
  36670. }
  36671. },
  36672. },
  36673. [
  36674. {
  36675. name: "Normal",
  36676. height: math.unit(8 + 4/12, "feet"),
  36677. default: true
  36678. },
  36679. ]
  36680. ))
  36681. characterMakers.push(() => makeCharacter(
  36682. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36683. {
  36684. front: {
  36685. height: math.unit(5 + 5/12, "feet"),
  36686. name: "Front",
  36687. image: {
  36688. source: "./media/characters/mitsy/front.svg",
  36689. extra: 1842/1695,
  36690. bottom: 0/1842
  36691. }
  36692. },
  36693. },
  36694. [
  36695. {
  36696. name: "Normal",
  36697. height: math.unit(5 + 5/12, "feet"),
  36698. default: true
  36699. },
  36700. ]
  36701. ))
  36702. characterMakers.push(() => makeCharacter(
  36703. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36704. {
  36705. front: {
  36706. height: math.unit(6 + 3/12, "feet"),
  36707. name: "Front",
  36708. image: {
  36709. source: "./media/characters/silvy/front.svg",
  36710. extra: 1995/1836,
  36711. bottom: 225/2220
  36712. }
  36713. },
  36714. },
  36715. [
  36716. {
  36717. name: "Normal",
  36718. height: math.unit(6 + 3/12, "feet"),
  36719. default: true
  36720. },
  36721. ]
  36722. ))
  36723. characterMakers.push(() => makeCharacter(
  36724. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36725. {
  36726. front: {
  36727. height: math.unit(3 + 8/12, "feet"),
  36728. name: "Front",
  36729. image: {
  36730. source: "./media/characters/rodney/front.svg",
  36731. extra: 1956/1747,
  36732. bottom: 31/1987
  36733. }
  36734. },
  36735. frontDressed: {
  36736. height: math.unit(2.9, "feet"),
  36737. name: "Front (Dressed)",
  36738. image: {
  36739. source: "./media/characters/rodney/front-dressed.svg",
  36740. extra: 1382/1241,
  36741. bottom: 385/1767
  36742. }
  36743. },
  36744. },
  36745. [
  36746. {
  36747. name: "Normal",
  36748. height: math.unit(3 + 8/12, "feet"),
  36749. default: true
  36750. },
  36751. ]
  36752. ))
  36753. characterMakers.push(() => makeCharacter(
  36754. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36755. {
  36756. front: {
  36757. height: math.unit(5 + 9/12, "feet"),
  36758. weight: math.unit(194, "lbs"),
  36759. name: "Front",
  36760. image: {
  36761. source: "./media/characters/zakail-sudekai/front.svg",
  36762. extra: 2696/2533,
  36763. bottom: 248/2944
  36764. }
  36765. },
  36766. maw: {
  36767. height: math.unit(1.35, "feet"),
  36768. name: "Maw",
  36769. image: {
  36770. source: "./media/characters/zakail-sudekai/maw.svg"
  36771. }
  36772. },
  36773. },
  36774. [
  36775. {
  36776. name: "Normal",
  36777. height: math.unit(5 + 9/12, "feet"),
  36778. default: true
  36779. },
  36780. ]
  36781. ))
  36782. characterMakers.push(() => makeCharacter(
  36783. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36784. {
  36785. front: {
  36786. height: math.unit(8 + 4/12, "feet"),
  36787. weight: math.unit(1200, "lb"),
  36788. name: "Front",
  36789. image: {
  36790. source: "./media/characters/eleanor/front.svg",
  36791. extra: 1226/1192,
  36792. bottom: 52/1278
  36793. }
  36794. },
  36795. back: {
  36796. height: math.unit(8 + 4/12, "feet"),
  36797. weight: math.unit(1200, "lb"),
  36798. name: "Back",
  36799. image: {
  36800. source: "./media/characters/eleanor/back.svg",
  36801. extra: 1242/1184,
  36802. bottom: 60/1302
  36803. }
  36804. },
  36805. head: {
  36806. height: math.unit(2.62, "feet"),
  36807. name: "Head",
  36808. image: {
  36809. source: "./media/characters/eleanor/head.svg"
  36810. }
  36811. },
  36812. },
  36813. [
  36814. {
  36815. name: "Normal",
  36816. height: math.unit(8 + 4/12, "feet"),
  36817. default: true
  36818. },
  36819. ]
  36820. ))
  36821. characterMakers.push(() => makeCharacter(
  36822. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36823. {
  36824. front: {
  36825. height: math.unit(8 + 4/12, "feet"),
  36826. weight: math.unit(750, "lb"),
  36827. name: "Front",
  36828. image: {
  36829. source: "./media/characters/tanya/front.svg",
  36830. extra: 1749/1615,
  36831. bottom: 33/1782
  36832. }
  36833. },
  36834. },
  36835. [
  36836. {
  36837. name: "Normal",
  36838. height: math.unit(8 + 4/12, "feet"),
  36839. default: true
  36840. },
  36841. ]
  36842. ))
  36843. characterMakers.push(() => makeCharacter(
  36844. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36845. {
  36846. front: {
  36847. height: math.unit(5, "feet"),
  36848. weight: math.unit(225, "lb"),
  36849. name: "Front",
  36850. image: {
  36851. source: "./media/characters/cindy/front.svg",
  36852. extra: 1320/1250,
  36853. bottom: 42/1362
  36854. }
  36855. },
  36856. frontDressed: {
  36857. height: math.unit(5, "feet"),
  36858. weight: math.unit(225, "lb"),
  36859. name: "Front (Dressed)",
  36860. image: {
  36861. source: "./media/characters/cindy/front-dressed.svg",
  36862. extra: 1320/1250,
  36863. bottom: 42/1362
  36864. }
  36865. },
  36866. back: {
  36867. height: math.unit(5, "feet"),
  36868. weight: math.unit(225, "lb"),
  36869. name: "Back",
  36870. image: {
  36871. source: "./media/characters/cindy/back.svg",
  36872. extra: 1384/1346,
  36873. bottom: 14/1398
  36874. }
  36875. },
  36876. },
  36877. [
  36878. {
  36879. name: "Normal",
  36880. height: math.unit(5, "feet"),
  36881. default: true
  36882. },
  36883. ]
  36884. ))
  36885. characterMakers.push(() => makeCharacter(
  36886. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36887. {
  36888. front: {
  36889. height: math.unit(6 + 9/12, "feet"),
  36890. weight: math.unit(440, "lb"),
  36891. name: "Front",
  36892. image: {
  36893. source: "./media/characters/wilbur-owen/front.svg",
  36894. extra: 1575/1448,
  36895. bottom: 72/1647
  36896. }
  36897. },
  36898. back: {
  36899. height: math.unit(6 + 9/12, "feet"),
  36900. weight: math.unit(440, "lb"),
  36901. name: "Back",
  36902. image: {
  36903. source: "./media/characters/wilbur-owen/back.svg",
  36904. extra: 1578/1445,
  36905. bottom: 36/1614
  36906. }
  36907. },
  36908. },
  36909. [
  36910. {
  36911. name: "Normal",
  36912. height: math.unit(6 + 9/12, "feet"),
  36913. default: true
  36914. },
  36915. ]
  36916. ))
  36917. characterMakers.push(() => makeCharacter(
  36918. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36919. {
  36920. front: {
  36921. height: math.unit(6 + 5/12, "feet"),
  36922. weight: math.unit(650, "lb"),
  36923. name: "Front",
  36924. image: {
  36925. source: "./media/characters/keegan/front.svg",
  36926. extra: 2387/2198,
  36927. bottom: 33/2420
  36928. }
  36929. },
  36930. side: {
  36931. height: math.unit(6 + 5/12, "feet"),
  36932. weight: math.unit(650, "lb"),
  36933. name: "Side",
  36934. image: {
  36935. source: "./media/characters/keegan/side.svg",
  36936. extra: 2390/2202,
  36937. bottom: 47/2437
  36938. }
  36939. },
  36940. back: {
  36941. height: math.unit(6 + 5/12, "feet"),
  36942. weight: math.unit(650, "lb"),
  36943. name: "Back",
  36944. image: {
  36945. source: "./media/characters/keegan/back.svg",
  36946. extra: 2418/2268,
  36947. bottom: 15/2433
  36948. }
  36949. },
  36950. frontSfw: {
  36951. height: math.unit(6 + 5/12, "feet"),
  36952. weight: math.unit(650, "lb"),
  36953. name: "Front (SFW)",
  36954. image: {
  36955. source: "./media/characters/keegan/front-sfw.svg",
  36956. extra: 2387/2198,
  36957. bottom: 33/2420
  36958. }
  36959. },
  36960. beans: {
  36961. height: math.unit(1.85, "feet"),
  36962. name: "Beans",
  36963. image: {
  36964. source: "./media/characters/keegan/beans.svg"
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Normal",
  36971. height: math.unit(6 + 5/12, "feet"),
  36972. default: true
  36973. },
  36974. ]
  36975. ))
  36976. characterMakers.push(() => makeCharacter(
  36977. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36978. {
  36979. front: {
  36980. height: math.unit(9, "feet"),
  36981. name: "Front",
  36982. image: {
  36983. source: "./media/characters/colton/front.svg",
  36984. extra: 1589/1326,
  36985. bottom: 139/1728
  36986. }
  36987. },
  36988. },
  36989. [
  36990. {
  36991. name: "Normal",
  36992. height: math.unit(9, "feet"),
  36993. default: true
  36994. },
  36995. ]
  36996. ))
  36997. characterMakers.push(() => makeCharacter(
  36998. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36999. {
  37000. front: {
  37001. height: math.unit(2 + 9/12, "feet"),
  37002. name: "Front",
  37003. image: {
  37004. source: "./media/characters/bora/front.svg",
  37005. extra: 1265/1250,
  37006. bottom: 24/1289
  37007. }
  37008. },
  37009. },
  37010. [
  37011. {
  37012. name: "Normal",
  37013. height: math.unit(2 + 9/12, "feet"),
  37014. default: true
  37015. },
  37016. ]
  37017. ))
  37018. characterMakers.push(() => makeCharacter(
  37019. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37020. {
  37021. front: {
  37022. height: math.unit(8, "feet"),
  37023. name: "Front",
  37024. image: {
  37025. source: "./media/characters/myu-myu/front.svg",
  37026. extra: 1949/1857,
  37027. bottom: 90/2039
  37028. }
  37029. },
  37030. },
  37031. [
  37032. {
  37033. name: "Normal",
  37034. height: math.unit(8, "feet"),
  37035. default: true
  37036. },
  37037. {
  37038. name: "Big",
  37039. height: math.unit(15, "feet")
  37040. },
  37041. {
  37042. name: "BIG",
  37043. height: math.unit(25, "feet")
  37044. },
  37045. ]
  37046. ))
  37047. characterMakers.push(() => makeCharacter(
  37048. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37049. {
  37050. side: {
  37051. height: math.unit(7 + 5/12, "feet"),
  37052. weight: math.unit(2800, "lb"),
  37053. name: "Side",
  37054. image: {
  37055. source: "./media/characters/haloren/side.svg",
  37056. extra: 1793/409,
  37057. bottom: 59/1852
  37058. }
  37059. },
  37060. frontPaw: {
  37061. height: math.unit(2.36, "feet"),
  37062. name: "Front paw",
  37063. image: {
  37064. source: "./media/characters/haloren/front-paw.svg"
  37065. }
  37066. },
  37067. hindPaw: {
  37068. height: math.unit(3.18, "feet"),
  37069. name: "Hind paw",
  37070. image: {
  37071. source: "./media/characters/haloren/hind-paw.svg"
  37072. }
  37073. },
  37074. maw: {
  37075. height: math.unit(5.05, "feet"),
  37076. name: "Maw",
  37077. image: {
  37078. source: "./media/characters/haloren/maw.svg"
  37079. }
  37080. },
  37081. dick: {
  37082. height: math.unit(2.90, "feet"),
  37083. name: "Dick",
  37084. image: {
  37085. source: "./media/characters/haloren/dick.svg"
  37086. }
  37087. },
  37088. },
  37089. [
  37090. {
  37091. name: "Normal",
  37092. height: math.unit(7 + 5/12, "feet"),
  37093. default: true
  37094. },
  37095. {
  37096. name: "Enhanced",
  37097. height: math.unit(14 + 3/12, "feet")
  37098. },
  37099. ]
  37100. ))
  37101. characterMakers.push(() => makeCharacter(
  37102. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37103. {
  37104. front: {
  37105. height: math.unit(171, "cm"),
  37106. name: "Front",
  37107. image: {
  37108. source: "./media/characters/kimmy/front.svg",
  37109. extra: 1491/1435,
  37110. bottom: 53/1544
  37111. }
  37112. },
  37113. },
  37114. [
  37115. {
  37116. name: "Small",
  37117. height: math.unit(9, "cm")
  37118. },
  37119. {
  37120. name: "Normal",
  37121. height: math.unit(171, "cm"),
  37122. default: true
  37123. },
  37124. ]
  37125. ))
  37126. characterMakers.push(() => makeCharacter(
  37127. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37128. {
  37129. front: {
  37130. height: math.unit(8, "feet"),
  37131. weight: math.unit(300, "lb"),
  37132. name: "Front",
  37133. image: {
  37134. source: "./media/characters/galeboomer/front.svg",
  37135. extra: 4651/4415,
  37136. bottom: 162/4813
  37137. }
  37138. },
  37139. back: {
  37140. height: math.unit(8, "feet"),
  37141. weight: math.unit(300, "lb"),
  37142. name: "Back",
  37143. image: {
  37144. source: "./media/characters/galeboomer/back.svg",
  37145. extra: 4544/4314,
  37146. bottom: 16/4560
  37147. }
  37148. },
  37149. frontAlt: {
  37150. height: math.unit(8, "feet"),
  37151. weight: math.unit(300, "lb"),
  37152. name: "Front (Alt)",
  37153. image: {
  37154. source: "./media/characters/galeboomer/front-alt.svg",
  37155. extra: 4458/4228,
  37156. bottom: 68/4526
  37157. }
  37158. },
  37159. maw: {
  37160. height: math.unit(1.2, "feet"),
  37161. name: "Maw",
  37162. image: {
  37163. source: "./media/characters/galeboomer/maw.svg"
  37164. }
  37165. },
  37166. },
  37167. [
  37168. {
  37169. name: "Normal",
  37170. height: math.unit(8, "feet"),
  37171. default: true
  37172. },
  37173. ]
  37174. ))
  37175. characterMakers.push(() => makeCharacter(
  37176. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37177. {
  37178. front: {
  37179. height: math.unit(5 + 9/12, "feet"),
  37180. weight: math.unit(120, "lb"),
  37181. name: "Front",
  37182. image: {
  37183. source: "./media/characters/chyr/front.svg",
  37184. extra: 1323/1254,
  37185. bottom: 63/1386
  37186. }
  37187. },
  37188. back: {
  37189. height: math.unit(5 + 9/12, "feet"),
  37190. weight: math.unit(120, "lb"),
  37191. name: "Back",
  37192. image: {
  37193. source: "./media/characters/chyr/back.svg",
  37194. extra: 1323/1252,
  37195. bottom: 48/1371
  37196. }
  37197. },
  37198. },
  37199. [
  37200. {
  37201. name: "Normal",
  37202. height: math.unit(5 + 9/12, "feet"),
  37203. default: true
  37204. },
  37205. ]
  37206. ))
  37207. characterMakers.push(() => makeCharacter(
  37208. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37209. {
  37210. front: {
  37211. height: math.unit(7, "feet"),
  37212. weight: math.unit(310, "lb"),
  37213. name: "Front",
  37214. image: {
  37215. source: "./media/characters/solarus/front.svg",
  37216. extra: 2415/2021,
  37217. bottom: 103/2518
  37218. }
  37219. },
  37220. back: {
  37221. height: math.unit(7, "feet"),
  37222. weight: math.unit(310, "lb"),
  37223. name: "Back",
  37224. image: {
  37225. source: "./media/characters/solarus/back.svg",
  37226. extra: 2463/2089,
  37227. bottom: 79/2542
  37228. }
  37229. },
  37230. },
  37231. [
  37232. {
  37233. name: "Normal",
  37234. height: math.unit(7, "feet"),
  37235. default: true
  37236. },
  37237. ]
  37238. ))
  37239. characterMakers.push(() => makeCharacter(
  37240. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37241. {
  37242. front: {
  37243. height: math.unit(16, "feet"),
  37244. name: "Front",
  37245. image: {
  37246. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37247. extra: 1844/1780,
  37248. bottom: 58/1902
  37249. }
  37250. },
  37251. winterCoat: {
  37252. height: math.unit(16, "feet"),
  37253. name: "Winter Coat",
  37254. image: {
  37255. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37256. extra: 1807/1775,
  37257. bottom: 69/1876
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Normal",
  37264. height: math.unit(16, "feet"),
  37265. default: true
  37266. },
  37267. {
  37268. name: "Chicago Size",
  37269. height: math.unit(560, "feet")
  37270. },
  37271. ]
  37272. ))
  37273. characterMakers.push(() => makeCharacter(
  37274. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37275. {
  37276. front: {
  37277. height: math.unit(11 + 6/12, "feet"),
  37278. weight: math.unit(1366, "lb"),
  37279. name: "Front",
  37280. image: {
  37281. source: "./media/characters/lexor/front.svg",
  37282. extra: 1560/1481,
  37283. bottom: 211/1771
  37284. }
  37285. },
  37286. back: {
  37287. height: math.unit(11 + 6/12, "feet"),
  37288. weight: math.unit(1366, "lb"),
  37289. name: "Back",
  37290. image: {
  37291. source: "./media/characters/lexor/back.svg",
  37292. extra: 1614/1533,
  37293. bottom: 76/1690
  37294. }
  37295. },
  37296. maw: {
  37297. height: math.unit(3, "feet"),
  37298. name: "Maw",
  37299. image: {
  37300. source: "./media/characters/lexor/maw.svg"
  37301. }
  37302. },
  37303. dick: {
  37304. height: math.unit(2.59, "feet"),
  37305. name: "Dick",
  37306. image: {
  37307. source: "./media/characters/lexor/dick.svg"
  37308. }
  37309. },
  37310. },
  37311. [
  37312. {
  37313. name: "Normal",
  37314. height: math.unit(11 + 6/12, "feet"),
  37315. default: true
  37316. },
  37317. ]
  37318. ))
  37319. characterMakers.push(() => makeCharacter(
  37320. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37321. {
  37322. front: {
  37323. height: math.unit(5 + 8/12, "feet"),
  37324. name: "Front",
  37325. image: {
  37326. source: "./media/characters/magnum/front.svg",
  37327. extra: 942/855,
  37328. bottom: 26/968
  37329. }
  37330. },
  37331. },
  37332. [
  37333. {
  37334. name: "Normal",
  37335. height: math.unit(5 + 8/12, "feet"),
  37336. default: true
  37337. },
  37338. ]
  37339. ))
  37340. characterMakers.push(() => makeCharacter(
  37341. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37342. {
  37343. front: {
  37344. height: math.unit(18 + 4/12, "feet"),
  37345. weight: math.unit(1500, "kg"),
  37346. name: "Front",
  37347. image: {
  37348. source: "./media/characters/solas-sharpsman/front.svg",
  37349. extra: 1698/1589,
  37350. bottom: 0/1698
  37351. }
  37352. },
  37353. },
  37354. [
  37355. {
  37356. name: "Normal",
  37357. height: math.unit(18 + 4/12, "feet"),
  37358. default: true
  37359. },
  37360. ]
  37361. ))
  37362. characterMakers.push(() => makeCharacter(
  37363. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37364. {
  37365. front: {
  37366. height: math.unit(5 + 5/12, "feet"),
  37367. weight: math.unit(180, "lb"),
  37368. name: "Front",
  37369. image: {
  37370. source: "./media/characters/october/front.svg",
  37371. extra: 1800/1650,
  37372. bottom: 0/1800
  37373. }
  37374. },
  37375. frontNsfw: {
  37376. height: math.unit(5 + 5/12, "feet"),
  37377. weight: math.unit(180, "lb"),
  37378. name: "Front (NSFW)",
  37379. image: {
  37380. source: "./media/characters/october/front-nsfw.svg",
  37381. extra: 1392/1307,
  37382. bottom: 42/1434
  37383. }
  37384. },
  37385. },
  37386. [
  37387. {
  37388. name: "Normal",
  37389. height: math.unit(5 + 5/12, "feet"),
  37390. default: true
  37391. },
  37392. ]
  37393. ))
  37394. characterMakers.push(() => makeCharacter(
  37395. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37396. {
  37397. front: {
  37398. height: math.unit(8 + 6/12, "feet"),
  37399. name: "Front",
  37400. image: {
  37401. source: "./media/characters/essynkardi/front.svg",
  37402. extra: 1914/1846,
  37403. bottom: 22/1936
  37404. }
  37405. },
  37406. },
  37407. [
  37408. {
  37409. name: "Normal",
  37410. height: math.unit(8 + 6/12, "feet"),
  37411. default: true
  37412. },
  37413. ]
  37414. ))
  37415. characterMakers.push(() => makeCharacter(
  37416. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37417. {
  37418. front: {
  37419. height: math.unit(6 + 6/12, "feet"),
  37420. weight: math.unit(7, "lb"),
  37421. name: "Front",
  37422. image: {
  37423. source: "./media/characters/icky/front.svg",
  37424. extra: 813/782,
  37425. bottom: 66/879
  37426. }
  37427. },
  37428. back: {
  37429. height: math.unit(6 + 6/12, "feet"),
  37430. weight: math.unit(7, "lb"),
  37431. name: "Back",
  37432. image: {
  37433. source: "./media/characters/icky/back.svg",
  37434. extra: 754/735,
  37435. bottom: 56/810
  37436. }
  37437. },
  37438. },
  37439. [
  37440. {
  37441. name: "Normal",
  37442. height: math.unit(6 + 6/12, "feet"),
  37443. default: true
  37444. },
  37445. ]
  37446. ))
  37447. characterMakers.push(() => makeCharacter(
  37448. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37449. {
  37450. front: {
  37451. height: math.unit(15, "feet"),
  37452. name: "Front",
  37453. image: {
  37454. source: "./media/characters/rojas/front.svg",
  37455. extra: 1462/1408,
  37456. bottom: 95/1557
  37457. }
  37458. },
  37459. back: {
  37460. height: math.unit(15, "feet"),
  37461. name: "Back",
  37462. image: {
  37463. source: "./media/characters/rojas/back.svg",
  37464. extra: 1023/954,
  37465. bottom: 28/1051
  37466. }
  37467. },
  37468. },
  37469. [
  37470. {
  37471. name: "Normal",
  37472. height: math.unit(15, "feet"),
  37473. default: true
  37474. },
  37475. ]
  37476. ))
  37477. characterMakers.push(() => makeCharacter(
  37478. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37479. {
  37480. frontHuman: {
  37481. height: math.unit(5 + 7/12, "feet"),
  37482. name: "Front (Human)",
  37483. image: {
  37484. source: "./media/characters/alek-dryagan/front-human.svg",
  37485. extra: 1687/1667,
  37486. bottom: 69/1756
  37487. }
  37488. },
  37489. backHuman: {
  37490. height: math.unit(5 + 7/12, "feet"),
  37491. name: "Back (Human)",
  37492. image: {
  37493. source: "./media/characters/alek-dryagan/back-human.svg",
  37494. extra: 1670/1649,
  37495. bottom: 65/1735
  37496. }
  37497. },
  37498. frontDemi: {
  37499. height: math.unit(65, "feet"),
  37500. name: "Front (Demi)",
  37501. image: {
  37502. source: "./media/characters/alek-dryagan/front-demi.svg",
  37503. extra: 1669/1642,
  37504. bottom: 49/1718
  37505. }
  37506. },
  37507. backDemi: {
  37508. height: math.unit(65, "feet"),
  37509. name: "Back (Demi)",
  37510. image: {
  37511. source: "./media/characters/alek-dryagan/back-demi.svg",
  37512. extra: 1658/1637,
  37513. bottom: 40/1698
  37514. }
  37515. },
  37516. mawHuman: {
  37517. height: math.unit(0.3, "feet"),
  37518. name: "Maw (Human)",
  37519. image: {
  37520. source: "./media/characters/alek-dryagan/maw-human.svg"
  37521. }
  37522. },
  37523. mawDemi: {
  37524. height: math.unit(3.8, "feet"),
  37525. name: "Maw (Demi)",
  37526. image: {
  37527. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37528. }
  37529. },
  37530. },
  37531. [
  37532. {
  37533. name: "Normal",
  37534. height: math.unit(5 + 7/12, "feet"),
  37535. default: true
  37536. },
  37537. ]
  37538. ))
  37539. characterMakers.push(() => makeCharacter(
  37540. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37541. {
  37542. frontHuman: {
  37543. height: math.unit(5 + 2/12, "feet"),
  37544. name: "Front (Human)",
  37545. image: {
  37546. source: "./media/characters/gen/front-human.svg",
  37547. extra: 1627/1538,
  37548. bottom: 71/1698
  37549. }
  37550. },
  37551. backHuman: {
  37552. height: math.unit(5 + 2/12, "feet"),
  37553. name: "Back (Human)",
  37554. image: {
  37555. source: "./media/characters/gen/back-human.svg",
  37556. extra: 1638/1548,
  37557. bottom: 69/1707
  37558. }
  37559. },
  37560. frontDemi: {
  37561. height: math.unit(5 + 2/12, "feet"),
  37562. name: "Front (Demi)",
  37563. image: {
  37564. source: "./media/characters/gen/front-demi.svg",
  37565. extra: 1627/1538,
  37566. bottom: 71/1698
  37567. }
  37568. },
  37569. backDemi: {
  37570. height: math.unit(5 + 2/12, "feet"),
  37571. name: "Back (Demi)",
  37572. image: {
  37573. source: "./media/characters/gen/back-demi.svg",
  37574. extra: 1638/1548,
  37575. bottom: 69/1707
  37576. }
  37577. },
  37578. },
  37579. [
  37580. {
  37581. name: "Normal",
  37582. height: math.unit(5 + 2/12, "feet"),
  37583. default: true
  37584. },
  37585. ]
  37586. ))
  37587. characterMakers.push(() => makeCharacter(
  37588. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37589. {
  37590. frontImp: {
  37591. height: math.unit(1 + 11/12, "feet"),
  37592. name: "Front (Imp)",
  37593. image: {
  37594. source: "./media/characters/max-kobold/front-imp.svg",
  37595. extra: 1238/1134,
  37596. bottom: 81/1319
  37597. }
  37598. },
  37599. backImp: {
  37600. height: math.unit(1 + 11/12, "feet"),
  37601. name: "Back (Imp)",
  37602. image: {
  37603. source: "./media/characters/max-kobold/back-imp.svg",
  37604. extra: 1334/1175,
  37605. bottom: 34/1368
  37606. }
  37607. },
  37608. frontDemi: {
  37609. height: math.unit(5 + 9/12, "feet"),
  37610. name: "Front (Demi)",
  37611. image: {
  37612. source: "./media/characters/max-kobold/front-demi.svg",
  37613. extra: 1715/1685,
  37614. bottom: 54/1769
  37615. }
  37616. },
  37617. backDemi: {
  37618. height: math.unit(5 + 9/12, "feet"),
  37619. name: "Back (Demi)",
  37620. image: {
  37621. source: "./media/characters/max-kobold/back-demi.svg",
  37622. extra: 1752/1729,
  37623. bottom: 41/1793
  37624. }
  37625. },
  37626. handImp: {
  37627. height: math.unit(0.45, "feet"),
  37628. name: "Hand (Imp)",
  37629. image: {
  37630. source: "./media/characters/max-kobold/hand.svg"
  37631. }
  37632. },
  37633. pawImp: {
  37634. height: math.unit(0.46, "feet"),
  37635. name: "Paw (Imp)",
  37636. image: {
  37637. source: "./media/characters/max-kobold/paw.svg"
  37638. }
  37639. },
  37640. handDemi: {
  37641. height: math.unit(0.80, "feet"),
  37642. name: "Hand (Demi)",
  37643. image: {
  37644. source: "./media/characters/max-kobold/hand.svg"
  37645. }
  37646. },
  37647. pawDemi: {
  37648. height: math.unit(1.1, "feet"),
  37649. name: "Paw (Demi)",
  37650. image: {
  37651. source: "./media/characters/max-kobold/paw.svg"
  37652. }
  37653. },
  37654. headImp: {
  37655. height: math.unit(1.33, "feet"),
  37656. name: "Head (Imp)",
  37657. image: {
  37658. source: "./media/characters/max-kobold/head-imp.svg"
  37659. }
  37660. },
  37661. mawImp: {
  37662. height: math.unit(0.75, "feet"),
  37663. name: "Maw (Imp)",
  37664. image: {
  37665. source: "./media/characters/max-kobold/maw-imp.svg"
  37666. }
  37667. },
  37668. mawDemi: {
  37669. height: math.unit(0.42, "feet"),
  37670. name: "Maw (Demi)",
  37671. image: {
  37672. source: "./media/characters/max-kobold/maw-demi.svg"
  37673. }
  37674. },
  37675. },
  37676. [
  37677. {
  37678. name: "Normal",
  37679. height: math.unit(1 + 11/12, "feet"),
  37680. default: true
  37681. },
  37682. ]
  37683. ))
  37684. characterMakers.push(() => makeCharacter(
  37685. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37686. {
  37687. front: {
  37688. height: math.unit(7 + 5/12, "feet"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/carbon/front.svg",
  37692. extra: 1754/1689,
  37693. bottom: 65/1819
  37694. }
  37695. },
  37696. back: {
  37697. height: math.unit(7 + 5/12, "feet"),
  37698. name: "Back",
  37699. image: {
  37700. source: "./media/characters/carbon/back.svg",
  37701. extra: 1762/1695,
  37702. bottom: 24/1786
  37703. }
  37704. },
  37705. frontGigantamax: {
  37706. height: math.unit(150, "feet"),
  37707. name: "Front (Gigantamax)",
  37708. image: {
  37709. source: "./media/characters/carbon/front-gigantamax.svg",
  37710. extra: 1826/1669,
  37711. bottom: 59/1885
  37712. }
  37713. },
  37714. backGigantamax: {
  37715. height: math.unit(150, "feet"),
  37716. name: "Back (Gigantamax)",
  37717. image: {
  37718. source: "./media/characters/carbon/back-gigantamax.svg",
  37719. extra: 1796/1653,
  37720. bottom: 53/1849
  37721. }
  37722. },
  37723. maw: {
  37724. height: math.unit(0.48, "feet"),
  37725. name: "Maw",
  37726. image: {
  37727. source: "./media/characters/carbon/maw.svg"
  37728. }
  37729. },
  37730. mawGigantamax: {
  37731. height: math.unit(7.5, "feet"),
  37732. name: "Maw (Gigantamax)",
  37733. image: {
  37734. source: "./media/characters/carbon/maw-gigantamax.svg"
  37735. }
  37736. },
  37737. },
  37738. [
  37739. {
  37740. name: "Normal",
  37741. height: math.unit(7 + 5/12, "feet"),
  37742. default: true
  37743. },
  37744. ]
  37745. ))
  37746. characterMakers.push(() => makeCharacter(
  37747. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37748. {
  37749. front: {
  37750. height: math.unit(6, "feet"),
  37751. name: "Front",
  37752. image: {
  37753. source: "./media/characters/maverick/front.svg",
  37754. extra: 1672/1661,
  37755. bottom: 85/1757
  37756. }
  37757. },
  37758. back: {
  37759. height: math.unit(6, "feet"),
  37760. name: "Back",
  37761. image: {
  37762. source: "./media/characters/maverick/back.svg",
  37763. extra: 1642/1631,
  37764. bottom: 38/1680
  37765. }
  37766. },
  37767. },
  37768. [
  37769. {
  37770. name: "Normal",
  37771. height: math.unit(6, "feet"),
  37772. default: true
  37773. },
  37774. ]
  37775. ))
  37776. characterMakers.push(() => makeCharacter(
  37777. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37778. {
  37779. front: {
  37780. height: math.unit(15, "feet"),
  37781. weight: math.unit(615, "lb"),
  37782. name: "Front",
  37783. image: {
  37784. source: "./media/characters/grockle/front.svg",
  37785. extra: 1535/1427,
  37786. bottom: 56/1591
  37787. }
  37788. },
  37789. },
  37790. [
  37791. {
  37792. name: "Normal",
  37793. height: math.unit(15, "feet"),
  37794. default: true
  37795. },
  37796. {
  37797. name: "Large",
  37798. height: math.unit(150, "feet")
  37799. },
  37800. {
  37801. name: "Macro",
  37802. height: math.unit(1876, "feet")
  37803. },
  37804. {
  37805. name: "Mega Macro",
  37806. height: math.unit(121940, "feet")
  37807. },
  37808. {
  37809. name: "Giga Macro",
  37810. height: math.unit(750, "km")
  37811. },
  37812. {
  37813. name: "Tera Macro",
  37814. height: math.unit(750000, "km")
  37815. },
  37816. {
  37817. name: "Galactic",
  37818. height: math.unit(1.4e5, "km")
  37819. },
  37820. {
  37821. name: "Godlike",
  37822. height: math.unit(9.8e280, "galaxies")
  37823. },
  37824. ]
  37825. ))
  37826. characterMakers.push(() => makeCharacter(
  37827. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37828. {
  37829. front: {
  37830. height: math.unit(11, "meters"),
  37831. weight: math.unit(20, "tonnes"),
  37832. name: "Front",
  37833. image: {
  37834. source: "./media/characters/alistair/front.svg",
  37835. extra: 1265/1009,
  37836. bottom: 93/1358
  37837. }
  37838. },
  37839. },
  37840. [
  37841. {
  37842. name: "Normal",
  37843. height: math.unit(11, "meters"),
  37844. default: true
  37845. },
  37846. ]
  37847. ))
  37848. characterMakers.push(() => makeCharacter(
  37849. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37850. {
  37851. front: {
  37852. height: math.unit(5 + 8/12, "feet"),
  37853. name: "Front",
  37854. image: {
  37855. source: "./media/characters/haruka/front.svg",
  37856. extra: 2012/1952,
  37857. bottom: 0/2012
  37858. }
  37859. },
  37860. },
  37861. [
  37862. {
  37863. name: "Normal",
  37864. height: math.unit(5 + 8/12, "feet"),
  37865. default: true
  37866. },
  37867. ]
  37868. ))
  37869. characterMakers.push(() => makeCharacter(
  37870. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37871. {
  37872. back: {
  37873. height: math.unit(9, "feet"),
  37874. name: "Back",
  37875. image: {
  37876. source: "./media/characters/vivian-sylveon/back.svg",
  37877. extra: 1853/1714,
  37878. bottom: 0/1853
  37879. }
  37880. },
  37881. },
  37882. [
  37883. {
  37884. name: "Normal",
  37885. height: math.unit(9, "feet"),
  37886. default: true
  37887. },
  37888. {
  37889. name: "Macro",
  37890. height: math.unit(500, "feet")
  37891. },
  37892. {
  37893. name: "Megamacro",
  37894. height: math.unit(600, "miles")
  37895. },
  37896. {
  37897. name: "Gigamacro",
  37898. height: math.unit(30000, "miles")
  37899. },
  37900. ]
  37901. ))
  37902. characterMakers.push(() => makeCharacter(
  37903. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37904. {
  37905. anthro: {
  37906. height: math.unit(5 + 10/12, "feet"),
  37907. weight: math.unit(100, "lb"),
  37908. name: "Anthro",
  37909. image: {
  37910. source: "./media/characters/daiki/anthro.svg",
  37911. extra: 1115/1027,
  37912. bottom: 69/1184
  37913. }
  37914. },
  37915. feral: {
  37916. height: math.unit(200, "feet"),
  37917. name: "Feral",
  37918. image: {
  37919. source: "./media/characters/daiki/feral.svg",
  37920. extra: 1256/313,
  37921. bottom: 39/1295
  37922. }
  37923. },
  37924. feralHead: {
  37925. height: math.unit(171, "feet"),
  37926. name: "Feral Head",
  37927. image: {
  37928. source: "./media/characters/daiki/feral-head.svg"
  37929. }
  37930. },
  37931. manaDragon: {
  37932. height: math.unit(170, "meters"),
  37933. name: "Mana-dragon",
  37934. image: {
  37935. source: "./media/characters/daiki/mana-dragon.svg",
  37936. extra: 763/420,
  37937. bottom: 97/860
  37938. }
  37939. },
  37940. },
  37941. [
  37942. {
  37943. name: "Normal",
  37944. height: math.unit(5 + 10/12, "feet"),
  37945. default: true
  37946. },
  37947. ]
  37948. ))
  37949. characterMakers.push(() => makeCharacter(
  37950. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37951. {
  37952. fullyEquippedFront: {
  37953. height: math.unit(3 + 1/12, "feet"),
  37954. weight: math.unit(24, "lb"),
  37955. name: "Fully Equipped (Front)",
  37956. image: {
  37957. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37958. extra: 687/605,
  37959. bottom: 18/705
  37960. }
  37961. },
  37962. fullyEquippedBack: {
  37963. height: math.unit(3 + 1/12, "feet"),
  37964. weight: math.unit(24, "lb"),
  37965. name: "Fully Equipped (Back)",
  37966. image: {
  37967. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37968. extra: 689/590,
  37969. bottom: 18/707
  37970. }
  37971. },
  37972. dailyWear: {
  37973. height: math.unit(3 + 1/12, "feet"),
  37974. weight: math.unit(24, "lb"),
  37975. name: "Daily Wear",
  37976. image: {
  37977. source: "./media/characters/tea-spot/daily-wear.svg",
  37978. extra: 701/620,
  37979. bottom: 21/722
  37980. }
  37981. },
  37982. maidWork: {
  37983. height: math.unit(3 + 1/12, "feet"),
  37984. weight: math.unit(24, "lb"),
  37985. name: "Maid Work",
  37986. image: {
  37987. source: "./media/characters/tea-spot/maid-work.svg",
  37988. extra: 693/609,
  37989. bottom: 15/708
  37990. }
  37991. },
  37992. },
  37993. [
  37994. {
  37995. name: "Normal",
  37996. height: math.unit(3 + 1/12, "feet"),
  37997. default: true
  37998. },
  37999. ]
  38000. ))
  38001. characterMakers.push(() => makeCharacter(
  38002. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38003. {
  38004. front: {
  38005. height: math.unit(175, "cm"),
  38006. weight: math.unit(75, "kg"),
  38007. name: "Front",
  38008. image: {
  38009. source: "./media/characters/chee/front.svg",
  38010. extra: 1796/1740,
  38011. bottom: 40/1836
  38012. }
  38013. },
  38014. },
  38015. [
  38016. {
  38017. name: "Micro-Micro",
  38018. height: math.unit(1, "nm")
  38019. },
  38020. {
  38021. name: "Micro-erst",
  38022. height: math.unit(1, "micrometer")
  38023. },
  38024. {
  38025. name: "Micro-er",
  38026. height: math.unit(1, "cm")
  38027. },
  38028. {
  38029. name: "Normal",
  38030. height: math.unit(175, "cm"),
  38031. default: true
  38032. },
  38033. {
  38034. name: "Macro",
  38035. height: math.unit(100, "m")
  38036. },
  38037. {
  38038. name: "Macro-er",
  38039. height: math.unit(1, "km")
  38040. },
  38041. {
  38042. name: "Macro-erst",
  38043. height: math.unit(10, "km")
  38044. },
  38045. {
  38046. name: "Macro-Macro",
  38047. height: math.unit(100, "km")
  38048. },
  38049. ]
  38050. ))
  38051. characterMakers.push(() => makeCharacter(
  38052. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38053. {
  38054. front: {
  38055. height: math.unit(11 + 9/12, "feet"),
  38056. weight: math.unit(935, "lb"),
  38057. name: "Front",
  38058. image: {
  38059. source: "./media/characters/kingsley/front.svg",
  38060. extra: 1803/1674,
  38061. bottom: 127/1930
  38062. }
  38063. },
  38064. frontNude: {
  38065. height: math.unit(11 + 9/12, "feet"),
  38066. weight: math.unit(935, "lb"),
  38067. name: "Front (Nude)",
  38068. image: {
  38069. source: "./media/characters/kingsley/front-nude.svg",
  38070. extra: 1803/1674,
  38071. bottom: 127/1930
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Normal",
  38078. height: math.unit(11 + 9/12, "feet"),
  38079. default: true
  38080. },
  38081. ]
  38082. ))
  38083. characterMakers.push(() => makeCharacter(
  38084. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38085. {
  38086. side: {
  38087. height: math.unit(9, "feet"),
  38088. name: "Side",
  38089. image: {
  38090. source: "./media/characters/rymel/side.svg",
  38091. extra: 792/469,
  38092. bottom: 121/913
  38093. }
  38094. },
  38095. maw: {
  38096. height: math.unit(2.4, "meters"),
  38097. name: "Maw",
  38098. image: {
  38099. source: "./media/characters/rymel/maw.svg"
  38100. }
  38101. },
  38102. },
  38103. [
  38104. {
  38105. name: "House Drake",
  38106. height: math.unit(2, "feet")
  38107. },
  38108. {
  38109. name: "Reduced",
  38110. height: math.unit(4.5, "feet")
  38111. },
  38112. {
  38113. name: "Normal",
  38114. height: math.unit(9, "feet"),
  38115. default: true
  38116. },
  38117. ]
  38118. ))
  38119. characterMakers.push(() => makeCharacter(
  38120. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38121. {
  38122. front: {
  38123. height: math.unit(1.74, "meters"),
  38124. weight: math.unit(55, "kg"),
  38125. name: "Front",
  38126. image: {
  38127. source: "./media/characters/rubus/front.svg",
  38128. extra: 1894/1742,
  38129. bottom: 44/1938
  38130. }
  38131. },
  38132. },
  38133. [
  38134. {
  38135. name: "Normal",
  38136. height: math.unit(1.74, "meters"),
  38137. default: true
  38138. },
  38139. ]
  38140. ))
  38141. characterMakers.push(() => makeCharacter(
  38142. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38143. {
  38144. front: {
  38145. height: math.unit(5 + 2/12, "feet"),
  38146. weight: math.unit(112, "lb"),
  38147. name: "Front",
  38148. image: {
  38149. source: "./media/characters/cassie-kingston/front.svg",
  38150. extra: 1438/1390,
  38151. bottom: 47/1485
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Normal",
  38158. height: math.unit(5 + 2/12, "feet"),
  38159. default: true
  38160. },
  38161. {
  38162. name: "Macro",
  38163. height: math.unit(128, "feet")
  38164. },
  38165. {
  38166. name: "Megamacro",
  38167. height: math.unit(2.56, "miles")
  38168. },
  38169. ]
  38170. ))
  38171. characterMakers.push(() => makeCharacter(
  38172. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38173. {
  38174. front: {
  38175. height: math.unit(7, "feet"),
  38176. name: "Front",
  38177. image: {
  38178. source: "./media/characters/fox/front.svg",
  38179. extra: 1798/1703,
  38180. bottom: 55/1853
  38181. }
  38182. },
  38183. back: {
  38184. height: math.unit(7, "feet"),
  38185. name: "Back",
  38186. image: {
  38187. source: "./media/characters/fox/back.svg",
  38188. extra: 1748/1649,
  38189. bottom: 32/1780
  38190. }
  38191. },
  38192. head: {
  38193. height: math.unit(1.95, "feet"),
  38194. name: "Head",
  38195. image: {
  38196. source: "./media/characters/fox/head.svg"
  38197. }
  38198. },
  38199. dick: {
  38200. height: math.unit(1.33, "feet"),
  38201. name: "Dick",
  38202. image: {
  38203. source: "./media/characters/fox/dick.svg"
  38204. }
  38205. },
  38206. foot: {
  38207. height: math.unit(1, "feet"),
  38208. name: "Foot",
  38209. image: {
  38210. source: "./media/characters/fox/foot.svg"
  38211. }
  38212. },
  38213. paw: {
  38214. height: math.unit(0.92, "feet"),
  38215. name: "Paw",
  38216. image: {
  38217. source: "./media/characters/fox/paw.svg"
  38218. }
  38219. },
  38220. },
  38221. [
  38222. {
  38223. name: "Small",
  38224. height: math.unit(3, "inches")
  38225. },
  38226. {
  38227. name: "\"Realistic\"",
  38228. height: math.unit(7, "feet")
  38229. },
  38230. {
  38231. name: "Normal",
  38232. height: math.unit(150, "feet"),
  38233. default: true
  38234. },
  38235. {
  38236. name: "BIG",
  38237. height: math.unit(1200, "feet")
  38238. },
  38239. {
  38240. name: "👀",
  38241. height: math.unit(5, "miles")
  38242. },
  38243. {
  38244. name: "👀👀👀",
  38245. height: math.unit(64, "miles")
  38246. },
  38247. ]
  38248. ))
  38249. characterMakers.push(() => makeCharacter(
  38250. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38251. {
  38252. front: {
  38253. height: math.unit(625, "feet"),
  38254. name: "Front",
  38255. image: {
  38256. source: "./media/characters/asonja-rossa/front.svg",
  38257. extra: 1833/1686,
  38258. bottom: 24/1857
  38259. }
  38260. },
  38261. back: {
  38262. height: math.unit(625, "feet"),
  38263. name: "Back",
  38264. image: {
  38265. source: "./media/characters/asonja-rossa/back.svg",
  38266. extra: 1852/1753,
  38267. bottom: 26/1878
  38268. }
  38269. },
  38270. },
  38271. [
  38272. {
  38273. name: "Macro",
  38274. height: math.unit(625, "feet"),
  38275. default: true
  38276. },
  38277. ]
  38278. ))
  38279. characterMakers.push(() => makeCharacter(
  38280. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38281. {
  38282. side: {
  38283. height: math.unit(8, "feet"),
  38284. name: "Side",
  38285. image: {
  38286. source: "./media/characters/rezukii/side.svg",
  38287. extra: 979/542,
  38288. bottom: 87/1066
  38289. }
  38290. },
  38291. sitting: {
  38292. height: math.unit(14.6, "feet"),
  38293. name: "Sitting",
  38294. image: {
  38295. source: "./media/characters/rezukii/sitting.svg",
  38296. extra: 1023/813,
  38297. bottom: 45/1068
  38298. }
  38299. },
  38300. },
  38301. [
  38302. {
  38303. name: "Tiny",
  38304. height: math.unit(2, "feet")
  38305. },
  38306. {
  38307. name: "Smol",
  38308. height: math.unit(4, "feet")
  38309. },
  38310. {
  38311. name: "Normal",
  38312. height: math.unit(8, "feet"),
  38313. default: true
  38314. },
  38315. {
  38316. name: "Big",
  38317. height: math.unit(12, "feet")
  38318. },
  38319. {
  38320. name: "Macro",
  38321. height: math.unit(30, "feet")
  38322. },
  38323. ]
  38324. ))
  38325. characterMakers.push(() => makeCharacter(
  38326. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38327. {
  38328. front: {
  38329. height: math.unit(14, "feet"),
  38330. weight: math.unit(9.5, "tonnes"),
  38331. name: "Front",
  38332. image: {
  38333. source: "./media/characters/dawnheart/front.svg",
  38334. extra: 2792/2675,
  38335. bottom: 64/2856
  38336. }
  38337. },
  38338. },
  38339. [
  38340. {
  38341. name: "Normal",
  38342. height: math.unit(14, "feet"),
  38343. default: true
  38344. },
  38345. ]
  38346. ))
  38347. characterMakers.push(() => makeCharacter(
  38348. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38349. {
  38350. front: {
  38351. height: math.unit(1.7, "m"),
  38352. name: "Front",
  38353. image: {
  38354. source: "./media/characters/gladi/front.svg",
  38355. extra: 1460/1362,
  38356. bottom: 19/1479
  38357. }
  38358. },
  38359. back: {
  38360. height: math.unit(1.7, "m"),
  38361. name: "Back",
  38362. image: {
  38363. source: "./media/characters/gladi/back.svg",
  38364. extra: 1459/1357,
  38365. bottom: 12/1471
  38366. }
  38367. },
  38368. feral: {
  38369. height: math.unit(2.05, "m"),
  38370. name: "Feral",
  38371. image: {
  38372. source: "./media/characters/gladi/feral.svg",
  38373. extra: 821/557,
  38374. bottom: 91/912
  38375. }
  38376. },
  38377. },
  38378. [
  38379. {
  38380. name: "Shortest",
  38381. height: math.unit(70, "cm")
  38382. },
  38383. {
  38384. name: "Normal",
  38385. height: math.unit(1.7, "m")
  38386. },
  38387. {
  38388. name: "Macro",
  38389. height: math.unit(10, "m"),
  38390. default: true
  38391. },
  38392. {
  38393. name: "Tallest",
  38394. height: math.unit(200, "m")
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(5 + 7/12, "feet"),
  38403. weight: math.unit(2, "tons"),
  38404. name: "Front",
  38405. image: {
  38406. source: "./media/characters/erdno/front.svg",
  38407. extra: 1234/1129,
  38408. bottom: 35/1269
  38409. }
  38410. },
  38411. angled: {
  38412. height: math.unit(5 + 7/12, "feet"),
  38413. weight: math.unit(2, "tons"),
  38414. name: "Angled",
  38415. image: {
  38416. source: "./media/characters/erdno/angled.svg",
  38417. extra: 1185/1139,
  38418. bottom: 36/1221
  38419. }
  38420. },
  38421. side: {
  38422. height: math.unit(5 + 7/12, "feet"),
  38423. weight: math.unit(2, "tons"),
  38424. name: "Side",
  38425. image: {
  38426. source: "./media/characters/erdno/side.svg",
  38427. extra: 1191/1144,
  38428. bottom: 40/1231
  38429. }
  38430. },
  38431. back: {
  38432. height: math.unit(5 + 7/12, "feet"),
  38433. weight: math.unit(2, "tons"),
  38434. name: "Back",
  38435. image: {
  38436. source: "./media/characters/erdno/back.svg",
  38437. extra: 1202/1146,
  38438. bottom: 17/1219
  38439. }
  38440. },
  38441. frontNsfw: {
  38442. height: math.unit(5 + 7/12, "feet"),
  38443. weight: math.unit(2, "tons"),
  38444. name: "Front (NSFW)",
  38445. image: {
  38446. source: "./media/characters/erdno/front-nsfw.svg",
  38447. extra: 1234/1129,
  38448. bottom: 35/1269
  38449. }
  38450. },
  38451. angledNsfw: {
  38452. height: math.unit(5 + 7/12, "feet"),
  38453. weight: math.unit(2, "tons"),
  38454. name: "Angled (NSFW)",
  38455. image: {
  38456. source: "./media/characters/erdno/angled-nsfw.svg",
  38457. extra: 1185/1139,
  38458. bottom: 36/1221
  38459. }
  38460. },
  38461. sideNsfw: {
  38462. height: math.unit(5 + 7/12, "feet"),
  38463. weight: math.unit(2, "tons"),
  38464. name: "Side (NSFW)",
  38465. image: {
  38466. source: "./media/characters/erdno/side-nsfw.svg",
  38467. extra: 1191/1144,
  38468. bottom: 40/1231
  38469. }
  38470. },
  38471. backNsfw: {
  38472. height: math.unit(5 + 7/12, "feet"),
  38473. weight: math.unit(2, "tons"),
  38474. name: "Back (NSFW)",
  38475. image: {
  38476. source: "./media/characters/erdno/back-nsfw.svg",
  38477. extra: 1202/1146,
  38478. bottom: 17/1219
  38479. }
  38480. },
  38481. frontHyper: {
  38482. height: math.unit(5 + 7/12, "feet"),
  38483. weight: math.unit(2, "tons"),
  38484. name: "Front (Hyper)",
  38485. image: {
  38486. source: "./media/characters/erdno/front-hyper.svg",
  38487. extra: 1298/1136,
  38488. bottom: 35/1333
  38489. }
  38490. },
  38491. },
  38492. [
  38493. {
  38494. name: "Normal",
  38495. height: math.unit(5 + 7/12, "feet"),
  38496. default: true
  38497. },
  38498. {
  38499. name: "Big",
  38500. height: math.unit(5.7, "meters")
  38501. },
  38502. {
  38503. name: "Macro",
  38504. height: math.unit(5.7, "kilometers")
  38505. },
  38506. {
  38507. name: "Megamacro",
  38508. height: math.unit(5.7, "earths")
  38509. },
  38510. ]
  38511. ))
  38512. characterMakers.push(() => makeCharacter(
  38513. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38514. {
  38515. front: {
  38516. height: math.unit(5 + 10/12, "feet"),
  38517. weight: math.unit(150, "lb"),
  38518. name: "Front",
  38519. image: {
  38520. source: "./media/characters/jamie/front.svg",
  38521. extra: 1908/1768,
  38522. bottom: 19/1927
  38523. }
  38524. },
  38525. },
  38526. [
  38527. {
  38528. name: "Minimum",
  38529. height: math.unit(2, "cm")
  38530. },
  38531. {
  38532. name: "Micro",
  38533. height: math.unit(3, "inches")
  38534. },
  38535. {
  38536. name: "Normal",
  38537. height: math.unit(5 + 10/12, "feet"),
  38538. default: true
  38539. },
  38540. {
  38541. name: "Macro",
  38542. height: math.unit(150, "feet")
  38543. },
  38544. {
  38545. name: "Megamacro",
  38546. height: math.unit(10000, "m")
  38547. },
  38548. ]
  38549. ))
  38550. characterMakers.push(() => makeCharacter(
  38551. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38552. {
  38553. front: {
  38554. height: math.unit(2, "meters"),
  38555. weight: math.unit(100, "kg"),
  38556. name: "Front",
  38557. image: {
  38558. source: "./media/characters/shiron/front.svg",
  38559. extra: 2103/1985,
  38560. bottom: 98/2201
  38561. }
  38562. },
  38563. back: {
  38564. height: math.unit(2, "meters"),
  38565. weight: math.unit(100, "kg"),
  38566. name: "Back",
  38567. image: {
  38568. source: "./media/characters/shiron/back.svg",
  38569. extra: 2110/2015,
  38570. bottom: 89/2199
  38571. }
  38572. },
  38573. hand: {
  38574. height: math.unit(0.96, "feet"),
  38575. name: "Hand",
  38576. image: {
  38577. source: "./media/characters/shiron/hand.svg"
  38578. }
  38579. },
  38580. foot: {
  38581. height: math.unit(1.464, "feet"),
  38582. name: "Foot",
  38583. image: {
  38584. source: "./media/characters/shiron/foot.svg"
  38585. }
  38586. },
  38587. },
  38588. [
  38589. {
  38590. name: "Normal",
  38591. height: math.unit(2, "meters")
  38592. },
  38593. {
  38594. name: "Macro",
  38595. height: math.unit(500, "meters"),
  38596. default: true
  38597. },
  38598. {
  38599. name: "Megamacro",
  38600. height: math.unit(20, "km")
  38601. },
  38602. ]
  38603. ))
  38604. characterMakers.push(() => makeCharacter(
  38605. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38606. {
  38607. front: {
  38608. height: math.unit(6, "feet"),
  38609. name: "Front",
  38610. image: {
  38611. source: "./media/characters/sam/front.svg",
  38612. extra: 849/826,
  38613. bottom: 19/868
  38614. }
  38615. },
  38616. },
  38617. [
  38618. {
  38619. name: "Normal",
  38620. height: math.unit(6, "feet"),
  38621. default: true
  38622. },
  38623. ]
  38624. ))
  38625. characterMakers.push(() => makeCharacter(
  38626. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38627. {
  38628. front: {
  38629. height: math.unit(8 + 4/12, "feet"),
  38630. weight: math.unit(122, "kg"),
  38631. name: "Front",
  38632. image: {
  38633. source: "./media/characters/namori-kurogawa/front.svg",
  38634. extra: 1894/1576,
  38635. bottom: 34/1928
  38636. }
  38637. },
  38638. },
  38639. [
  38640. {
  38641. name: "Normal",
  38642. height: math.unit(8 + 4/12, "feet"),
  38643. default: true
  38644. },
  38645. ]
  38646. ))
  38647. characterMakers.push(() => makeCharacter(
  38648. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38649. {
  38650. front: {
  38651. height: math.unit(9, "feet"),
  38652. weight: math.unit(621, "lb"),
  38653. name: "Front",
  38654. image: {
  38655. source: "./media/characters/unmru/front.svg",
  38656. extra: 1853/1747,
  38657. bottom: 73/1926
  38658. }
  38659. },
  38660. side: {
  38661. height: math.unit(9, "feet"),
  38662. weight: math.unit(621, "lb"),
  38663. name: "Side",
  38664. image: {
  38665. source: "./media/characters/unmru/side.svg",
  38666. extra: 1781/1671,
  38667. bottom: 127/1908
  38668. }
  38669. },
  38670. back: {
  38671. height: math.unit(9, "feet"),
  38672. weight: math.unit(621, "lb"),
  38673. name: "Back",
  38674. image: {
  38675. source: "./media/characters/unmru/back.svg",
  38676. extra: 1894/1765,
  38677. bottom: 75/1969
  38678. }
  38679. },
  38680. dick: {
  38681. height: math.unit(3, "feet"),
  38682. weight: math.unit(35, "lb"),
  38683. name: "Dick",
  38684. image: {
  38685. source: "./media/characters/unmru/dick.svg"
  38686. }
  38687. },
  38688. },
  38689. [
  38690. {
  38691. name: "Normal",
  38692. height: math.unit(9, "feet")
  38693. },
  38694. {
  38695. name: "Natural",
  38696. height: math.unit(27, "feet"),
  38697. default: true
  38698. },
  38699. {
  38700. name: "Giant",
  38701. height: math.unit(90, "feet")
  38702. },
  38703. {
  38704. name: "Kaiju",
  38705. height: math.unit(270, "feet")
  38706. },
  38707. {
  38708. name: "Macro",
  38709. height: math.unit(900, "feet")
  38710. },
  38711. {
  38712. name: "Macro+",
  38713. height: math.unit(2700, "feet")
  38714. },
  38715. {
  38716. name: "Megamacro",
  38717. height: math.unit(9000, "feet")
  38718. },
  38719. {
  38720. name: "City-Crushing",
  38721. height: math.unit(27000, "feet")
  38722. },
  38723. {
  38724. name: "Mountain-Mashing",
  38725. height: math.unit(90000, "feet")
  38726. },
  38727. {
  38728. name: "Earth-Eclipsing",
  38729. height: math.unit(2.7e8, "feet")
  38730. },
  38731. {
  38732. name: "Sol-Swallowing",
  38733. height: math.unit(9e10, "feet")
  38734. },
  38735. {
  38736. name: "Majoris-Munching",
  38737. height: math.unit(2.7e13, "feet")
  38738. },
  38739. ]
  38740. ))
  38741. characterMakers.push(() => makeCharacter(
  38742. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38743. {
  38744. front: {
  38745. height: math.unit(1, "inch"),
  38746. name: "Front",
  38747. image: {
  38748. source: "./media/characters/squeaks-mouse/front.svg",
  38749. extra: 352/308,
  38750. bottom: 25/377
  38751. }
  38752. },
  38753. },
  38754. [
  38755. {
  38756. name: "Micro",
  38757. height: math.unit(1, "inch"),
  38758. default: true
  38759. },
  38760. ]
  38761. ))
  38762. characterMakers.push(() => makeCharacter(
  38763. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38764. {
  38765. side: {
  38766. height: math.unit(35, "feet"),
  38767. name: "Side",
  38768. image: {
  38769. source: "./media/characters/sayko/side.svg",
  38770. extra: 1697/1021,
  38771. bottom: 82/1779
  38772. }
  38773. },
  38774. head: {
  38775. height: math.unit(16, "feet"),
  38776. name: "Head",
  38777. image: {
  38778. source: "./media/characters/sayko/head.svg"
  38779. }
  38780. },
  38781. forepaw: {
  38782. height: math.unit(7.85, "feet"),
  38783. name: "Forepaw",
  38784. image: {
  38785. source: "./media/characters/sayko/forepaw.svg"
  38786. }
  38787. },
  38788. hindpaw: {
  38789. height: math.unit(8.8, "feet"),
  38790. name: "Hindpaw",
  38791. image: {
  38792. source: "./media/characters/sayko/hindpaw.svg"
  38793. }
  38794. },
  38795. },
  38796. [
  38797. {
  38798. name: "Normal",
  38799. height: math.unit(35, "feet"),
  38800. default: true
  38801. },
  38802. {
  38803. name: "Colossus",
  38804. height: math.unit(100, "meters")
  38805. },
  38806. {
  38807. name: "\"Small\" Deity",
  38808. height: math.unit(1, "km")
  38809. },
  38810. {
  38811. name: "\"Large\" Deity",
  38812. height: math.unit(15, "km")
  38813. },
  38814. ]
  38815. ))
  38816. characterMakers.push(() => makeCharacter(
  38817. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38818. {
  38819. front: {
  38820. height: math.unit(6, "feet"),
  38821. weight: math.unit(250, "lb"),
  38822. name: "Front",
  38823. image: {
  38824. source: "./media/characters/mukiro/front.svg",
  38825. extra: 1368/1310,
  38826. bottom: 34/1402
  38827. }
  38828. },
  38829. },
  38830. [
  38831. {
  38832. name: "Normal",
  38833. height: math.unit(6, "feet"),
  38834. default: true
  38835. },
  38836. ]
  38837. ))
  38838. characterMakers.push(() => makeCharacter(
  38839. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38840. {
  38841. front: {
  38842. height: math.unit(12 + 4/12, "feet"),
  38843. name: "Front",
  38844. image: {
  38845. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38846. extra: 1346/1311,
  38847. bottom: 65/1411
  38848. }
  38849. },
  38850. },
  38851. [
  38852. {
  38853. name: "Base",
  38854. height: math.unit(12 + 4/12, "feet"),
  38855. default: true
  38856. },
  38857. {
  38858. name: "Macro",
  38859. height: math.unit(150, "feet")
  38860. },
  38861. {
  38862. name: "Mega",
  38863. height: math.unit(2, "miles")
  38864. },
  38865. {
  38866. name: "Demi God",
  38867. height: math.unit(4, "AU")
  38868. },
  38869. {
  38870. name: "God Size",
  38871. height: math.unit(1, "universe")
  38872. },
  38873. ]
  38874. ))
  38875. characterMakers.push(() => makeCharacter(
  38876. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38877. {
  38878. front: {
  38879. height: math.unit(3 + 3/12, "feet"),
  38880. weight: math.unit(88, "lb"),
  38881. name: "Front",
  38882. image: {
  38883. source: "./media/characters/trey/front.svg",
  38884. extra: 1815/1509,
  38885. bottom: 60/1875
  38886. }
  38887. },
  38888. },
  38889. [
  38890. {
  38891. name: "Normal",
  38892. height: math.unit(3 + 3/12, "feet"),
  38893. default: true
  38894. },
  38895. ]
  38896. ))
  38897. characterMakers.push(() => makeCharacter(
  38898. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38899. {
  38900. front: {
  38901. height: math.unit(4, "meters"),
  38902. name: "Front",
  38903. image: {
  38904. source: "./media/characters/adelonda/front.svg",
  38905. extra: 1077/982,
  38906. bottom: 39/1116
  38907. }
  38908. },
  38909. back: {
  38910. height: math.unit(4, "meters"),
  38911. name: "Back",
  38912. image: {
  38913. source: "./media/characters/adelonda/back.svg",
  38914. extra: 1105/1003,
  38915. bottom: 25/1130
  38916. }
  38917. },
  38918. feral: {
  38919. height: math.unit(40/1.5, "meters"),
  38920. name: "Feral",
  38921. image: {
  38922. source: "./media/characters/adelonda/feral.svg",
  38923. extra: 597/271,
  38924. bottom: 387/984
  38925. }
  38926. },
  38927. },
  38928. [
  38929. {
  38930. name: "Normal",
  38931. height: math.unit(4, "meters"),
  38932. default: true
  38933. },
  38934. ]
  38935. ))
  38936. characterMakers.push(() => makeCharacter(
  38937. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38938. {
  38939. front: {
  38940. height: math.unit(8 + 4/12, "feet"),
  38941. weight: math.unit(670, "lb"),
  38942. name: "Front",
  38943. image: {
  38944. source: "./media/characters/acadiel/front.svg",
  38945. extra: 1901/1595,
  38946. bottom: 142/2043
  38947. }
  38948. },
  38949. },
  38950. [
  38951. {
  38952. name: "Normal",
  38953. height: math.unit(8 + 4/12, "feet"),
  38954. default: true
  38955. },
  38956. {
  38957. name: "Macro",
  38958. height: math.unit(200, "feet")
  38959. },
  38960. ]
  38961. ))
  38962. characterMakers.push(() => makeCharacter(
  38963. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38964. {
  38965. front: {
  38966. height: math.unit(6 + 2/12, "feet"),
  38967. weight: math.unit(185, "lb"),
  38968. name: "Front",
  38969. image: {
  38970. source: "./media/characters/kayne-ein/front.svg",
  38971. extra: 1780/1560,
  38972. bottom: 81/1861
  38973. }
  38974. },
  38975. },
  38976. [
  38977. {
  38978. name: "Normal",
  38979. height: math.unit(6 + 2/12, "feet"),
  38980. default: true
  38981. },
  38982. {
  38983. name: "Transformation Stage",
  38984. height: math.unit(15, "feet")
  38985. },
  38986. {
  38987. name: "Macro",
  38988. height: math.unit(150, "feet")
  38989. },
  38990. {
  38991. name: "Earth's Shadow",
  38992. height: math.unit(6200, "miles")
  38993. },
  38994. {
  38995. name: "Universal Demon",
  38996. height: math.unit(28e9, "parsecs")
  38997. },
  38998. {
  38999. name: "Multiverse God",
  39000. height: math.unit(3, "multiverses")
  39001. },
  39002. ]
  39003. ))
  39004. characterMakers.push(() => makeCharacter(
  39005. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39006. {
  39007. front: {
  39008. height: math.unit(5 + 5/12, "feet"),
  39009. name: "Front",
  39010. image: {
  39011. source: "./media/characters/fawn/front.svg",
  39012. extra: 1873/1731,
  39013. bottom: 95/1968
  39014. }
  39015. },
  39016. back: {
  39017. height: math.unit(5 + 5/12, "feet"),
  39018. name: "Back",
  39019. image: {
  39020. source: "./media/characters/fawn/back.svg",
  39021. extra: 1813/1700,
  39022. bottom: 14/1827
  39023. }
  39024. },
  39025. hoof: {
  39026. height: math.unit(1.45, "feet"),
  39027. name: "Hoof",
  39028. image: {
  39029. source: "./media/characters/fawn/hoof.svg"
  39030. }
  39031. },
  39032. },
  39033. [
  39034. {
  39035. name: "Normal",
  39036. height: math.unit(5 + 5/12, "feet"),
  39037. default: true
  39038. },
  39039. ]
  39040. ))
  39041. characterMakers.push(() => makeCharacter(
  39042. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39043. {
  39044. front: {
  39045. height: math.unit(2 + 5/12, "feet"),
  39046. name: "Front",
  39047. image: {
  39048. source: "./media/characters/orion/front.svg",
  39049. extra: 1366/1304,
  39050. bottom: 43/1409
  39051. }
  39052. },
  39053. paw: {
  39054. height: math.unit(0.52, "feet"),
  39055. name: "Paw",
  39056. image: {
  39057. source: "./media/characters/orion/paw.svg"
  39058. }
  39059. },
  39060. },
  39061. [
  39062. {
  39063. name: "Normal",
  39064. height: math.unit(2 + 5/12, "feet"),
  39065. default: true
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39071. {
  39072. front: {
  39073. height: math.unit(5 + 10/12, "feet"),
  39074. name: "Front",
  39075. image: {
  39076. source: "./media/characters/vera/front.svg",
  39077. extra: 1680/1575,
  39078. bottom: 49/1729
  39079. }
  39080. },
  39081. back: {
  39082. height: math.unit(5 + 10/12, "feet"),
  39083. name: "Back",
  39084. image: {
  39085. source: "./media/characters/vera/back.svg",
  39086. extra: 1700/1588,
  39087. bottom: 18/1718
  39088. }
  39089. },
  39090. arcanine: {
  39091. height: math.unit(6 + 8/12, "feet"),
  39092. name: "Arcanine",
  39093. image: {
  39094. source: "./media/characters/vera/arcanine.svg",
  39095. extra: 1590/1511,
  39096. bottom: 71/1661
  39097. }
  39098. },
  39099. maw: {
  39100. height: math.unit(0.82, "feet"),
  39101. name: "Maw",
  39102. image: {
  39103. source: "./media/characters/vera/maw.svg"
  39104. }
  39105. },
  39106. mawArcanine: {
  39107. height: math.unit(0.97, "feet"),
  39108. name: "Maw (Arcanine)",
  39109. image: {
  39110. source: "./media/characters/vera/maw-arcanine.svg"
  39111. }
  39112. },
  39113. paw: {
  39114. height: math.unit(0.75, "feet"),
  39115. name: "Paw",
  39116. image: {
  39117. source: "./media/characters/vera/paw.svg"
  39118. }
  39119. },
  39120. pawprint: {
  39121. height: math.unit(0.52, "feet"),
  39122. name: "Pawprint",
  39123. image: {
  39124. source: "./media/characters/vera/pawprint.svg"
  39125. }
  39126. },
  39127. },
  39128. [
  39129. {
  39130. name: "Normal",
  39131. height: math.unit(5 + 10/12, "feet"),
  39132. default: true
  39133. },
  39134. {
  39135. name: "Macro",
  39136. height: math.unit(75, "feet")
  39137. },
  39138. ]
  39139. ))
  39140. characterMakers.push(() => makeCharacter(
  39141. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39142. {
  39143. front: {
  39144. height: math.unit(4, "feet"),
  39145. weight: math.unit(40, "lb"),
  39146. name: "Front",
  39147. image: {
  39148. source: "./media/characters/orvan-rabbit/front.svg",
  39149. extra: 1896/1642,
  39150. bottom: 29/1925
  39151. }
  39152. },
  39153. },
  39154. [
  39155. {
  39156. name: "Normal",
  39157. height: math.unit(4, "feet"),
  39158. default: true
  39159. },
  39160. ]
  39161. ))
  39162. characterMakers.push(() => makeCharacter(
  39163. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39164. {
  39165. front: {
  39166. height: math.unit(6, "feet"),
  39167. weight: math.unit(168, "lb"),
  39168. name: "Front",
  39169. image: {
  39170. source: "./media/characters/lisa/front.svg",
  39171. extra: 2065/1867,
  39172. bottom: 46/2111
  39173. }
  39174. },
  39175. back: {
  39176. height: math.unit(6, "feet"),
  39177. weight: math.unit(168, "lb"),
  39178. name: "Back",
  39179. image: {
  39180. source: "./media/characters/lisa/back.svg",
  39181. extra: 1982/1838,
  39182. bottom: 29/2011
  39183. }
  39184. },
  39185. maw: {
  39186. height: math.unit(0.81, "feet"),
  39187. name: "Maw",
  39188. image: {
  39189. source: "./media/characters/lisa/maw.svg"
  39190. }
  39191. },
  39192. paw: {
  39193. height: math.unit(0.9, "feet"),
  39194. name: "Paw",
  39195. image: {
  39196. source: "./media/characters/lisa/paw.svg"
  39197. }
  39198. },
  39199. caribousune: {
  39200. height: math.unit(7 + 2/12, "feet"),
  39201. weight: math.unit(268, "lb"),
  39202. name: "Caribousune",
  39203. image: {
  39204. source: "./media/characters/lisa/caribousune.svg",
  39205. extra: 1843/1633,
  39206. bottom: 29/1872
  39207. }
  39208. },
  39209. frontCaribousune: {
  39210. height: math.unit(7 + 2/12, "feet"),
  39211. weight: math.unit(268, "lb"),
  39212. name: "Front (Caribousune)",
  39213. image: {
  39214. source: "./media/characters/lisa/front-caribousune.svg",
  39215. extra: 1818/1638,
  39216. bottom: 52/1870
  39217. }
  39218. },
  39219. sideCaribousune: {
  39220. height: math.unit(7 + 2/12, "feet"),
  39221. weight: math.unit(268, "lb"),
  39222. name: "Side (Caribousune)",
  39223. image: {
  39224. source: "./media/characters/lisa/side-caribousune.svg",
  39225. extra: 1851/1635,
  39226. bottom: 16/1867
  39227. }
  39228. },
  39229. backCaribousune: {
  39230. height: math.unit(7 + 2/12, "feet"),
  39231. weight: math.unit(268, "lb"),
  39232. name: "Back (Caribousune)",
  39233. image: {
  39234. source: "./media/characters/lisa/back-caribousune.svg",
  39235. extra: 1801/1604,
  39236. bottom: 44/1845
  39237. }
  39238. },
  39239. caribou: {
  39240. height: math.unit(7 + 2/12, "feet"),
  39241. weight: math.unit(268, "lb"),
  39242. name: "Caribou",
  39243. image: {
  39244. source: "./media/characters/lisa/caribou.svg",
  39245. extra: 1843/1633,
  39246. bottom: 29/1872
  39247. }
  39248. },
  39249. frontCaribou: {
  39250. height: math.unit(7 + 2/12, "feet"),
  39251. weight: math.unit(268, "lb"),
  39252. name: "Front (Caribou)",
  39253. image: {
  39254. source: "./media/characters/lisa/front-caribou.svg",
  39255. extra: 1818/1638,
  39256. bottom: 52/1870
  39257. }
  39258. },
  39259. sideCaribou: {
  39260. height: math.unit(7 + 2/12, "feet"),
  39261. weight: math.unit(268, "lb"),
  39262. name: "Side (Caribou)",
  39263. image: {
  39264. source: "./media/characters/lisa/side-caribou.svg",
  39265. extra: 1851/1635,
  39266. bottom: 16/1867
  39267. }
  39268. },
  39269. backCaribou: {
  39270. height: math.unit(7 + 2/12, "feet"),
  39271. weight: math.unit(268, "lb"),
  39272. name: "Back (Caribou)",
  39273. image: {
  39274. source: "./media/characters/lisa/back-caribou.svg",
  39275. extra: 1801/1604,
  39276. bottom: 44/1845
  39277. }
  39278. },
  39279. mawCaribou: {
  39280. height: math.unit(1.45, "feet"),
  39281. name: "Maw (Caribou)",
  39282. image: {
  39283. source: "./media/characters/lisa/maw-caribou.svg"
  39284. }
  39285. },
  39286. mawCaribousune: {
  39287. height: math.unit(1.45, "feet"),
  39288. name: "Maw (Caribousune)",
  39289. image: {
  39290. source: "./media/characters/lisa/maw-caribousune.svg"
  39291. }
  39292. },
  39293. pawCaribousune: {
  39294. height: math.unit(1.61, "feet"),
  39295. name: "Paw (Caribou)",
  39296. image: {
  39297. source: "./media/characters/lisa/paw-caribousune.svg"
  39298. }
  39299. },
  39300. },
  39301. [
  39302. {
  39303. name: "Normal",
  39304. height: math.unit(6, "feet")
  39305. },
  39306. {
  39307. name: "God Size",
  39308. height: math.unit(72, "feet"),
  39309. default: true
  39310. },
  39311. {
  39312. name: "Towering",
  39313. height: math.unit(288, "feet")
  39314. },
  39315. {
  39316. name: "City Size",
  39317. height: math.unit(48384, "feet")
  39318. },
  39319. {
  39320. name: "Continental",
  39321. height: math.unit(4200, "miles")
  39322. },
  39323. {
  39324. name: "Planet Eater",
  39325. height: math.unit(42, "earths")
  39326. },
  39327. {
  39328. name: "Star Swallower",
  39329. height: math.unit(42, "solarradii")
  39330. },
  39331. {
  39332. name: "System Swallower",
  39333. height: math.unit(84000, "AU")
  39334. },
  39335. {
  39336. name: "Galaxy Gobbler",
  39337. height: math.unit(42, "galaxies")
  39338. },
  39339. {
  39340. name: "Universe Devourer",
  39341. height: math.unit(42, "universes")
  39342. },
  39343. {
  39344. name: "Multiverse Muncher",
  39345. height: math.unit(42, "multiverses")
  39346. },
  39347. ]
  39348. ))
  39349. characterMakers.push(() => makeCharacter(
  39350. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39351. {
  39352. front: {
  39353. height: math.unit(36, "feet"),
  39354. name: "Front",
  39355. image: {
  39356. source: "./media/characters/shadow-rat/front.svg",
  39357. extra: 1845/1758,
  39358. bottom: 83/1928
  39359. }
  39360. },
  39361. },
  39362. [
  39363. {
  39364. name: "Macro",
  39365. height: math.unit(36, "feet"),
  39366. default: true
  39367. },
  39368. ]
  39369. ))
  39370. characterMakers.push(() => makeCharacter(
  39371. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39372. {
  39373. side: {
  39374. height: math.unit(8, "feet"),
  39375. weight: math.unit(2630, "lb"),
  39376. name: "Side",
  39377. image: {
  39378. source: "./media/characters/torallia/side.svg",
  39379. extra: 2164/2021,
  39380. bottom: 371/2535
  39381. }
  39382. },
  39383. },
  39384. [
  39385. {
  39386. name: "Mortal Interaction",
  39387. height: math.unit(8, "feet")
  39388. },
  39389. {
  39390. name: "Natural",
  39391. height: math.unit(24, "feet"),
  39392. default: true
  39393. },
  39394. {
  39395. name: "Giant",
  39396. height: math.unit(80, "feet")
  39397. },
  39398. {
  39399. name: "Kaiju",
  39400. height: math.unit(240, "feet")
  39401. },
  39402. {
  39403. name: "Macro",
  39404. height: math.unit(800, "feet")
  39405. },
  39406. {
  39407. name: "Macro+",
  39408. height: math.unit(2400, "feet")
  39409. },
  39410. {
  39411. name: "Macro++",
  39412. height: math.unit(8000, "feet")
  39413. },
  39414. {
  39415. name: "City-Crushing",
  39416. height: math.unit(24000, "feet")
  39417. },
  39418. {
  39419. name: "Mountain-Mashing",
  39420. height: math.unit(80000, "feet")
  39421. },
  39422. {
  39423. name: "District Demolisher",
  39424. height: math.unit(240000, "feet")
  39425. },
  39426. {
  39427. name: "Tri-County Terror",
  39428. height: math.unit(800000, "feet")
  39429. },
  39430. {
  39431. name: "State Smasher",
  39432. height: math.unit(2.4e6, "feet")
  39433. },
  39434. {
  39435. name: "Nation Nemesis",
  39436. height: math.unit(8e6, "feet")
  39437. },
  39438. {
  39439. name: "Continent Cracker",
  39440. height: math.unit(2.4e7, "feet")
  39441. },
  39442. {
  39443. name: "Planet-Pillaging",
  39444. height: math.unit(8e7, "feet")
  39445. },
  39446. {
  39447. name: "Earth-Eclipsing",
  39448. height: math.unit(2.4e8, "feet")
  39449. },
  39450. {
  39451. name: "Jovian-Jostling",
  39452. height: math.unit(8e8, "feet")
  39453. },
  39454. {
  39455. name: "Gas Giant Gulper",
  39456. height: math.unit(2.4e9, "feet")
  39457. },
  39458. {
  39459. name: "Astral Annihilator",
  39460. height: math.unit(8e9, "feet")
  39461. },
  39462. {
  39463. name: "Celestial Conqueror",
  39464. height: math.unit(2.4e10, "feet")
  39465. },
  39466. {
  39467. name: "Sol-Swallowing",
  39468. height: math.unit(8e10, "feet")
  39469. },
  39470. {
  39471. name: "Hunter of the Heavens",
  39472. height: math.unit(2.4e13, "feet")
  39473. },
  39474. ]
  39475. ))
  39476. characterMakers.push(() => makeCharacter(
  39477. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39478. {
  39479. front: {
  39480. height: math.unit(6 + 8/12, "feet"),
  39481. name: "Front",
  39482. image: {
  39483. source: "./media/characters/rebecca-pawlson/front.svg",
  39484. extra: 1737/1596,
  39485. bottom: 107/1844
  39486. }
  39487. },
  39488. back: {
  39489. height: math.unit(6 + 8/12, "feet"),
  39490. name: "Back",
  39491. image: {
  39492. source: "./media/characters/rebecca-pawlson/back.svg",
  39493. extra: 1702/1523,
  39494. bottom: 86/1788
  39495. }
  39496. },
  39497. },
  39498. [
  39499. {
  39500. name: "Normal",
  39501. height: math.unit(6 + 8/12, "feet")
  39502. },
  39503. {
  39504. name: "Mini Macro",
  39505. height: math.unit(10, "feet"),
  39506. default: true
  39507. },
  39508. {
  39509. name: "Macro",
  39510. height: math.unit(100, "feet")
  39511. },
  39512. {
  39513. name: "Mega Macro",
  39514. height: math.unit(2500, "feet")
  39515. },
  39516. {
  39517. name: "Giga Macro",
  39518. height: math.unit(50, "miles")
  39519. },
  39520. ]
  39521. ))
  39522. characterMakers.push(() => makeCharacter(
  39523. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39524. {
  39525. front: {
  39526. height: math.unit(7 + 6/12, "feet"),
  39527. weight: math.unit(600, "lb"),
  39528. name: "Front",
  39529. image: {
  39530. source: "./media/characters/moxie-nova/front.svg",
  39531. extra: 1734/1652,
  39532. bottom: 41/1775
  39533. }
  39534. },
  39535. },
  39536. [
  39537. {
  39538. name: "Normal",
  39539. height: math.unit(7 + 6/12, "feet"),
  39540. default: true
  39541. },
  39542. ]
  39543. ))
  39544. characterMakers.push(() => makeCharacter(
  39545. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39546. {
  39547. goat: {
  39548. height: math.unit(4, "feet"),
  39549. weight: math.unit(180, "lb"),
  39550. name: "Goat",
  39551. image: {
  39552. source: "./media/characters/tiffany/goat.svg",
  39553. extra: 1845/1595,
  39554. bottom: 106/1951
  39555. }
  39556. },
  39557. front: {
  39558. height: math.unit(5, "feet"),
  39559. weight: math.unit(150, "lb"),
  39560. name: "Foxcoon",
  39561. image: {
  39562. source: "./media/characters/tiffany/foxcoon.svg",
  39563. extra: 1941/1845,
  39564. bottom: 58/1999
  39565. }
  39566. },
  39567. },
  39568. [
  39569. {
  39570. name: "Normal",
  39571. height: math.unit(5, "feet"),
  39572. default: true
  39573. },
  39574. ]
  39575. ))
  39576. characterMakers.push(() => makeCharacter(
  39577. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39578. {
  39579. front: {
  39580. height: math.unit(8, "feet"),
  39581. weight: math.unit(300, "lb"),
  39582. name: "Front",
  39583. image: {
  39584. source: "./media/characters/raxinath/front.svg",
  39585. extra: 1407/1309,
  39586. bottom: 39/1446
  39587. }
  39588. },
  39589. back: {
  39590. height: math.unit(8, "feet"),
  39591. weight: math.unit(300, "lb"),
  39592. name: "Back",
  39593. image: {
  39594. source: "./media/characters/raxinath/back.svg",
  39595. extra: 1405/1315,
  39596. bottom: 9/1414
  39597. }
  39598. },
  39599. },
  39600. [
  39601. {
  39602. name: "Speck",
  39603. height: math.unit(0.5, "nm")
  39604. },
  39605. {
  39606. name: "Micro",
  39607. height: math.unit(3, "inches")
  39608. },
  39609. {
  39610. name: "Kobold",
  39611. height: math.unit(3, "feet")
  39612. },
  39613. {
  39614. name: "Normal",
  39615. height: math.unit(8, "feet"),
  39616. default: true
  39617. },
  39618. {
  39619. name: "Giant",
  39620. height: math.unit(50, "feet")
  39621. },
  39622. {
  39623. name: "Macro",
  39624. height: math.unit(1000, "feet")
  39625. },
  39626. {
  39627. name: "Megamacro",
  39628. height: math.unit(1, "mile")
  39629. },
  39630. ]
  39631. ))
  39632. characterMakers.push(() => makeCharacter(
  39633. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39634. {
  39635. front: {
  39636. height: math.unit(10, "feet"),
  39637. weight: math.unit(1442, "lb"),
  39638. name: "Front",
  39639. image: {
  39640. source: "./media/characters/mal-dragon/front.svg",
  39641. extra: 1515/1444,
  39642. bottom: 113/1628
  39643. }
  39644. },
  39645. back: {
  39646. height: math.unit(10, "feet"),
  39647. weight: math.unit(1442, "lb"),
  39648. name: "Back",
  39649. image: {
  39650. source: "./media/characters/mal-dragon/back.svg",
  39651. extra: 1527/1434,
  39652. bottom: 25/1552
  39653. }
  39654. },
  39655. },
  39656. [
  39657. {
  39658. name: "Mortal Interaction",
  39659. height: math.unit(10, "feet"),
  39660. default: true
  39661. },
  39662. {
  39663. name: "Large",
  39664. height: math.unit(30, "feet")
  39665. },
  39666. {
  39667. name: "Kaiju",
  39668. height: math.unit(300, "feet")
  39669. },
  39670. {
  39671. name: "Megamacro",
  39672. height: math.unit(10000, "feet")
  39673. },
  39674. {
  39675. name: "Continent Cracker",
  39676. height: math.unit(30000000, "feet")
  39677. },
  39678. {
  39679. name: "Sol-Swallowing",
  39680. height: math.unit(1e11, "feet")
  39681. },
  39682. {
  39683. name: "Light Universal",
  39684. height: math.unit(5, "universes")
  39685. },
  39686. {
  39687. name: "Universe Atoms",
  39688. height: math.unit(1.829e9, "universes")
  39689. },
  39690. {
  39691. name: "Light Multiversal",
  39692. height: math.unit(5, "multiverses")
  39693. },
  39694. {
  39695. name: "Multiverse Atoms",
  39696. height: math.unit(1.829e9, "multiverses")
  39697. },
  39698. {
  39699. name: "Fabric of Time",
  39700. height: math.unit(1e262, "multiverses")
  39701. },
  39702. ]
  39703. ))
  39704. characterMakers.push(() => makeCharacter(
  39705. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39706. {
  39707. front: {
  39708. height: math.unit(9, "feet"),
  39709. weight: math.unit(1050, "lb"),
  39710. name: "Front",
  39711. image: {
  39712. source: "./media/characters/tabitha/front.svg",
  39713. extra: 2083/1994,
  39714. bottom: 68/2151
  39715. }
  39716. },
  39717. },
  39718. [
  39719. {
  39720. name: "Baseline",
  39721. height: math.unit(9, "feet"),
  39722. default: true
  39723. },
  39724. {
  39725. name: "Giant",
  39726. height: math.unit(90, "feet")
  39727. },
  39728. {
  39729. name: "Macro",
  39730. height: math.unit(900, "feet")
  39731. },
  39732. {
  39733. name: "Megamacro",
  39734. height: math.unit(9000, "feet")
  39735. },
  39736. {
  39737. name: "City-Crushing",
  39738. height: math.unit(27000, "feet")
  39739. },
  39740. {
  39741. name: "Mountain-Mashing",
  39742. height: math.unit(90000, "feet")
  39743. },
  39744. {
  39745. name: "Nation Nemesis",
  39746. height: math.unit(9e6, "feet")
  39747. },
  39748. {
  39749. name: "Continent Cracker",
  39750. height: math.unit(27e6, "feet")
  39751. },
  39752. {
  39753. name: "Earth-Eclipsing",
  39754. height: math.unit(2.7e8, "feet")
  39755. },
  39756. {
  39757. name: "Gas Giant Gulper",
  39758. height: math.unit(2.7e9, "feet")
  39759. },
  39760. {
  39761. name: "Sol-Swallowing",
  39762. height: math.unit(9e10, "feet")
  39763. },
  39764. {
  39765. name: "Galaxy Gulper",
  39766. height: math.unit(9, "galaxies")
  39767. },
  39768. {
  39769. name: "Cosmos Churner",
  39770. height: math.unit(9, "universes")
  39771. },
  39772. ]
  39773. ))
  39774. characterMakers.push(() => makeCharacter(
  39775. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39776. {
  39777. front: {
  39778. height: math.unit(160, "cm"),
  39779. weight: math.unit(55, "kg"),
  39780. name: "Front",
  39781. image: {
  39782. source: "./media/characters/tow/front.svg",
  39783. extra: 1751/1722,
  39784. bottom: 74/1825
  39785. }
  39786. },
  39787. },
  39788. [
  39789. {
  39790. name: "Norm",
  39791. height: math.unit(160, "cm")
  39792. },
  39793. {
  39794. name: "Casual",
  39795. height: math.unit(3200, "m"),
  39796. default: true
  39797. },
  39798. {
  39799. name: "Show-Off",
  39800. height: math.unit(160, "km")
  39801. },
  39802. ]
  39803. ))
  39804. characterMakers.push(() => makeCharacter(
  39805. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39806. {
  39807. front: {
  39808. height: math.unit(7 + 11/12, "feet"),
  39809. weight: math.unit(342.8, "lb"),
  39810. name: "Front",
  39811. image: {
  39812. source: "./media/characters/vivian-orca-dragon/front.svg",
  39813. extra: 1890/1865,
  39814. bottom: 28/1918
  39815. }
  39816. },
  39817. },
  39818. [
  39819. {
  39820. name: "Micro",
  39821. height: math.unit(5, "inches")
  39822. },
  39823. {
  39824. name: "Normal",
  39825. height: math.unit(7 + 11/12, "feet"),
  39826. default: true
  39827. },
  39828. {
  39829. name: "Macro",
  39830. height: math.unit(395 + 7/12, "feet")
  39831. },
  39832. ]
  39833. ))
  39834. characterMakers.push(() => makeCharacter(
  39835. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39836. {
  39837. side: {
  39838. height: math.unit(10, "feet"),
  39839. weight: math.unit(1442, "lb"),
  39840. name: "Side",
  39841. image: {
  39842. source: "./media/characters/lotherakon/side.svg",
  39843. extra: 1604/1497,
  39844. bottom: 89/1693
  39845. }
  39846. },
  39847. },
  39848. [
  39849. {
  39850. name: "Mortal Interaction",
  39851. height: math.unit(10, "feet")
  39852. },
  39853. {
  39854. name: "Large",
  39855. height: math.unit(30, "feet"),
  39856. default: true
  39857. },
  39858. {
  39859. name: "Giant",
  39860. height: math.unit(100, "feet")
  39861. },
  39862. {
  39863. name: "Kaiju",
  39864. height: math.unit(300, "feet")
  39865. },
  39866. {
  39867. name: "Macro",
  39868. height: math.unit(1000, "feet")
  39869. },
  39870. {
  39871. name: "Macro+",
  39872. height: math.unit(3000, "feet")
  39873. },
  39874. {
  39875. name: "Megamacro",
  39876. height: math.unit(10000, "feet")
  39877. },
  39878. {
  39879. name: "City-Crushing",
  39880. height: math.unit(30000, "feet")
  39881. },
  39882. {
  39883. name: "Continent Cracker",
  39884. height: math.unit(30e6, "feet")
  39885. },
  39886. {
  39887. name: "Earth Eclipsing",
  39888. height: math.unit(3e8, "feet")
  39889. },
  39890. {
  39891. name: "Gas Giant Gulper",
  39892. height: math.unit(3e9, "feet")
  39893. },
  39894. {
  39895. name: "Sol-Swallowing",
  39896. height: math.unit(1e11, "feet")
  39897. },
  39898. {
  39899. name: "System Swallower",
  39900. height: math.unit(3e14, "feet")
  39901. },
  39902. {
  39903. name: "Galaxy Gulper",
  39904. height: math.unit(10, "galaxies")
  39905. },
  39906. {
  39907. name: "Light Universal",
  39908. height: math.unit(5, "universes")
  39909. },
  39910. {
  39911. name: "Universe Palm",
  39912. height: math.unit(20, "universes")
  39913. },
  39914. {
  39915. name: "Light Multiversal",
  39916. height: math.unit(5, "multiverses")
  39917. },
  39918. {
  39919. name: "Multiverse Palm",
  39920. height: math.unit(20, "multiverses")
  39921. },
  39922. {
  39923. name: "Inferno Incarnate",
  39924. height: math.unit(1e7, "multiverses")
  39925. },
  39926. ]
  39927. ))
  39928. characterMakers.push(() => makeCharacter(
  39929. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39930. {
  39931. front: {
  39932. height: math.unit(8, "feet"),
  39933. weight: math.unit(1200, "lb"),
  39934. name: "Front",
  39935. image: {
  39936. source: "./media/characters/malithee/front.svg",
  39937. extra: 1675/1640,
  39938. bottom: 162/1837
  39939. }
  39940. },
  39941. },
  39942. [
  39943. {
  39944. name: "Mortal Interaction",
  39945. height: math.unit(8, "feet"),
  39946. default: true
  39947. },
  39948. {
  39949. name: "Large",
  39950. height: math.unit(24, "feet")
  39951. },
  39952. {
  39953. name: "Kaiju",
  39954. height: math.unit(240, "feet")
  39955. },
  39956. {
  39957. name: "Megamacro",
  39958. height: math.unit(8000, "feet")
  39959. },
  39960. {
  39961. name: "Continent Cracker",
  39962. height: math.unit(24e6, "feet")
  39963. },
  39964. {
  39965. name: "Earth-Eclipsing",
  39966. height: math.unit(2.4e8, "feet")
  39967. },
  39968. {
  39969. name: "Sol-Swallowing",
  39970. height: math.unit(8e10, "feet")
  39971. },
  39972. {
  39973. name: "Galaxy Gulper",
  39974. height: math.unit(8, "galaxies")
  39975. },
  39976. {
  39977. name: "Light Universal",
  39978. height: math.unit(4, "universes")
  39979. },
  39980. {
  39981. name: "Universe Atoms",
  39982. height: math.unit(1.829e9, "universes")
  39983. },
  39984. {
  39985. name: "Light Multiversal",
  39986. height: math.unit(4, "multiverses")
  39987. },
  39988. {
  39989. name: "Multiverse Atoms",
  39990. height: math.unit(1.829e9, "multiverses")
  39991. },
  39992. {
  39993. name: "Nigh-Omnipresence",
  39994. height: math.unit(8e261, "multiverses")
  39995. },
  39996. ]
  39997. ))
  39998. characterMakers.push(() => makeCharacter(
  39999. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40000. {
  40001. front: {
  40002. height: math.unit(10, "feet"),
  40003. weight: math.unit(1500, "lb"),
  40004. name: "Front",
  40005. image: {
  40006. source: "./media/characters/miles-thestia/front.svg",
  40007. extra: 1812/1727,
  40008. bottom: 86/1898
  40009. }
  40010. },
  40011. back: {
  40012. height: math.unit(10, "feet"),
  40013. weight: math.unit(1500, "lb"),
  40014. name: "Back",
  40015. image: {
  40016. source: "./media/characters/miles-thestia/back.svg",
  40017. extra: 1799/1690,
  40018. bottom: 47/1846
  40019. }
  40020. },
  40021. frontNsfw: {
  40022. height: math.unit(10, "feet"),
  40023. weight: math.unit(1500, "lb"),
  40024. name: "Front (NSFW)",
  40025. image: {
  40026. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40027. extra: 1812/1727,
  40028. bottom: 86/1898
  40029. }
  40030. },
  40031. },
  40032. [
  40033. {
  40034. name: "Mini-Macro",
  40035. height: math.unit(10, "feet"),
  40036. default: true
  40037. },
  40038. ]
  40039. ))
  40040. characterMakers.push(() => makeCharacter(
  40041. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40042. {
  40043. front: {
  40044. height: math.unit(25, "feet"),
  40045. name: "Front",
  40046. image: {
  40047. source: "./media/characters/titan-s-wulf/front.svg",
  40048. extra: 1560/1484,
  40049. bottom: 76/1636
  40050. }
  40051. },
  40052. },
  40053. [
  40054. {
  40055. name: "Smallest",
  40056. height: math.unit(25, "feet"),
  40057. default: true
  40058. },
  40059. {
  40060. name: "Normal",
  40061. height: math.unit(200, "feet")
  40062. },
  40063. {
  40064. name: "Macro",
  40065. height: math.unit(200000, "feet")
  40066. },
  40067. {
  40068. name: "Multiversal Original",
  40069. height: math.unit(10000, "multiverses")
  40070. },
  40071. ]
  40072. ))
  40073. characterMakers.push(() => makeCharacter(
  40074. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40075. {
  40076. front: {
  40077. height: math.unit(8, "feet"),
  40078. weight: math.unit(553, "lb"),
  40079. name: "Front",
  40080. image: {
  40081. source: "./media/characters/tawendeh/front.svg",
  40082. extra: 2365/2268,
  40083. bottom: 83/2448
  40084. }
  40085. },
  40086. frontClothed: {
  40087. height: math.unit(8, "feet"),
  40088. weight: math.unit(553, "lb"),
  40089. name: "Front (Clothed)",
  40090. image: {
  40091. source: "./media/characters/tawendeh/front-clothed.svg",
  40092. extra: 2365/2268,
  40093. bottom: 83/2448
  40094. }
  40095. },
  40096. back: {
  40097. height: math.unit(8, "feet"),
  40098. weight: math.unit(553, "lb"),
  40099. name: "Back",
  40100. image: {
  40101. source: "./media/characters/tawendeh/back.svg",
  40102. extra: 2397/2294,
  40103. bottom: 42/2439
  40104. }
  40105. },
  40106. },
  40107. [
  40108. {
  40109. name: "Mortal Interaction",
  40110. height: math.unit(8, "feet"),
  40111. default: true
  40112. },
  40113. {
  40114. name: "Giant",
  40115. height: math.unit(80, "feet")
  40116. },
  40117. {
  40118. name: "Macro",
  40119. height: math.unit(800, "feet")
  40120. },
  40121. {
  40122. name: "Megamacro",
  40123. height: math.unit(8000, "feet")
  40124. },
  40125. {
  40126. name: "City-Crushing",
  40127. height: math.unit(24000, "feet")
  40128. },
  40129. {
  40130. name: "Mountain-Mashing",
  40131. height: math.unit(80000, "feet")
  40132. },
  40133. {
  40134. name: "Nation Nemesis",
  40135. height: math.unit(8e6, "feet")
  40136. },
  40137. {
  40138. name: "Continent Cracker",
  40139. height: math.unit(24e6, "feet")
  40140. },
  40141. {
  40142. name: "Earth-Eclipsing",
  40143. height: math.unit(2.4e8, "feet")
  40144. },
  40145. {
  40146. name: "Gas Giant Gulper",
  40147. height: math.unit(2.4e9, "feet")
  40148. },
  40149. {
  40150. name: "Sol-Swallowing",
  40151. height: math.unit(8e10, "feet")
  40152. },
  40153. {
  40154. name: "Galaxy Gulper",
  40155. height: math.unit(8, "galaxies")
  40156. },
  40157. {
  40158. name: "Cosmos Churner",
  40159. height: math.unit(8, "universes")
  40160. },
  40161. {
  40162. name: "Omnipotent Otter",
  40163. height: math.unit(80, "universes")
  40164. },
  40165. ]
  40166. ))
  40167. characterMakers.push(() => makeCharacter(
  40168. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40169. {
  40170. front: {
  40171. height: math.unit(2.6, "meters"),
  40172. weight: math.unit(900, "kg"),
  40173. name: "Front",
  40174. image: {
  40175. source: "./media/characters/neesha/front.svg",
  40176. extra: 1803/1653,
  40177. bottom: 128/1931
  40178. }
  40179. },
  40180. },
  40181. [
  40182. {
  40183. name: "Normal",
  40184. height: math.unit(2.6, "meters"),
  40185. default: true
  40186. },
  40187. {
  40188. name: "Macro",
  40189. height: math.unit(50, "meters")
  40190. },
  40191. ]
  40192. ))
  40193. characterMakers.push(() => makeCharacter(
  40194. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40195. {
  40196. front: {
  40197. height: math.unit(5, "feet"),
  40198. weight: math.unit(185, "lb"),
  40199. name: "Front",
  40200. image: {
  40201. source: "./media/characters/kyera/front.svg",
  40202. extra: 1875/1790,
  40203. bottom: 96/1971
  40204. }
  40205. },
  40206. },
  40207. [
  40208. {
  40209. name: "Normal",
  40210. height: math.unit(5, "feet"),
  40211. default: true
  40212. },
  40213. ]
  40214. ))
  40215. characterMakers.push(() => makeCharacter(
  40216. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40217. {
  40218. front: {
  40219. height: math.unit(7 + 6/12, "feet"),
  40220. weight: math.unit(540, "lb"),
  40221. name: "Front",
  40222. image: {
  40223. source: "./media/characters/yuko/front.svg",
  40224. extra: 1282/1222,
  40225. bottom: 101/1383
  40226. }
  40227. },
  40228. frontClothed: {
  40229. height: math.unit(7 + 6/12, "feet"),
  40230. weight: math.unit(540, "lb"),
  40231. name: "Front (Clothed)",
  40232. image: {
  40233. source: "./media/characters/yuko/front-clothed.svg",
  40234. extra: 1282/1222,
  40235. bottom: 101/1383
  40236. }
  40237. },
  40238. },
  40239. [
  40240. {
  40241. name: "Normal",
  40242. height: math.unit(7 + 6/12, "feet"),
  40243. default: true
  40244. },
  40245. {
  40246. name: "Macro",
  40247. height: math.unit(26 + 9/12, "feet")
  40248. },
  40249. {
  40250. name: "Megamacro",
  40251. height: math.unit(300, "feet")
  40252. },
  40253. {
  40254. name: "Gigamacro",
  40255. height: math.unit(5000, "feet")
  40256. },
  40257. {
  40258. name: "Planetary",
  40259. height: math.unit(10000, "miles")
  40260. },
  40261. ]
  40262. ))
  40263. characterMakers.push(() => makeCharacter(
  40264. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40265. {
  40266. front: {
  40267. height: math.unit(8 + 2/12, "feet"),
  40268. weight: math.unit(600, "lb"),
  40269. name: "Front",
  40270. image: {
  40271. source: "./media/characters/deam-nitrel/front.svg",
  40272. extra: 1308/1234,
  40273. bottom: 125/1433
  40274. }
  40275. },
  40276. },
  40277. [
  40278. {
  40279. name: "Normal",
  40280. height: math.unit(8 + 2/12, "feet"),
  40281. default: true
  40282. },
  40283. ]
  40284. ))
  40285. characterMakers.push(() => makeCharacter(
  40286. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40287. {
  40288. front: {
  40289. height: math.unit(6.1, "feet"),
  40290. weight: math.unit(180, "lb"),
  40291. name: "Front",
  40292. image: {
  40293. source: "./media/characters/skyress/front.svg",
  40294. extra: 1045/915,
  40295. bottom: 28/1073
  40296. }
  40297. },
  40298. maw: {
  40299. height: math.unit(1, "feet"),
  40300. name: "Maw",
  40301. image: {
  40302. source: "./media/characters/skyress/maw.svg"
  40303. }
  40304. },
  40305. },
  40306. [
  40307. {
  40308. name: "Normal",
  40309. height: math.unit(6.1, "feet"),
  40310. default: true
  40311. },
  40312. {
  40313. name: "Macro",
  40314. height: math.unit(200, "feet")
  40315. },
  40316. ]
  40317. ))
  40318. characterMakers.push(() => makeCharacter(
  40319. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40320. {
  40321. front: {
  40322. height: math.unit(4 + 2/12, "feet"),
  40323. weight: math.unit(40, "kg"),
  40324. name: "Front",
  40325. image: {
  40326. source: "./media/characters/amethyst-jones/front.svg",
  40327. extra: 1220/1150,
  40328. bottom: 101/1321
  40329. }
  40330. },
  40331. },
  40332. [
  40333. {
  40334. name: "Normal",
  40335. height: math.unit(4 + 2/12, "feet"),
  40336. default: true
  40337. },
  40338. ]
  40339. ))
  40340. characterMakers.push(() => makeCharacter(
  40341. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40342. {
  40343. front: {
  40344. height: math.unit(1.7, "m"),
  40345. weight: math.unit(135, "lb"),
  40346. name: "Front",
  40347. image: {
  40348. source: "./media/characters/jade/front.svg",
  40349. extra: 1818/1767,
  40350. bottom: 32/1850
  40351. }
  40352. },
  40353. back: {
  40354. height: math.unit(1.7, "m"),
  40355. weight: math.unit(135, "lb"),
  40356. name: "Back",
  40357. image: {
  40358. source: "./media/characters/jade/back.svg",
  40359. extra: 1869/1809,
  40360. bottom: 35/1904
  40361. }
  40362. },
  40363. hand: {
  40364. height: math.unit(0.24, "m"),
  40365. name: "Hand",
  40366. image: {
  40367. source: "./media/characters/jade/hand.svg"
  40368. }
  40369. },
  40370. foot: {
  40371. height: math.unit(0.263, "m"),
  40372. name: "Foot",
  40373. image: {
  40374. source: "./media/characters/jade/foot.svg"
  40375. }
  40376. },
  40377. dick: {
  40378. height: math.unit(0.47, "m"),
  40379. name: "Dick",
  40380. image: {
  40381. source: "./media/characters/jade/dick.svg"
  40382. }
  40383. },
  40384. },
  40385. [
  40386. {
  40387. name: "Micro",
  40388. height: math.unit(22, "cm")
  40389. },
  40390. {
  40391. name: "Normal",
  40392. height: math.unit(1.7, "m"),
  40393. default: true
  40394. },
  40395. {
  40396. name: "Macro",
  40397. height: math.unit(152, "m")
  40398. },
  40399. ]
  40400. ))
  40401. characterMakers.push(() => makeCharacter(
  40402. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40403. {
  40404. front: {
  40405. height: math.unit(100, "miles"),
  40406. weight: math.unit(20000, "tons"),
  40407. name: "Front",
  40408. image: {
  40409. source: "./media/characters/cookie/front.svg",
  40410. extra: 1125/1070,
  40411. bottom: 30/1155
  40412. }
  40413. },
  40414. },
  40415. [
  40416. {
  40417. name: "Big",
  40418. height: math.unit(50, "feet")
  40419. },
  40420. {
  40421. name: "Macro",
  40422. height: math.unit(100, "miles"),
  40423. default: true
  40424. },
  40425. {
  40426. name: "Megamacro",
  40427. height: math.unit(90000, "miles")
  40428. },
  40429. ]
  40430. ))
  40431. characterMakers.push(() => makeCharacter(
  40432. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40433. {
  40434. front: {
  40435. height: math.unit(6, "feet"),
  40436. weight: math.unit(145, "lb"),
  40437. name: "Front",
  40438. image: {
  40439. source: "./media/characters/farzian/front.svg",
  40440. extra: 1902/1693,
  40441. bottom: 108/2010
  40442. }
  40443. },
  40444. },
  40445. [
  40446. {
  40447. name: "Macro",
  40448. height: math.unit(500, "feet"),
  40449. default: true
  40450. },
  40451. ]
  40452. ))
  40453. characterMakers.push(() => makeCharacter(
  40454. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40455. {
  40456. front: {
  40457. height: math.unit(3 + 6/12, "feet"),
  40458. weight: math.unit(50, "lb"),
  40459. name: "Front",
  40460. image: {
  40461. source: "./media/characters/kimberly-tilson/front.svg",
  40462. extra: 1400/1322,
  40463. bottom: 36/1436
  40464. }
  40465. },
  40466. back: {
  40467. height: math.unit(3 + 6/12, "feet"),
  40468. weight: math.unit(50, "lb"),
  40469. name: "Back",
  40470. image: {
  40471. source: "./media/characters/kimberly-tilson/back.svg",
  40472. extra: 1370/1307,
  40473. bottom: 20/1390
  40474. }
  40475. },
  40476. },
  40477. [
  40478. {
  40479. name: "Normal",
  40480. height: math.unit(3 + 6/12, "feet"),
  40481. default: true
  40482. },
  40483. ]
  40484. ))
  40485. characterMakers.push(() => makeCharacter(
  40486. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40487. {
  40488. front: {
  40489. height: math.unit(1148, "feet"),
  40490. weight: math.unit(34057, "lb"),
  40491. name: "Front",
  40492. image: {
  40493. source: "./media/characters/harthos/front.svg",
  40494. extra: 1391/1339,
  40495. bottom: 13/1404
  40496. }
  40497. },
  40498. },
  40499. [
  40500. {
  40501. name: "Macro",
  40502. height: math.unit(1148, "feet"),
  40503. default: true
  40504. },
  40505. ]
  40506. ))
  40507. characterMakers.push(() => makeCharacter(
  40508. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40509. {
  40510. front: {
  40511. height: math.unit(15, "feet"),
  40512. name: "Front",
  40513. image: {
  40514. source: "./media/characters/hypatia/front.svg",
  40515. extra: 1653/1591,
  40516. bottom: 79/1732
  40517. }
  40518. },
  40519. },
  40520. [
  40521. {
  40522. name: "Normal",
  40523. height: math.unit(15, "feet")
  40524. },
  40525. {
  40526. name: "Small",
  40527. height: math.unit(300, "feet")
  40528. },
  40529. {
  40530. name: "Macro",
  40531. height: math.unit(2500, "feet"),
  40532. default: true
  40533. },
  40534. {
  40535. name: "Mega Macro",
  40536. height: math.unit(1500, "miles")
  40537. },
  40538. {
  40539. name: "Giga Macro",
  40540. height: math.unit(1.5e6, "miles")
  40541. },
  40542. ]
  40543. ))
  40544. characterMakers.push(() => makeCharacter(
  40545. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40546. {
  40547. front: {
  40548. height: math.unit(6, "feet"),
  40549. weight: math.unit(200, "lb"),
  40550. name: "Front",
  40551. image: {
  40552. source: "./media/characters/wulver/front.svg",
  40553. extra: 1724/1632,
  40554. bottom: 130/1854
  40555. }
  40556. },
  40557. frontNsfw: {
  40558. height: math.unit(6, "feet"),
  40559. weight: math.unit(200, "lb"),
  40560. name: "Front (NSFW)",
  40561. image: {
  40562. source: "./media/characters/wulver/front-nsfw.svg",
  40563. extra: 1724/1632,
  40564. bottom: 130/1854
  40565. }
  40566. },
  40567. },
  40568. [
  40569. {
  40570. name: "Human-Sized",
  40571. height: math.unit(6, "feet")
  40572. },
  40573. {
  40574. name: "Normal",
  40575. height: math.unit(4, "meters"),
  40576. default: true
  40577. },
  40578. {
  40579. name: "Large",
  40580. height: math.unit(6, "m")
  40581. },
  40582. ]
  40583. ))
  40584. characterMakers.push(() => makeCharacter(
  40585. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40586. {
  40587. front: {
  40588. height: math.unit(7, "feet"),
  40589. name: "Front",
  40590. image: {
  40591. source: "./media/characters/maru/front.svg",
  40592. extra: 1595/1570,
  40593. bottom: 0/1595
  40594. }
  40595. },
  40596. },
  40597. [
  40598. {
  40599. name: "Normal",
  40600. height: math.unit(7, "feet"),
  40601. default: true
  40602. },
  40603. {
  40604. name: "Macro",
  40605. height: math.unit(700, "feet")
  40606. },
  40607. {
  40608. name: "Mega Macro",
  40609. height: math.unit(25, "miles")
  40610. },
  40611. ]
  40612. ))
  40613. characterMakers.push(() => makeCharacter(
  40614. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40615. {
  40616. front: {
  40617. height: math.unit(6, "feet"),
  40618. weight: math.unit(170, "lb"),
  40619. name: "Front",
  40620. image: {
  40621. source: "./media/characters/xenon/front.svg",
  40622. extra: 1376/1305,
  40623. bottom: 56/1432
  40624. }
  40625. },
  40626. back: {
  40627. height: math.unit(6, "feet"),
  40628. weight: math.unit(170, "lb"),
  40629. name: "Back",
  40630. image: {
  40631. source: "./media/characters/xenon/back.svg",
  40632. extra: 1328/1259,
  40633. bottom: 95/1423
  40634. }
  40635. },
  40636. maw: {
  40637. height: math.unit(0.52, "feet"),
  40638. name: "Maw",
  40639. image: {
  40640. source: "./media/characters/xenon/maw.svg"
  40641. }
  40642. },
  40643. hand: {
  40644. height: math.unit(0.82, "feet"),
  40645. name: "Hand",
  40646. image: {
  40647. source: "./media/characters/xenon/hand.svg"
  40648. }
  40649. },
  40650. foot: {
  40651. height: math.unit(1.13, "feet"),
  40652. name: "Foot",
  40653. image: {
  40654. source: "./media/characters/xenon/foot.svg"
  40655. }
  40656. },
  40657. },
  40658. [
  40659. {
  40660. name: "Micro",
  40661. height: math.unit(0.8, "inches")
  40662. },
  40663. {
  40664. name: "Normal",
  40665. height: math.unit(6, "feet")
  40666. },
  40667. {
  40668. name: "Macro",
  40669. height: math.unit(50, "feet"),
  40670. default: true
  40671. },
  40672. {
  40673. name: "Macro+",
  40674. height: math.unit(250, "feet")
  40675. },
  40676. {
  40677. name: "Megamacro",
  40678. height: math.unit(1500, "feet")
  40679. },
  40680. ]
  40681. ))
  40682. characterMakers.push(() => makeCharacter(
  40683. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40684. {
  40685. front: {
  40686. height: math.unit(7 + 5/12, "feet"),
  40687. name: "Front",
  40688. image: {
  40689. source: "./media/characters/zane/front.svg",
  40690. extra: 1260/1203,
  40691. bottom: 94/1354
  40692. }
  40693. },
  40694. back: {
  40695. height: math.unit(5.05, "feet"),
  40696. name: "Back",
  40697. image: {
  40698. source: "./media/characters/zane/back.svg",
  40699. extra: 893/829,
  40700. bottom: 30/923
  40701. }
  40702. },
  40703. werewolf: {
  40704. height: math.unit(11, "feet"),
  40705. name: "Werewolf",
  40706. image: {
  40707. source: "./media/characters/zane/werewolf.svg",
  40708. extra: 1383/1323,
  40709. bottom: 89/1472
  40710. }
  40711. },
  40712. foot: {
  40713. height: math.unit(1.46, "feet"),
  40714. name: "Foot",
  40715. image: {
  40716. source: "./media/characters/zane/foot.svg"
  40717. }
  40718. },
  40719. footFront: {
  40720. height: math.unit(0.784, "feet"),
  40721. name: "Foot (Front)",
  40722. image: {
  40723. source: "./media/characters/zane/foot-front.svg"
  40724. }
  40725. },
  40726. dick: {
  40727. height: math.unit(1.95, "feet"),
  40728. name: "Dick",
  40729. image: {
  40730. source: "./media/characters/zane/dick.svg"
  40731. }
  40732. },
  40733. dickWerewolf: {
  40734. height: math.unit(3.77, "feet"),
  40735. name: "Dick (Werewolf)",
  40736. image: {
  40737. source: "./media/characters/zane/dick.svg"
  40738. }
  40739. },
  40740. },
  40741. [
  40742. {
  40743. name: "Normal",
  40744. height: math.unit(7 + 5/12, "feet"),
  40745. default: true
  40746. },
  40747. ]
  40748. ))
  40749. characterMakers.push(() => makeCharacter(
  40750. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40751. {
  40752. front: {
  40753. height: math.unit(6 + 2/12, "feet"),
  40754. weight: math.unit(284, "lb"),
  40755. name: "Front",
  40756. image: {
  40757. source: "./media/characters/benni-desparque/front.svg",
  40758. extra: 1353/1126,
  40759. bottom: 69/1422
  40760. }
  40761. },
  40762. },
  40763. [
  40764. {
  40765. name: "Civilian",
  40766. height: math.unit(6 + 2/12, "feet")
  40767. },
  40768. {
  40769. name: "Normal",
  40770. height: math.unit(98, "feet"),
  40771. default: true
  40772. },
  40773. {
  40774. name: "Kaiju Fighter",
  40775. height: math.unit(268, "feet")
  40776. },
  40777. ]
  40778. ))
  40779. characterMakers.push(() => makeCharacter(
  40780. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40781. {
  40782. front: {
  40783. height: math.unit(5, "feet"),
  40784. weight: math.unit(105, "lb"),
  40785. name: "Front",
  40786. image: {
  40787. source: "./media/characters/maxine/front.svg",
  40788. extra: 1386/1250,
  40789. bottom: 71/1457
  40790. }
  40791. },
  40792. },
  40793. [
  40794. {
  40795. name: "Normal",
  40796. height: math.unit(5, "feet"),
  40797. default: true
  40798. },
  40799. ]
  40800. ))
  40801. characterMakers.push(() => makeCharacter(
  40802. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40803. {
  40804. front: {
  40805. height: math.unit(11 + 7/12, "feet"),
  40806. weight: math.unit(9576, "lb"),
  40807. name: "Front",
  40808. image: {
  40809. source: "./media/characters/scaly/front.svg",
  40810. extra: 888/867,
  40811. bottom: 36/924
  40812. }
  40813. },
  40814. },
  40815. [
  40816. {
  40817. name: "Normal",
  40818. height: math.unit(11 + 7/12, "feet"),
  40819. default: true
  40820. },
  40821. ]
  40822. ))
  40823. characterMakers.push(() => makeCharacter(
  40824. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40825. {
  40826. front: {
  40827. height: math.unit(6 + 3/12, "feet"),
  40828. name: "Front",
  40829. image: {
  40830. source: "./media/characters/saelria/front.svg",
  40831. extra: 1243/1138,
  40832. bottom: 46/1289
  40833. }
  40834. },
  40835. },
  40836. [
  40837. {
  40838. name: "Micro",
  40839. height: math.unit(6, "inches"),
  40840. },
  40841. {
  40842. name: "Normal",
  40843. height: math.unit(6 + 3/12, "feet"),
  40844. default: true
  40845. },
  40846. {
  40847. name: "Macro",
  40848. height: math.unit(25, "feet")
  40849. },
  40850. ]
  40851. ))
  40852. characterMakers.push(() => makeCharacter(
  40853. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40854. {
  40855. front: {
  40856. height: math.unit(80, "meters"),
  40857. weight: math.unit(7000, "tonnes"),
  40858. name: "Front",
  40859. image: {
  40860. source: "./media/characters/tef/front.svg",
  40861. extra: 2036/1991,
  40862. bottom: 54/2090
  40863. }
  40864. },
  40865. back: {
  40866. height: math.unit(80, "meters"),
  40867. weight: math.unit(7000, "tonnes"),
  40868. name: "Back",
  40869. image: {
  40870. source: "./media/characters/tef/back.svg",
  40871. extra: 2036/1991,
  40872. bottom: 54/2090
  40873. }
  40874. },
  40875. },
  40876. [
  40877. {
  40878. name: "Macro",
  40879. height: math.unit(80, "meters"),
  40880. default: true
  40881. },
  40882. ]
  40883. ))
  40884. characterMakers.push(() => makeCharacter(
  40885. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40886. {
  40887. front: {
  40888. height: math.unit(13, "feet"),
  40889. weight: math.unit(6, "tons"),
  40890. name: "Front",
  40891. image: {
  40892. source: "./media/characters/rover/front.svg",
  40893. extra: 1233/1156,
  40894. bottom: 50/1283
  40895. }
  40896. },
  40897. back: {
  40898. height: math.unit(13, "feet"),
  40899. weight: math.unit(6, "tons"),
  40900. name: "Back",
  40901. image: {
  40902. source: "./media/characters/rover/back.svg",
  40903. extra: 1327/1258,
  40904. bottom: 39/1366
  40905. }
  40906. },
  40907. },
  40908. [
  40909. {
  40910. name: "Normal",
  40911. height: math.unit(13, "feet"),
  40912. default: true
  40913. },
  40914. {
  40915. name: "Macro",
  40916. height: math.unit(1300, "feet")
  40917. },
  40918. {
  40919. name: "Megamacro",
  40920. height: math.unit(1300, "miles")
  40921. },
  40922. {
  40923. name: "Gigamacro",
  40924. height: math.unit(1300000, "miles")
  40925. },
  40926. ]
  40927. ))
  40928. characterMakers.push(() => makeCharacter(
  40929. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40930. {
  40931. front: {
  40932. height: math.unit(6, "feet"),
  40933. weight: math.unit(150, "lb"),
  40934. name: "Front",
  40935. image: {
  40936. source: "./media/characters/ariz/front.svg",
  40937. extra: 1401/1346,
  40938. bottom: 5/1406
  40939. }
  40940. },
  40941. },
  40942. [
  40943. {
  40944. name: "Normal",
  40945. height: math.unit(10, "feet"),
  40946. default: true
  40947. },
  40948. ]
  40949. ))
  40950. characterMakers.push(() => makeCharacter(
  40951. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40952. {
  40953. front: {
  40954. height: math.unit(6, "feet"),
  40955. weight: math.unit(140, "lb"),
  40956. name: "Front",
  40957. image: {
  40958. source: "./media/characters/sigrun/front.svg",
  40959. extra: 1418/1359,
  40960. bottom: 27/1445
  40961. }
  40962. },
  40963. },
  40964. [
  40965. {
  40966. name: "Macro",
  40967. height: math.unit(35, "feet"),
  40968. default: true
  40969. },
  40970. ]
  40971. ))
  40972. characterMakers.push(() => makeCharacter(
  40973. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40974. {
  40975. front: {
  40976. height: math.unit(6, "feet"),
  40977. weight: math.unit(150, "lb"),
  40978. name: "Front",
  40979. image: {
  40980. source: "./media/characters/numin/front.svg",
  40981. extra: 1433/1388,
  40982. bottom: 12/1445
  40983. }
  40984. },
  40985. },
  40986. [
  40987. {
  40988. name: "Macro",
  40989. height: math.unit(21.5, "km"),
  40990. default: true
  40991. },
  40992. ]
  40993. ))
  40994. characterMakers.push(() => makeCharacter(
  40995. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40996. {
  40997. front: {
  40998. height: math.unit(6, "feet"),
  40999. weight: math.unit(463, "lb"),
  41000. name: "Front",
  41001. image: {
  41002. source: "./media/characters/melwa/front.svg",
  41003. extra: 1307/1248,
  41004. bottom: 93/1400
  41005. }
  41006. },
  41007. },
  41008. [
  41009. {
  41010. name: "Macro",
  41011. height: math.unit(50, "meters"),
  41012. default: true
  41013. },
  41014. ]
  41015. ))
  41016. characterMakers.push(() => makeCharacter(
  41017. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41018. {
  41019. front: {
  41020. height: math.unit(325, "feet"),
  41021. name: "Front",
  41022. image: {
  41023. source: "./media/characters/zorkaiju/front.svg",
  41024. extra: 1955/1814,
  41025. bottom: 40/1995
  41026. }
  41027. },
  41028. frontExtended: {
  41029. height: math.unit(325, "feet"),
  41030. name: "Front (Extended)",
  41031. image: {
  41032. source: "./media/characters/zorkaiju/front-extended.svg",
  41033. extra: 1955/1814,
  41034. bottom: 40/1995
  41035. }
  41036. },
  41037. side: {
  41038. height: math.unit(325, "feet"),
  41039. name: "Side",
  41040. image: {
  41041. source: "./media/characters/zorkaiju/side.svg",
  41042. extra: 1495/1396,
  41043. bottom: 17/1512
  41044. }
  41045. },
  41046. sideExtended: {
  41047. height: math.unit(325, "feet"),
  41048. name: "Side (Extended)",
  41049. image: {
  41050. source: "./media/characters/zorkaiju/side-extended.svg",
  41051. extra: 1495/1396,
  41052. bottom: 17/1512
  41053. }
  41054. },
  41055. back: {
  41056. height: math.unit(325, "feet"),
  41057. name: "Back",
  41058. image: {
  41059. source: "./media/characters/zorkaiju/back.svg",
  41060. extra: 1959/1821,
  41061. bottom: 31/1990
  41062. }
  41063. },
  41064. backExtended: {
  41065. height: math.unit(325, "feet"),
  41066. name: "Back (Extended)",
  41067. image: {
  41068. source: "./media/characters/zorkaiju/back-extended.svg",
  41069. extra: 1959/1821,
  41070. bottom: 31/1990
  41071. }
  41072. },
  41073. hand: {
  41074. height: math.unit(58.4, "feet"),
  41075. name: "Hand",
  41076. image: {
  41077. source: "./media/characters/zorkaiju/hand.svg"
  41078. }
  41079. },
  41080. handExtended: {
  41081. height: math.unit(61.4, "feet"),
  41082. name: "Hand (Extended)",
  41083. image: {
  41084. source: "./media/characters/zorkaiju/hand-extended.svg"
  41085. }
  41086. },
  41087. foot: {
  41088. height: math.unit(95, "feet"),
  41089. name: "Foot",
  41090. image: {
  41091. source: "./media/characters/zorkaiju/foot.svg"
  41092. }
  41093. },
  41094. leftArm: {
  41095. height: math.unit(59, "feet"),
  41096. name: "Left Arm",
  41097. image: {
  41098. source: "./media/characters/zorkaiju/left-arm.svg"
  41099. }
  41100. },
  41101. rightArm: {
  41102. height: math.unit(59, "feet"),
  41103. name: "Right Arm",
  41104. image: {
  41105. source: "./media/characters/zorkaiju/right-arm.svg"
  41106. }
  41107. },
  41108. tail: {
  41109. height: math.unit(104, "feet"),
  41110. name: "Tail",
  41111. image: {
  41112. source: "./media/characters/zorkaiju/tail.svg"
  41113. }
  41114. },
  41115. tailExtended: {
  41116. height: math.unit(104, "feet"),
  41117. name: "Tail (Extended)",
  41118. image: {
  41119. source: "./media/characters/zorkaiju/tail-extended.svg"
  41120. }
  41121. },
  41122. tailBottom: {
  41123. height: math.unit(104, "feet"),
  41124. name: "Tail Bottom",
  41125. image: {
  41126. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41127. }
  41128. },
  41129. crystal: {
  41130. height: math.unit(27.54, "feet"),
  41131. name: "Crystal",
  41132. image: {
  41133. source: "./media/characters/zorkaiju/crystal.svg"
  41134. }
  41135. },
  41136. },
  41137. [
  41138. {
  41139. name: "Kaiju",
  41140. height: math.unit(325, "feet"),
  41141. default: true
  41142. },
  41143. ]
  41144. ))
  41145. characterMakers.push(() => makeCharacter(
  41146. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41147. {
  41148. front: {
  41149. height: math.unit(6 + 1/12, "feet"),
  41150. weight: math.unit(115, "lb"),
  41151. name: "Front",
  41152. image: {
  41153. source: "./media/characters/bailey-belfry/front.svg",
  41154. extra: 1240/1121,
  41155. bottom: 101/1341
  41156. }
  41157. },
  41158. },
  41159. [
  41160. {
  41161. name: "Normal",
  41162. height: math.unit(6 + 1/12, "feet"),
  41163. default: true
  41164. },
  41165. ]
  41166. ))
  41167. characterMakers.push(() => makeCharacter(
  41168. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41169. {
  41170. side: {
  41171. height: math.unit(4, "meters"),
  41172. weight: math.unit(250, "kg"),
  41173. name: "Side",
  41174. image: {
  41175. source: "./media/characters/blacky/side.svg",
  41176. extra: 1027/919,
  41177. bottom: 43/1070
  41178. }
  41179. },
  41180. maw: {
  41181. height: math.unit(1, "meters"),
  41182. name: "Maw",
  41183. image: {
  41184. source: "./media/characters/blacky/maw.svg"
  41185. }
  41186. },
  41187. paw: {
  41188. height: math.unit(1, "meters"),
  41189. name: "Paw",
  41190. image: {
  41191. source: "./media/characters/blacky/paw.svg"
  41192. }
  41193. },
  41194. },
  41195. [
  41196. {
  41197. name: "Normal",
  41198. height: math.unit(4, "meters"),
  41199. default: true
  41200. },
  41201. ]
  41202. ))
  41203. characterMakers.push(() => makeCharacter(
  41204. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41205. {
  41206. front: {
  41207. height: math.unit(170, "cm"),
  41208. weight: math.unit(66, "kg"),
  41209. name: "Front",
  41210. image: {
  41211. source: "./media/characters/thux-ei/front.svg",
  41212. extra: 1109/1011,
  41213. bottom: 8/1117
  41214. }
  41215. },
  41216. },
  41217. [
  41218. {
  41219. name: "Normal",
  41220. height: math.unit(170, "cm"),
  41221. default: true
  41222. },
  41223. ]
  41224. ))
  41225. characterMakers.push(() => makeCharacter(
  41226. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41227. {
  41228. front: {
  41229. height: math.unit(5, "feet"),
  41230. weight: math.unit(120, "lb"),
  41231. name: "Front",
  41232. image: {
  41233. source: "./media/characters/roxanne-voltaire/front.svg",
  41234. extra: 1901/1779,
  41235. bottom: 53/1954
  41236. }
  41237. },
  41238. },
  41239. [
  41240. {
  41241. name: "Normal",
  41242. height: math.unit(5, "feet"),
  41243. default: true
  41244. },
  41245. {
  41246. name: "Giant",
  41247. height: math.unit(50, "feet")
  41248. },
  41249. {
  41250. name: "Titan",
  41251. height: math.unit(500, "feet")
  41252. },
  41253. {
  41254. name: "Macro",
  41255. height: math.unit(5000, "feet")
  41256. },
  41257. {
  41258. name: "Megamacro",
  41259. height: math.unit(50000, "feet")
  41260. },
  41261. {
  41262. name: "Gigamacro",
  41263. height: math.unit(500000, "feet")
  41264. },
  41265. {
  41266. name: "Teramacro",
  41267. height: math.unit(5e6, "feet")
  41268. },
  41269. ]
  41270. ))
  41271. characterMakers.push(() => makeCharacter(
  41272. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41273. {
  41274. front: {
  41275. height: math.unit(6 + 2/12, "feet"),
  41276. name: "Front",
  41277. image: {
  41278. source: "./media/characters/squeaks/front.svg",
  41279. extra: 1823/1768,
  41280. bottom: 138/1961
  41281. }
  41282. },
  41283. },
  41284. [
  41285. {
  41286. name: "Micro",
  41287. height: math.unit(0.5, "inches")
  41288. },
  41289. {
  41290. name: "Normal",
  41291. height: math.unit(6 + 2/12, "feet"),
  41292. default: true
  41293. },
  41294. {
  41295. name: "Macro",
  41296. height: math.unit(600, "feet")
  41297. },
  41298. ]
  41299. ))
  41300. characterMakers.push(() => makeCharacter(
  41301. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41302. {
  41303. front: {
  41304. height: math.unit(1.72, "meters"),
  41305. name: "Front",
  41306. image: {
  41307. source: "./media/characters/archinger/front.svg",
  41308. extra: 1861/1675,
  41309. bottom: 125/1986
  41310. }
  41311. },
  41312. back: {
  41313. height: math.unit(1.72, "meters"),
  41314. name: "Back",
  41315. image: {
  41316. source: "./media/characters/archinger/back.svg",
  41317. extra: 1844/1701,
  41318. bottom: 104/1948
  41319. }
  41320. },
  41321. cock: {
  41322. height: math.unit(0.59, "feet"),
  41323. name: "Cock",
  41324. image: {
  41325. source: "./media/characters/archinger/cock.svg"
  41326. }
  41327. },
  41328. },
  41329. [
  41330. {
  41331. name: "Normal",
  41332. height: math.unit(1.72, "meters"),
  41333. default: true
  41334. },
  41335. {
  41336. name: "Macro",
  41337. height: math.unit(84, "meters")
  41338. },
  41339. {
  41340. name: "Macro+",
  41341. height: math.unit(112, "meters")
  41342. },
  41343. {
  41344. name: "Macro++",
  41345. height: math.unit(960, "meters")
  41346. },
  41347. {
  41348. name: "Macro+++",
  41349. height: math.unit(4, "km")
  41350. },
  41351. {
  41352. name: "Macro++++",
  41353. height: math.unit(48, "km")
  41354. },
  41355. {
  41356. name: "Macro+++++",
  41357. height: math.unit(4500, "km")
  41358. },
  41359. ]
  41360. ))
  41361. characterMakers.push(() => makeCharacter(
  41362. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41363. {
  41364. front: {
  41365. height: math.unit(5 + 5/12, "feet"),
  41366. name: "Front",
  41367. image: {
  41368. source: "./media/characters/alsnapz/front.svg",
  41369. extra: 1157/1065,
  41370. bottom: 42/1199
  41371. }
  41372. },
  41373. },
  41374. [
  41375. {
  41376. name: "Normal",
  41377. height: math.unit(5 + 5/12, "feet"),
  41378. default: true
  41379. },
  41380. ]
  41381. ))
  41382. characterMakers.push(() => makeCharacter(
  41383. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41384. {
  41385. side: {
  41386. height: math.unit(3.2, "earths"),
  41387. name: "Side",
  41388. image: {
  41389. source: "./media/characters/mag/side.svg",
  41390. extra: 1331/1008,
  41391. bottom: 52/1383
  41392. }
  41393. },
  41394. wing: {
  41395. height: math.unit(1.94, "earths"),
  41396. name: "Wing",
  41397. image: {
  41398. source: "./media/characters/mag/wing.svg"
  41399. }
  41400. },
  41401. dick: {
  41402. height: math.unit(1.8, "earths"),
  41403. name: "Dick",
  41404. image: {
  41405. source: "./media/characters/mag/dick.svg"
  41406. }
  41407. },
  41408. ass: {
  41409. height: math.unit(1.33, "earths"),
  41410. name: "Ass",
  41411. image: {
  41412. source: "./media/characters/mag/ass.svg"
  41413. }
  41414. },
  41415. head: {
  41416. height: math.unit(1.1, "earths"),
  41417. name: "Head",
  41418. image: {
  41419. source: "./media/characters/mag/head.svg"
  41420. }
  41421. },
  41422. maw: {
  41423. height: math.unit(1.62, "earths"),
  41424. name: "Maw",
  41425. image: {
  41426. source: "./media/characters/mag/maw.svg"
  41427. }
  41428. },
  41429. },
  41430. [
  41431. {
  41432. name: "Small",
  41433. height: math.unit(162, "feet")
  41434. },
  41435. {
  41436. name: "Normal",
  41437. height: math.unit(3.2, "earths"),
  41438. default: true
  41439. },
  41440. ]
  41441. ))
  41442. characterMakers.push(() => makeCharacter(
  41443. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41444. {
  41445. front: {
  41446. height: math.unit(512, "feet"),
  41447. weight: math.unit(63509, "tonnes"),
  41448. name: "Front",
  41449. image: {
  41450. source: "./media/characters/vorrel-harroc/front.svg",
  41451. extra: 1075/1063,
  41452. bottom: 62/1137
  41453. }
  41454. },
  41455. },
  41456. [
  41457. {
  41458. name: "Normal",
  41459. height: math.unit(10, "feet")
  41460. },
  41461. {
  41462. name: "Macro",
  41463. height: math.unit(512, "feet"),
  41464. default: true
  41465. },
  41466. {
  41467. name: "Megamacro",
  41468. height: math.unit(256, "miles")
  41469. },
  41470. {
  41471. name: "Gigamacro",
  41472. height: math.unit(4096, "miles")
  41473. },
  41474. ]
  41475. ))
  41476. characterMakers.push(() => makeCharacter(
  41477. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41478. {
  41479. side: {
  41480. height: math.unit(50, "feet"),
  41481. name: "Side",
  41482. image: {
  41483. source: "./media/characters/froimar/side.svg",
  41484. extra: 855/638,
  41485. bottom: 99/954
  41486. }
  41487. },
  41488. },
  41489. [
  41490. {
  41491. name: "Macro",
  41492. height: math.unit(50, "feet"),
  41493. default: true
  41494. },
  41495. ]
  41496. ))
  41497. characterMakers.push(() => makeCharacter(
  41498. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41499. {
  41500. front: {
  41501. height: math.unit(210, "miles"),
  41502. name: "Front",
  41503. image: {
  41504. source: "./media/characters/timothy/front.svg",
  41505. extra: 1007/943,
  41506. bottom: 62/1069
  41507. }
  41508. },
  41509. frontSkirt: {
  41510. height: math.unit(210, "miles"),
  41511. name: "Front (Skirt)",
  41512. image: {
  41513. source: "./media/characters/timothy/front-skirt.svg",
  41514. extra: 1007/943,
  41515. bottom: 62/1069
  41516. }
  41517. },
  41518. frontCoat: {
  41519. height: math.unit(210, "miles"),
  41520. name: "Front (Coat)",
  41521. image: {
  41522. source: "./media/characters/timothy/front-coat.svg",
  41523. extra: 1007/943,
  41524. bottom: 62/1069
  41525. }
  41526. },
  41527. },
  41528. [
  41529. {
  41530. name: "Macro",
  41531. height: math.unit(210, "miles"),
  41532. default: true
  41533. },
  41534. {
  41535. name: "Megamacro",
  41536. height: math.unit(210000, "miles")
  41537. },
  41538. ]
  41539. ))
  41540. characterMakers.push(() => makeCharacter(
  41541. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41542. {
  41543. front: {
  41544. height: math.unit(188, "feet"),
  41545. name: "Front",
  41546. image: {
  41547. source: "./media/characters/pyotr/front.svg",
  41548. extra: 1912/1826,
  41549. bottom: 18/1930
  41550. }
  41551. },
  41552. },
  41553. [
  41554. {
  41555. name: "Macro",
  41556. height: math.unit(188, "feet"),
  41557. default: true
  41558. },
  41559. {
  41560. name: "Megamacro",
  41561. height: math.unit(8, "miles")
  41562. },
  41563. ]
  41564. ))
  41565. characterMakers.push(() => makeCharacter(
  41566. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41567. {
  41568. side: {
  41569. height: math.unit(10, "feet"),
  41570. weight: math.unit(4500, "lb"),
  41571. name: "Side",
  41572. image: {
  41573. source: "./media/characters/ackart/side.svg",
  41574. extra: 1776/1668,
  41575. bottom: 116/1892
  41576. }
  41577. },
  41578. },
  41579. [
  41580. {
  41581. name: "Normal",
  41582. height: math.unit(10, "feet"),
  41583. default: true
  41584. },
  41585. ]
  41586. ))
  41587. characterMakers.push(() => makeCharacter(
  41588. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41589. {
  41590. side: {
  41591. height: math.unit(21, "feet"),
  41592. name: "Side",
  41593. image: {
  41594. source: "./media/characters/nolow/side.svg",
  41595. extra: 1484/1434,
  41596. bottom: 85/1569
  41597. }
  41598. },
  41599. sideErect: {
  41600. height: math.unit(21, "feet"),
  41601. name: "Side-erect",
  41602. image: {
  41603. source: "./media/characters/nolow/side-erect.svg",
  41604. extra: 1484/1434,
  41605. bottom: 85/1569
  41606. }
  41607. },
  41608. },
  41609. [
  41610. {
  41611. name: "Regular",
  41612. height: math.unit(12, "feet")
  41613. },
  41614. {
  41615. name: "Big Chee",
  41616. height: math.unit(21, "feet"),
  41617. default: true
  41618. },
  41619. ]
  41620. ))
  41621. characterMakers.push(() => makeCharacter(
  41622. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41623. {
  41624. front: {
  41625. height: math.unit(7, "feet"),
  41626. weight: math.unit(250, "lb"),
  41627. name: "Front",
  41628. image: {
  41629. source: "./media/characters/nines/front.svg",
  41630. extra: 1741/1607,
  41631. bottom: 41/1782
  41632. }
  41633. },
  41634. side: {
  41635. height: math.unit(7, "feet"),
  41636. weight: math.unit(250, "lb"),
  41637. name: "Side",
  41638. image: {
  41639. source: "./media/characters/nines/side.svg",
  41640. extra: 1854/1735,
  41641. bottom: 93/1947
  41642. }
  41643. },
  41644. back: {
  41645. height: math.unit(7, "feet"),
  41646. weight: math.unit(250, "lb"),
  41647. name: "Back",
  41648. image: {
  41649. source: "./media/characters/nines/back.svg",
  41650. extra: 1748/1615,
  41651. bottom: 20/1768
  41652. }
  41653. },
  41654. },
  41655. [
  41656. {
  41657. name: "Megamacro",
  41658. height: math.unit(99, "km"),
  41659. default: true
  41660. },
  41661. ]
  41662. ))
  41663. characterMakers.push(() => makeCharacter(
  41664. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41665. {
  41666. front: {
  41667. height: math.unit(5 + 10/12, "feet"),
  41668. weight: math.unit(210, "lb"),
  41669. name: "Front",
  41670. image: {
  41671. source: "./media/characters/zenith/front.svg",
  41672. extra: 1531/1452,
  41673. bottom: 198/1729
  41674. }
  41675. },
  41676. back: {
  41677. height: math.unit(5 + 10/12, "feet"),
  41678. weight: math.unit(210, "lb"),
  41679. name: "Back",
  41680. image: {
  41681. source: "./media/characters/zenith/back.svg",
  41682. extra: 1571/1487,
  41683. bottom: 75/1646
  41684. }
  41685. },
  41686. },
  41687. [
  41688. {
  41689. name: "Normal",
  41690. height: math.unit(5 + 10/12, "feet"),
  41691. default: true
  41692. }
  41693. ]
  41694. ))
  41695. characterMakers.push(() => makeCharacter(
  41696. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41697. {
  41698. front: {
  41699. height: math.unit(4, "feet"),
  41700. weight: math.unit(60, "lb"),
  41701. name: "Front",
  41702. image: {
  41703. source: "./media/characters/jasper/front.svg",
  41704. extra: 1450/1379,
  41705. bottom: 19/1469
  41706. }
  41707. },
  41708. },
  41709. [
  41710. {
  41711. name: "Normal",
  41712. height: math.unit(4, "feet"),
  41713. default: true
  41714. },
  41715. ]
  41716. ))
  41717. characterMakers.push(() => makeCharacter(
  41718. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41719. {
  41720. front: {
  41721. height: math.unit(6 + 5/12, "feet"),
  41722. weight: math.unit(290, "lb"),
  41723. name: "Front",
  41724. image: {
  41725. source: "./media/characters/tiberius-thyben/front.svg",
  41726. extra: 757/739,
  41727. bottom: 39/796
  41728. }
  41729. },
  41730. },
  41731. [
  41732. {
  41733. name: "Micro",
  41734. height: math.unit(1.5, "inches")
  41735. },
  41736. {
  41737. name: "Normal",
  41738. height: math.unit(6 + 5/12, "feet"),
  41739. default: true
  41740. },
  41741. {
  41742. name: "Macro",
  41743. height: math.unit(300, "feet")
  41744. },
  41745. ]
  41746. ))
  41747. characterMakers.push(() => makeCharacter(
  41748. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41749. {
  41750. front: {
  41751. height: math.unit(5 + 6/12, "feet"),
  41752. weight: math.unit(60, "kg"),
  41753. name: "Front",
  41754. image: {
  41755. source: "./media/characters/sabre/front.svg",
  41756. extra: 738/671,
  41757. bottom: 27/765
  41758. }
  41759. },
  41760. },
  41761. [
  41762. {
  41763. name: "Teeny",
  41764. height: math.unit(2, "inches")
  41765. },
  41766. {
  41767. name: "Smol",
  41768. height: math.unit(8, "inches")
  41769. },
  41770. {
  41771. name: "Normal",
  41772. height: math.unit(5 + 6/12, "feet"),
  41773. default: true
  41774. },
  41775. {
  41776. name: "Mini-Macro",
  41777. height: math.unit(15, "feet")
  41778. },
  41779. {
  41780. name: "Macro",
  41781. height: math.unit(50, "feet")
  41782. },
  41783. ]
  41784. ))
  41785. characterMakers.push(() => makeCharacter(
  41786. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41787. {
  41788. front: {
  41789. height: math.unit(6 + 4/12, "feet"),
  41790. weight: math.unit(170, "lb"),
  41791. name: "Front",
  41792. image: {
  41793. source: "./media/characters/charlie/front.svg",
  41794. extra: 1348/1228,
  41795. bottom: 15/1363
  41796. }
  41797. },
  41798. },
  41799. [
  41800. {
  41801. name: "Macro",
  41802. height: math.unit(1700, "meters"),
  41803. default: true
  41804. },
  41805. {
  41806. name: "MegaMacro",
  41807. height: math.unit(20400, "meters")
  41808. },
  41809. ]
  41810. ))
  41811. characterMakers.push(() => makeCharacter(
  41812. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41813. {
  41814. front: {
  41815. height: math.unit(6 + 3/12, "feet"),
  41816. weight: math.unit(185, "lb"),
  41817. name: "Front",
  41818. image: {
  41819. source: "./media/characters/susan-grant/front.svg",
  41820. extra: 1351/1327,
  41821. bottom: 26/1377
  41822. }
  41823. },
  41824. },
  41825. [
  41826. {
  41827. name: "Normal",
  41828. height: math.unit(6 + 3/12, "feet"),
  41829. default: true
  41830. },
  41831. {
  41832. name: "Macro",
  41833. height: math.unit(225, "feet")
  41834. },
  41835. {
  41836. name: "Macro+",
  41837. height: math.unit(900, "feet")
  41838. },
  41839. {
  41840. name: "MegaMacro",
  41841. height: math.unit(14400, "feet")
  41842. },
  41843. ]
  41844. ))
  41845. characterMakers.push(() => makeCharacter(
  41846. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41847. {
  41848. front: {
  41849. height: math.unit(5 + 4/12, "feet"),
  41850. weight: math.unit(110, "lb"),
  41851. name: "Front",
  41852. image: {
  41853. source: "./media/characters/axel-isanov/front.svg",
  41854. extra: 1096/1065,
  41855. bottom: 13/1109
  41856. }
  41857. },
  41858. },
  41859. [
  41860. {
  41861. name: "Normal",
  41862. height: math.unit(5 + 4/12, "feet"),
  41863. default: true
  41864. },
  41865. ]
  41866. ))
  41867. characterMakers.push(() => makeCharacter(
  41868. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41869. {
  41870. front: {
  41871. height: math.unit(9, "feet"),
  41872. weight: math.unit(467, "lb"),
  41873. name: "Front",
  41874. image: {
  41875. source: "./media/characters/necahual/front.svg",
  41876. extra: 920/873,
  41877. bottom: 26/946
  41878. }
  41879. },
  41880. back: {
  41881. height: math.unit(9, "feet"),
  41882. weight: math.unit(467, "lb"),
  41883. name: "Back",
  41884. image: {
  41885. source: "./media/characters/necahual/back.svg",
  41886. extra: 930/884,
  41887. bottom: 16/946
  41888. }
  41889. },
  41890. frontUnderwear: {
  41891. height: math.unit(9, "feet"),
  41892. weight: math.unit(467, "lb"),
  41893. name: "Front (Underwear)",
  41894. image: {
  41895. source: "./media/characters/necahual/front-underwear.svg",
  41896. extra: 920/873,
  41897. bottom: 26/946
  41898. }
  41899. },
  41900. frontDressed: {
  41901. height: math.unit(9, "feet"),
  41902. weight: math.unit(467, "lb"),
  41903. name: "Front (Dressed)",
  41904. image: {
  41905. source: "./media/characters/necahual/front-dressed.svg",
  41906. extra: 920/873,
  41907. bottom: 26/946
  41908. }
  41909. },
  41910. },
  41911. [
  41912. {
  41913. name: "Comprsesed",
  41914. height: math.unit(9, "feet")
  41915. },
  41916. {
  41917. name: "Natural",
  41918. height: math.unit(15, "feet"),
  41919. default: true
  41920. },
  41921. {
  41922. name: "Boosted",
  41923. height: math.unit(50, "feet")
  41924. },
  41925. {
  41926. name: "Boosted+",
  41927. height: math.unit(150, "feet")
  41928. },
  41929. {
  41930. name: "Max",
  41931. height: math.unit(500, "feet")
  41932. },
  41933. ]
  41934. ))
  41935. characterMakers.push(() => makeCharacter(
  41936. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41937. {
  41938. front: {
  41939. height: math.unit(22 + 1/12, "feet"),
  41940. weight: math.unit(3200, "lb"),
  41941. name: "Front",
  41942. image: {
  41943. source: "./media/characters/theo-acacia/front.svg",
  41944. extra: 1796/1741,
  41945. bottom: 83/1879
  41946. }
  41947. },
  41948. frontUnderwear: {
  41949. height: math.unit(22 + 1/12, "feet"),
  41950. weight: math.unit(3200, "lb"),
  41951. name: "Front (Underwear)",
  41952. image: {
  41953. source: "./media/characters/theo-acacia/front-underwear.svg",
  41954. extra: 1796/1741,
  41955. bottom: 83/1879
  41956. }
  41957. },
  41958. frontNude: {
  41959. height: math.unit(22 + 1/12, "feet"),
  41960. weight: math.unit(3200, "lb"),
  41961. name: "Front (Nude)",
  41962. image: {
  41963. source: "./media/characters/theo-acacia/front-nude.svg",
  41964. extra: 1796/1741,
  41965. bottom: 83/1879
  41966. }
  41967. },
  41968. },
  41969. [
  41970. {
  41971. name: "Normal",
  41972. height: math.unit(22 + 1/12, "feet"),
  41973. default: true
  41974. },
  41975. ]
  41976. ))
  41977. characterMakers.push(() => makeCharacter(
  41978. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41979. {
  41980. front: {
  41981. height: math.unit(20, "feet"),
  41982. name: "Front",
  41983. image: {
  41984. source: "./media/characters/astra/front.svg",
  41985. extra: 1850/1714,
  41986. bottom: 106/1956
  41987. }
  41988. },
  41989. frontUndressed: {
  41990. height: math.unit(20, "feet"),
  41991. name: "Front (Undressed)",
  41992. image: {
  41993. source: "./media/characters/astra/front-undressed.svg",
  41994. extra: 1926/1749,
  41995. bottom: 0/1926
  41996. }
  41997. },
  41998. hand: {
  41999. height: math.unit(1.53, "feet"),
  42000. name: "Hand",
  42001. image: {
  42002. source: "./media/characters/astra/hand.svg"
  42003. }
  42004. },
  42005. paw: {
  42006. height: math.unit(1.53, "feet"),
  42007. name: "Paw",
  42008. image: {
  42009. source: "./media/characters/astra/paw.svg"
  42010. }
  42011. },
  42012. },
  42013. [
  42014. {
  42015. name: "Smallest",
  42016. height: math.unit(20, "feet")
  42017. },
  42018. {
  42019. name: "Normal",
  42020. height: math.unit(1e9, "miles"),
  42021. default: true
  42022. },
  42023. {
  42024. name: "Larger",
  42025. height: math.unit(5, "multiverses")
  42026. },
  42027. {
  42028. name: "Largest",
  42029. height: math.unit(1e9, "multiverses")
  42030. },
  42031. ]
  42032. ))
  42033. characterMakers.push(() => makeCharacter(
  42034. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42035. {
  42036. front: {
  42037. height: math.unit(8, "feet"),
  42038. name: "Front",
  42039. image: {
  42040. source: "./media/characters/breanna/front.svg",
  42041. extra: 1912/1632,
  42042. bottom: 33/1945
  42043. }
  42044. },
  42045. },
  42046. [
  42047. {
  42048. name: "Smallest",
  42049. height: math.unit(8, "feet")
  42050. },
  42051. {
  42052. name: "Normal",
  42053. height: math.unit(1, "mile"),
  42054. default: true
  42055. },
  42056. {
  42057. name: "Maximum",
  42058. height: math.unit(1500000000000, "lightyears")
  42059. },
  42060. ]
  42061. ))
  42062. characterMakers.push(() => makeCharacter(
  42063. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42064. {
  42065. front: {
  42066. height: math.unit(5 + 11/12, "feet"),
  42067. weight: math.unit(155, "lb"),
  42068. name: "Front",
  42069. image: {
  42070. source: "./media/characters/cai/front.svg",
  42071. extra: 1823/1702,
  42072. bottom: 32/1855
  42073. }
  42074. },
  42075. back: {
  42076. height: math.unit(5 + 11/12, "feet"),
  42077. weight: math.unit(155, "lb"),
  42078. name: "Back",
  42079. image: {
  42080. source: "./media/characters/cai/back.svg",
  42081. extra: 1809/1708,
  42082. bottom: 31/1840
  42083. }
  42084. },
  42085. },
  42086. [
  42087. {
  42088. name: "Normal",
  42089. height: math.unit(5 + 11/12, "feet"),
  42090. default: true
  42091. },
  42092. {
  42093. name: "Big",
  42094. height: math.unit(15, "feet")
  42095. },
  42096. {
  42097. name: "Macro",
  42098. height: math.unit(200, "feet")
  42099. },
  42100. ]
  42101. ))
  42102. characterMakers.push(() => makeCharacter(
  42103. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42104. {
  42105. front: {
  42106. height: math.unit(5 + 6/12, "feet"),
  42107. weight: math.unit(160, "lb"),
  42108. name: "Front",
  42109. image: {
  42110. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42111. extra: 1227/1174,
  42112. bottom: 37/1264
  42113. }
  42114. },
  42115. },
  42116. [
  42117. {
  42118. name: "Macro",
  42119. height: math.unit(444, "meters"),
  42120. default: true
  42121. },
  42122. ]
  42123. ))
  42124. characterMakers.push(() => makeCharacter(
  42125. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42126. {
  42127. front: {
  42128. height: math.unit(18 + 7/12, "feet"),
  42129. name: "Front",
  42130. image: {
  42131. source: "./media/characters/rex/front.svg",
  42132. extra: 1941/1807,
  42133. bottom: 66/2007
  42134. }
  42135. },
  42136. back: {
  42137. height: math.unit(18 + 7/12, "feet"),
  42138. name: "Back",
  42139. image: {
  42140. source: "./media/characters/rex/back.svg",
  42141. extra: 1937/1822,
  42142. bottom: 42/1979
  42143. }
  42144. },
  42145. boot: {
  42146. height: math.unit(3.45, "feet"),
  42147. name: "Boot",
  42148. image: {
  42149. source: "./media/characters/rex/boot.svg"
  42150. }
  42151. },
  42152. paw: {
  42153. height: math.unit(4.17, "feet"),
  42154. name: "Paw",
  42155. image: {
  42156. source: "./media/characters/rex/paw.svg"
  42157. }
  42158. },
  42159. head: {
  42160. height: math.unit(6.728, "feet"),
  42161. name: "Head",
  42162. image: {
  42163. source: "./media/characters/rex/head.svg"
  42164. }
  42165. },
  42166. },
  42167. [
  42168. {
  42169. name: "Nano",
  42170. height: math.unit(18 + 7/12, "feet")
  42171. },
  42172. {
  42173. name: "Micro",
  42174. height: math.unit(1.5, "megameters")
  42175. },
  42176. {
  42177. name: "Normal",
  42178. height: math.unit(440, "megameters"),
  42179. default: true
  42180. },
  42181. {
  42182. name: "Macro",
  42183. height: math.unit(2.5, "gigameters")
  42184. },
  42185. {
  42186. name: "Gigamacro",
  42187. height: math.unit(2, "galaxies")
  42188. },
  42189. ]
  42190. ))
  42191. characterMakers.push(() => makeCharacter(
  42192. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42193. {
  42194. side: {
  42195. height: math.unit(32, "feet"),
  42196. weight: math.unit(250000, "lb"),
  42197. name: "Side",
  42198. image: {
  42199. source: "./media/characters/silverwing/side.svg",
  42200. extra: 1100/1019,
  42201. bottom: 204/1304
  42202. }
  42203. },
  42204. },
  42205. [
  42206. {
  42207. name: "Normal",
  42208. height: math.unit(32, "feet"),
  42209. default: true
  42210. },
  42211. ]
  42212. ))
  42213. characterMakers.push(() => makeCharacter(
  42214. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42215. {
  42216. front: {
  42217. height: math.unit(6 + 6/12, "feet"),
  42218. weight: math.unit(350, "lb"),
  42219. name: "Front",
  42220. image: {
  42221. source: "./media/characters/tristan-hawthorne/front.svg",
  42222. extra: 1159/1124,
  42223. bottom: 37/1196
  42224. },
  42225. form: "labrador",
  42226. default: true
  42227. },
  42228. skunkFront: {
  42229. height: math.unit(4 + 6/12, "feet"),
  42230. weight: math.unit(120, "lb"),
  42231. name: "Front",
  42232. image: {
  42233. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42234. extra: 1609/1551,
  42235. bottom: 169/1778
  42236. },
  42237. form: "skunk",
  42238. default: true
  42239. },
  42240. },
  42241. [
  42242. {
  42243. name: "Normal",
  42244. height: math.unit(6 + 6/12, "feet"),
  42245. form: "labrador",
  42246. default: true
  42247. },
  42248. {
  42249. name: "Normal",
  42250. height: math.unit(4 + 6/12, "feet"),
  42251. form: "skunk",
  42252. default: true
  42253. },
  42254. ],
  42255. {
  42256. "labrador": {
  42257. name: "Labrador",
  42258. default: true
  42259. },
  42260. "skunk": {
  42261. name: "Skunk"
  42262. }
  42263. }
  42264. ))
  42265. characterMakers.push(() => makeCharacter(
  42266. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42267. {
  42268. front: {
  42269. height: math.unit(5 + 11/12, "feet"),
  42270. weight: math.unit(190, "lb"),
  42271. name: "Front",
  42272. image: {
  42273. source: "./media/characters/mizu/front.svg",
  42274. extra: 1988/1788,
  42275. bottom: 14/2002
  42276. }
  42277. },
  42278. },
  42279. [
  42280. {
  42281. name: "Normal",
  42282. height: math.unit(5 + 11/12, "feet"),
  42283. default: true
  42284. },
  42285. ]
  42286. ))
  42287. characterMakers.push(() => makeCharacter(
  42288. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42289. {
  42290. front: {
  42291. height: math.unit(1.7, "feet"),
  42292. weight: math.unit(50, "lb"),
  42293. name: "Front",
  42294. image: {
  42295. source: "./media/characters/dechroma/front.svg",
  42296. extra: 1095/859,
  42297. bottom: 64/1159
  42298. }
  42299. },
  42300. },
  42301. [
  42302. {
  42303. name: "Normal",
  42304. height: math.unit(1.7, "feet"),
  42305. default: true
  42306. },
  42307. ]
  42308. ))
  42309. characterMakers.push(() => makeCharacter(
  42310. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42311. {
  42312. side: {
  42313. height: math.unit(30, "feet"),
  42314. name: "Side",
  42315. image: {
  42316. source: "./media/characters/veluren-thanazel/side.svg",
  42317. extra: 1611/633,
  42318. bottom: 118/1729
  42319. }
  42320. },
  42321. front: {
  42322. height: math.unit(30, "feet"),
  42323. name: "Front",
  42324. image: {
  42325. source: "./media/characters/veluren-thanazel/front.svg",
  42326. extra: 1486/636,
  42327. bottom: 238/1724
  42328. }
  42329. },
  42330. head: {
  42331. height: math.unit(21.4, "feet"),
  42332. name: "Head",
  42333. image: {
  42334. source: "./media/characters/veluren-thanazel/head.svg"
  42335. }
  42336. },
  42337. genitals: {
  42338. height: math.unit(19.4, "feet"),
  42339. name: "Genitals",
  42340. image: {
  42341. source: "./media/characters/veluren-thanazel/genitals.svg"
  42342. }
  42343. },
  42344. },
  42345. [
  42346. {
  42347. name: "Social",
  42348. height: math.unit(6, "feet")
  42349. },
  42350. {
  42351. name: "Play",
  42352. height: math.unit(12, "feet")
  42353. },
  42354. {
  42355. name: "True",
  42356. height: math.unit(30, "feet"),
  42357. default: true
  42358. },
  42359. ]
  42360. ))
  42361. characterMakers.push(() => makeCharacter(
  42362. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42363. {
  42364. front: {
  42365. height: math.unit(7 + 6/12, "feet"),
  42366. weight: math.unit(500, "kg"),
  42367. name: "Front",
  42368. image: {
  42369. source: "./media/characters/arcturas/front.svg",
  42370. extra: 1700/1500,
  42371. bottom: 145/1845
  42372. }
  42373. },
  42374. },
  42375. [
  42376. {
  42377. name: "Normal",
  42378. height: math.unit(7 + 6/12, "feet"),
  42379. default: true
  42380. },
  42381. ]
  42382. ))
  42383. characterMakers.push(() => makeCharacter(
  42384. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42385. {
  42386. side: {
  42387. height: math.unit(6, "feet"),
  42388. weight: math.unit(2, "tons"),
  42389. name: "Side",
  42390. image: {
  42391. source: "./media/characters/vitaen/side.svg",
  42392. extra: 1157/617,
  42393. bottom: 122/1279
  42394. }
  42395. },
  42396. },
  42397. [
  42398. {
  42399. name: "Normal",
  42400. height: math.unit(6, "feet"),
  42401. default: true
  42402. },
  42403. ]
  42404. ))
  42405. characterMakers.push(() => makeCharacter(
  42406. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42407. {
  42408. front: {
  42409. height: math.unit(19, "feet"),
  42410. name: "Front",
  42411. image: {
  42412. source: "./media/characters/fia-dreamweaver/front.svg",
  42413. extra: 1630/1504,
  42414. bottom: 25/1655
  42415. }
  42416. },
  42417. },
  42418. [
  42419. {
  42420. name: "Normal",
  42421. height: math.unit(19, "feet"),
  42422. default: true
  42423. },
  42424. ]
  42425. ))
  42426. characterMakers.push(() => makeCharacter(
  42427. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42428. {
  42429. front: {
  42430. height: math.unit(5 + 4/12, "feet"),
  42431. name: "Front",
  42432. image: {
  42433. source: "./media/characters/artan/front.svg",
  42434. extra: 1618/1535,
  42435. bottom: 46/1664
  42436. }
  42437. },
  42438. back: {
  42439. height: math.unit(5 + 4/12, "feet"),
  42440. name: "Back",
  42441. image: {
  42442. source: "./media/characters/artan/back.svg",
  42443. extra: 1618/1543,
  42444. bottom: 31/1649
  42445. }
  42446. },
  42447. },
  42448. [
  42449. {
  42450. name: "Normal",
  42451. height: math.unit(5 + 4/12, "feet"),
  42452. default: true
  42453. },
  42454. ]
  42455. ))
  42456. characterMakers.push(() => makeCharacter(
  42457. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42458. {
  42459. side: {
  42460. height: math.unit(182, "cm"),
  42461. weight: math.unit(1000, "lb"),
  42462. name: "Side",
  42463. image: {
  42464. source: "./media/characters/silver-dragon/side.svg",
  42465. extra: 710/287,
  42466. bottom: 88/798
  42467. }
  42468. },
  42469. },
  42470. [
  42471. {
  42472. name: "Normal",
  42473. height: math.unit(182, "cm"),
  42474. default: true
  42475. },
  42476. ]
  42477. ))
  42478. characterMakers.push(() => makeCharacter(
  42479. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42480. {
  42481. side: {
  42482. height: math.unit(6 + 6/12, "feet"),
  42483. weight: math.unit(1.5, "tons"),
  42484. name: "Side",
  42485. image: {
  42486. source: "./media/characters/zephyr/side.svg",
  42487. extra: 1433/586,
  42488. bottom: 109/1542
  42489. }
  42490. },
  42491. },
  42492. [
  42493. {
  42494. name: "Normal",
  42495. height: math.unit(6 + 6/12, "feet"),
  42496. default: true
  42497. },
  42498. ]
  42499. ))
  42500. characterMakers.push(() => makeCharacter(
  42501. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42502. {
  42503. side: {
  42504. height: math.unit(1, "feet"),
  42505. name: "Side",
  42506. image: {
  42507. source: "./media/characters/vixye/side.svg",
  42508. extra: 632/541,
  42509. bottom: 0/632
  42510. }
  42511. },
  42512. },
  42513. [
  42514. {
  42515. name: "Normal",
  42516. height: math.unit(1, "feet"),
  42517. default: true
  42518. },
  42519. {
  42520. name: "True",
  42521. height: math.unit(1e15, "multiverses")
  42522. },
  42523. ]
  42524. ))
  42525. characterMakers.push(() => makeCharacter(
  42526. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42527. {
  42528. front: {
  42529. height: math.unit(8 + 2/12, "feet"),
  42530. weight: math.unit(650, "lb"),
  42531. name: "Front",
  42532. image: {
  42533. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42534. extra: 1174/1137,
  42535. bottom: 82/1256
  42536. }
  42537. },
  42538. back: {
  42539. height: math.unit(8 + 2/12, "feet"),
  42540. weight: math.unit(650, "lb"),
  42541. name: "Back",
  42542. image: {
  42543. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42544. extra: 1204/1157,
  42545. bottom: 46/1250
  42546. }
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Wildform",
  42552. height: math.unit(8 + 2/12, "feet"),
  42553. default: true
  42554. },
  42555. ]
  42556. ))
  42557. characterMakers.push(() => makeCharacter(
  42558. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42559. {
  42560. front: {
  42561. height: math.unit(18, "feet"),
  42562. name: "Front",
  42563. image: {
  42564. source: "./media/characters/cyphin/front.svg",
  42565. extra: 970/886,
  42566. bottom: 42/1012
  42567. }
  42568. },
  42569. back: {
  42570. height: math.unit(18, "feet"),
  42571. name: "Back",
  42572. image: {
  42573. source: "./media/characters/cyphin/back.svg",
  42574. extra: 1009/894,
  42575. bottom: 24/1033
  42576. }
  42577. },
  42578. head: {
  42579. height: math.unit(5.05, "feet"),
  42580. name: "Head",
  42581. image: {
  42582. source: "./media/characters/cyphin/head.svg"
  42583. }
  42584. },
  42585. tailbud: {
  42586. height: math.unit(5, "feet"),
  42587. name: "Tailbud",
  42588. image: {
  42589. source: "./media/characters/cyphin/tailbud.svg"
  42590. }
  42591. },
  42592. },
  42593. [
  42594. ]
  42595. ))
  42596. characterMakers.push(() => makeCharacter(
  42597. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42598. {
  42599. side: {
  42600. height: math.unit(10, "feet"),
  42601. weight: math.unit(6, "tons"),
  42602. name: "Side",
  42603. image: {
  42604. source: "./media/characters/raijin/side.svg",
  42605. extra: 1529/613,
  42606. bottom: 337/1866
  42607. }
  42608. },
  42609. },
  42610. [
  42611. {
  42612. name: "Normal",
  42613. height: math.unit(10, "feet"),
  42614. default: true
  42615. },
  42616. ]
  42617. ))
  42618. characterMakers.push(() => makeCharacter(
  42619. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42620. {
  42621. side: {
  42622. height: math.unit(9, "feet"),
  42623. name: "Side",
  42624. image: {
  42625. source: "./media/characters/nilghais/side.svg",
  42626. extra: 1047/744,
  42627. bottom: 91/1138
  42628. }
  42629. },
  42630. head: {
  42631. height: math.unit(3.14, "feet"),
  42632. name: "Head",
  42633. image: {
  42634. source: "./media/characters/nilghais/head.svg"
  42635. }
  42636. },
  42637. mouth: {
  42638. height: math.unit(4.6, "feet"),
  42639. name: "Mouth",
  42640. image: {
  42641. source: "./media/characters/nilghais/mouth.svg"
  42642. }
  42643. },
  42644. wings: {
  42645. height: math.unit(24, "feet"),
  42646. name: "Wings",
  42647. image: {
  42648. source: "./media/characters/nilghais/wings.svg"
  42649. }
  42650. },
  42651. ass: {
  42652. height: math.unit(6.12, "feet"),
  42653. name: "Ass",
  42654. image: {
  42655. source: "./media/characters/nilghais/ass.svg"
  42656. }
  42657. },
  42658. },
  42659. [
  42660. {
  42661. name: "Normal",
  42662. height: math.unit(9, "feet"),
  42663. default: true
  42664. },
  42665. ]
  42666. ))
  42667. characterMakers.push(() => makeCharacter(
  42668. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42669. {
  42670. regular: {
  42671. height: math.unit(16 + 2/12, "feet"),
  42672. weight: math.unit(2300, "lb"),
  42673. name: "Regular",
  42674. image: {
  42675. source: "./media/characters/zolgar/regular.svg",
  42676. extra: 1246/1004,
  42677. bottom: 124/1370
  42678. }
  42679. },
  42680. boxers: {
  42681. height: math.unit(16 + 2/12, "feet"),
  42682. weight: math.unit(2300, "lb"),
  42683. name: "Boxers",
  42684. image: {
  42685. source: "./media/characters/zolgar/boxers.svg",
  42686. extra: 1246/1004,
  42687. bottom: 124/1370
  42688. }
  42689. },
  42690. armored: {
  42691. height: math.unit(16 + 2/12, "feet"),
  42692. weight: math.unit(2300, "lb"),
  42693. name: "Armored",
  42694. image: {
  42695. source: "./media/characters/zolgar/armored.svg",
  42696. extra: 1246/1004,
  42697. bottom: 124/1370
  42698. }
  42699. },
  42700. goth: {
  42701. height: math.unit(16 + 2/12, "feet"),
  42702. weight: math.unit(2300, "lb"),
  42703. name: "Goth",
  42704. image: {
  42705. source: "./media/characters/zolgar/goth.svg",
  42706. extra: 1246/1004,
  42707. bottom: 124/1370
  42708. }
  42709. },
  42710. },
  42711. [
  42712. {
  42713. name: "Shrunken Down",
  42714. height: math.unit(9 + 2/12, "feet")
  42715. },
  42716. {
  42717. name: "Normal",
  42718. height: math.unit(16 + 2/12, "feet"),
  42719. default: true
  42720. },
  42721. ]
  42722. ))
  42723. characterMakers.push(() => makeCharacter(
  42724. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42725. {
  42726. front: {
  42727. height: math.unit(6, "feet"),
  42728. weight: math.unit(168, "lb"),
  42729. name: "Front",
  42730. image: {
  42731. source: "./media/characters/luca/front.svg",
  42732. extra: 841/667,
  42733. bottom: 102/943
  42734. }
  42735. },
  42736. },
  42737. [
  42738. {
  42739. name: "Normal",
  42740. height: math.unit(6, "feet"),
  42741. default: true
  42742. },
  42743. ]
  42744. ))
  42745. characterMakers.push(() => makeCharacter(
  42746. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42747. {
  42748. side: {
  42749. height: math.unit(7 + 3/12, "feet"),
  42750. weight: math.unit(312, "lb"),
  42751. name: "Side",
  42752. image: {
  42753. source: "./media/characters/zezo/side.svg",
  42754. extra: 1192/1067,
  42755. bottom: 63/1255
  42756. }
  42757. },
  42758. },
  42759. [
  42760. {
  42761. name: "Normal",
  42762. height: math.unit(7 + 3/12, "feet"),
  42763. default: true
  42764. },
  42765. ]
  42766. ))
  42767. characterMakers.push(() => makeCharacter(
  42768. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42769. {
  42770. front: {
  42771. height: math.unit(5 + 5/12, "feet"),
  42772. weight: math.unit(170, "lb"),
  42773. name: "Front",
  42774. image: {
  42775. source: "./media/characters/mayso/front.svg",
  42776. extra: 1215/1108,
  42777. bottom: 16/1231
  42778. }
  42779. },
  42780. },
  42781. [
  42782. {
  42783. name: "Normal",
  42784. height: math.unit(5 + 5/12, "feet"),
  42785. default: true
  42786. },
  42787. ]
  42788. ))
  42789. characterMakers.push(() => makeCharacter(
  42790. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42791. {
  42792. front: {
  42793. height: math.unit(4 + 3/12, "feet"),
  42794. weight: math.unit(80, "lb"),
  42795. name: "Front",
  42796. image: {
  42797. source: "./media/characters/hess/front.svg",
  42798. extra: 1200/1123,
  42799. bottom: 16/1216
  42800. }
  42801. },
  42802. },
  42803. [
  42804. {
  42805. name: "Normal",
  42806. height: math.unit(4 + 3/12, "feet"),
  42807. default: true
  42808. },
  42809. ]
  42810. ))
  42811. characterMakers.push(() => makeCharacter(
  42812. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42813. {
  42814. front: {
  42815. height: math.unit(1.9, "meters"),
  42816. name: "Front",
  42817. image: {
  42818. source: "./media/characters/ashgar/front.svg",
  42819. extra: 1177/1146,
  42820. bottom: 99/1276
  42821. }
  42822. },
  42823. back: {
  42824. height: math.unit(1.9, "meters"),
  42825. name: "Back",
  42826. image: {
  42827. source: "./media/characters/ashgar/back.svg",
  42828. extra: 1201/1183,
  42829. bottom: 53/1254
  42830. }
  42831. },
  42832. feral: {
  42833. height: math.unit(1.4, "meters"),
  42834. name: "Feral",
  42835. image: {
  42836. source: "./media/characters/ashgar/feral.svg",
  42837. extra: 370/345,
  42838. bottom: 45/415
  42839. }
  42840. },
  42841. },
  42842. [
  42843. {
  42844. name: "Normal",
  42845. height: math.unit(1.9, "meters"),
  42846. default: true
  42847. },
  42848. ]
  42849. ))
  42850. characterMakers.push(() => makeCharacter(
  42851. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42852. {
  42853. regular: {
  42854. height: math.unit(6, "feet"),
  42855. weight: math.unit(220, "lb"),
  42856. name: "Regular",
  42857. image: {
  42858. source: "./media/characters/phillip/regular.svg",
  42859. extra: 1373/1277,
  42860. bottom: 75/1448
  42861. }
  42862. },
  42863. dressed: {
  42864. height: math.unit(6, "feet"),
  42865. weight: math.unit(220, "lb"),
  42866. name: "Dressed",
  42867. image: {
  42868. source: "./media/characters/phillip/dressed.svg",
  42869. extra: 1373/1277,
  42870. bottom: 75/1448
  42871. }
  42872. },
  42873. paw: {
  42874. height: math.unit(1.44, "feet"),
  42875. name: "Paw",
  42876. image: {
  42877. source: "./media/characters/phillip/paw.svg"
  42878. }
  42879. },
  42880. },
  42881. [
  42882. {
  42883. name: "Normal",
  42884. height: math.unit(6, "feet"),
  42885. default: true
  42886. },
  42887. ]
  42888. ))
  42889. characterMakers.push(() => makeCharacter(
  42890. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42891. {
  42892. side: {
  42893. height: math.unit(42, "feet"),
  42894. name: "Side",
  42895. image: {
  42896. source: "./media/characters/uvula/side.svg",
  42897. extra: 683/586,
  42898. bottom: 60/743
  42899. }
  42900. },
  42901. front: {
  42902. height: math.unit(42, "feet"),
  42903. name: "Front",
  42904. image: {
  42905. source: "./media/characters/uvula/front.svg",
  42906. extra: 705/613,
  42907. bottom: 54/759
  42908. }
  42909. },
  42910. maw: {
  42911. height: math.unit(23.5, "feet"),
  42912. name: "Maw",
  42913. image: {
  42914. source: "./media/characters/uvula/maw.svg"
  42915. }
  42916. },
  42917. },
  42918. [
  42919. {
  42920. name: "Original Size",
  42921. height: math.unit(14, "inches")
  42922. },
  42923. {
  42924. name: "Human Size",
  42925. height: math.unit(6, "feet")
  42926. },
  42927. {
  42928. name: "Big",
  42929. height: math.unit(42, "feet"),
  42930. default: true
  42931. },
  42932. {
  42933. name: "Bigger",
  42934. height: math.unit(100, "feet")
  42935. },
  42936. ]
  42937. ))
  42938. characterMakers.push(() => makeCharacter(
  42939. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42940. {
  42941. front: {
  42942. height: math.unit(5 + 11/12, "feet"),
  42943. name: "Front",
  42944. image: {
  42945. source: "./media/characters/lannah/front.svg",
  42946. extra: 1208/1113,
  42947. bottom: 97/1305
  42948. }
  42949. },
  42950. },
  42951. [
  42952. {
  42953. name: "Normal",
  42954. height: math.unit(5 + 11/12, "feet"),
  42955. default: true
  42956. },
  42957. ]
  42958. ))
  42959. characterMakers.push(() => makeCharacter(
  42960. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42961. {
  42962. front: {
  42963. height: math.unit(6 + 3/12, "feet"),
  42964. weight: math.unit(3.5, "tons"),
  42965. name: "Front",
  42966. image: {
  42967. source: "./media/characters/emberflame/front.svg",
  42968. extra: 1198/672,
  42969. bottom: 82/1280
  42970. }
  42971. },
  42972. side: {
  42973. height: math.unit(6 + 3/12, "feet"),
  42974. weight: math.unit(3.5, "tons"),
  42975. name: "Side",
  42976. image: {
  42977. source: "./media/characters/emberflame/side.svg",
  42978. extra: 938/527,
  42979. bottom: 56/994
  42980. }
  42981. },
  42982. },
  42983. [
  42984. {
  42985. name: "Normal",
  42986. height: math.unit(6 + 3/12, "feet"),
  42987. default: true
  42988. },
  42989. ]
  42990. ))
  42991. characterMakers.push(() => makeCharacter(
  42992. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42993. {
  42994. side: {
  42995. height: math.unit(17.5, "feet"),
  42996. weight: math.unit(35, "tons"),
  42997. name: "Side",
  42998. image: {
  42999. source: "./media/characters/sophie-ambrose/side.svg",
  43000. extra: 1573/1242,
  43001. bottom: 71/1644
  43002. }
  43003. },
  43004. maw: {
  43005. height: math.unit(7.4, "feet"),
  43006. name: "Maw",
  43007. image: {
  43008. source: "./media/characters/sophie-ambrose/maw.svg"
  43009. }
  43010. },
  43011. },
  43012. [
  43013. {
  43014. name: "Normal",
  43015. height: math.unit(17.5, "feet"),
  43016. default: true
  43017. },
  43018. ]
  43019. ))
  43020. characterMakers.push(() => makeCharacter(
  43021. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43022. {
  43023. front: {
  43024. height: math.unit(280, "feet"),
  43025. weight: math.unit(550, "tons"),
  43026. name: "Front",
  43027. image: {
  43028. source: "./media/characters/king-mugi/front.svg",
  43029. extra: 1102/947,
  43030. bottom: 104/1206
  43031. }
  43032. },
  43033. },
  43034. [
  43035. {
  43036. name: "King Mugi",
  43037. height: math.unit(280, "feet"),
  43038. default: true
  43039. },
  43040. ]
  43041. ))
  43042. characterMakers.push(() => makeCharacter(
  43043. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43044. {
  43045. front: {
  43046. height: math.unit(64, "meters"),
  43047. name: "Front",
  43048. image: {
  43049. source: "./media/characters/nova-fox/front.svg",
  43050. extra: 1310/1246,
  43051. bottom: 65/1375
  43052. }
  43053. },
  43054. },
  43055. [
  43056. {
  43057. name: "Macro",
  43058. height: math.unit(64, "meters"),
  43059. default: true
  43060. },
  43061. ]
  43062. ))
  43063. characterMakers.push(() => makeCharacter(
  43064. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43065. {
  43066. front: {
  43067. height: math.unit(6 + 3/12, "feet"),
  43068. weight: math.unit(170, "lb"),
  43069. name: "Front",
  43070. image: {
  43071. source: "./media/characters/sam-bat/front.svg",
  43072. extra: 1601/1411,
  43073. bottom: 125/1726
  43074. }
  43075. },
  43076. back: {
  43077. height: math.unit(6 + 3/12, "feet"),
  43078. weight: math.unit(170, "lb"),
  43079. name: "Back",
  43080. image: {
  43081. source: "./media/characters/sam-bat/back.svg",
  43082. extra: 1577/1405,
  43083. bottom: 58/1635
  43084. }
  43085. },
  43086. },
  43087. [
  43088. {
  43089. name: "Normal",
  43090. height: math.unit(6 + 3/12, "feet"),
  43091. default: true
  43092. },
  43093. ]
  43094. ))
  43095. characterMakers.push(() => makeCharacter(
  43096. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43097. {
  43098. front: {
  43099. height: math.unit(59, "feet"),
  43100. weight: math.unit(40000, "lb"),
  43101. name: "Front",
  43102. image: {
  43103. source: "./media/characters/inari/front.svg",
  43104. extra: 1884/1350,
  43105. bottom: 95/1979
  43106. }
  43107. },
  43108. },
  43109. [
  43110. {
  43111. name: "Gigantamax",
  43112. height: math.unit(59, "feet"),
  43113. default: true
  43114. },
  43115. ]
  43116. ))
  43117. characterMakers.push(() => makeCharacter(
  43118. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43119. {
  43120. front: {
  43121. height: math.unit(5 + 8/12, "feet"),
  43122. name: "Front",
  43123. image: {
  43124. source: "./media/characters/elizabeth/front.svg",
  43125. extra: 1395/1298,
  43126. bottom: 54/1449
  43127. }
  43128. },
  43129. mouth: {
  43130. height: math.unit(1.97, "feet"),
  43131. name: "Mouth",
  43132. image: {
  43133. source: "./media/characters/elizabeth/mouth.svg"
  43134. }
  43135. },
  43136. foot: {
  43137. height: math.unit(1.17, "feet"),
  43138. name: "Foot",
  43139. image: {
  43140. source: "./media/characters/elizabeth/foot.svg"
  43141. }
  43142. },
  43143. },
  43144. [
  43145. {
  43146. name: "Normal",
  43147. height: math.unit(5 + 8/12, "feet"),
  43148. default: true
  43149. },
  43150. {
  43151. name: "Minimacro",
  43152. height: math.unit(18, "feet")
  43153. },
  43154. {
  43155. name: "Macro",
  43156. height: math.unit(180, "feet")
  43157. },
  43158. ]
  43159. ))
  43160. characterMakers.push(() => makeCharacter(
  43161. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43162. {
  43163. front: {
  43164. height: math.unit(5 + 2/12, "feet"),
  43165. name: "Front",
  43166. image: {
  43167. source: "./media/characters/october-gossamer/front.svg",
  43168. extra: 505/454,
  43169. bottom: 7/512
  43170. }
  43171. },
  43172. back: {
  43173. height: math.unit(5 + 2/12, "feet"),
  43174. name: "Back",
  43175. image: {
  43176. source: "./media/characters/october-gossamer/back.svg",
  43177. extra: 501/454,
  43178. bottom: 11/512
  43179. }
  43180. },
  43181. },
  43182. [
  43183. {
  43184. name: "Normal",
  43185. height: math.unit(5 + 2/12, "feet"),
  43186. default: true
  43187. },
  43188. ]
  43189. ))
  43190. characterMakers.push(() => makeCharacter(
  43191. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43192. {
  43193. front: {
  43194. height: math.unit(5, "feet"),
  43195. name: "Front",
  43196. image: {
  43197. source: "./media/characters/epiglottis/front.svg",
  43198. extra: 923/849,
  43199. bottom: 17/940
  43200. }
  43201. },
  43202. },
  43203. [
  43204. {
  43205. name: "Original Size",
  43206. height: math.unit(10, "inches")
  43207. },
  43208. {
  43209. name: "Human Size",
  43210. height: math.unit(5, "feet"),
  43211. default: true
  43212. },
  43213. {
  43214. name: "Big",
  43215. height: math.unit(25, "feet")
  43216. },
  43217. {
  43218. name: "Bigger",
  43219. height: math.unit(50, "feet")
  43220. },
  43221. {
  43222. name: "oh lawd",
  43223. height: math.unit(75, "feet")
  43224. },
  43225. ]
  43226. ))
  43227. characterMakers.push(() => makeCharacter(
  43228. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43229. {
  43230. front: {
  43231. height: math.unit(2 + 4/12, "feet"),
  43232. weight: math.unit(60, "lb"),
  43233. name: "Front",
  43234. image: {
  43235. source: "./media/characters/lerm/front.svg",
  43236. extra: 796/790,
  43237. bottom: 79/875
  43238. }
  43239. },
  43240. },
  43241. [
  43242. {
  43243. name: "Normal",
  43244. height: math.unit(2 + 4/12, "feet"),
  43245. default: true
  43246. },
  43247. ]
  43248. ))
  43249. characterMakers.push(() => makeCharacter(
  43250. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43251. {
  43252. front: {
  43253. height: math.unit(5.5, "feet"),
  43254. weight: math.unit(130, "lb"),
  43255. name: "Front",
  43256. image: {
  43257. source: "./media/characters/xena-nebadon/front.svg",
  43258. extra: 1828/1730,
  43259. bottom: 79/1907
  43260. }
  43261. },
  43262. },
  43263. [
  43264. {
  43265. name: "Tiny Puppy",
  43266. height: math.unit(3, "inches")
  43267. },
  43268. {
  43269. name: "Normal",
  43270. height: math.unit(5.5, "feet"),
  43271. default: true
  43272. },
  43273. {
  43274. name: "Lotta Lady",
  43275. height: math.unit(12, "feet")
  43276. },
  43277. {
  43278. name: "Pretty Big",
  43279. height: math.unit(100, "feet")
  43280. },
  43281. {
  43282. name: "Big",
  43283. height: math.unit(500, "feet")
  43284. },
  43285. {
  43286. name: "Skyscraper Toys",
  43287. height: math.unit(2500, "feet")
  43288. },
  43289. {
  43290. name: "Plane Catcher",
  43291. height: math.unit(8, "miles")
  43292. },
  43293. {
  43294. name: "Planet Toys",
  43295. height: math.unit(15, "earths")
  43296. },
  43297. {
  43298. name: "Stardust",
  43299. height: math.unit(0.25, "galaxies")
  43300. },
  43301. {
  43302. name: "Snacks",
  43303. height: math.unit(70, "universes")
  43304. },
  43305. ]
  43306. ))
  43307. characterMakers.push(() => makeCharacter(
  43308. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43309. {
  43310. front: {
  43311. height: math.unit(1.6, "meters"),
  43312. weight: math.unit(60, "kg"),
  43313. name: "Front",
  43314. image: {
  43315. source: "./media/characters/bounty/front.svg",
  43316. extra: 1426/1308,
  43317. bottom: 15/1441
  43318. }
  43319. },
  43320. back: {
  43321. height: math.unit(1.6, "meters"),
  43322. weight: math.unit(60, "kg"),
  43323. name: "Back",
  43324. image: {
  43325. source: "./media/characters/bounty/back.svg",
  43326. extra: 1417/1307,
  43327. bottom: 8/1425
  43328. }
  43329. },
  43330. },
  43331. [
  43332. {
  43333. name: "Normal",
  43334. height: math.unit(1.6, "meters"),
  43335. default: true
  43336. },
  43337. {
  43338. name: "Macro",
  43339. height: math.unit(300, "meters")
  43340. },
  43341. ]
  43342. ))
  43343. characterMakers.push(() => makeCharacter(
  43344. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43345. {
  43346. front: {
  43347. height: math.unit(2 + 8/12, "feet"),
  43348. weight: math.unit(15, "lb"),
  43349. name: "Front",
  43350. image: {
  43351. source: "./media/characters/mochi/front.svg",
  43352. extra: 1022/852,
  43353. bottom: 435/1457
  43354. }
  43355. },
  43356. back: {
  43357. height: math.unit(2 + 8/12, "feet"),
  43358. weight: math.unit(15, "lb"),
  43359. name: "Back",
  43360. image: {
  43361. source: "./media/characters/mochi/back.svg",
  43362. extra: 1335/1119,
  43363. bottom: 39/1374
  43364. }
  43365. },
  43366. bird: {
  43367. height: math.unit(2 + 8/12, "feet"),
  43368. weight: math.unit(15, "lb"),
  43369. name: "Bird",
  43370. image: {
  43371. source: "./media/characters/mochi/bird.svg",
  43372. extra: 1251/1113,
  43373. bottom: 178/1429
  43374. }
  43375. },
  43376. kaiju: {
  43377. height: math.unit(154, "feet"),
  43378. weight: math.unit(1e7, "lb"),
  43379. name: "Kaiju",
  43380. image: {
  43381. source: "./media/characters/mochi/kaiju.svg",
  43382. extra: 460/324,
  43383. bottom: 40/500
  43384. }
  43385. },
  43386. head: {
  43387. height: math.unit(1.21, "feet"),
  43388. name: "Head",
  43389. image: {
  43390. source: "./media/characters/mochi/head.svg"
  43391. }
  43392. },
  43393. alternateTail: {
  43394. height: math.unit(2 + 8/12, "feet"),
  43395. weight: math.unit(45, "lb"),
  43396. name: "Alternate Tail",
  43397. image: {
  43398. source: "./media/characters/mochi/alternate-tail.svg",
  43399. extra: 139/76,
  43400. bottom: 45/184
  43401. }
  43402. },
  43403. },
  43404. [
  43405. {
  43406. name: "Micro",
  43407. height: math.unit(2, "inches")
  43408. },
  43409. {
  43410. name: "Normal",
  43411. height: math.unit(2 + 8/12, "feet"),
  43412. default: true
  43413. },
  43414. {
  43415. name: "Macro",
  43416. height: math.unit(106, "feet")
  43417. },
  43418. ]
  43419. ))
  43420. characterMakers.push(() => makeCharacter(
  43421. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43422. {
  43423. front: {
  43424. height: math.unit(5.67, "feet"),
  43425. weight: math.unit(135, "lb"),
  43426. name: "Front",
  43427. image: {
  43428. source: "./media/characters/sarel/front.svg",
  43429. extra: 865/788,
  43430. bottom: 97/962
  43431. }
  43432. },
  43433. back: {
  43434. height: math.unit(5.67, "feet"),
  43435. weight: math.unit(135, "lb"),
  43436. name: "Back",
  43437. image: {
  43438. source: "./media/characters/sarel/back.svg",
  43439. extra: 857/777,
  43440. bottom: 32/889
  43441. }
  43442. },
  43443. chozoan: {
  43444. height: math.unit(5.67, "feet"),
  43445. weight: math.unit(135, "lb"),
  43446. name: "Chozoan",
  43447. image: {
  43448. source: "./media/characters/sarel/chozoan.svg",
  43449. extra: 865/788,
  43450. bottom: 97/962
  43451. }
  43452. },
  43453. current: {
  43454. height: math.unit(5.67, "feet"),
  43455. weight: math.unit(135, "lb"),
  43456. name: "Current",
  43457. image: {
  43458. source: "./media/characters/sarel/current.svg",
  43459. extra: 865/788,
  43460. bottom: 97/962
  43461. }
  43462. },
  43463. head: {
  43464. height: math.unit(1.77, "feet"),
  43465. name: "Head",
  43466. image: {
  43467. source: "./media/characters/sarel/head.svg"
  43468. }
  43469. },
  43470. claws: {
  43471. height: math.unit(1.8, "feet"),
  43472. name: "Claws",
  43473. image: {
  43474. source: "./media/characters/sarel/claws.svg"
  43475. }
  43476. },
  43477. clawsAlt: {
  43478. height: math.unit(1.8, "feet"),
  43479. name: "Claws-alt",
  43480. image: {
  43481. source: "./media/characters/sarel/claws-alt.svg"
  43482. }
  43483. },
  43484. },
  43485. [
  43486. {
  43487. name: "Normal",
  43488. height: math.unit(5.67, "feet"),
  43489. default: true
  43490. },
  43491. ]
  43492. ))
  43493. characterMakers.push(() => makeCharacter(
  43494. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43495. {
  43496. front: {
  43497. height: math.unit(5500, "feet"),
  43498. name: "Front",
  43499. image: {
  43500. source: "./media/characters/alyonia/front.svg",
  43501. extra: 1200/1135,
  43502. bottom: 29/1229
  43503. }
  43504. },
  43505. back: {
  43506. height: math.unit(5500, "feet"),
  43507. name: "Back",
  43508. image: {
  43509. source: "./media/characters/alyonia/back.svg",
  43510. extra: 1205/1138,
  43511. bottom: 10/1215
  43512. }
  43513. },
  43514. },
  43515. [
  43516. {
  43517. name: "Small",
  43518. height: math.unit(10, "feet")
  43519. },
  43520. {
  43521. name: "Macro",
  43522. height: math.unit(500, "feet")
  43523. },
  43524. {
  43525. name: "Mega Macro",
  43526. height: math.unit(5500, "feet"),
  43527. default: true
  43528. },
  43529. {
  43530. name: "Mega Macro+",
  43531. height: math.unit(500000, "feet")
  43532. },
  43533. {
  43534. name: "Giga Macro",
  43535. height: math.unit(3000, "miles")
  43536. },
  43537. {
  43538. name: "Tera Macro",
  43539. height: math.unit(2.8e6, "miles")
  43540. },
  43541. {
  43542. name: "Galactic",
  43543. height: math.unit(120000, "lightyears")
  43544. },
  43545. ]
  43546. ))
  43547. characterMakers.push(() => makeCharacter(
  43548. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43549. {
  43550. werewolf: {
  43551. height: math.unit(8, "feet"),
  43552. weight: math.unit(425, "lb"),
  43553. name: "Werewolf",
  43554. image: {
  43555. source: "./media/characters/autumn/werewolf.svg",
  43556. extra: 2154/2031,
  43557. bottom: 160/2314
  43558. }
  43559. },
  43560. human: {
  43561. height: math.unit(5 + 8/12, "feet"),
  43562. weight: math.unit(150, "lb"),
  43563. name: "Human",
  43564. image: {
  43565. source: "./media/characters/autumn/human.svg",
  43566. extra: 1200/1149,
  43567. bottom: 30/1230
  43568. }
  43569. },
  43570. },
  43571. [
  43572. {
  43573. name: "Normal",
  43574. height: math.unit(8, "feet"),
  43575. default: true
  43576. },
  43577. ]
  43578. ))
  43579. characterMakers.push(() => makeCharacter(
  43580. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43581. {
  43582. front: {
  43583. height: math.unit(8 + 5/12, "feet"),
  43584. weight: math.unit(825, "lb"),
  43585. name: "Front",
  43586. image: {
  43587. source: "./media/characters/cobalt-charizard/front.svg",
  43588. extra: 1268/1155,
  43589. bottom: 122/1390
  43590. }
  43591. },
  43592. side: {
  43593. height: math.unit(8 + 5/12, "feet"),
  43594. weight: math.unit(825, "lb"),
  43595. name: "Side",
  43596. image: {
  43597. source: "./media/characters/cobalt-charizard/side.svg",
  43598. extra: 1348/1257,
  43599. bottom: 58/1406
  43600. }
  43601. },
  43602. gMax: {
  43603. height: math.unit(134 + 11/12, "feet"),
  43604. name: "G-Max",
  43605. image: {
  43606. source: "./media/characters/cobalt-charizard/g-max.svg",
  43607. extra: 1835/1541,
  43608. bottom: 151/1986
  43609. }
  43610. },
  43611. },
  43612. [
  43613. {
  43614. name: "Normal",
  43615. height: math.unit(8 + 5/12, "feet"),
  43616. default: true
  43617. },
  43618. ]
  43619. ))
  43620. characterMakers.push(() => makeCharacter(
  43621. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43622. {
  43623. front: {
  43624. height: math.unit(6 + 3/12, "feet"),
  43625. weight: math.unit(210, "lb"),
  43626. name: "Front",
  43627. image: {
  43628. source: "./media/characters/stella/front.svg",
  43629. extra: 3549/3335,
  43630. bottom: 51/3600
  43631. }
  43632. },
  43633. },
  43634. [
  43635. {
  43636. name: "Normal",
  43637. height: math.unit(6 + 3/12, "feet"),
  43638. default: true
  43639. },
  43640. ]
  43641. ))
  43642. characterMakers.push(() => makeCharacter(
  43643. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43644. {
  43645. front: {
  43646. height: math.unit(5, "feet"),
  43647. weight: math.unit(90, "lb"),
  43648. name: "Front",
  43649. image: {
  43650. source: "./media/characters/riley-bishop/front.svg",
  43651. extra: 1450/1428,
  43652. bottom: 152/1602
  43653. }
  43654. },
  43655. },
  43656. [
  43657. {
  43658. name: "Normal",
  43659. height: math.unit(5, "feet"),
  43660. default: true
  43661. },
  43662. ]
  43663. ))
  43664. characterMakers.push(() => makeCharacter(
  43665. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43666. {
  43667. side: {
  43668. height: math.unit(8 + 2/12, "feet"),
  43669. weight: math.unit(500, "kg"),
  43670. name: "Side",
  43671. image: {
  43672. source: "./media/characters/theo-arcanine/side.svg",
  43673. extra: 1342/1074,
  43674. bottom: 111/1453
  43675. }
  43676. },
  43677. },
  43678. [
  43679. {
  43680. name: "Normal",
  43681. height: math.unit(8 + 2/12, "feet"),
  43682. default: true
  43683. },
  43684. ]
  43685. ))
  43686. characterMakers.push(() => makeCharacter(
  43687. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43688. {
  43689. front: {
  43690. height: math.unit(4, "feet"),
  43691. name: "Front",
  43692. image: {
  43693. source: "./media/characters/kali/front.svg",
  43694. extra: 1921/1357,
  43695. bottom: 70/1991
  43696. }
  43697. },
  43698. },
  43699. [
  43700. {
  43701. name: "Normal",
  43702. height: math.unit(4, "feet"),
  43703. default: true
  43704. },
  43705. {
  43706. name: "Macro",
  43707. height: math.unit(32, "meters")
  43708. },
  43709. {
  43710. name: "Macro+",
  43711. height: math.unit(150, "meters")
  43712. },
  43713. {
  43714. name: "Megamacro",
  43715. height: math.unit(7500, "meters")
  43716. },
  43717. {
  43718. name: "Megamacro+",
  43719. height: math.unit(80, "kilometers")
  43720. },
  43721. ]
  43722. ))
  43723. characterMakers.push(() => makeCharacter(
  43724. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43725. {
  43726. side: {
  43727. height: math.unit(5 + 11/12, "feet"),
  43728. weight: math.unit(236, "lb"),
  43729. name: "Side",
  43730. image: {
  43731. source: "./media/characters/gapp/side.svg",
  43732. extra: 775/340,
  43733. bottom: 58/833
  43734. }
  43735. },
  43736. mouth: {
  43737. height: math.unit(2.98, "feet"),
  43738. name: "Mouth",
  43739. image: {
  43740. source: "./media/characters/gapp/mouth.svg"
  43741. }
  43742. },
  43743. },
  43744. [
  43745. {
  43746. name: "Normal",
  43747. height: math.unit(5 + 1/12, "feet"),
  43748. default: true
  43749. },
  43750. ]
  43751. ))
  43752. characterMakers.push(() => makeCharacter(
  43753. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43754. {
  43755. front: {
  43756. height: math.unit(6, "feet"),
  43757. name: "Front",
  43758. image: {
  43759. source: "./media/characters/persephone/front.svg",
  43760. extra: 1895/1717,
  43761. bottom: 96/1991
  43762. }
  43763. },
  43764. back: {
  43765. height: math.unit(6, "feet"),
  43766. name: "Back",
  43767. image: {
  43768. source: "./media/characters/persephone/back.svg",
  43769. extra: 1868/1679,
  43770. bottom: 26/1894
  43771. }
  43772. },
  43773. casual: {
  43774. height: math.unit(6, "feet"),
  43775. name: "Casual",
  43776. image: {
  43777. source: "./media/characters/persephone/casual.svg",
  43778. extra: 1713/1541,
  43779. bottom: 76/1789
  43780. }
  43781. },
  43782. },
  43783. [
  43784. {
  43785. name: "Human Size",
  43786. height: math.unit(6, "feet")
  43787. },
  43788. {
  43789. name: "Big Steppy",
  43790. height: math.unit(600, "meters"),
  43791. default: true
  43792. },
  43793. {
  43794. name: "Galaxy Brain",
  43795. height: math.unit(1, "zettameter")
  43796. },
  43797. ]
  43798. ))
  43799. characterMakers.push(() => makeCharacter(
  43800. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43801. {
  43802. front: {
  43803. height: math.unit(1.85, "meters"),
  43804. name: "Front",
  43805. image: {
  43806. source: "./media/characters/riley-foxthing/front.svg",
  43807. extra: 1495/1354,
  43808. bottom: 122/1617
  43809. }
  43810. },
  43811. frontAlt: {
  43812. height: math.unit(1.85, "meters"),
  43813. name: "Front (Alt)",
  43814. image: {
  43815. source: "./media/characters/riley-foxthing/front-alt.svg",
  43816. extra: 1572/1389,
  43817. bottom: 116/1688
  43818. }
  43819. },
  43820. },
  43821. [
  43822. {
  43823. name: "Normal Sized",
  43824. height: math.unit(1.85, "meters"),
  43825. default: true
  43826. },
  43827. {
  43828. name: "Quite Sizable",
  43829. height: math.unit(5, "meters")
  43830. },
  43831. {
  43832. name: "Rather Large",
  43833. height: math.unit(20, "meters")
  43834. },
  43835. {
  43836. name: "Macro",
  43837. height: math.unit(450, "meters")
  43838. },
  43839. {
  43840. name: "Giga",
  43841. height: math.unit(5, "km")
  43842. },
  43843. ]
  43844. ))
  43845. characterMakers.push(() => makeCharacter(
  43846. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43847. {
  43848. front: {
  43849. height: math.unit(6, "feet"),
  43850. weight: math.unit(200, "lb"),
  43851. name: "Front",
  43852. image: {
  43853. source: "./media/characters/blizzard/front.svg",
  43854. extra: 1136/990,
  43855. bottom: 136/1272
  43856. }
  43857. },
  43858. back: {
  43859. height: math.unit(6, "feet"),
  43860. weight: math.unit(200, "lb"),
  43861. name: "Back",
  43862. image: {
  43863. source: "./media/characters/blizzard/back.svg",
  43864. extra: 1175/1034,
  43865. bottom: 97/1272
  43866. }
  43867. },
  43868. sitting: {
  43869. height: math.unit(3.725, "feet"),
  43870. weight: math.unit(200, "lb"),
  43871. name: "Sitting",
  43872. image: {
  43873. source: "./media/characters/blizzard/sitting.svg",
  43874. extra: 581/485,
  43875. bottom: 90/671
  43876. }
  43877. },
  43878. frontWizard: {
  43879. height: math.unit(7.9, "feet"),
  43880. weight: math.unit(200, "lb"),
  43881. name: "Front (Wizard)",
  43882. image: {
  43883. source: "./media/characters/blizzard/front-wizard.svg"
  43884. }
  43885. },
  43886. backWizard: {
  43887. height: math.unit(7.9, "feet"),
  43888. weight: math.unit(200, "lb"),
  43889. name: "Back (Wizard)",
  43890. image: {
  43891. source: "./media/characters/blizzard/back-wizard.svg"
  43892. }
  43893. },
  43894. frontNsfw: {
  43895. height: math.unit(6, "feet"),
  43896. weight: math.unit(200, "lb"),
  43897. name: "Front (NSFW)",
  43898. image: {
  43899. source: "./media/characters/blizzard/front-nsfw.svg",
  43900. extra: 1136/990,
  43901. bottom: 136/1272
  43902. }
  43903. },
  43904. backNsfw: {
  43905. height: math.unit(6, "feet"),
  43906. weight: math.unit(200, "lb"),
  43907. name: "Back (NSFW)",
  43908. image: {
  43909. source: "./media/characters/blizzard/back-nsfw.svg",
  43910. extra: 1175/1034,
  43911. bottom: 97/1272
  43912. }
  43913. },
  43914. sittingNsfw: {
  43915. height: math.unit(3.725, "feet"),
  43916. weight: math.unit(200, "lb"),
  43917. name: "Sitting (NSFW)",
  43918. image: {
  43919. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43920. extra: 581/485,
  43921. bottom: 90/671
  43922. }
  43923. },
  43924. wizardFrontNsfw: {
  43925. height: math.unit(7.9, "feet"),
  43926. weight: math.unit(200, "lb"),
  43927. name: "Wizard (Front, NSFW)",
  43928. image: {
  43929. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43930. }
  43931. },
  43932. },
  43933. [
  43934. {
  43935. name: "Normal",
  43936. height: math.unit(6, "feet"),
  43937. default: true
  43938. },
  43939. ]
  43940. ))
  43941. characterMakers.push(() => makeCharacter(
  43942. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43943. {
  43944. front: {
  43945. height: math.unit(5 + 2/12, "feet"),
  43946. name: "Front",
  43947. image: {
  43948. source: "./media/characters/lumi/front.svg",
  43949. extra: 1328/1268,
  43950. bottom: 103/1431
  43951. }
  43952. },
  43953. back: {
  43954. height: math.unit(5 + 2/12, "feet"),
  43955. name: "Back",
  43956. image: {
  43957. source: "./media/characters/lumi/back.svg",
  43958. extra: 1381/1327,
  43959. bottom: 43/1424
  43960. }
  43961. },
  43962. },
  43963. [
  43964. {
  43965. name: "Normal",
  43966. height: math.unit(5 + 2/12, "feet"),
  43967. default: true
  43968. },
  43969. ]
  43970. ))
  43971. characterMakers.push(() => makeCharacter(
  43972. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43973. {
  43974. front: {
  43975. height: math.unit(5 + 9/12, "feet"),
  43976. name: "Front",
  43977. image: {
  43978. source: "./media/characters/aliya-cotton/front.svg",
  43979. extra: 577/564,
  43980. bottom: 29/606
  43981. }
  43982. },
  43983. },
  43984. [
  43985. {
  43986. name: "Normal",
  43987. height: math.unit(5 + 9/12, "feet"),
  43988. default: true
  43989. },
  43990. ]
  43991. ))
  43992. characterMakers.push(() => makeCharacter(
  43993. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43994. {
  43995. front: {
  43996. height: math.unit(2.7, "meters"),
  43997. weight: math.unit(25000, "lb"),
  43998. name: "Front",
  43999. image: {
  44000. source: "./media/characters/noah-luxray/front.svg",
  44001. extra: 1644/825,
  44002. bottom: 339/1983
  44003. }
  44004. },
  44005. side: {
  44006. height: math.unit(2.97, "meters"),
  44007. weight: math.unit(25000, "lb"),
  44008. name: "Side",
  44009. image: {
  44010. source: "./media/characters/noah-luxray/side.svg",
  44011. extra: 1319/650,
  44012. bottom: 163/1482
  44013. }
  44014. },
  44015. dick: {
  44016. height: math.unit(7.4, "feet"),
  44017. weight: math.unit(2500, "lb"),
  44018. name: "Dick",
  44019. image: {
  44020. source: "./media/characters/noah-luxray/dick.svg"
  44021. }
  44022. },
  44023. dickAlt: {
  44024. height: math.unit(10.83, "feet"),
  44025. weight: math.unit(2500, "lb"),
  44026. name: "Dick-alt",
  44027. image: {
  44028. source: "./media/characters/noah-luxray/dick-alt.svg"
  44029. }
  44030. },
  44031. },
  44032. [
  44033. {
  44034. name: "BIG",
  44035. height: math.unit(2.7, "meters"),
  44036. default: true
  44037. },
  44038. ]
  44039. ))
  44040. characterMakers.push(() => makeCharacter(
  44041. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44042. {
  44043. standing: {
  44044. height: math.unit(183, "cm"),
  44045. weight: math.unit(68, "kg"),
  44046. name: "Standing",
  44047. image: {
  44048. source: "./media/characters/arion/standing.svg",
  44049. extra: 1869/1807,
  44050. bottom: 93/1962
  44051. }
  44052. },
  44053. reclining: {
  44054. height: math.unit(70.5, "cm"),
  44055. weight: math.unit(68, "lb"),
  44056. name: "Reclining",
  44057. image: {
  44058. source: "./media/characters/arion/reclining.svg",
  44059. extra: 937/870,
  44060. bottom: 63/1000
  44061. }
  44062. },
  44063. },
  44064. [
  44065. {
  44066. name: "Colossus Size, Low",
  44067. height: math.unit(33, "meters"),
  44068. default: true
  44069. },
  44070. {
  44071. name: "Colossus Size, Mid",
  44072. height: math.unit(52, "meters")
  44073. },
  44074. {
  44075. name: "Colossus Size, High",
  44076. height: math.unit(60, "meters")
  44077. },
  44078. {
  44079. name: "Titan Size, Low",
  44080. height: math.unit(91, "meters"),
  44081. },
  44082. {
  44083. name: "Titan Size, Mid",
  44084. height: math.unit(122, "meters")
  44085. },
  44086. {
  44087. name: "Titan Size, High",
  44088. height: math.unit(162, "meters")
  44089. },
  44090. ]
  44091. ))
  44092. characterMakers.push(() => makeCharacter(
  44093. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44094. {
  44095. front: {
  44096. height: math.unit(53, "meters"),
  44097. name: "Front",
  44098. image: {
  44099. source: "./media/characters/stellar-marbey/front.svg",
  44100. extra: 1913/1805,
  44101. bottom: 92/2005
  44102. }
  44103. },
  44104. back: {
  44105. height: math.unit(53, "meters"),
  44106. name: "Back",
  44107. image: {
  44108. source: "./media/characters/stellar-marbey/back.svg",
  44109. extra: 1960/1851,
  44110. bottom: 28/1988
  44111. }
  44112. },
  44113. mouth: {
  44114. height: math.unit(3.5, "meters"),
  44115. name: "Mouth",
  44116. image: {
  44117. source: "./media/characters/stellar-marbey/mouth.svg"
  44118. }
  44119. },
  44120. },
  44121. [
  44122. {
  44123. name: "Macro",
  44124. height: math.unit(53, "meters"),
  44125. default: true
  44126. },
  44127. ]
  44128. ))
  44129. characterMakers.push(() => makeCharacter(
  44130. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44131. {
  44132. front: {
  44133. height: math.unit(8 + 1/12, "feet"),
  44134. weight: math.unit(233, "lb"),
  44135. name: "Front",
  44136. image: {
  44137. source: "./media/characters/matsu/front.svg",
  44138. extra: 832/772,
  44139. bottom: 40/872
  44140. }
  44141. },
  44142. back: {
  44143. height: math.unit(8 + 1/12, "feet"),
  44144. weight: math.unit(233, "lb"),
  44145. name: "Back",
  44146. image: {
  44147. source: "./media/characters/matsu/back.svg",
  44148. extra: 839/780,
  44149. bottom: 47/886
  44150. }
  44151. },
  44152. },
  44153. [
  44154. {
  44155. name: "Normal",
  44156. height: math.unit(8 + 1/12, "feet"),
  44157. default: true
  44158. },
  44159. ]
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44163. {
  44164. front: {
  44165. height: math.unit(4, "feet"),
  44166. weight: math.unit(148, "lb"),
  44167. name: "Front",
  44168. image: {
  44169. source: "./media/characters/thiz/front.svg",
  44170. extra: 1913/1748,
  44171. bottom: 62/1975
  44172. }
  44173. },
  44174. },
  44175. [
  44176. {
  44177. name: "Normal",
  44178. height: math.unit(4, "feet"),
  44179. default: true
  44180. },
  44181. ]
  44182. ))
  44183. characterMakers.push(() => makeCharacter(
  44184. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44185. {
  44186. front: {
  44187. height: math.unit(7 + 6/12, "feet"),
  44188. weight: math.unit(267, "lb"),
  44189. name: "Front",
  44190. image: {
  44191. source: "./media/characters/marcel/front.svg",
  44192. extra: 1221/1096,
  44193. bottom: 76/1297
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Normal",
  44200. height: math.unit(7 + 6/12, "feet"),
  44201. default: true
  44202. },
  44203. ]
  44204. ))
  44205. characterMakers.push(() => makeCharacter(
  44206. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44207. {
  44208. side: {
  44209. height: math.unit(42, "meters"),
  44210. name: "Side",
  44211. image: {
  44212. source: "./media/characters/flake/side.svg",
  44213. extra: 1525/1306,
  44214. bottom: 209/1734
  44215. }
  44216. },
  44217. },
  44218. [
  44219. {
  44220. name: "Normal",
  44221. height: math.unit(42, "meters"),
  44222. default: true
  44223. },
  44224. ]
  44225. ))
  44226. characterMakers.push(() => makeCharacter(
  44227. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44228. {
  44229. dressed: {
  44230. height: math.unit(6 + 4/12, "feet"),
  44231. weight: math.unit(520, "lb"),
  44232. name: "Dressed",
  44233. image: {
  44234. source: "./media/characters/someonne/dressed.svg",
  44235. extra: 1020/1010,
  44236. bottom: 178/1198
  44237. }
  44238. },
  44239. undressed: {
  44240. height: math.unit(6 + 4/12, "feet"),
  44241. weight: math.unit(520, "lb"),
  44242. name: "Undressed",
  44243. image: {
  44244. source: "./media/characters/someonne/undressed.svg",
  44245. extra: 1019/1014,
  44246. bottom: 169/1188
  44247. }
  44248. },
  44249. },
  44250. [
  44251. {
  44252. name: "Normal",
  44253. height: math.unit(6 + 4/12, "feet"),
  44254. default: true
  44255. },
  44256. ]
  44257. ))
  44258. characterMakers.push(() => makeCharacter(
  44259. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44260. {
  44261. front: {
  44262. height: math.unit(3, "feet"),
  44263. weight: math.unit(30, "lb"),
  44264. name: "Front",
  44265. image: {
  44266. source: "./media/characters/till/front.svg",
  44267. extra: 892/823,
  44268. bottom: 55/947
  44269. }
  44270. },
  44271. },
  44272. [
  44273. {
  44274. name: "Normal",
  44275. height: math.unit(3, "feet"),
  44276. default: true
  44277. },
  44278. ]
  44279. ))
  44280. characterMakers.push(() => makeCharacter(
  44281. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44282. {
  44283. front: {
  44284. height: math.unit(9 + 8/12, "feet"),
  44285. weight: math.unit(800, "lb"),
  44286. name: "Front",
  44287. image: {
  44288. source: "./media/characters/sydney-heki/front.svg",
  44289. extra: 1360/1300,
  44290. bottom: 22/1382
  44291. }
  44292. },
  44293. back: {
  44294. height: math.unit(9 + 8/12, "feet"),
  44295. weight: math.unit(800, "lb"),
  44296. name: "Back",
  44297. image: {
  44298. source: "./media/characters/sydney-heki/back.svg",
  44299. extra: 1356/1293,
  44300. bottom: 12/1368
  44301. }
  44302. },
  44303. frontDressed: {
  44304. height: math.unit(9 + 8/12, "feet"),
  44305. weight: math.unit(800, "lb"),
  44306. name: "Front-dressed",
  44307. image: {
  44308. source: "./media/characters/sydney-heki/front-dressed.svg",
  44309. extra: 1360/1300,
  44310. bottom: 22/1382
  44311. }
  44312. },
  44313. },
  44314. [
  44315. {
  44316. name: "Normal",
  44317. height: math.unit(9 + 8/12, "feet"),
  44318. default: true
  44319. },
  44320. {
  44321. name: "Macro",
  44322. height: math.unit(500, "feet")
  44323. },
  44324. {
  44325. name: "Megamacro",
  44326. height: math.unit(3.6, "miles")
  44327. },
  44328. ]
  44329. ))
  44330. characterMakers.push(() => makeCharacter(
  44331. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44332. {
  44333. front: {
  44334. height: math.unit(200, "cm"),
  44335. weight: math.unit(250, "lb"),
  44336. name: "Front",
  44337. image: {
  44338. source: "./media/characters/fowler-karlsson/front.svg",
  44339. extra: 897/845,
  44340. bottom: 123/1020
  44341. }
  44342. },
  44343. back: {
  44344. height: math.unit(200, "cm"),
  44345. weight: math.unit(250, "lb"),
  44346. name: "Back",
  44347. image: {
  44348. source: "./media/characters/fowler-karlsson/back.svg",
  44349. extra: 999/944,
  44350. bottom: 26/1025
  44351. }
  44352. },
  44353. dick: {
  44354. height: math.unit(1.92, "feet"),
  44355. weight: math.unit(150, "lb"),
  44356. name: "Dick",
  44357. image: {
  44358. source: "./media/characters/fowler-karlsson/dick.svg"
  44359. }
  44360. },
  44361. },
  44362. [
  44363. {
  44364. name: "Normal",
  44365. height: math.unit(200, "cm"),
  44366. default: true
  44367. },
  44368. {
  44369. name: "Smaller Macro",
  44370. height: math.unit(90, "m")
  44371. },
  44372. {
  44373. name: "Macro",
  44374. height: math.unit(150, "m")
  44375. },
  44376. {
  44377. name: "Bigger Macro",
  44378. height: math.unit(300, "m")
  44379. },
  44380. ]
  44381. ))
  44382. characterMakers.push(() => makeCharacter(
  44383. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44384. {
  44385. side: {
  44386. height: math.unit(8 + 2/12, "feet"),
  44387. weight: math.unit(1, "tonne"),
  44388. name: "Side",
  44389. image: {
  44390. source: "./media/characters/rylide/side.svg",
  44391. extra: 1318/1034,
  44392. bottom: 106/1424
  44393. }
  44394. },
  44395. sitting: {
  44396. height: math.unit(303, "cm"),
  44397. weight: math.unit(1, "tonne"),
  44398. name: "Sitting",
  44399. image: {
  44400. source: "./media/characters/rylide/sitting.svg",
  44401. extra: 1303/1103,
  44402. bottom: 36/1339
  44403. }
  44404. },
  44405. },
  44406. [
  44407. {
  44408. name: "Normal",
  44409. height: math.unit(8 + 2/12, "feet"),
  44410. default: true
  44411. },
  44412. ]
  44413. ))
  44414. characterMakers.push(() => makeCharacter(
  44415. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44416. {
  44417. front: {
  44418. height: math.unit(5 + 10/12, "feet"),
  44419. weight: math.unit(160, "lb"),
  44420. name: "Front",
  44421. image: {
  44422. source: "./media/characters/pudask/front.svg",
  44423. extra: 1616/1590,
  44424. bottom: 161/1777
  44425. }
  44426. },
  44427. },
  44428. [
  44429. {
  44430. name: "Ferret Height",
  44431. height: math.unit(2 + 5/12, "feet")
  44432. },
  44433. {
  44434. name: "Canon Height",
  44435. height: math.unit(5 + 10/12, "feet"),
  44436. default: true
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44442. {
  44443. front: {
  44444. height: math.unit(3 + 6/12, "feet"),
  44445. weight: math.unit(60, "lb"),
  44446. name: "Front",
  44447. image: {
  44448. source: "./media/characters/ramita/front.svg",
  44449. extra: 1402/1232,
  44450. bottom: 62/1464
  44451. }
  44452. },
  44453. dressed: {
  44454. height: math.unit(3 + 6/12, "feet"),
  44455. weight: math.unit(60, "lb"),
  44456. name: "Dressed",
  44457. image: {
  44458. source: "./media/characters/ramita/dressed.svg",
  44459. extra: 1534/1249,
  44460. bottom: 50/1584
  44461. }
  44462. },
  44463. },
  44464. [
  44465. {
  44466. name: "Normal",
  44467. height: math.unit(3 + 6/12, "feet"),
  44468. default: true
  44469. },
  44470. ]
  44471. ))
  44472. characterMakers.push(() => makeCharacter(
  44473. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44474. {
  44475. front: {
  44476. height: math.unit(8, "feet"),
  44477. name: "Front",
  44478. image: {
  44479. source: "./media/characters/ark/front.svg",
  44480. extra: 772/693,
  44481. bottom: 45/817
  44482. }
  44483. },
  44484. },
  44485. [
  44486. {
  44487. name: "Normal",
  44488. height: math.unit(8, "feet"),
  44489. default: true
  44490. },
  44491. ]
  44492. ))
  44493. characterMakers.push(() => makeCharacter(
  44494. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44495. {
  44496. front: {
  44497. height: math.unit(6, "feet"),
  44498. weight: math.unit(250, "lb"),
  44499. volume: math.unit(5/8, "gallons"),
  44500. name: "Front",
  44501. image: {
  44502. source: "./media/characters/ludwig-horn/front.svg",
  44503. extra: 1782/1635,
  44504. bottom: 96/1878
  44505. }
  44506. },
  44507. back: {
  44508. height: math.unit(6, "feet"),
  44509. weight: math.unit(250, "lb"),
  44510. volume: math.unit(5/8, "gallons"),
  44511. name: "Back",
  44512. image: {
  44513. source: "./media/characters/ludwig-horn/back.svg",
  44514. extra: 1874/1729,
  44515. bottom: 27/1901
  44516. }
  44517. },
  44518. dick: {
  44519. height: math.unit(1.05, "feet"),
  44520. weight: math.unit(15, "lb"),
  44521. volume: math.unit(5/8, "gallons"),
  44522. name: "Dick",
  44523. image: {
  44524. source: "./media/characters/ludwig-horn/dick.svg"
  44525. }
  44526. },
  44527. },
  44528. [
  44529. {
  44530. name: "Small",
  44531. height: math.unit(6, "feet")
  44532. },
  44533. {
  44534. name: "Typical",
  44535. height: math.unit(12, "feet"),
  44536. default: true
  44537. },
  44538. {
  44539. name: "Building",
  44540. height: math.unit(80, "feet")
  44541. },
  44542. {
  44543. name: "Town",
  44544. height: math.unit(800, "feet")
  44545. },
  44546. {
  44547. name: "Kingdom",
  44548. height: math.unit(80000, "feet")
  44549. },
  44550. {
  44551. name: "Planet",
  44552. height: math.unit(8000000, "feet")
  44553. },
  44554. {
  44555. name: "Universe",
  44556. height: math.unit(8000000000, "feet")
  44557. },
  44558. {
  44559. name: "Transcended",
  44560. height: math.unit(8e27, "feet")
  44561. },
  44562. ]
  44563. ))
  44564. characterMakers.push(() => makeCharacter(
  44565. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44566. {
  44567. front: {
  44568. height: math.unit(5, "feet"),
  44569. weight: math.unit(50, "kg"),
  44570. name: "Front",
  44571. image: {
  44572. source: "./media/characters/biot-avery/front.svg",
  44573. extra: 1295/1232,
  44574. bottom: 86/1381
  44575. }
  44576. },
  44577. },
  44578. [
  44579. {
  44580. name: "Normal",
  44581. height: math.unit(5, "feet"),
  44582. default: true
  44583. },
  44584. ]
  44585. ))
  44586. characterMakers.push(() => makeCharacter(
  44587. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44588. {
  44589. front: {
  44590. height: math.unit(6, "feet"),
  44591. name: "Front",
  44592. image: {
  44593. source: "./media/characters/kitsune-kiro/front.svg",
  44594. extra: 1270/1158,
  44595. bottom: 42/1312
  44596. }
  44597. },
  44598. frontAlt: {
  44599. height: math.unit(6, "feet"),
  44600. name: "Front-alt",
  44601. image: {
  44602. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44603. extra: 1130/1081,
  44604. bottom: 36/1166
  44605. }
  44606. },
  44607. },
  44608. [
  44609. {
  44610. name: "Smol",
  44611. height: math.unit(3, "feet")
  44612. },
  44613. {
  44614. name: "Normal",
  44615. height: math.unit(6, "feet"),
  44616. default: true
  44617. },
  44618. ]
  44619. ))
  44620. characterMakers.push(() => makeCharacter(
  44621. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44622. {
  44623. front: {
  44624. height: math.unit(6, "feet"),
  44625. weight: math.unit(125, "lb"),
  44626. name: "Front",
  44627. image: {
  44628. source: "./media/characters/jack-thatcher/front.svg",
  44629. extra: 1474/1370,
  44630. bottom: 26/1500
  44631. }
  44632. },
  44633. back: {
  44634. height: math.unit(6, "feet"),
  44635. weight: math.unit(125, "lb"),
  44636. name: "Back",
  44637. image: {
  44638. source: "./media/characters/jack-thatcher/back.svg",
  44639. extra: 1489/1384,
  44640. bottom: 18/1507
  44641. }
  44642. },
  44643. },
  44644. [
  44645. {
  44646. name: "Normal",
  44647. height: math.unit(6, "feet"),
  44648. default: true
  44649. },
  44650. {
  44651. name: "Macro",
  44652. height: math.unit(75, "feet")
  44653. },
  44654. {
  44655. name: "Macro-er",
  44656. height: math.unit(250, "feet")
  44657. },
  44658. ]
  44659. ))
  44660. characterMakers.push(() => makeCharacter(
  44661. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44662. {
  44663. front: {
  44664. height: math.unit(7, "feet"),
  44665. weight: math.unit(110, "kg"),
  44666. name: "Front",
  44667. image: {
  44668. source: "./media/characters/max-hyper/front.svg",
  44669. extra: 1969/1881,
  44670. bottom: 49/2018
  44671. }
  44672. },
  44673. },
  44674. [
  44675. {
  44676. name: "Normal",
  44677. height: math.unit(7, "feet"),
  44678. default: true
  44679. },
  44680. ]
  44681. ))
  44682. characterMakers.push(() => makeCharacter(
  44683. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44684. {
  44685. front: {
  44686. height: math.unit(5 + 5/12, "feet"),
  44687. weight: math.unit(160, "lb"),
  44688. name: "Front",
  44689. image: {
  44690. source: "./media/characters/spook/front.svg",
  44691. extra: 794/791,
  44692. bottom: 54/848
  44693. }
  44694. },
  44695. back: {
  44696. height: math.unit(5 + 5/12, "feet"),
  44697. weight: math.unit(160, "lb"),
  44698. name: "Back",
  44699. image: {
  44700. source: "./media/characters/spook/back.svg",
  44701. extra: 812/798,
  44702. bottom: 32/844
  44703. }
  44704. },
  44705. },
  44706. [
  44707. {
  44708. name: "Normal",
  44709. height: math.unit(5 + 5/12, "feet"),
  44710. default: true
  44711. },
  44712. ]
  44713. ))
  44714. characterMakers.push(() => makeCharacter(
  44715. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44716. {
  44717. front: {
  44718. height: math.unit(18, "feet"),
  44719. name: "Front",
  44720. image: {
  44721. source: "./media/characters/xeaduulix/front.svg",
  44722. extra: 1380/1166,
  44723. bottom: 110/1490
  44724. }
  44725. },
  44726. back: {
  44727. height: math.unit(18, "feet"),
  44728. name: "Back",
  44729. image: {
  44730. source: "./media/characters/xeaduulix/back.svg",
  44731. extra: 1592/1170,
  44732. bottom: 128/1720
  44733. }
  44734. },
  44735. frontNsfw: {
  44736. height: math.unit(18, "feet"),
  44737. name: "Front (NSFW)",
  44738. image: {
  44739. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44740. extra: 1380/1166,
  44741. bottom: 110/1490
  44742. }
  44743. },
  44744. backNsfw: {
  44745. height: math.unit(18, "feet"),
  44746. name: "Back (NSFW)",
  44747. image: {
  44748. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44749. extra: 1592/1170,
  44750. bottom: 128/1720
  44751. }
  44752. },
  44753. },
  44754. [
  44755. {
  44756. name: "Normal",
  44757. height: math.unit(18, "feet"),
  44758. default: true
  44759. },
  44760. ]
  44761. ))
  44762. characterMakers.push(() => makeCharacter(
  44763. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44764. {
  44765. spreadWings: {
  44766. height: math.unit(20, "feet"),
  44767. name: "Spread Wings",
  44768. image: {
  44769. source: "./media/characters/fledge/spread-wings.svg",
  44770. extra: 693/635,
  44771. bottom: 26/719
  44772. }
  44773. },
  44774. front: {
  44775. height: math.unit(20, "feet"),
  44776. name: "Front",
  44777. image: {
  44778. source: "./media/characters/fledge/front.svg",
  44779. extra: 684/637,
  44780. bottom: 18/702
  44781. }
  44782. },
  44783. frontAlt: {
  44784. height: math.unit(20, "feet"),
  44785. name: "Front (Alt)",
  44786. image: {
  44787. source: "./media/characters/fledge/front-alt.svg",
  44788. extra: 708/664,
  44789. bottom: 13/721
  44790. }
  44791. },
  44792. back: {
  44793. height: math.unit(20, "feet"),
  44794. name: "Back",
  44795. image: {
  44796. source: "./media/characters/fledge/back.svg",
  44797. extra: 718/634,
  44798. bottom: 22/740
  44799. }
  44800. },
  44801. head: {
  44802. height: math.unit(5.55, "feet"),
  44803. name: "Head",
  44804. image: {
  44805. source: "./media/characters/fledge/head.svg"
  44806. }
  44807. },
  44808. headAlt: {
  44809. height: math.unit(5.1, "feet"),
  44810. name: "Head (Alt)",
  44811. image: {
  44812. source: "./media/characters/fledge/head-alt.svg"
  44813. }
  44814. },
  44815. },
  44816. [
  44817. {
  44818. name: "Small",
  44819. height: math.unit(6 + 2/12, "feet")
  44820. },
  44821. {
  44822. name: "Big",
  44823. height: math.unit(20, "feet"),
  44824. default: true
  44825. },
  44826. {
  44827. name: "Giant",
  44828. height: math.unit(100, "feet")
  44829. },
  44830. {
  44831. name: "Macro",
  44832. height: math.unit(200, "feet")
  44833. },
  44834. ]
  44835. ))
  44836. characterMakers.push(() => makeCharacter(
  44837. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44838. {
  44839. front: {
  44840. height: math.unit(1, "meter"),
  44841. name: "Front",
  44842. image: {
  44843. source: "./media/characters/atlas-morenai/front.svg",
  44844. extra: 1275/1043,
  44845. bottom: 19/1294
  44846. }
  44847. },
  44848. back: {
  44849. height: math.unit(1, "meter"),
  44850. name: "Back",
  44851. image: {
  44852. source: "./media/characters/atlas-morenai/back.svg",
  44853. extra: 1141/1001,
  44854. bottom: 25/1166
  44855. }
  44856. },
  44857. },
  44858. [
  44859. {
  44860. name: "Normal",
  44861. height: math.unit(1, "meter"),
  44862. default: true
  44863. },
  44864. {
  44865. name: "Magic-Infused",
  44866. height: math.unit(5, "meters")
  44867. },
  44868. ]
  44869. ))
  44870. characterMakers.push(() => makeCharacter(
  44871. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44872. {
  44873. front: {
  44874. height: math.unit(5, "meters"),
  44875. name: "Front",
  44876. image: {
  44877. source: "./media/characters/cintia/front.svg",
  44878. extra: 1312/1228,
  44879. bottom: 38/1350
  44880. }
  44881. },
  44882. back: {
  44883. height: math.unit(5, "meters"),
  44884. name: "Back",
  44885. image: {
  44886. source: "./media/characters/cintia/back.svg",
  44887. extra: 1260/1166,
  44888. bottom: 98/1358
  44889. }
  44890. },
  44891. frontDick: {
  44892. height: math.unit(5, "meters"),
  44893. name: "Front (Dick)",
  44894. image: {
  44895. source: "./media/characters/cintia/front-dick.svg",
  44896. extra: 1312/1228,
  44897. bottom: 38/1350
  44898. }
  44899. },
  44900. backDick: {
  44901. height: math.unit(5, "meters"),
  44902. name: "Back (Dick)",
  44903. image: {
  44904. source: "./media/characters/cintia/back-dick.svg",
  44905. extra: 1260/1166,
  44906. bottom: 98/1358
  44907. }
  44908. },
  44909. bust: {
  44910. height: math.unit(1.97, "meters"),
  44911. name: "Bust",
  44912. image: {
  44913. source: "./media/characters/cintia/bust.svg",
  44914. extra: 617/565,
  44915. bottom: 0/617
  44916. }
  44917. },
  44918. },
  44919. [
  44920. {
  44921. name: "Normal",
  44922. height: math.unit(5, "meters"),
  44923. default: true
  44924. },
  44925. ]
  44926. ))
  44927. characterMakers.push(() => makeCharacter(
  44928. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44929. {
  44930. side: {
  44931. height: math.unit(100, "feet"),
  44932. name: "Side",
  44933. image: {
  44934. source: "./media/characters/denora/side.svg",
  44935. extra: 875/803,
  44936. bottom: 9/884
  44937. }
  44938. },
  44939. },
  44940. [
  44941. {
  44942. name: "Standard",
  44943. height: math.unit(100, "feet"),
  44944. default: true
  44945. },
  44946. {
  44947. name: "Grand",
  44948. height: math.unit(1000, "feet")
  44949. },
  44950. {
  44951. name: "Conquering",
  44952. height: math.unit(10000, "feet")
  44953. },
  44954. ]
  44955. ))
  44956. characterMakers.push(() => makeCharacter(
  44957. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44958. {
  44959. dressed: {
  44960. height: math.unit(8 + 5/12, "feet"),
  44961. weight: math.unit(700, "lb"),
  44962. name: "Dressed",
  44963. image: {
  44964. source: "./media/characters/kiva/dressed.svg",
  44965. extra: 1102/1055,
  44966. bottom: 60/1162
  44967. }
  44968. },
  44969. nude: {
  44970. height: math.unit(8 + 5/12, "feet"),
  44971. weight: math.unit(700, "lb"),
  44972. name: "Nude",
  44973. image: {
  44974. source: "./media/characters/kiva/nude.svg",
  44975. extra: 1102/1055,
  44976. bottom: 60/1162
  44977. }
  44978. },
  44979. },
  44980. [
  44981. {
  44982. name: "Base Height",
  44983. height: math.unit(8 + 5/12, "feet"),
  44984. default: true
  44985. },
  44986. {
  44987. name: "Macro",
  44988. height: math.unit(100, "feet")
  44989. },
  44990. {
  44991. name: "Max",
  44992. height: math.unit(3280, "feet")
  44993. },
  44994. ]
  44995. ))
  44996. characterMakers.push(() => makeCharacter(
  44997. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44998. {
  44999. front: {
  45000. height: math.unit(6 + 8/12, "feet"),
  45001. weight: math.unit(250, "lb"),
  45002. name: "Front",
  45003. image: {
  45004. source: "./media/characters/ztragon/front.svg",
  45005. extra: 1825/1684,
  45006. bottom: 98/1923
  45007. }
  45008. },
  45009. },
  45010. [
  45011. {
  45012. name: "Normal",
  45013. height: math.unit(6 + 8/12, "feet"),
  45014. default: true
  45015. },
  45016. {
  45017. name: "Macro",
  45018. height: math.unit(80, "feet")
  45019. },
  45020. ]
  45021. ))
  45022. characterMakers.push(() => makeCharacter(
  45023. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45024. {
  45025. front: {
  45026. height: math.unit(10.4, "feet"),
  45027. weight: math.unit(2, "tons"),
  45028. name: "Front",
  45029. image: {
  45030. source: "./media/characters/yesenia/front.svg",
  45031. extra: 1479/1474,
  45032. bottom: 233/1712
  45033. }
  45034. },
  45035. },
  45036. [
  45037. {
  45038. name: "Normal",
  45039. height: math.unit(10.4, "feet"),
  45040. default: true
  45041. },
  45042. ]
  45043. ))
  45044. characterMakers.push(() => makeCharacter(
  45045. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45046. {
  45047. normal: {
  45048. height: math.unit(6 + 1/12, "feet"),
  45049. weight: math.unit(180, "lb"),
  45050. name: "Normal",
  45051. image: {
  45052. source: "./media/characters/leanne-lycheborne/normal.svg",
  45053. extra: 1748/1660,
  45054. bottom: 98/1846
  45055. }
  45056. },
  45057. were: {
  45058. height: math.unit(12, "feet"),
  45059. weight: math.unit(1600, "lb"),
  45060. name: "Were",
  45061. image: {
  45062. source: "./media/characters/leanne-lycheborne/were.svg",
  45063. extra: 1485/1432,
  45064. bottom: 66/1551
  45065. }
  45066. },
  45067. },
  45068. [
  45069. {
  45070. name: "Normal",
  45071. height: math.unit(6 + 1/12, "feet"),
  45072. default: true
  45073. },
  45074. ]
  45075. ))
  45076. characterMakers.push(() => makeCharacter(
  45077. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45078. {
  45079. side: {
  45080. height: math.unit(13, "feet"),
  45081. name: "Side",
  45082. image: {
  45083. source: "./media/characters/kira-tyler/side.svg",
  45084. extra: 693/393,
  45085. bottom: 58/751
  45086. }
  45087. },
  45088. },
  45089. [
  45090. {
  45091. name: "Normal",
  45092. height: math.unit(13, "feet"),
  45093. default: true
  45094. },
  45095. ]
  45096. ))
  45097. characterMakers.push(() => makeCharacter(
  45098. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45099. {
  45100. front: {
  45101. height: math.unit(10.3, "feet"),
  45102. weight: math.unit(150, "lb"),
  45103. name: "Front",
  45104. image: {
  45105. source: "./media/characters/blaze/front.svg",
  45106. extra: 1378/1286,
  45107. bottom: 172/1550
  45108. }
  45109. },
  45110. },
  45111. [
  45112. {
  45113. name: "Normal",
  45114. height: math.unit(10.3, "feet"),
  45115. default: true
  45116. },
  45117. ]
  45118. ))
  45119. characterMakers.push(() => makeCharacter(
  45120. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45121. {
  45122. side: {
  45123. height: math.unit(2, "meters"),
  45124. weight: math.unit(400, "kg"),
  45125. name: "Side",
  45126. image: {
  45127. source: "./media/characters/anu/side.svg",
  45128. extra: 506/394,
  45129. bottom: 18/524
  45130. }
  45131. },
  45132. },
  45133. [
  45134. {
  45135. name: "Humanoid",
  45136. height: math.unit(2, "meters")
  45137. },
  45138. {
  45139. name: "Normal",
  45140. height: math.unit(5, "meters"),
  45141. default: true
  45142. },
  45143. ]
  45144. ))
  45145. characterMakers.push(() => makeCharacter(
  45146. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45147. {
  45148. front: {
  45149. height: math.unit(5 + 5/12, "feet"),
  45150. weight: math.unit(170, "lb"),
  45151. name: "Front",
  45152. image: {
  45153. source: "./media/characters/synx-the-lynx/front.svg",
  45154. extra: 1893/1745,
  45155. bottom: 17/1910
  45156. }
  45157. },
  45158. side: {
  45159. height: math.unit(5 + 5/12, "feet"),
  45160. weight: math.unit(170, "lb"),
  45161. name: "Side",
  45162. image: {
  45163. source: "./media/characters/synx-the-lynx/side.svg",
  45164. extra: 1884/1740,
  45165. bottom: 39/1923
  45166. }
  45167. },
  45168. back: {
  45169. height: math.unit(5 + 5/12, "feet"),
  45170. weight: math.unit(170, "lb"),
  45171. name: "Back",
  45172. image: {
  45173. source: "./media/characters/synx-the-lynx/back.svg",
  45174. extra: 1903/1755,
  45175. bottom: 14/1917
  45176. }
  45177. },
  45178. },
  45179. [
  45180. {
  45181. name: "Normal",
  45182. height: math.unit(5 + 5/12, "feet"),
  45183. default: true
  45184. },
  45185. ]
  45186. ))
  45187. characterMakers.push(() => makeCharacter(
  45188. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45189. {
  45190. back: {
  45191. height: math.unit(15, "feet"),
  45192. name: "Back",
  45193. image: {
  45194. source: "./media/characters/nadezda-fex/back.svg",
  45195. extra: 1695/1481,
  45196. bottom: 25/1720
  45197. }
  45198. },
  45199. },
  45200. [
  45201. {
  45202. name: "Normal",
  45203. height: math.unit(15, "feet"),
  45204. default: true
  45205. },
  45206. {
  45207. name: "Macro",
  45208. height: math.unit(2.5, "miles")
  45209. },
  45210. {
  45211. name: "Goddess",
  45212. height: math.unit(2, "multiverses")
  45213. },
  45214. ]
  45215. ))
  45216. characterMakers.push(() => makeCharacter(
  45217. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45218. {
  45219. front: {
  45220. height: math.unit(216, "cm"),
  45221. name: "Front",
  45222. image: {
  45223. source: "./media/characters/lev/front.svg",
  45224. extra: 1728/1670,
  45225. bottom: 82/1810
  45226. }
  45227. },
  45228. back: {
  45229. height: math.unit(216, "cm"),
  45230. name: "Back",
  45231. image: {
  45232. source: "./media/characters/lev/back.svg",
  45233. extra: 1738/1675,
  45234. bottom: 24/1762
  45235. }
  45236. },
  45237. dressed: {
  45238. height: math.unit(216, "cm"),
  45239. name: "Dressed",
  45240. image: {
  45241. source: "./media/characters/lev/dressed.svg",
  45242. extra: 1397/1351,
  45243. bottom: 73/1470
  45244. }
  45245. },
  45246. head: {
  45247. height: math.unit(0.51, "meter"),
  45248. name: "Head",
  45249. image: {
  45250. source: "./media/characters/lev/head.svg"
  45251. }
  45252. },
  45253. },
  45254. [
  45255. {
  45256. name: "Normal",
  45257. height: math.unit(216, "cm"),
  45258. default: true
  45259. },
  45260. {
  45261. name: "Relatively Macro",
  45262. height: math.unit(80, "meters")
  45263. },
  45264. {
  45265. name: "Megamacro",
  45266. height: math.unit(21600, "meters")
  45267. },
  45268. {
  45269. name: "Megamacro+",
  45270. height: math.unit(64800, "meters")
  45271. },
  45272. ]
  45273. ))
  45274. characterMakers.push(() => makeCharacter(
  45275. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45276. {
  45277. front: {
  45278. height: math.unit(2, "meters"),
  45279. weight: math.unit(80, "kg"),
  45280. name: "Front",
  45281. image: {
  45282. source: "./media/characters/moka/front.svg",
  45283. extra: 1337/1255,
  45284. bottom: 58/1395
  45285. }
  45286. },
  45287. },
  45288. [
  45289. {
  45290. name: "Micro",
  45291. height: math.unit(15, "cm")
  45292. },
  45293. {
  45294. name: "Normal",
  45295. height: math.unit(2, "meters"),
  45296. default: true
  45297. },
  45298. {
  45299. name: "Macro",
  45300. height: math.unit(20, "meters"),
  45301. },
  45302. ]
  45303. ))
  45304. characterMakers.push(() => makeCharacter(
  45305. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45306. {
  45307. front: {
  45308. height: math.unit(9, "feet"),
  45309. weight: math.unit(240, "lb"),
  45310. name: "Front",
  45311. image: {
  45312. source: "./media/characters/kuzco/front.svg",
  45313. extra: 1593/1487,
  45314. bottom: 32/1625
  45315. }
  45316. },
  45317. side: {
  45318. height: math.unit(9, "feet"),
  45319. weight: math.unit(240, "lb"),
  45320. name: "Side",
  45321. image: {
  45322. source: "./media/characters/kuzco/side.svg",
  45323. extra: 1575/1485,
  45324. bottom: 30/1605
  45325. }
  45326. },
  45327. back: {
  45328. height: math.unit(9, "feet"),
  45329. weight: math.unit(240, "lb"),
  45330. name: "Back",
  45331. image: {
  45332. source: "./media/characters/kuzco/back.svg",
  45333. extra: 1603/1514,
  45334. bottom: 14/1617
  45335. }
  45336. },
  45337. },
  45338. [
  45339. {
  45340. name: "Normal",
  45341. height: math.unit(9, "feet"),
  45342. default: true
  45343. },
  45344. ]
  45345. ))
  45346. characterMakers.push(() => makeCharacter(
  45347. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45348. {
  45349. side: {
  45350. height: math.unit(2, "meters"),
  45351. weight: math.unit(300, "kg"),
  45352. name: "Side",
  45353. image: {
  45354. source: "./media/characters/ceruleus/side.svg",
  45355. extra: 1068/974,
  45356. bottom: 126/1194
  45357. }
  45358. },
  45359. },
  45360. [
  45361. {
  45362. name: "Normal",
  45363. height: math.unit(16, "meters"),
  45364. default: true
  45365. },
  45366. ]
  45367. ))
  45368. characterMakers.push(() => makeCharacter(
  45369. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45370. {
  45371. front: {
  45372. height: math.unit(9, "feet"),
  45373. weight: math.unit(500, "kg"),
  45374. name: "Front",
  45375. image: {
  45376. source: "./media/characters/acouya/front.svg",
  45377. extra: 1660/1473,
  45378. bottom: 28/1688
  45379. }
  45380. },
  45381. },
  45382. [
  45383. {
  45384. name: "Normal",
  45385. height: math.unit(9, "feet"),
  45386. default: true
  45387. },
  45388. ]
  45389. ))
  45390. characterMakers.push(() => makeCharacter(
  45391. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45392. {
  45393. front: {
  45394. height: math.unit(5 + 6/12, "feet"),
  45395. weight: math.unit(195, "lb"),
  45396. name: "Front",
  45397. image: {
  45398. source: "./media/characters/vant/front.svg",
  45399. extra: 1396/1320,
  45400. bottom: 20/1416
  45401. }
  45402. },
  45403. back: {
  45404. height: math.unit(5 + 6/12, "feet"),
  45405. weight: math.unit(195, "lb"),
  45406. name: "Back",
  45407. image: {
  45408. source: "./media/characters/vant/back.svg",
  45409. extra: 1396/1320,
  45410. bottom: 20/1416
  45411. }
  45412. },
  45413. maw: {
  45414. height: math.unit(0.75, "feet"),
  45415. name: "Maw",
  45416. image: {
  45417. source: "./media/characters/vant/maw.svg"
  45418. }
  45419. },
  45420. paw: {
  45421. height: math.unit(1.07, "feet"),
  45422. name: "Paw",
  45423. image: {
  45424. source: "./media/characters/vant/paw.svg"
  45425. }
  45426. },
  45427. },
  45428. [
  45429. {
  45430. name: "Micro",
  45431. height: math.unit(0.25, "inches")
  45432. },
  45433. {
  45434. name: "Normal",
  45435. height: math.unit(5 + 6/12, "feet"),
  45436. default: true
  45437. },
  45438. {
  45439. name: "Macro",
  45440. height: math.unit(75, "feet")
  45441. },
  45442. ]
  45443. ))
  45444. characterMakers.push(() => makeCharacter(
  45445. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45446. {
  45447. front: {
  45448. height: math.unit(30, "meters"),
  45449. weight: math.unit(363, "tons"),
  45450. name: "Front",
  45451. image: {
  45452. source: "./media/characters/ahra/front.svg",
  45453. extra: 1914/1814,
  45454. bottom: 46/1960
  45455. }
  45456. },
  45457. },
  45458. [
  45459. {
  45460. name: "Macro",
  45461. height: math.unit(30, "meters"),
  45462. default: true
  45463. },
  45464. ]
  45465. ))
  45466. characterMakers.push(() => makeCharacter(
  45467. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45468. {
  45469. undressed: {
  45470. height: math.unit(2, "m"),
  45471. weight: math.unit(250, "kg"),
  45472. name: "Undressed",
  45473. image: {
  45474. source: "./media/characters/coriander/undressed.svg",
  45475. extra: 1757/1606,
  45476. bottom: 107/1864
  45477. }
  45478. },
  45479. dressed: {
  45480. height: math.unit(2, "m"),
  45481. weight: math.unit(250, "kg"),
  45482. name: "Dressed",
  45483. image: {
  45484. source: "./media/characters/coriander/dressed.svg",
  45485. extra: 1757/1606,
  45486. bottom: 107/1864
  45487. }
  45488. },
  45489. },
  45490. [
  45491. {
  45492. name: "Normal",
  45493. height: math.unit(4, "meters"),
  45494. default: true
  45495. },
  45496. {
  45497. name: "XL",
  45498. height: math.unit(6, "meters")
  45499. },
  45500. {
  45501. name: "XXL",
  45502. height: math.unit(8, "meters")
  45503. },
  45504. ]
  45505. ))
  45506. characterMakers.push(() => makeCharacter(
  45507. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45508. {
  45509. front: {
  45510. height: math.unit(6, "feet"),
  45511. name: "Front",
  45512. image: {
  45513. source: "./media/characters/syrinx/front.svg",
  45514. extra: 1557/1259,
  45515. bottom: 171/1728
  45516. }
  45517. },
  45518. },
  45519. [
  45520. {
  45521. name: "Normal",
  45522. height: math.unit(6 + 3/12, "feet"),
  45523. default: true
  45524. },
  45525. ]
  45526. ))
  45527. characterMakers.push(() => makeCharacter(
  45528. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45529. {
  45530. front: {
  45531. height: math.unit(11 + 6/12, "feet"),
  45532. weight: math.unit(1.5, "tons"),
  45533. name: "Front",
  45534. image: {
  45535. source: "./media/characters/bor/front.svg",
  45536. extra: 1189/1109,
  45537. bottom: 170/1359
  45538. }
  45539. },
  45540. },
  45541. [
  45542. {
  45543. name: "Normal",
  45544. height: math.unit(11 + 6/12, "feet"),
  45545. default: true
  45546. },
  45547. {
  45548. name: "Macro",
  45549. height: math.unit(32 + 9/12, "feet")
  45550. },
  45551. ]
  45552. ))
  45553. characterMakers.push(() => makeCharacter(
  45554. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45555. {
  45556. anthro: {
  45557. height: math.unit(9, "feet"),
  45558. weight: math.unit(2076, "lb"),
  45559. name: "Anthro",
  45560. image: {
  45561. source: "./media/characters/abacus/anthro.svg",
  45562. extra: 1540/1494,
  45563. bottom: 233/1773
  45564. }
  45565. },
  45566. pigeon: {
  45567. height: math.unit(1, "feet"),
  45568. name: "Pigeon",
  45569. image: {
  45570. source: "./media/characters/abacus/pigeon.svg",
  45571. extra: 528/525,
  45572. bottom: 46/574
  45573. }
  45574. },
  45575. },
  45576. [
  45577. {
  45578. name: "Normal",
  45579. height: math.unit(9, "feet"),
  45580. default: true
  45581. },
  45582. ]
  45583. ))
  45584. characterMakers.push(() => makeCharacter(
  45585. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45586. {
  45587. side: {
  45588. height: math.unit(6, "feet"),
  45589. name: "Side",
  45590. image: {
  45591. source: "./media/characters/delkhan/side.svg",
  45592. extra: 1884/1786,
  45593. bottom: 308/2192
  45594. }
  45595. },
  45596. head: {
  45597. height: math.unit(3.38, "feet"),
  45598. name: "Head",
  45599. image: {
  45600. source: "./media/characters/delkhan/head.svg"
  45601. }
  45602. },
  45603. },
  45604. [
  45605. {
  45606. name: "Normal",
  45607. height: math.unit(72, "feet"),
  45608. default: true
  45609. },
  45610. {
  45611. name: "Giant",
  45612. height: math.unit(172, "feet")
  45613. },
  45614. ]
  45615. ))
  45616. characterMakers.push(() => makeCharacter(
  45617. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45618. {
  45619. standing: {
  45620. height: math.unit(6, "feet"),
  45621. name: "Standing",
  45622. image: {
  45623. source: "./media/characters/euchidat/standing.svg",
  45624. extra: 1612/1553,
  45625. bottom: 116/1728
  45626. }
  45627. },
  45628. leaning: {
  45629. height: math.unit(6, "feet"),
  45630. name: "Leaning",
  45631. image: {
  45632. source: "./media/characters/euchidat/leaning.svg",
  45633. extra: 1719/1674,
  45634. bottom: 27/1746
  45635. }
  45636. },
  45637. },
  45638. [
  45639. {
  45640. name: "Normal",
  45641. height: math.unit(175, "feet"),
  45642. default: true
  45643. },
  45644. {
  45645. name: "Megamacro",
  45646. height: math.unit(190, "miles")
  45647. },
  45648. {
  45649. name: "Gigamacro",
  45650. height: math.unit(190000, "miles")
  45651. },
  45652. ]
  45653. ))
  45654. characterMakers.push(() => makeCharacter(
  45655. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45656. {
  45657. front: {
  45658. height: math.unit(6, "feet"),
  45659. weight: math.unit(150, "lb"),
  45660. name: "Front",
  45661. image: {
  45662. source: "./media/characters/rebecca-stack/front.svg",
  45663. extra: 1256/1201,
  45664. bottom: 18/1274
  45665. }
  45666. },
  45667. },
  45668. [
  45669. {
  45670. name: "Normal",
  45671. height: math.unit(5 + 8/12, "feet"),
  45672. default: true
  45673. },
  45674. {
  45675. name: "Demolitionist",
  45676. height: math.unit(200, "feet")
  45677. },
  45678. {
  45679. name: "Out of Control",
  45680. height: math.unit(2, "miles")
  45681. },
  45682. {
  45683. name: "Giga",
  45684. height: math.unit(7200, "miles")
  45685. },
  45686. ]
  45687. ))
  45688. characterMakers.push(() => makeCharacter(
  45689. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45690. {
  45691. front: {
  45692. height: math.unit(6, "feet"),
  45693. weight: math.unit(150, "lb"),
  45694. name: "Front",
  45695. image: {
  45696. source: "./media/characters/jenny-cartwright/front.svg",
  45697. extra: 1384/1376,
  45698. bottom: 58/1442
  45699. }
  45700. },
  45701. },
  45702. [
  45703. {
  45704. name: "Normal",
  45705. height: math.unit(6 + 7/12, "feet"),
  45706. default: true
  45707. },
  45708. {
  45709. name: "Librarian",
  45710. height: math.unit(55, "feet")
  45711. },
  45712. {
  45713. name: "Sightseer",
  45714. height: math.unit(50, "miles")
  45715. },
  45716. {
  45717. name: "Giga",
  45718. height: math.unit(30000, "miles")
  45719. },
  45720. ]
  45721. ))
  45722. characterMakers.push(() => makeCharacter(
  45723. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45724. {
  45725. nude: {
  45726. height: math.unit(8, "feet"),
  45727. weight: math.unit(225, "lb"),
  45728. name: "Nude",
  45729. image: {
  45730. source: "./media/characters/marvy/nude.svg",
  45731. extra: 1900/1683,
  45732. bottom: 89/1989
  45733. }
  45734. },
  45735. dressed: {
  45736. height: math.unit(8, "feet"),
  45737. weight: math.unit(225, "lb"),
  45738. name: "Dressed",
  45739. image: {
  45740. source: "./media/characters/marvy/dressed.svg",
  45741. extra: 1900/1683,
  45742. bottom: 89/1989
  45743. }
  45744. },
  45745. head: {
  45746. height: math.unit(2.85, "feet"),
  45747. name: "Head",
  45748. image: {
  45749. source: "./media/characters/marvy/head.svg"
  45750. }
  45751. },
  45752. },
  45753. [
  45754. {
  45755. name: "Normal",
  45756. height: math.unit(8, "feet"),
  45757. default: true
  45758. },
  45759. ]
  45760. ))
  45761. characterMakers.push(() => makeCharacter(
  45762. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45763. {
  45764. front: {
  45765. height: math.unit(8, "feet"),
  45766. weight: math.unit(250, "lb"),
  45767. name: "Front",
  45768. image: {
  45769. source: "./media/characters/leah/front.svg",
  45770. extra: 1257/1149,
  45771. bottom: 109/1366
  45772. }
  45773. },
  45774. },
  45775. [
  45776. {
  45777. name: "Normal",
  45778. height: math.unit(8, "feet"),
  45779. default: true
  45780. },
  45781. {
  45782. name: "Minimacro",
  45783. height: math.unit(40, "feet")
  45784. },
  45785. {
  45786. name: "Macro",
  45787. height: math.unit(124, "feet")
  45788. },
  45789. {
  45790. name: "Megamacro",
  45791. height: math.unit(850, "feet")
  45792. },
  45793. ]
  45794. ))
  45795. characterMakers.push(() => makeCharacter(
  45796. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45797. {
  45798. side: {
  45799. height: math.unit(13 + 6/12, "feet"),
  45800. weight: math.unit(3200, "lb"),
  45801. name: "Side",
  45802. image: {
  45803. source: "./media/characters/alvir/side.svg",
  45804. extra: 896/589,
  45805. bottom: 26/922
  45806. }
  45807. },
  45808. },
  45809. [
  45810. {
  45811. name: "Normal",
  45812. height: math.unit(13 + 6/12, "feet"),
  45813. default: true
  45814. },
  45815. ]
  45816. ))
  45817. characterMakers.push(() => makeCharacter(
  45818. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45819. {
  45820. front: {
  45821. height: math.unit(5 + 4/12, "feet"),
  45822. weight: math.unit(236, "lb"),
  45823. name: "Front",
  45824. image: {
  45825. source: "./media/characters/zaina-khalil/front.svg",
  45826. extra: 1533/1485,
  45827. bottom: 94/1627
  45828. }
  45829. },
  45830. side: {
  45831. height: math.unit(5 + 4/12, "feet"),
  45832. weight: math.unit(236, "lb"),
  45833. name: "Side",
  45834. image: {
  45835. source: "./media/characters/zaina-khalil/side.svg",
  45836. extra: 1537/1498,
  45837. bottom: 66/1603
  45838. }
  45839. },
  45840. back: {
  45841. height: math.unit(5 + 4/12, "feet"),
  45842. weight: math.unit(236, "lb"),
  45843. name: "Back",
  45844. image: {
  45845. source: "./media/characters/zaina-khalil/back.svg",
  45846. extra: 1546/1494,
  45847. bottom: 89/1635
  45848. }
  45849. },
  45850. },
  45851. [
  45852. {
  45853. name: "Normal",
  45854. height: math.unit(5 + 4/12, "feet"),
  45855. default: true
  45856. },
  45857. ]
  45858. ))
  45859. characterMakers.push(() => makeCharacter(
  45860. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45861. {
  45862. side: {
  45863. height: math.unit(12, "feet"),
  45864. weight: math.unit(4000, "lb"),
  45865. name: "Side",
  45866. image: {
  45867. source: "./media/characters/terry/side.svg",
  45868. extra: 1518/1439,
  45869. bottom: 149/1667
  45870. }
  45871. },
  45872. },
  45873. [
  45874. {
  45875. name: "Normal",
  45876. height: math.unit(12, "feet"),
  45877. default: true
  45878. },
  45879. ]
  45880. ))
  45881. characterMakers.push(() => makeCharacter(
  45882. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45883. {
  45884. front: {
  45885. height: math.unit(12, "feet"),
  45886. weight: math.unit(1500, "lb"),
  45887. name: "Front",
  45888. image: {
  45889. source: "./media/characters/kahea/front.svg",
  45890. extra: 1722/1617,
  45891. bottom: 179/1901
  45892. }
  45893. },
  45894. },
  45895. [
  45896. {
  45897. name: "Normal",
  45898. height: math.unit(12, "feet"),
  45899. default: true
  45900. },
  45901. ]
  45902. ))
  45903. characterMakers.push(() => makeCharacter(
  45904. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45905. {
  45906. demonFront: {
  45907. height: math.unit(36, "feet"),
  45908. name: "Front",
  45909. image: {
  45910. source: "./media/characters/alex-xuria/demon-front.svg",
  45911. extra: 1705/1673,
  45912. bottom: 198/1903
  45913. },
  45914. form: "demon",
  45915. default: true
  45916. },
  45917. demonBack: {
  45918. height: math.unit(36, "feet"),
  45919. name: "Back",
  45920. image: {
  45921. source: "./media/characters/alex-xuria/demon-back.svg",
  45922. extra: 1725/1693,
  45923. bottom: 70/1795
  45924. },
  45925. form: "demon"
  45926. },
  45927. demonHead: {
  45928. height: math.unit(2.14, "meters"),
  45929. name: "Head",
  45930. image: {
  45931. source: "./media/characters/alex-xuria/demon-head.svg"
  45932. },
  45933. form: "demon"
  45934. },
  45935. demonHand: {
  45936. height: math.unit(1.61, "meters"),
  45937. name: "Hand",
  45938. image: {
  45939. source: "./media/characters/alex-xuria/demon-hand.svg"
  45940. },
  45941. form: "demon"
  45942. },
  45943. demonPaw: {
  45944. height: math.unit(1.35, "meters"),
  45945. name: "Paw",
  45946. image: {
  45947. source: "./media/characters/alex-xuria/demon-paw.svg"
  45948. },
  45949. form: "demon"
  45950. },
  45951. demonFoot: {
  45952. height: math.unit(2.2, "meters"),
  45953. name: "Foot",
  45954. image: {
  45955. source: "./media/characters/alex-xuria/demon-foot.svg"
  45956. },
  45957. form: "demon"
  45958. },
  45959. demonCock: {
  45960. height: math.unit(1.74, "meters"),
  45961. name: "Cock",
  45962. image: {
  45963. source: "./media/characters/alex-xuria/demon-cock.svg"
  45964. },
  45965. form: "demon"
  45966. },
  45967. demonTailClosed: {
  45968. height: math.unit(1.47, "meters"),
  45969. name: "Tail (Closed)",
  45970. image: {
  45971. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45972. },
  45973. form: "demon"
  45974. },
  45975. demonTailOpen: {
  45976. height: math.unit(2.85, "meters"),
  45977. name: "Tail (Open)",
  45978. image: {
  45979. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45980. },
  45981. form: "demon"
  45982. },
  45983. incubusFront: {
  45984. height: math.unit(12, "feet"),
  45985. name: "Front",
  45986. image: {
  45987. source: "./media/characters/alex-xuria/incubus-front.svg",
  45988. extra: 1754/1677,
  45989. bottom: 125/1879
  45990. },
  45991. form: "incubus",
  45992. default: true
  45993. },
  45994. incubusBack: {
  45995. height: math.unit(12, "feet"),
  45996. name: "Back",
  45997. image: {
  45998. source: "./media/characters/alex-xuria/incubus-back.svg",
  45999. extra: 1702/1647,
  46000. bottom: 30/1732
  46001. },
  46002. form: "incubus"
  46003. },
  46004. incubusHead: {
  46005. height: math.unit(3.45, "feet"),
  46006. name: "Head",
  46007. image: {
  46008. source: "./media/characters/alex-xuria/incubus-head.svg"
  46009. },
  46010. form: "incubus"
  46011. },
  46012. rabbitFront: {
  46013. height: math.unit(6, "feet"),
  46014. name: "Front",
  46015. image: {
  46016. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46017. extra: 1369/1349,
  46018. bottom: 45/1414
  46019. },
  46020. form: "rabbit",
  46021. default: true
  46022. },
  46023. rabbitSide: {
  46024. height: math.unit(6, "feet"),
  46025. name: "Side",
  46026. image: {
  46027. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46028. extra: 1370/1356,
  46029. bottom: 37/1407
  46030. },
  46031. form: "rabbit"
  46032. },
  46033. rabbitBack: {
  46034. height: math.unit(6, "feet"),
  46035. name: "Back",
  46036. image: {
  46037. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46038. extra: 1375/1358,
  46039. bottom: 43/1418
  46040. },
  46041. form: "rabbit"
  46042. },
  46043. },
  46044. [
  46045. {
  46046. name: "Normal",
  46047. height: math.unit(6, "feet"),
  46048. default: true,
  46049. form: "rabbit"
  46050. },
  46051. {
  46052. name: "Incubus",
  46053. height: math.unit(12, "feet"),
  46054. default: true,
  46055. form: "incubus"
  46056. },
  46057. {
  46058. name: "Demon",
  46059. height: math.unit(36, "feet"),
  46060. default: true,
  46061. form: "demon"
  46062. }
  46063. ],
  46064. {
  46065. "demon": {
  46066. name: "Demon",
  46067. default: true
  46068. },
  46069. "incubus": {
  46070. name: "Incubus",
  46071. },
  46072. "rabbit": {
  46073. name: "Rabbit"
  46074. }
  46075. }
  46076. ))
  46077. characterMakers.push(() => makeCharacter(
  46078. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46079. {
  46080. front: {
  46081. height: math.unit(7 + 5/12, "feet"),
  46082. weight: math.unit(510, "lb"),
  46083. name: "Front",
  46084. image: {
  46085. source: "./media/characters/syrup/front.svg",
  46086. extra: 932/916,
  46087. bottom: 26/958
  46088. }
  46089. },
  46090. },
  46091. [
  46092. {
  46093. name: "Normal",
  46094. height: math.unit(7 + 5/12, "feet"),
  46095. default: true
  46096. },
  46097. {
  46098. name: "Big",
  46099. height: math.unit(50, "feet")
  46100. },
  46101. {
  46102. name: "Macro",
  46103. height: math.unit(300, "feet")
  46104. },
  46105. {
  46106. name: "Megamacro",
  46107. height: math.unit(1, "mile")
  46108. },
  46109. ]
  46110. ))
  46111. characterMakers.push(() => makeCharacter(
  46112. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46113. {
  46114. front: {
  46115. height: math.unit(6 + 9/12, "feet"),
  46116. name: "Front",
  46117. image: {
  46118. source: "./media/characters/zeimne/front.svg",
  46119. extra: 1969/1806,
  46120. bottom: 53/2022
  46121. }
  46122. },
  46123. },
  46124. [
  46125. {
  46126. name: "Normal",
  46127. height: math.unit(6 + 9/12, "feet"),
  46128. default: true
  46129. },
  46130. {
  46131. name: "Giant",
  46132. height: math.unit(550, "feet")
  46133. },
  46134. {
  46135. name: "Mega",
  46136. height: math.unit(3, "miles")
  46137. },
  46138. {
  46139. name: "Giga",
  46140. height: math.unit(250, "miles")
  46141. },
  46142. {
  46143. name: "Tera",
  46144. height: math.unit(1, "AU")
  46145. },
  46146. ]
  46147. ))
  46148. characterMakers.push(() => makeCharacter(
  46149. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46150. {
  46151. front: {
  46152. height: math.unit(5 + 2/12, "feet"),
  46153. name: "Front",
  46154. image: {
  46155. source: "./media/characters/grar/front.svg",
  46156. extra: 1331/1119,
  46157. bottom: 60/1391
  46158. }
  46159. },
  46160. back: {
  46161. height: math.unit(5 + 2/12, "feet"),
  46162. name: "Back",
  46163. image: {
  46164. source: "./media/characters/grar/back.svg",
  46165. extra: 1385/1169,
  46166. bottom: 23/1408
  46167. }
  46168. },
  46169. },
  46170. [
  46171. {
  46172. name: "Normal",
  46173. height: math.unit(5 + 2/12, "feet"),
  46174. default: true
  46175. },
  46176. ]
  46177. ))
  46178. characterMakers.push(() => makeCharacter(
  46179. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46180. {
  46181. front: {
  46182. height: math.unit(13 + 7/12, "feet"),
  46183. weight: math.unit(2200, "lb"),
  46184. name: "Front",
  46185. image: {
  46186. source: "./media/characters/endraya/front.svg",
  46187. extra: 1289/1215,
  46188. bottom: 50/1339
  46189. }
  46190. },
  46191. nude: {
  46192. height: math.unit(13 + 7/12, "feet"),
  46193. weight: math.unit(2200, "lb"),
  46194. name: "Nude",
  46195. image: {
  46196. source: "./media/characters/endraya/nude.svg",
  46197. extra: 1247/1171,
  46198. bottom: 40/1287
  46199. }
  46200. },
  46201. head: {
  46202. height: math.unit(2.6, "feet"),
  46203. name: "Head",
  46204. image: {
  46205. source: "./media/characters/endraya/head.svg"
  46206. }
  46207. },
  46208. slit: {
  46209. height: math.unit(3.4, "feet"),
  46210. name: "Slit",
  46211. image: {
  46212. source: "./media/characters/endraya/slit.svg"
  46213. }
  46214. },
  46215. },
  46216. [
  46217. {
  46218. name: "Normal",
  46219. height: math.unit(13 + 7/12, "feet"),
  46220. default: true
  46221. },
  46222. {
  46223. name: "Macro",
  46224. height: math.unit(200, "feet")
  46225. },
  46226. ]
  46227. ))
  46228. characterMakers.push(() => makeCharacter(
  46229. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46230. {
  46231. front: {
  46232. height: math.unit(1.81, "meters"),
  46233. weight: math.unit(69, "kg"),
  46234. name: "Front",
  46235. image: {
  46236. source: "./media/characters/rodryana/front.svg",
  46237. extra: 2002/1921,
  46238. bottom: 53/2055
  46239. }
  46240. },
  46241. back: {
  46242. height: math.unit(1.81, "meters"),
  46243. weight: math.unit(69, "kg"),
  46244. name: "Back",
  46245. image: {
  46246. source: "./media/characters/rodryana/back.svg",
  46247. extra: 1993/1926,
  46248. bottom: 48/2041
  46249. }
  46250. },
  46251. maw: {
  46252. height: math.unit(0.19769417475, "meters"),
  46253. name: "Maw",
  46254. image: {
  46255. source: "./media/characters/rodryana/maw.svg"
  46256. }
  46257. },
  46258. slit: {
  46259. height: math.unit(0.31631067961, "meters"),
  46260. name: "Slit",
  46261. image: {
  46262. source: "./media/characters/rodryana/slit.svg"
  46263. }
  46264. },
  46265. },
  46266. [
  46267. {
  46268. name: "Normal",
  46269. height: math.unit(1.81, "meters")
  46270. },
  46271. {
  46272. name: "Mini Macro",
  46273. height: math.unit(181, "meters")
  46274. },
  46275. {
  46276. name: "Macro",
  46277. height: math.unit(452, "meters"),
  46278. default: true
  46279. },
  46280. {
  46281. name: "Mega Macro",
  46282. height: math.unit(1.375, "km")
  46283. },
  46284. {
  46285. name: "Giga Macro",
  46286. height: math.unit(13.575, "km")
  46287. },
  46288. ]
  46289. ))
  46290. characterMakers.push(() => makeCharacter(
  46291. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46292. {
  46293. front: {
  46294. height: math.unit(6, "feet"),
  46295. weight: math.unit(1000, "lb"),
  46296. name: "Front",
  46297. image: {
  46298. source: "./media/characters/asaya/front.svg",
  46299. extra: 1460/1200,
  46300. bottom: 71/1531
  46301. }
  46302. },
  46303. },
  46304. [
  46305. {
  46306. name: "Normal",
  46307. height: math.unit(8, "km"),
  46308. default: true
  46309. },
  46310. ]
  46311. ))
  46312. characterMakers.push(() => makeCharacter(
  46313. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46314. {
  46315. front: {
  46316. height: math.unit(3.5, "meters"),
  46317. name: "Front",
  46318. image: {
  46319. source: "./media/characters/sarzu-and-israz/front.svg",
  46320. extra: 1570/1558,
  46321. bottom: 150/1720
  46322. },
  46323. },
  46324. back: {
  46325. height: math.unit(3.5, "meters"),
  46326. name: "Back",
  46327. image: {
  46328. source: "./media/characters/sarzu-and-israz/back.svg",
  46329. extra: 1523/1509,
  46330. bottom: 132/1655
  46331. },
  46332. },
  46333. frontFemale: {
  46334. height: math.unit(3.5, "meters"),
  46335. name: "Front (Female)",
  46336. image: {
  46337. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46338. extra: 1570/1558,
  46339. bottom: 150/1720
  46340. },
  46341. },
  46342. frontHerm: {
  46343. height: math.unit(3.5, "meters"),
  46344. name: "Front (Herm)",
  46345. image: {
  46346. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46347. extra: 1570/1558,
  46348. bottom: 150/1720
  46349. },
  46350. },
  46351. },
  46352. [
  46353. {
  46354. name: "Normal",
  46355. height: math.unit(3.5, "meters"),
  46356. default: true,
  46357. },
  46358. {
  46359. name: "Macro",
  46360. height: math.unit(65.5, "meters"),
  46361. },
  46362. ],
  46363. ))
  46364. characterMakers.push(() => makeCharacter(
  46365. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46366. {
  46367. front: {
  46368. height: math.unit(6, "feet"),
  46369. weight: math.unit(250, "lb"),
  46370. name: "Front",
  46371. image: {
  46372. source: "./media/characters/zenimma/front.svg",
  46373. extra: 1346/1320,
  46374. bottom: 58/1404
  46375. }
  46376. },
  46377. back: {
  46378. height: math.unit(6, "feet"),
  46379. weight: math.unit(250, "lb"),
  46380. name: "Back",
  46381. image: {
  46382. source: "./media/characters/zenimma/back.svg",
  46383. extra: 1324/1308,
  46384. bottom: 44/1368
  46385. }
  46386. },
  46387. dick: {
  46388. height: math.unit(1.44, "feet"),
  46389. name: "Dick",
  46390. image: {
  46391. source: "./media/characters/zenimma/dick.svg"
  46392. }
  46393. },
  46394. },
  46395. [
  46396. {
  46397. name: "Canon Height",
  46398. height: math.unit(66, "miles"),
  46399. default: true
  46400. },
  46401. ]
  46402. ))
  46403. characterMakers.push(() => makeCharacter(
  46404. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46405. {
  46406. nude: {
  46407. height: math.unit(6, "feet"),
  46408. weight: math.unit(150, "lb"),
  46409. name: "Nude",
  46410. image: {
  46411. source: "./media/characters/shavon/nude.svg",
  46412. extra: 1242/1096,
  46413. bottom: 98/1340
  46414. }
  46415. },
  46416. dressed: {
  46417. height: math.unit(6, "feet"),
  46418. weight: math.unit(150, "lb"),
  46419. name: "Dressed",
  46420. image: {
  46421. source: "./media/characters/shavon/dressed.svg",
  46422. extra: 1242/1096,
  46423. bottom: 98/1340
  46424. }
  46425. },
  46426. },
  46427. [
  46428. {
  46429. name: "Macro",
  46430. height: math.unit(255, "feet"),
  46431. default: true
  46432. },
  46433. ]
  46434. ))
  46435. characterMakers.push(() => makeCharacter(
  46436. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46437. {
  46438. front: {
  46439. height: math.unit(6, "feet"),
  46440. name: "Front",
  46441. image: {
  46442. source: "./media/characters/steph/front.svg",
  46443. extra: 1430/1330,
  46444. bottom: 54/1484
  46445. }
  46446. },
  46447. },
  46448. [
  46449. {
  46450. name: "Normal",
  46451. height: math.unit(6, "feet"),
  46452. default: true
  46453. },
  46454. ]
  46455. ))
  46456. characterMakers.push(() => makeCharacter(
  46457. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46458. {
  46459. front: {
  46460. height: math.unit(9, "feet"),
  46461. weight: math.unit(400, "lb"),
  46462. name: "Front",
  46463. image: {
  46464. source: "./media/characters/kil'aman/front.svg",
  46465. extra: 1210/1159,
  46466. bottom: 109/1319
  46467. }
  46468. },
  46469. head: {
  46470. height: math.unit(2.14, "feet"),
  46471. name: "Head",
  46472. image: {
  46473. source: "./media/characters/kil'aman/head.svg"
  46474. }
  46475. },
  46476. maw: {
  46477. height: math.unit(1.21, "feet"),
  46478. name: "Maw",
  46479. image: {
  46480. source: "./media/characters/kil'aman/maw.svg"
  46481. }
  46482. },
  46483. foot: {
  46484. height: math.unit(1.7, "feet"),
  46485. name: "Foot",
  46486. image: {
  46487. source: "./media/characters/kil'aman/foot.svg"
  46488. }
  46489. },
  46490. dick: {
  46491. height: math.unit(2.1, "feet"),
  46492. name: "Dick",
  46493. image: {
  46494. source: "./media/characters/kil'aman/dick.svg"
  46495. }
  46496. },
  46497. },
  46498. [
  46499. {
  46500. name: "Normal",
  46501. height: math.unit(9, "feet")
  46502. },
  46503. {
  46504. name: "Canon Height",
  46505. height: math.unit(10, "miles"),
  46506. default: true
  46507. },
  46508. {
  46509. name: "Maximum",
  46510. height: math.unit(6e9, "miles")
  46511. },
  46512. ]
  46513. ))
  46514. characterMakers.push(() => makeCharacter(
  46515. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46516. {
  46517. front: {
  46518. height: math.unit(90, "feet"),
  46519. weight: math.unit(675000, "lb"),
  46520. name: "Front",
  46521. image: {
  46522. source: "./media/characters/qadan/front.svg",
  46523. extra: 1012/1004,
  46524. bottom: 78/1090
  46525. }
  46526. },
  46527. back: {
  46528. height: math.unit(90, "feet"),
  46529. weight: math.unit(675000, "lb"),
  46530. name: "Back",
  46531. image: {
  46532. source: "./media/characters/qadan/back.svg",
  46533. extra: 1042/1031,
  46534. bottom: 55/1097
  46535. }
  46536. },
  46537. armored: {
  46538. height: math.unit(90, "feet"),
  46539. weight: math.unit(675000, "lb"),
  46540. name: "Armored",
  46541. image: {
  46542. source: "./media/characters/qadan/armored.svg",
  46543. extra: 1047/1037,
  46544. bottom: 48/1095
  46545. }
  46546. },
  46547. },
  46548. [
  46549. {
  46550. name: "Normal",
  46551. height: math.unit(90, "feet"),
  46552. default: true
  46553. },
  46554. ]
  46555. ))
  46556. characterMakers.push(() => makeCharacter(
  46557. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46558. {
  46559. front: {
  46560. height: math.unit(6, "feet"),
  46561. weight: math.unit(225, "lb"),
  46562. name: "Front",
  46563. image: {
  46564. source: "./media/characters/brooke/front.svg",
  46565. extra: 1050/1010,
  46566. bottom: 66/1116
  46567. }
  46568. },
  46569. back: {
  46570. height: math.unit(6, "feet"),
  46571. weight: math.unit(225, "lb"),
  46572. name: "Back",
  46573. image: {
  46574. source: "./media/characters/brooke/back.svg",
  46575. extra: 1053/1013,
  46576. bottom: 41/1094
  46577. }
  46578. },
  46579. dressed: {
  46580. height: math.unit(6, "feet"),
  46581. weight: math.unit(225, "lb"),
  46582. name: "Dressed",
  46583. image: {
  46584. source: "./media/characters/brooke/dressed.svg",
  46585. extra: 1050/1010,
  46586. bottom: 66/1116
  46587. }
  46588. },
  46589. },
  46590. [
  46591. {
  46592. name: "Canon Height",
  46593. height: math.unit(500, "miles"),
  46594. default: true
  46595. },
  46596. ]
  46597. ))
  46598. characterMakers.push(() => makeCharacter(
  46599. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46600. {
  46601. front: {
  46602. height: math.unit(6 + 2/12, "feet"),
  46603. weight: math.unit(210, "lb"),
  46604. name: "Front",
  46605. image: {
  46606. source: "./media/characters/wubs/front.svg",
  46607. extra: 1345/1325,
  46608. bottom: 70/1415
  46609. }
  46610. },
  46611. back: {
  46612. height: math.unit(6 + 2/12, "feet"),
  46613. weight: math.unit(210, "lb"),
  46614. name: "Back",
  46615. image: {
  46616. source: "./media/characters/wubs/back.svg",
  46617. extra: 1296/1275,
  46618. bottom: 58/1354
  46619. }
  46620. },
  46621. },
  46622. [
  46623. {
  46624. name: "Normal",
  46625. height: math.unit(6 + 2/12, "feet"),
  46626. default: true
  46627. },
  46628. {
  46629. name: "Macro",
  46630. height: math.unit(1000, "feet")
  46631. },
  46632. {
  46633. name: "Megamacro",
  46634. height: math.unit(1, "mile")
  46635. },
  46636. ]
  46637. ))
  46638. characterMakers.push(() => makeCharacter(
  46639. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46640. {
  46641. front: {
  46642. height: math.unit(4, "feet"),
  46643. weight: math.unit(120, "lb"),
  46644. name: "Front",
  46645. image: {
  46646. source: "./media/characters/blue/front.svg",
  46647. extra: 1636/1525,
  46648. bottom: 43/1679
  46649. }
  46650. },
  46651. back: {
  46652. height: math.unit(4, "feet"),
  46653. weight: math.unit(120, "lb"),
  46654. name: "Back",
  46655. image: {
  46656. source: "./media/characters/blue/back.svg",
  46657. extra: 1660/1560,
  46658. bottom: 57/1717
  46659. }
  46660. },
  46661. paws: {
  46662. height: math.unit(0.826, "feet"),
  46663. name: "Paws",
  46664. image: {
  46665. source: "./media/characters/blue/paws.svg"
  46666. }
  46667. },
  46668. },
  46669. [
  46670. {
  46671. name: "Micro",
  46672. height: math.unit(3, "inches")
  46673. },
  46674. {
  46675. name: "Normal",
  46676. height: math.unit(4, "feet"),
  46677. default: true
  46678. },
  46679. {
  46680. name: "Femenine Form",
  46681. height: math.unit(14, "feet")
  46682. },
  46683. {
  46684. name: "Werebat Form",
  46685. height: math.unit(18, "feet")
  46686. },
  46687. ]
  46688. ))
  46689. characterMakers.push(() => makeCharacter(
  46690. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46691. {
  46692. female: {
  46693. height: math.unit(7 + 4/12, "feet"),
  46694. weight: math.unit(243, "lb"),
  46695. name: "Female",
  46696. image: {
  46697. source: "./media/characters/kaya/female.svg",
  46698. extra: 975/898,
  46699. bottom: 34/1009
  46700. }
  46701. },
  46702. herm: {
  46703. height: math.unit(7 + 4/12, "feet"),
  46704. weight: math.unit(243, "lb"),
  46705. name: "Herm",
  46706. image: {
  46707. source: "./media/characters/kaya/herm.svg",
  46708. extra: 975/898,
  46709. bottom: 34/1009
  46710. }
  46711. },
  46712. },
  46713. [
  46714. {
  46715. name: "Normal",
  46716. height: math.unit(7 + 4/12, "feet"),
  46717. default: true
  46718. },
  46719. ]
  46720. ))
  46721. characterMakers.push(() => makeCharacter(
  46722. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46723. {
  46724. female: {
  46725. height: math.unit(9 + 4/12, "feet"),
  46726. weight: math.unit(398, "lb"),
  46727. name: "Female",
  46728. image: {
  46729. source: "./media/characters/kassandra/female.svg",
  46730. extra: 908/839,
  46731. bottom: 61/969
  46732. }
  46733. },
  46734. intersex: {
  46735. height: math.unit(9 + 4/12, "feet"),
  46736. weight: math.unit(398, "lb"),
  46737. name: "Intersex",
  46738. image: {
  46739. source: "./media/characters/kassandra/intersex.svg",
  46740. extra: 908/839,
  46741. bottom: 61/969
  46742. }
  46743. },
  46744. },
  46745. [
  46746. {
  46747. name: "Normal",
  46748. height: math.unit(9 + 4/12, "feet"),
  46749. default: true
  46750. },
  46751. ]
  46752. ))
  46753. characterMakers.push(() => makeCharacter(
  46754. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46755. {
  46756. front: {
  46757. height: math.unit(3, "meters"),
  46758. name: "Front",
  46759. image: {
  46760. source: "./media/characters/amy/front.svg",
  46761. extra: 1380/1343,
  46762. bottom: 70/1450
  46763. }
  46764. },
  46765. back: {
  46766. height: math.unit(3, "meters"),
  46767. name: "Back",
  46768. image: {
  46769. source: "./media/characters/amy/back.svg",
  46770. extra: 1380/1347,
  46771. bottom: 66/1446
  46772. }
  46773. },
  46774. },
  46775. [
  46776. {
  46777. name: "Normal",
  46778. height: math.unit(3, "meters"),
  46779. default: true
  46780. },
  46781. ]
  46782. ))
  46783. characterMakers.push(() => makeCharacter(
  46784. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46785. {
  46786. side: {
  46787. height: math.unit(47, "cm"),
  46788. weight: math.unit(10.8, "kg"),
  46789. name: "Side",
  46790. image: {
  46791. source: "./media/characters/alphaschakal/side.svg",
  46792. extra: 1058/568,
  46793. bottom: 62/1120
  46794. }
  46795. },
  46796. back: {
  46797. height: math.unit(78, "cm"),
  46798. weight: math.unit(10.8, "kg"),
  46799. name: "Back",
  46800. image: {
  46801. source: "./media/characters/alphaschakal/back.svg",
  46802. extra: 1102/942,
  46803. bottom: 185/1287
  46804. }
  46805. },
  46806. head: {
  46807. height: math.unit(28, "cm"),
  46808. name: "Head",
  46809. image: {
  46810. source: "./media/characters/alphaschakal/head.svg",
  46811. extra: 696/508,
  46812. bottom: 0/696
  46813. }
  46814. },
  46815. paw: {
  46816. height: math.unit(16, "cm"),
  46817. name: "Paw",
  46818. image: {
  46819. source: "./media/characters/alphaschakal/paw.svg"
  46820. }
  46821. },
  46822. },
  46823. [
  46824. {
  46825. name: "Normal",
  46826. height: math.unit(47, "cm"),
  46827. default: true
  46828. },
  46829. {
  46830. name: "Macro",
  46831. height: math.unit(340, "cm")
  46832. },
  46833. ]
  46834. ))
  46835. characterMakers.push(() => makeCharacter(
  46836. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46837. {
  46838. front: {
  46839. height: math.unit(36, "earths"),
  46840. name: "Front",
  46841. image: {
  46842. source: "./media/characters/ecobyss/front.svg",
  46843. extra: 1282/1215,
  46844. bottom: 11/1293
  46845. }
  46846. },
  46847. back: {
  46848. height: math.unit(36, "earths"),
  46849. name: "Back",
  46850. image: {
  46851. source: "./media/characters/ecobyss/back.svg",
  46852. extra: 1291/1222,
  46853. bottom: 8/1299
  46854. }
  46855. },
  46856. },
  46857. [
  46858. {
  46859. name: "Normal",
  46860. height: math.unit(36, "earths"),
  46861. default: true
  46862. },
  46863. ]
  46864. ))
  46865. characterMakers.push(() => makeCharacter(
  46866. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46867. {
  46868. front: {
  46869. height: math.unit(12, "feet"),
  46870. name: "Front",
  46871. image: {
  46872. source: "./media/characters/vasuk/front.svg",
  46873. extra: 1326/1207,
  46874. bottom: 64/1390
  46875. }
  46876. },
  46877. },
  46878. [
  46879. {
  46880. name: "Normal",
  46881. height: math.unit(12, "feet"),
  46882. default: true
  46883. },
  46884. ]
  46885. ))
  46886. characterMakers.push(() => makeCharacter(
  46887. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46888. {
  46889. side: {
  46890. height: math.unit(100, "feet"),
  46891. name: "Side",
  46892. image: {
  46893. source: "./media/characters/linneaus/side.svg",
  46894. extra: 987/807,
  46895. bottom: 47/1034
  46896. }
  46897. },
  46898. },
  46899. [
  46900. {
  46901. name: "Macro",
  46902. height: math.unit(100, "feet"),
  46903. default: true
  46904. },
  46905. ]
  46906. ))
  46907. characterMakers.push(() => makeCharacter(
  46908. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46909. {
  46910. front: {
  46911. height: math.unit(8, "feet"),
  46912. weight: math.unit(1200, "lb"),
  46913. name: "Front",
  46914. image: {
  46915. source: "./media/characters/nyterious-daligdig/front.svg",
  46916. extra: 1284/1094,
  46917. bottom: 84/1368
  46918. }
  46919. },
  46920. back: {
  46921. height: math.unit(8, "feet"),
  46922. weight: math.unit(1200, "lb"),
  46923. name: "Back",
  46924. image: {
  46925. source: "./media/characters/nyterious-daligdig/back.svg",
  46926. extra: 1301/1121,
  46927. bottom: 129/1430
  46928. }
  46929. },
  46930. mouth: {
  46931. height: math.unit(1.464, "feet"),
  46932. name: "Mouth",
  46933. image: {
  46934. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46935. }
  46936. },
  46937. },
  46938. [
  46939. {
  46940. name: "Small",
  46941. height: math.unit(8, "feet"),
  46942. default: true
  46943. },
  46944. {
  46945. name: "Normal",
  46946. height: math.unit(15, "feet")
  46947. },
  46948. {
  46949. name: "Macro",
  46950. height: math.unit(90, "feet")
  46951. },
  46952. ]
  46953. ))
  46954. characterMakers.push(() => makeCharacter(
  46955. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46956. {
  46957. front: {
  46958. height: math.unit(7 + 4/12, "feet"),
  46959. weight: math.unit(252, "lb"),
  46960. name: "Front",
  46961. image: {
  46962. source: "./media/characters/bandel/front.svg",
  46963. extra: 1946/1775,
  46964. bottom: 26/1972
  46965. }
  46966. },
  46967. back: {
  46968. height: math.unit(7 + 4/12, "feet"),
  46969. weight: math.unit(252, "lb"),
  46970. name: "Back",
  46971. image: {
  46972. source: "./media/characters/bandel/back.svg",
  46973. extra: 1940/1770,
  46974. bottom: 25/1965
  46975. }
  46976. },
  46977. maw: {
  46978. height: math.unit(2.15, "feet"),
  46979. name: "Maw",
  46980. image: {
  46981. source: "./media/characters/bandel/maw.svg"
  46982. }
  46983. },
  46984. stomach: {
  46985. height: math.unit(1.95, "feet"),
  46986. name: "Stomach",
  46987. image: {
  46988. source: "./media/characters/bandel/stomach.svg"
  46989. }
  46990. },
  46991. },
  46992. [
  46993. {
  46994. name: "Normal",
  46995. height: math.unit(7 + 4/12, "feet"),
  46996. default: true
  46997. },
  46998. ]
  46999. ))
  47000. characterMakers.push(() => makeCharacter(
  47001. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47002. {
  47003. front: {
  47004. height: math.unit(10 + 5/12, "feet"),
  47005. weight: math.unit(773.5, "kg"),
  47006. name: "Front",
  47007. image: {
  47008. source: "./media/characters/zed/front.svg",
  47009. extra: 987/941,
  47010. bottom: 52/1039
  47011. }
  47012. },
  47013. },
  47014. [
  47015. {
  47016. name: "Short",
  47017. height: math.unit(5 + 4/12, "feet")
  47018. },
  47019. {
  47020. name: "Average",
  47021. height: math.unit(10 + 5/12, "feet"),
  47022. default: true
  47023. },
  47024. {
  47025. name: "Mini-Macro",
  47026. height: math.unit(24 + 9/12, "feet")
  47027. },
  47028. {
  47029. name: "Macro",
  47030. height: math.unit(249, "feet")
  47031. },
  47032. {
  47033. name: "Mega-Macro",
  47034. height: math.unit(12490, "feet")
  47035. },
  47036. {
  47037. name: "Giga-Macro",
  47038. height: math.unit(24.9, "miles")
  47039. },
  47040. {
  47041. name: "Tera-Macro",
  47042. height: math.unit(24900, "miles")
  47043. },
  47044. {
  47045. name: "Cosmic Scale",
  47046. height: math.unit(38.9, "lightyears")
  47047. },
  47048. {
  47049. name: "Universal Scale",
  47050. height: math.unit(138e12, "lightyears")
  47051. },
  47052. ]
  47053. ))
  47054. characterMakers.push(() => makeCharacter(
  47055. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47056. {
  47057. front: {
  47058. height: math.unit(1561, "inches"),
  47059. name: "Front",
  47060. image: {
  47061. source: "./media/characters/ivan/front.svg",
  47062. extra: 1126/1071,
  47063. bottom: 26/1152
  47064. }
  47065. },
  47066. back: {
  47067. height: math.unit(1561, "inches"),
  47068. name: "Back",
  47069. image: {
  47070. source: "./media/characters/ivan/back.svg",
  47071. extra: 1134/1079,
  47072. bottom: 30/1164
  47073. }
  47074. },
  47075. },
  47076. [
  47077. {
  47078. name: "Normal",
  47079. height: math.unit(1561, "inches"),
  47080. default: true
  47081. },
  47082. ]
  47083. ))
  47084. characterMakers.push(() => makeCharacter(
  47085. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47086. {
  47087. front: {
  47088. height: math.unit(5 + 7/12, "feet"),
  47089. weight: math.unit(150, "lb"),
  47090. name: "Front",
  47091. image: {
  47092. source: "./media/characters/robin-arctic-hare/front.svg",
  47093. extra: 1148/974,
  47094. bottom: 20/1168
  47095. }
  47096. },
  47097. },
  47098. [
  47099. {
  47100. name: "Normal",
  47101. height: math.unit(5 + 7/12, "feet"),
  47102. default: true
  47103. },
  47104. ]
  47105. ))
  47106. characterMakers.push(() => makeCharacter(
  47107. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47108. {
  47109. side: {
  47110. height: math.unit(5, "feet"),
  47111. name: "Side",
  47112. image: {
  47113. source: "./media/characters/birch/side.svg",
  47114. extra: 985/796,
  47115. bottom: 111/1096
  47116. }
  47117. },
  47118. },
  47119. [
  47120. {
  47121. name: "Normal",
  47122. height: math.unit(5, "feet"),
  47123. default: true
  47124. },
  47125. ]
  47126. ))
  47127. characterMakers.push(() => makeCharacter(
  47128. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47129. {
  47130. front: {
  47131. height: math.unit(4, "feet"),
  47132. name: "Front",
  47133. image: {
  47134. source: "./media/characters/rasp/front.svg",
  47135. extra: 561/478,
  47136. bottom: 74/635
  47137. }
  47138. },
  47139. },
  47140. [
  47141. {
  47142. name: "Normal",
  47143. height: math.unit(4, "feet"),
  47144. default: true
  47145. },
  47146. ]
  47147. ))
  47148. characterMakers.push(() => makeCharacter(
  47149. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47150. {
  47151. front: {
  47152. height: math.unit(4 + 6/12, "feet"),
  47153. name: "Front",
  47154. image: {
  47155. source: "./media/characters/agatha/front.svg",
  47156. extra: 947/933,
  47157. bottom: 42/989
  47158. }
  47159. },
  47160. back: {
  47161. height: math.unit(4 + 6/12, "feet"),
  47162. name: "Back",
  47163. image: {
  47164. source: "./media/characters/agatha/back.svg",
  47165. extra: 935/922,
  47166. bottom: 48/983
  47167. }
  47168. },
  47169. },
  47170. [
  47171. {
  47172. name: "Normal",
  47173. height: math.unit(4 + 6 /12, "feet"),
  47174. default: true
  47175. },
  47176. {
  47177. name: "Max Size",
  47178. height: math.unit(500, "feet")
  47179. },
  47180. ]
  47181. ))
  47182. characterMakers.push(() => makeCharacter(
  47183. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47184. {
  47185. side: {
  47186. height: math.unit(30, "feet"),
  47187. name: "Side",
  47188. image: {
  47189. source: "./media/characters/roggy/side.svg",
  47190. extra: 909/643,
  47191. bottom: 63/972
  47192. }
  47193. },
  47194. lounging: {
  47195. height: math.unit(20, "feet"),
  47196. name: "Lounging",
  47197. image: {
  47198. source: "./media/characters/roggy/lounging.svg",
  47199. extra: 643/479,
  47200. bottom: 145/788
  47201. }
  47202. },
  47203. handpaw: {
  47204. height: math.unit(13.1, "feet"),
  47205. name: "Handpaw",
  47206. image: {
  47207. source: "./media/characters/roggy/handpaw.svg"
  47208. }
  47209. },
  47210. footpaw: {
  47211. height: math.unit(15.8, "feet"),
  47212. name: "Footpaw",
  47213. image: {
  47214. source: "./media/characters/roggy/footpaw.svg"
  47215. }
  47216. },
  47217. },
  47218. [
  47219. {
  47220. name: "Menacing",
  47221. height: math.unit(30, "feet"),
  47222. default: true
  47223. },
  47224. ]
  47225. ))
  47226. characterMakers.push(() => makeCharacter(
  47227. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47228. {
  47229. front: {
  47230. height: math.unit(5 + 7/12, "feet"),
  47231. weight: math.unit(135, "lb"),
  47232. name: "Front",
  47233. image: {
  47234. source: "./media/characters/naomi/front.svg",
  47235. extra: 1209/1154,
  47236. bottom: 129/1338
  47237. }
  47238. },
  47239. back: {
  47240. height: math.unit(5 + 7/12, "feet"),
  47241. weight: math.unit(135, "lb"),
  47242. name: "Back",
  47243. image: {
  47244. source: "./media/characters/naomi/back.svg",
  47245. extra: 1252/1190,
  47246. bottom: 23/1275
  47247. }
  47248. },
  47249. },
  47250. [
  47251. {
  47252. name: "Normal",
  47253. height: math.unit(5 + 7 /12, "feet"),
  47254. default: true
  47255. },
  47256. ]
  47257. ))
  47258. characterMakers.push(() => makeCharacter(
  47259. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47260. {
  47261. side: {
  47262. height: math.unit(35, "meters"),
  47263. name: "Side",
  47264. image: {
  47265. source: "./media/characters/kimpi/side.svg",
  47266. extra: 419/382,
  47267. bottom: 63/482
  47268. }
  47269. },
  47270. hand: {
  47271. height: math.unit(8.96, "meters"),
  47272. name: "Hand",
  47273. image: {
  47274. source: "./media/characters/kimpi/hand.svg"
  47275. }
  47276. },
  47277. },
  47278. [
  47279. {
  47280. name: "Normal",
  47281. height: math.unit(35, "meters"),
  47282. default: true
  47283. },
  47284. ]
  47285. ))
  47286. characterMakers.push(() => makeCharacter(
  47287. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47288. {
  47289. front: {
  47290. height: math.unit(4 + 4/12, "feet"),
  47291. name: "Front",
  47292. image: {
  47293. source: "./media/characters/pepper-purrloin/front.svg",
  47294. extra: 1141/1024,
  47295. bottom: 21/1162
  47296. }
  47297. },
  47298. },
  47299. [
  47300. {
  47301. name: "Normal",
  47302. height: math.unit(4 + 4/12, "feet"),
  47303. default: true
  47304. },
  47305. ]
  47306. ))
  47307. characterMakers.push(() => makeCharacter(
  47308. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47309. {
  47310. front: {
  47311. height: math.unit(6 + 2/12, "feet"),
  47312. name: "Front",
  47313. image: {
  47314. source: "./media/characters/raphael/front.svg",
  47315. extra: 1101/962,
  47316. bottom: 59/1160
  47317. }
  47318. },
  47319. },
  47320. [
  47321. {
  47322. name: "Normal",
  47323. height: math.unit(6 + 2/12, "feet"),
  47324. default: true
  47325. },
  47326. ]
  47327. ))
  47328. characterMakers.push(() => makeCharacter(
  47329. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47330. {
  47331. front: {
  47332. height: math.unit(6, "feet"),
  47333. weight: math.unit(150, "lb"),
  47334. name: "Front",
  47335. image: {
  47336. source: "./media/characters/victor-williams/front.svg",
  47337. extra: 1894/1825,
  47338. bottom: 67/1961
  47339. }
  47340. },
  47341. },
  47342. [
  47343. {
  47344. name: "Normal",
  47345. height: math.unit(6, "feet"),
  47346. default: true
  47347. },
  47348. ]
  47349. ))
  47350. characterMakers.push(() => makeCharacter(
  47351. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47352. {
  47353. front: {
  47354. height: math.unit(5 + 8/12, "feet"),
  47355. weight: math.unit(150, "lb"),
  47356. name: "Front",
  47357. image: {
  47358. source: "./media/characters/rachel/front.svg",
  47359. extra: 1902/1787,
  47360. bottom: 46/1948
  47361. }
  47362. },
  47363. },
  47364. [
  47365. {
  47366. name: "Base Height",
  47367. height: math.unit(5 + 8/12, "feet"),
  47368. default: true
  47369. },
  47370. {
  47371. name: "Macro",
  47372. height: math.unit(200, "feet")
  47373. },
  47374. {
  47375. name: "Mega Macro",
  47376. height: math.unit(1, "mile")
  47377. },
  47378. {
  47379. name: "Giga Macro",
  47380. height: math.unit(1500, "miles")
  47381. },
  47382. {
  47383. name: "Tera Macro",
  47384. height: math.unit(8000, "miles")
  47385. },
  47386. {
  47387. name: "Tera Macro+",
  47388. height: math.unit(2e5, "miles")
  47389. },
  47390. ]
  47391. ))
  47392. characterMakers.push(() => makeCharacter(
  47393. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47394. {
  47395. front: {
  47396. height: math.unit(6.5, "feet"),
  47397. name: "Front",
  47398. image: {
  47399. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47400. extra: 860/819,
  47401. bottom: 307/1167
  47402. }
  47403. },
  47404. back: {
  47405. height: math.unit(6.5, "feet"),
  47406. name: "Back",
  47407. image: {
  47408. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47409. extra: 880/837,
  47410. bottom: 395/1275
  47411. }
  47412. },
  47413. sleeping: {
  47414. height: math.unit(2.79, "feet"),
  47415. name: "Sleeping",
  47416. image: {
  47417. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47418. extra: 465/383,
  47419. bottom: 263/728
  47420. }
  47421. },
  47422. maw: {
  47423. height: math.unit(2.52, "feet"),
  47424. name: "Maw",
  47425. image: {
  47426. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47427. }
  47428. },
  47429. },
  47430. [
  47431. {
  47432. name: "Normal",
  47433. height: math.unit(6.5, "feet"),
  47434. default: true
  47435. },
  47436. ]
  47437. ))
  47438. characterMakers.push(() => makeCharacter(
  47439. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47440. {
  47441. front: {
  47442. height: math.unit(5, "feet"),
  47443. name: "Front",
  47444. image: {
  47445. source: "./media/characters/nova-nerium/front.svg",
  47446. extra: 1548/1392,
  47447. bottom: 374/1922
  47448. }
  47449. },
  47450. back: {
  47451. height: math.unit(5, "feet"),
  47452. name: "Back",
  47453. image: {
  47454. source: "./media/characters/nova-nerium/back.svg",
  47455. extra: 1658/1468,
  47456. bottom: 257/1915
  47457. }
  47458. },
  47459. },
  47460. [
  47461. {
  47462. name: "Normal",
  47463. height: math.unit(5, "feet"),
  47464. default: true
  47465. },
  47466. ]
  47467. ))
  47468. characterMakers.push(() => makeCharacter(
  47469. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47470. {
  47471. front: {
  47472. height: math.unit(5 + 4/12, "feet"),
  47473. name: "Front",
  47474. image: {
  47475. source: "./media/characters/ashe-pyriph/front.svg",
  47476. extra: 1935/1747,
  47477. bottom: 60/1995
  47478. }
  47479. },
  47480. },
  47481. [
  47482. {
  47483. name: "Normal",
  47484. height: math.unit(5 + 4/12, "feet"),
  47485. default: true
  47486. },
  47487. ]
  47488. ))
  47489. characterMakers.push(() => makeCharacter(
  47490. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47491. {
  47492. front: {
  47493. height: math.unit(8.7, "feet"),
  47494. name: "Front",
  47495. image: {
  47496. source: "./media/characters/flicker-wisp/front.svg",
  47497. extra: 1835/1613,
  47498. bottom: 449/2284
  47499. }
  47500. },
  47501. side: {
  47502. height: math.unit(8.7, "feet"),
  47503. name: "Side",
  47504. image: {
  47505. source: "./media/characters/flicker-wisp/side.svg",
  47506. extra: 1841/1642,
  47507. bottom: 336/2177
  47508. },
  47509. default: true
  47510. },
  47511. maw: {
  47512. height: math.unit(3.35, "feet"),
  47513. name: "Maw",
  47514. image: {
  47515. source: "./media/characters/flicker-wisp/maw.svg",
  47516. extra: 2338/1506,
  47517. bottom: 0/2338
  47518. }
  47519. },
  47520. ovipositor: {
  47521. height: math.unit(4.95, "feet"),
  47522. name: "Ovipositor",
  47523. image: {
  47524. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47525. }
  47526. },
  47527. egg: {
  47528. height: math.unit(0.385, "feet"),
  47529. weight: math.unit(2, "lb"),
  47530. name: "Egg",
  47531. image: {
  47532. source: "./media/characters/flicker-wisp/egg.svg"
  47533. }
  47534. },
  47535. },
  47536. [
  47537. {
  47538. name: "Normal",
  47539. height: math.unit(8.7, "feet"),
  47540. default: true
  47541. },
  47542. ]
  47543. ))
  47544. characterMakers.push(() => makeCharacter(
  47545. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47546. {
  47547. side: {
  47548. height: math.unit(11, "feet"),
  47549. name: "Side",
  47550. image: {
  47551. source: "./media/characters/faefnul/side.svg",
  47552. extra: 1100/1007,
  47553. bottom: 0/1100
  47554. }
  47555. },
  47556. },
  47557. [
  47558. {
  47559. name: "Normal",
  47560. height: math.unit(11, "feet"),
  47561. default: true
  47562. },
  47563. ]
  47564. ))
  47565. characterMakers.push(() => makeCharacter(
  47566. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47567. {
  47568. front: {
  47569. height: math.unit(6 + 2/12, "feet"),
  47570. name: "Front",
  47571. image: {
  47572. source: "./media/characters/shady/front.svg",
  47573. extra: 502/461,
  47574. bottom: 9/511
  47575. }
  47576. },
  47577. kneeling: {
  47578. height: math.unit(4.6, "feet"),
  47579. name: "Kneeling",
  47580. image: {
  47581. source: "./media/characters/shady/kneeling.svg",
  47582. extra: 1328/1219,
  47583. bottom: 117/1445
  47584. }
  47585. },
  47586. maw: {
  47587. height: math.unit(2, "feet"),
  47588. name: "Maw",
  47589. image: {
  47590. source: "./media/characters/shady/maw.svg"
  47591. }
  47592. },
  47593. },
  47594. [
  47595. {
  47596. name: "Nano",
  47597. height: math.unit(1, "mm")
  47598. },
  47599. {
  47600. name: "Micro",
  47601. height: math.unit(12, "mm")
  47602. },
  47603. {
  47604. name: "Tiny",
  47605. height: math.unit(3, "inches")
  47606. },
  47607. {
  47608. name: "Normal",
  47609. height: math.unit(6 + 2/12, "feet"),
  47610. default: true
  47611. },
  47612. {
  47613. name: "Big",
  47614. height: math.unit(15, "feet")
  47615. },
  47616. {
  47617. name: "Macro",
  47618. height: math.unit(150, "feet")
  47619. },
  47620. {
  47621. name: "Titanic",
  47622. height: math.unit(500, "feet")
  47623. },
  47624. ]
  47625. ))
  47626. characterMakers.push(() => makeCharacter(
  47627. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47628. {
  47629. front: {
  47630. height: math.unit(12, "feet"),
  47631. name: "Front",
  47632. image: {
  47633. source: "./media/characters/fenrir/front.svg",
  47634. extra: 968/875,
  47635. bottom: 22/990
  47636. }
  47637. },
  47638. },
  47639. [
  47640. {
  47641. name: "Big",
  47642. height: math.unit(12, "feet"),
  47643. default: true
  47644. },
  47645. ]
  47646. ))
  47647. characterMakers.push(() => makeCharacter(
  47648. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47649. {
  47650. front: {
  47651. height: math.unit(5 + 4/12, "feet"),
  47652. name: "Front",
  47653. image: {
  47654. source: "./media/characters/makar/front.svg",
  47655. extra: 1181/1112,
  47656. bottom: 78/1259
  47657. }
  47658. },
  47659. },
  47660. [
  47661. {
  47662. name: "Normal",
  47663. height: math.unit(5 + 4/12, "feet"),
  47664. default: true
  47665. },
  47666. ]
  47667. ))
  47668. characterMakers.push(() => makeCharacter(
  47669. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47670. {
  47671. front: {
  47672. height: math.unit(5 + 7/12, "feet"),
  47673. name: "Front",
  47674. image: {
  47675. source: "./media/characters/callow/front.svg",
  47676. extra: 1482/1304,
  47677. bottom: 23/1505
  47678. }
  47679. },
  47680. back: {
  47681. height: math.unit(5 + 7/12, "feet"),
  47682. name: "Back",
  47683. image: {
  47684. source: "./media/characters/callow/back.svg",
  47685. extra: 1484/1296,
  47686. bottom: 25/1509
  47687. }
  47688. },
  47689. },
  47690. [
  47691. {
  47692. name: "Micro",
  47693. height: math.unit(3, "inches"),
  47694. default: true
  47695. },
  47696. {
  47697. name: "Normal",
  47698. height: math.unit(5 + 7/12, "feet")
  47699. },
  47700. ]
  47701. ))
  47702. characterMakers.push(() => makeCharacter(
  47703. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47704. {
  47705. front: {
  47706. height: math.unit(6 + 2/12, "feet"),
  47707. name: "Front",
  47708. image: {
  47709. source: "./media/characters/natel/front.svg",
  47710. extra: 1833/1692,
  47711. bottom: 166/1999
  47712. }
  47713. },
  47714. },
  47715. [
  47716. {
  47717. name: "Normal",
  47718. height: math.unit(6 + 2/12, "feet"),
  47719. default: true
  47720. },
  47721. ]
  47722. ))
  47723. characterMakers.push(() => makeCharacter(
  47724. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47725. {
  47726. front: {
  47727. height: math.unit(1.75, "meters"),
  47728. name: "Front",
  47729. image: {
  47730. source: "./media/characters/misu/front.svg",
  47731. extra: 1690/1558,
  47732. bottom: 234/1924
  47733. }
  47734. },
  47735. back: {
  47736. height: math.unit(1.75, "meters"),
  47737. name: "Back",
  47738. image: {
  47739. source: "./media/characters/misu/back.svg",
  47740. extra: 1762/1618,
  47741. bottom: 146/1908
  47742. }
  47743. },
  47744. frontNude: {
  47745. height: math.unit(1.75, "meters"),
  47746. name: "Front (Nude)",
  47747. image: {
  47748. source: "./media/characters/misu/front-nude.svg",
  47749. extra: 1690/1558,
  47750. bottom: 234/1924
  47751. }
  47752. },
  47753. backNude: {
  47754. height: math.unit(1.75, "meters"),
  47755. name: "Back (Nude)",
  47756. image: {
  47757. source: "./media/characters/misu/back-nude.svg",
  47758. extra: 1762/1618,
  47759. bottom: 146/1908
  47760. }
  47761. },
  47762. frontErect: {
  47763. height: math.unit(1.75, "meters"),
  47764. name: "Front (Erect)",
  47765. image: {
  47766. source: "./media/characters/misu/front-erect.svg",
  47767. extra: 1690/1558,
  47768. bottom: 234/1924
  47769. }
  47770. },
  47771. maw: {
  47772. height: math.unit(0.47, "meters"),
  47773. name: "Maw",
  47774. image: {
  47775. source: "./media/characters/misu/maw.svg"
  47776. }
  47777. },
  47778. head: {
  47779. height: math.unit(0.35, "meters"),
  47780. name: "Head",
  47781. image: {
  47782. source: "./media/characters/misu/head.svg"
  47783. }
  47784. },
  47785. rear: {
  47786. height: math.unit(0.47, "meters"),
  47787. name: "Rear",
  47788. image: {
  47789. source: "./media/characters/misu/rear.svg"
  47790. }
  47791. },
  47792. },
  47793. [
  47794. {
  47795. name: "Normal",
  47796. height: math.unit(1.75, "meters")
  47797. },
  47798. {
  47799. name: "Not good for the people",
  47800. height: math.unit(42, "meters")
  47801. },
  47802. {
  47803. name: "Not good for the neighborhood",
  47804. height: math.unit(135, "meters")
  47805. },
  47806. {
  47807. name: "Bit bigger problem",
  47808. height: math.unit(380, "meters"),
  47809. default: true
  47810. },
  47811. {
  47812. name: "Not good for the city",
  47813. height: math.unit(1.5, "km")
  47814. },
  47815. {
  47816. name: "Not good for the county",
  47817. height: math.unit(5.5, "km")
  47818. },
  47819. {
  47820. name: "Not good for the state",
  47821. height: math.unit(25, "km")
  47822. },
  47823. {
  47824. name: "Not good for the country",
  47825. height: math.unit(125, "km")
  47826. },
  47827. {
  47828. name: "Not good for the continent",
  47829. height: math.unit(2100, "km")
  47830. },
  47831. {
  47832. name: "Not good for the planet",
  47833. height: math.unit(35000, "km")
  47834. },
  47835. {
  47836. name: "Just no",
  47837. height: math.unit(8.5e18, "km")
  47838. },
  47839. ]
  47840. ))
  47841. characterMakers.push(() => makeCharacter(
  47842. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47843. {
  47844. front: {
  47845. height: math.unit(6.5, "feet"),
  47846. name: "Front",
  47847. image: {
  47848. source: "./media/characters/poppy/front.svg",
  47849. extra: 1878/1812,
  47850. bottom: 43/1921
  47851. }
  47852. },
  47853. feet: {
  47854. height: math.unit(1.06, "feet"),
  47855. name: "Feet",
  47856. image: {
  47857. source: "./media/characters/poppy/feet.svg",
  47858. extra: 1083/1083,
  47859. bottom: 87/1170
  47860. }
  47861. },
  47862. },
  47863. [
  47864. {
  47865. name: "Human",
  47866. height: math.unit(6.5, "feet")
  47867. },
  47868. {
  47869. name: "Default",
  47870. height: math.unit(300, "feet"),
  47871. default: true
  47872. },
  47873. {
  47874. name: "Huge",
  47875. height: math.unit(850, "feet")
  47876. },
  47877. {
  47878. name: "Mega",
  47879. height: math.unit(8000, "feet")
  47880. },
  47881. {
  47882. name: "Giga",
  47883. height: math.unit(300, "miles")
  47884. },
  47885. ]
  47886. ))
  47887. characterMakers.push(() => makeCharacter(
  47888. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  47889. {
  47890. bipedal: {
  47891. height: math.unit(7, "feet"),
  47892. name: "Bipedal",
  47893. image: {
  47894. source: "./media/characters/zener/bipedal.svg",
  47895. extra: 874/805,
  47896. bottom: 109/983
  47897. }
  47898. },
  47899. quadrupedal: {
  47900. height: math.unit(4.64, "feet"),
  47901. name: "Quadrupedal",
  47902. image: {
  47903. source: "./media/characters/zener/quadrupedal.svg",
  47904. extra: 638/507,
  47905. bottom: 190/828
  47906. }
  47907. },
  47908. cock: {
  47909. height: math.unit(18, "inches"),
  47910. name: "Cock",
  47911. image: {
  47912. source: "./media/characters/zener/cock.svg"
  47913. }
  47914. },
  47915. },
  47916. [
  47917. {
  47918. name: "Normal",
  47919. height: math.unit(7, "feet"),
  47920. default: true
  47921. },
  47922. ]
  47923. ))
  47924. characterMakers.push(() => makeCharacter(
  47925. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  47926. {
  47927. nude: {
  47928. height: math.unit(5 + 6/12, "feet"),
  47929. name: "Nude",
  47930. image: {
  47931. source: "./media/characters/charlie-dog/nude.svg",
  47932. extra: 768/734,
  47933. bottom: 26/794
  47934. }
  47935. },
  47936. dressed: {
  47937. height: math.unit(5 + 6/12, "feet"),
  47938. name: "Dressed",
  47939. image: {
  47940. source: "./media/characters/charlie-dog/dressed.svg",
  47941. extra: 768/734,
  47942. bottom: 26/794
  47943. }
  47944. },
  47945. },
  47946. [
  47947. {
  47948. name: "Normal",
  47949. height: math.unit(5 + 6/12, "feet"),
  47950. default: true
  47951. },
  47952. ]
  47953. ))
  47954. characterMakers.push(() => makeCharacter(
  47955. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  47956. {
  47957. front: {
  47958. height: math.unit(6 + 4/12, "feet"),
  47959. name: "Front",
  47960. image: {
  47961. source: "./media/characters/ir'istrasz/front.svg",
  47962. extra: 1014/977,
  47963. bottom: 65/1079
  47964. }
  47965. },
  47966. back: {
  47967. height: math.unit(6 + 4/12, "feet"),
  47968. name: "Back",
  47969. image: {
  47970. source: "./media/characters/ir'istrasz/back.svg",
  47971. extra: 1024/992,
  47972. bottom: 34/1058
  47973. }
  47974. },
  47975. },
  47976. [
  47977. {
  47978. name: "Normal",
  47979. height: math.unit(6 + 4/12, "feet"),
  47980. default: true
  47981. },
  47982. ]
  47983. ))
  47984. characterMakers.push(() => makeCharacter(
  47985. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  47986. {
  47987. front: {
  47988. height: math.unit(5 + 8/12, "feet"),
  47989. name: "Front",
  47990. image: {
  47991. source: "./media/characters/dee-ditto/front.svg",
  47992. extra: 1874/1785,
  47993. bottom: 68/1942
  47994. }
  47995. },
  47996. back: {
  47997. height: math.unit(5 + 8/12, "feet"),
  47998. name: "Back",
  47999. image: {
  48000. source: "./media/characters/dee-ditto/back.svg",
  48001. extra: 1870/1783,
  48002. bottom: 77/1947
  48003. }
  48004. },
  48005. },
  48006. [
  48007. {
  48008. name: "Normal",
  48009. height: math.unit(5 + 8/12, "feet"),
  48010. default: true
  48011. },
  48012. ]
  48013. ))
  48014. characterMakers.push(() => makeCharacter(
  48015. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48016. {
  48017. front: {
  48018. height: math.unit(7 + 6/12, "feet"),
  48019. name: "Front",
  48020. image: {
  48021. source: "./media/characters/fey/front.svg",
  48022. extra: 995/979,
  48023. bottom: 30/1025
  48024. }
  48025. },
  48026. back: {
  48027. height: math.unit(7 + 6/12, "feet"),
  48028. name: "Back",
  48029. image: {
  48030. source: "./media/characters/fey/back.svg",
  48031. extra: 1079/1008,
  48032. bottom: 5/1084
  48033. }
  48034. },
  48035. dressed: {
  48036. height: math.unit(7 + 6/12, "feet"),
  48037. name: "Dressed",
  48038. image: {
  48039. source: "./media/characters/fey/dressed.svg",
  48040. extra: 995/979,
  48041. bottom: 30/1025
  48042. }
  48043. },
  48044. },
  48045. [
  48046. {
  48047. name: "Normal",
  48048. height: math.unit(7 + 6/12, "feet"),
  48049. default: true
  48050. },
  48051. ]
  48052. ))
  48053. characterMakers.push(() => makeCharacter(
  48054. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48055. {
  48056. standing: {
  48057. height: math.unit(17, "feet"),
  48058. name: "Standing",
  48059. image: {
  48060. source: "./media/characters/aster/standing.svg",
  48061. extra: 1798/1598,
  48062. bottom: 117/1915
  48063. }
  48064. },
  48065. },
  48066. [
  48067. {
  48068. name: "Normal",
  48069. height: math.unit(17, "feet"),
  48070. default: true
  48071. },
  48072. {
  48073. name: "Homewrecker",
  48074. height: math.unit(95, "feet")
  48075. },
  48076. {
  48077. name: "Planet Devourer",
  48078. height: math.unit(1008000, "miles")
  48079. },
  48080. ]
  48081. ))
  48082. characterMakers.push(() => makeCharacter(
  48083. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48084. {
  48085. front: {
  48086. height: math.unit(6 + 5/12, "feet"),
  48087. weight: math.unit(265, "lb"),
  48088. name: "Front",
  48089. image: {
  48090. source: "./media/characters/devon-childs/front.svg",
  48091. extra: 1795/1721,
  48092. bottom: 41/1836
  48093. }
  48094. },
  48095. side: {
  48096. height: math.unit(6 + 5/12, "feet"),
  48097. weight: math.unit(265, "lb"),
  48098. name: "Side",
  48099. image: {
  48100. source: "./media/characters/devon-childs/side.svg",
  48101. extra: 1812/1738,
  48102. bottom: 30/1842
  48103. }
  48104. },
  48105. back: {
  48106. height: math.unit(6 + 5/12, "feet"),
  48107. weight: math.unit(265, "lb"),
  48108. name: "Back",
  48109. image: {
  48110. source: "./media/characters/devon-childs/back.svg",
  48111. extra: 1808/1735,
  48112. bottom: 23/1831
  48113. }
  48114. },
  48115. hand: {
  48116. height: math.unit(1.464, "feet"),
  48117. name: "Hand",
  48118. image: {
  48119. source: "./media/characters/devon-childs/hand.svg"
  48120. }
  48121. },
  48122. foot: {
  48123. height: math.unit(1.6, "feet"),
  48124. name: "Foot",
  48125. image: {
  48126. source: "./media/characters/devon-childs/foot.svg"
  48127. }
  48128. },
  48129. },
  48130. [
  48131. {
  48132. name: "Micro",
  48133. height: math.unit(7, "cm")
  48134. },
  48135. {
  48136. name: "Normal",
  48137. height: math.unit(6 + 5/12, "feet"),
  48138. default: true
  48139. },
  48140. {
  48141. name: "Macro",
  48142. height: math.unit(154, "feet")
  48143. },
  48144. ]
  48145. ))
  48146. characterMakers.push(() => makeCharacter(
  48147. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48148. {
  48149. front: {
  48150. height: math.unit(6, "feet"),
  48151. weight: math.unit(180, "lb"),
  48152. name: "Front",
  48153. image: {
  48154. source: "./media/characters/lydemox-vir/front.svg",
  48155. extra: 1632/1435,
  48156. bottom: 58/1690
  48157. }
  48158. },
  48159. frontSFW: {
  48160. height: math.unit(6, "feet"),
  48161. weight: math.unit(180, "lb"),
  48162. name: "Front (SFW)",
  48163. image: {
  48164. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48165. extra: 1632/1435,
  48166. bottom: 58/1690
  48167. }
  48168. },
  48169. back: {
  48170. height: math.unit(6, "feet"),
  48171. weight: math.unit(180, "lb"),
  48172. name: "Back",
  48173. image: {
  48174. source: "./media/characters/lydemox-vir/back.svg",
  48175. extra: 1593/1408,
  48176. bottom: 31/1624
  48177. }
  48178. },
  48179. paw: {
  48180. height: math.unit(1.85, "feet"),
  48181. name: "Paw",
  48182. image: {
  48183. source: "./media/characters/lydemox-vir/paw.svg"
  48184. }
  48185. },
  48186. dick: {
  48187. height: math.unit(1.8, "feet"),
  48188. name: "Dick",
  48189. image: {
  48190. source: "./media/characters/lydemox-vir/dick.svg"
  48191. }
  48192. },
  48193. },
  48194. [
  48195. {
  48196. name: "Macro",
  48197. height: math.unit(100, "feet"),
  48198. default: true
  48199. },
  48200. {
  48201. name: "Teramacro",
  48202. height: math.unit(1, "earth")
  48203. },
  48204. {
  48205. name: "Planetary",
  48206. height: math.unit(20, "earths")
  48207. },
  48208. ]
  48209. ))
  48210. characterMakers.push(() => makeCharacter(
  48211. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48212. {
  48213. front: {
  48214. height: math.unit(15 + 8/12, "feet"),
  48215. weight: math.unit(1237, "kg"),
  48216. name: "Front",
  48217. image: {
  48218. source: "./media/characters/mia/front.svg",
  48219. extra: 1573/1446,
  48220. bottom: 58/1631
  48221. }
  48222. },
  48223. },
  48224. [
  48225. {
  48226. name: "Small",
  48227. height: math.unit(9 + 5/12, "feet")
  48228. },
  48229. {
  48230. name: "Normal",
  48231. height: math.unit(15 + 8/12, "feet"),
  48232. default: true
  48233. },
  48234. ]
  48235. ))
  48236. characterMakers.push(() => makeCharacter(
  48237. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48238. {
  48239. front: {
  48240. height: math.unit(10 + 6/12, "feet"),
  48241. weight: math.unit(1.3, "tons"),
  48242. name: "Front",
  48243. image: {
  48244. source: "./media/characters/mr-graves/front.svg",
  48245. extra: 1779/1695,
  48246. bottom: 198/1977
  48247. }
  48248. },
  48249. },
  48250. [
  48251. {
  48252. name: "Normal",
  48253. height: math.unit(10 + 6 /12, "feet"),
  48254. default: true
  48255. },
  48256. ]
  48257. ))
  48258. //characters
  48259. function makeCharacters() {
  48260. const results = [];
  48261. characterMakers.forEach(character => {
  48262. results.push(character());
  48263. });
  48264. return results;
  48265. }