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.
 
 
 

45575 lines
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  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. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. }
  1795. //species
  1796. function getSpeciesInfo(speciesList) {
  1797. let result = new Set();
  1798. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1799. result.add(entry)
  1800. });
  1801. return Array.from(result);
  1802. };
  1803. function getSpeciesInfoHelper(species) {
  1804. if (!speciesData[species]) {
  1805. console.warn(species + " doesn't exist");
  1806. return [];
  1807. }
  1808. if (speciesData[species].parents) {
  1809. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1810. } else {
  1811. return [species];
  1812. }
  1813. }
  1814. characterMakers.push(() => makeCharacter(
  1815. {
  1816. name: "Fen",
  1817. species: ["crux"],
  1818. description: {
  1819. title: "Bio",
  1820. text: "Very furry. Sheds on everything."
  1821. },
  1822. tags: [
  1823. "anthro",
  1824. "goo"
  1825. ]
  1826. },
  1827. {
  1828. front: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Front",
  1832. image: {
  1833. source: "./media/characters/fen/front.svg",
  1834. extra: 1804/1562,
  1835. bottom: 205/2009
  1836. }
  1837. },
  1838. diving: {
  1839. height: math.unit(3.3, "meters"),
  1840. weight: math.unit(124.738, "kg"),
  1841. name: "Diving",
  1842. image: {
  1843. source: "./media/characters/fen/diving.svg"
  1844. }
  1845. },
  1846. maw: {
  1847. height: math.unit(2.83, "feet"),
  1848. name: "Maw",
  1849. image: {
  1850. source: "./media/characters/fen/maw.svg"
  1851. }
  1852. },
  1853. back: {
  1854. height: math.unit(2.2428, "meter"),
  1855. weight: math.unit(124.738, "kg"),
  1856. name: "Back",
  1857. image: {
  1858. source: "./media/characters/fen/back.svg",
  1859. },
  1860. info: {
  1861. description: {
  1862. mode: "append",
  1863. text: "\n\nHe is not currently looking at you."
  1864. }
  1865. }
  1866. },
  1867. full: {
  1868. height: math.unit(0.91, "meter"),
  1869. weight: math.unit(225, "kg"),
  1870. name: "Full",
  1871. image: {
  1872. source: "./media/characters/fen/full.svg",
  1873. extra: 1133/859,
  1874. bottom: 145/1278
  1875. },
  1876. info: {
  1877. description: {
  1878. mode: "append",
  1879. text: "\n\nMunch."
  1880. }
  1881. }
  1882. },
  1883. kneeling: {
  1884. height: math.unit(5.4, "feet"),
  1885. weight: math.unit(124.738, "kg"),
  1886. name: "Kneeling",
  1887. image: {
  1888. source: "./media/characters/fen/kneeling.svg",
  1889. extra: 563 / 507
  1890. }
  1891. },
  1892. goo: {
  1893. height: math.unit(2.8, "feet"),
  1894. weight: math.unit(125, "kg"),
  1895. capacity: math.unit(1, "people"),
  1896. name: "Goo",
  1897. image: {
  1898. source: "./media/characters/fen/goo.svg",
  1899. bottom: 116 / 613
  1900. }
  1901. },
  1902. lounging: {
  1903. height: math.unit(6.5, "feet"),
  1904. weight: math.unit(125, "kg"),
  1905. name: "Lounging",
  1906. image: {
  1907. source: "./media/characters/fen/lounging.svg"
  1908. }
  1909. },
  1910. },
  1911. [
  1912. {
  1913. name: "Small",
  1914. height: math.unit(2.2428, "meter")
  1915. },
  1916. {
  1917. name: "Normal",
  1918. height: math.unit(12, "feet"),
  1919. default: true,
  1920. },
  1921. {
  1922. name: "Minimacro",
  1923. height: math.unit(40, "feet"),
  1924. info: {
  1925. description: {
  1926. mode: "append",
  1927. text: "\n\nTOO DAMN BIG"
  1928. }
  1929. }
  1930. },
  1931. {
  1932. name: "Macro",
  1933. height: math.unit(100, "feet"),
  1934. info: {
  1935. description: {
  1936. mode: "append",
  1937. text: "\n\nTOO DAMN BIG"
  1938. }
  1939. }
  1940. },
  1941. {
  1942. name: "Macro+",
  1943. height: math.unit(300, "feet")
  1944. },
  1945. {
  1946. name: "Megamacro",
  1947. height: math.unit(2, "miles")
  1948. }
  1949. ]
  1950. ))
  1951. characterMakers.push(() => makeCharacter(
  1952. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1953. {
  1954. front: {
  1955. height: math.unit(183, "cm"),
  1956. weight: math.unit(80, "kg"),
  1957. name: "Front",
  1958. image: {
  1959. source: "./media/characters/sofia-fluttertail/front.svg",
  1960. bottom: 0.01,
  1961. extra: 2154 / 2081
  1962. }
  1963. },
  1964. frontAlt: {
  1965. height: math.unit(183, "cm"),
  1966. weight: math.unit(80, "kg"),
  1967. name: "Front (alt)",
  1968. image: {
  1969. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1970. }
  1971. },
  1972. back: {
  1973. height: math.unit(183, "cm"),
  1974. weight: math.unit(80, "kg"),
  1975. name: "Back",
  1976. image: {
  1977. source: "./media/characters/sofia-fluttertail/back.svg"
  1978. }
  1979. },
  1980. kneeling: {
  1981. height: math.unit(125, "cm"),
  1982. weight: math.unit(80, "kg"),
  1983. name: "Kneeling",
  1984. image: {
  1985. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1986. extra: 1033 / 977,
  1987. bottom: 23.7 / 1057
  1988. }
  1989. },
  1990. maw: {
  1991. height: math.unit(183 / 5, "cm"),
  1992. name: "Maw",
  1993. image: {
  1994. source: "./media/characters/sofia-fluttertail/maw.svg"
  1995. }
  1996. },
  1997. mawcloseup: {
  1998. height: math.unit(183 / 5 * 0.41, "cm"),
  1999. name: "Maw (Closeup)",
  2000. image: {
  2001. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2002. }
  2003. },
  2004. paws: {
  2005. height: math.unit(1.17, "feet"),
  2006. name: "Paws",
  2007. image: {
  2008. source: "./media/characters/sofia-fluttertail/paws.svg",
  2009. extra: 851 / 851,
  2010. bottom: 17 / 868
  2011. }
  2012. },
  2013. },
  2014. [
  2015. {
  2016. name: "Normal",
  2017. height: math.unit(1.83, "meter")
  2018. },
  2019. {
  2020. name: "Size Thief",
  2021. height: math.unit(18, "feet")
  2022. },
  2023. {
  2024. name: "50 Foot Collie",
  2025. height: math.unit(50, "feet")
  2026. },
  2027. {
  2028. name: "Macro",
  2029. height: math.unit(96, "feet"),
  2030. default: true
  2031. },
  2032. {
  2033. name: "Megamerger",
  2034. height: math.unit(650, "feet")
  2035. },
  2036. ]
  2037. ))
  2038. characterMakers.push(() => makeCharacter(
  2039. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2040. {
  2041. front: {
  2042. height: math.unit(7, "feet"),
  2043. weight: math.unit(100, "kg"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/march/front.svg",
  2047. extra: 1992/1851,
  2048. bottom: 39/2031
  2049. }
  2050. },
  2051. foot: {
  2052. height: math.unit(0.9, "feet"),
  2053. name: "Foot",
  2054. image: {
  2055. source: "./media/characters/march/foot.svg"
  2056. }
  2057. },
  2058. },
  2059. [
  2060. {
  2061. name: "Normal",
  2062. height: math.unit(7.9, "feet")
  2063. },
  2064. {
  2065. name: "Macro",
  2066. height: math.unit(220, "meters")
  2067. },
  2068. {
  2069. name: "Megamacro",
  2070. height: math.unit(2.98, "km"),
  2071. default: true
  2072. },
  2073. {
  2074. name: "Gigamacro",
  2075. height: math.unit(15963, "km")
  2076. },
  2077. {
  2078. name: "Teramacro",
  2079. height: math.unit(2980000000, "km")
  2080. },
  2081. {
  2082. name: "Examacro",
  2083. height: math.unit(250, "parsecs")
  2084. },
  2085. ]
  2086. ))
  2087. characterMakers.push(() => makeCharacter(
  2088. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2089. {
  2090. front: {
  2091. height: math.unit(6, "feet"),
  2092. weight: math.unit(60, "kg"),
  2093. name: "Front",
  2094. image: {
  2095. source: "./media/characters/noir/front.svg",
  2096. extra: 1,
  2097. bottom: 0.032
  2098. }
  2099. },
  2100. },
  2101. [
  2102. {
  2103. name: "Normal",
  2104. height: math.unit(6.6, "feet")
  2105. },
  2106. {
  2107. name: "Macro",
  2108. height: math.unit(500, "feet")
  2109. },
  2110. {
  2111. name: "Megamacro",
  2112. height: math.unit(2.5, "km"),
  2113. default: true
  2114. },
  2115. {
  2116. name: "Gigamacro",
  2117. height: math.unit(22500, "km")
  2118. },
  2119. {
  2120. name: "Teramacro",
  2121. height: math.unit(2500000000, "km")
  2122. },
  2123. {
  2124. name: "Examacro",
  2125. height: math.unit(200, "parsecs")
  2126. },
  2127. ]
  2128. ))
  2129. characterMakers.push(() => makeCharacter(
  2130. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2131. {
  2132. front: {
  2133. height: math.unit(7, "feet"),
  2134. weight: math.unit(100, "kg"),
  2135. name: "Front",
  2136. image: {
  2137. source: "./media/characters/okuri/front.svg",
  2138. extra: 1,
  2139. bottom: 0.037
  2140. }
  2141. },
  2142. back: {
  2143. height: math.unit(7, "feet"),
  2144. weight: math.unit(100, "kg"),
  2145. name: "Back",
  2146. image: {
  2147. source: "./media/characters/okuri/back.svg",
  2148. extra: 1,
  2149. bottom: 0.007
  2150. }
  2151. },
  2152. },
  2153. [
  2154. {
  2155. name: "Megamacro",
  2156. height: math.unit(100, "miles"),
  2157. default: true
  2158. },
  2159. ]
  2160. ))
  2161. characterMakers.push(() => makeCharacter(
  2162. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2163. {
  2164. front: {
  2165. height: math.unit(7, "feet"),
  2166. weight: math.unit(100, "kg"),
  2167. name: "Front",
  2168. image: {
  2169. source: "./media/characters/manny/front.svg",
  2170. extra: 1,
  2171. bottom: 0.06
  2172. }
  2173. },
  2174. back: {
  2175. height: math.unit(7, "feet"),
  2176. weight: math.unit(100, "kg"),
  2177. name: "Back",
  2178. image: {
  2179. source: "./media/characters/manny/back.svg",
  2180. extra: 1,
  2181. bottom: 0.014
  2182. }
  2183. },
  2184. },
  2185. [
  2186. {
  2187. name: "Normal",
  2188. height: math.unit(7, "feet"),
  2189. },
  2190. {
  2191. name: "Macro",
  2192. height: math.unit(78, "feet"),
  2193. default: true
  2194. },
  2195. {
  2196. name: "Macro+",
  2197. height: math.unit(300, "meters")
  2198. },
  2199. {
  2200. name: "Macro++",
  2201. height: math.unit(2400, "meters")
  2202. },
  2203. {
  2204. name: "Megamacro",
  2205. height: math.unit(5167, "meters")
  2206. },
  2207. {
  2208. name: "Gigamacro",
  2209. height: math.unit(41769, "miles")
  2210. },
  2211. ]
  2212. ))
  2213. characterMakers.push(() => makeCharacter(
  2214. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2215. {
  2216. front: {
  2217. height: math.unit(7, "feet"),
  2218. weight: math.unit(100, "kg"),
  2219. name: "Front",
  2220. image: {
  2221. source: "./media/characters/adake/front-1.svg"
  2222. }
  2223. },
  2224. frontAlt: {
  2225. height: math.unit(7, "feet"),
  2226. weight: math.unit(100, "kg"),
  2227. name: "Front (Alt)",
  2228. image: {
  2229. source: "./media/characters/adake/front-2.svg",
  2230. extra: 1,
  2231. bottom: 0.01
  2232. }
  2233. },
  2234. back: {
  2235. height: math.unit(7, "feet"),
  2236. weight: math.unit(100, "kg"),
  2237. name: "Back",
  2238. image: {
  2239. source: "./media/characters/adake/back.svg",
  2240. }
  2241. },
  2242. kneel: {
  2243. height: math.unit(5.385, "feet"),
  2244. weight: math.unit(100, "kg"),
  2245. name: "Kneeling",
  2246. image: {
  2247. source: "./media/characters/adake/kneel.svg",
  2248. bottom: 0.052
  2249. }
  2250. },
  2251. },
  2252. [
  2253. {
  2254. name: "Normal",
  2255. height: math.unit(7, "feet"),
  2256. },
  2257. {
  2258. name: "Macro",
  2259. height: math.unit(78, "feet"),
  2260. default: true
  2261. },
  2262. {
  2263. name: "Macro+",
  2264. height: math.unit(300, "meters")
  2265. },
  2266. {
  2267. name: "Macro++",
  2268. height: math.unit(2400, "meters")
  2269. },
  2270. {
  2271. name: "Megamacro",
  2272. height: math.unit(5167, "meters")
  2273. },
  2274. {
  2275. name: "Gigamacro",
  2276. height: math.unit(41769, "miles")
  2277. },
  2278. ]
  2279. ))
  2280. characterMakers.push(() => makeCharacter(
  2281. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2282. {
  2283. front: {
  2284. height: math.unit(1.65, "meters"),
  2285. weight: math.unit(50, "kg"),
  2286. name: "Front",
  2287. image: {
  2288. source: "./media/characters/elijah/front.svg",
  2289. extra: 858 / 830,
  2290. bottom: 95.5 / 953.8559
  2291. }
  2292. },
  2293. back: {
  2294. height: math.unit(1.65, "meters"),
  2295. weight: math.unit(50, "kg"),
  2296. name: "Back",
  2297. image: {
  2298. source: "./media/characters/elijah/back.svg",
  2299. extra: 895 / 850,
  2300. bottom: 5.3 / 897.956
  2301. }
  2302. },
  2303. frontNsfw: {
  2304. height: math.unit(1.65, "meters"),
  2305. weight: math.unit(50, "kg"),
  2306. name: "Front (NSFW)",
  2307. image: {
  2308. source: "./media/characters/elijah/front-nsfw.svg",
  2309. extra: 858 / 830,
  2310. bottom: 95.5 / 953.8559
  2311. }
  2312. },
  2313. backNsfw: {
  2314. height: math.unit(1.65, "meters"),
  2315. weight: math.unit(50, "kg"),
  2316. name: "Back (NSFW)",
  2317. image: {
  2318. source: "./media/characters/elijah/back-nsfw.svg",
  2319. extra: 895 / 850,
  2320. bottom: 5.3 / 897.956
  2321. }
  2322. },
  2323. dick: {
  2324. height: math.unit(1, "feet"),
  2325. name: "Dick",
  2326. image: {
  2327. source: "./media/characters/elijah/dick.svg"
  2328. }
  2329. },
  2330. beakOpen: {
  2331. height: math.unit(1.25, "feet"),
  2332. name: "Beak (Open)",
  2333. image: {
  2334. source: "./media/characters/elijah/beak-open.svg"
  2335. }
  2336. },
  2337. beakShut: {
  2338. height: math.unit(1.25, "feet"),
  2339. name: "Beak (Shut)",
  2340. image: {
  2341. source: "./media/characters/elijah/beak-shut.svg"
  2342. }
  2343. },
  2344. footFlexing: {
  2345. height: math.unit(1.61, "feet"),
  2346. name: "Foot (Flexing)",
  2347. image: {
  2348. source: "./media/characters/elijah/foot-flexing.svg"
  2349. }
  2350. },
  2351. footStepping: {
  2352. height: math.unit(1.44, "feet"),
  2353. name: "Foot (Stepping)",
  2354. image: {
  2355. source: "./media/characters/elijah/foot-stepping.svg"
  2356. }
  2357. },
  2358. plantigradeLeg: {
  2359. height: math.unit(2.34, "feet"),
  2360. name: "Plantigrade Leg",
  2361. image: {
  2362. source: "./media/characters/elijah/plantigrade-leg.svg"
  2363. }
  2364. },
  2365. plantigradeFootLeft: {
  2366. height: math.unit(0.9, "feet"),
  2367. name: "Plantigrade Foot (Left)",
  2368. image: {
  2369. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2370. }
  2371. },
  2372. plantigradeFootRight: {
  2373. height: math.unit(0.9, "feet"),
  2374. name: "Plantigrade Foot (Right)",
  2375. image: {
  2376. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2377. }
  2378. },
  2379. },
  2380. [
  2381. {
  2382. name: "Normal",
  2383. height: math.unit(1.65, "meters")
  2384. },
  2385. {
  2386. name: "Macro",
  2387. height: math.unit(55, "meters"),
  2388. default: true
  2389. },
  2390. {
  2391. name: "Macro+",
  2392. height: math.unit(105, "meters")
  2393. },
  2394. ]
  2395. ))
  2396. characterMakers.push(() => makeCharacter(
  2397. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2398. {
  2399. front: {
  2400. height: math.unit(7 + 2/12, "feet"),
  2401. weight: math.unit(320, "kg"),
  2402. name: "Front",
  2403. image: {
  2404. source: "./media/characters/rai/front.svg",
  2405. extra: 1802/1696,
  2406. bottom: 68/1870
  2407. }
  2408. },
  2409. frontDressed: {
  2410. height: math.unit(7 + 2/12, "feet"),
  2411. weight: math.unit(320, "kg"),
  2412. name: "Front (Dressed)",
  2413. image: {
  2414. source: "./media/characters/rai/front-dressed.svg",
  2415. extra: 1802/1696,
  2416. bottom: 68/1870
  2417. }
  2418. },
  2419. side: {
  2420. height: math.unit(7 + 2/12, "feet"),
  2421. weight: math.unit(320, "kg"),
  2422. name: "Side",
  2423. image: {
  2424. source: "./media/characters/rai/side.svg",
  2425. extra: 1789/1710,
  2426. bottom: 115/1904
  2427. }
  2428. },
  2429. back: {
  2430. height: math.unit(7 + 2/12, "feet"),
  2431. weight: math.unit(320, "kg"),
  2432. name: "Back",
  2433. image: {
  2434. source: "./media/characters/rai/back.svg",
  2435. extra: 1770/1707,
  2436. bottom: 28/1798
  2437. }
  2438. },
  2439. feral: {
  2440. height: math.unit(9.5, "feet"),
  2441. weight: math.unit(640, "kg"),
  2442. name: "Feral",
  2443. image: {
  2444. source: "./media/characters/rai/feral.svg",
  2445. extra: 945/553,
  2446. bottom: 176/1121
  2447. }
  2448. },
  2449. dragon: {
  2450. height: math.unit(23, "feet"),
  2451. weight: math.unit(50000, "lb"),
  2452. name: "Dragon",
  2453. image: {
  2454. source: "./media/characters/rai/dragon.svg",
  2455. extra: 2498 / 2030,
  2456. bottom: 85.2 / 2584
  2457. }
  2458. },
  2459. maw: {
  2460. height: math.unit(1.69, "feet"),
  2461. name: "Maw",
  2462. image: {
  2463. source: "./media/characters/rai/maw.svg"
  2464. }
  2465. },
  2466. },
  2467. [
  2468. {
  2469. name: "Normal",
  2470. height: math.unit(7 + 2/12, "feet")
  2471. },
  2472. {
  2473. name: "Big",
  2474. height: math.unit(11, "feet")
  2475. },
  2476. {
  2477. name: "Macro",
  2478. height: math.unit(302, "feet"),
  2479. default: true
  2480. },
  2481. ]
  2482. ))
  2483. characterMakers.push(() => makeCharacter(
  2484. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2485. {
  2486. frontDressed: {
  2487. height: math.unit(216, "feet"),
  2488. weight: math.unit(7000000, "lb"),
  2489. name: "Front (Dressed)",
  2490. image: {
  2491. source: "./media/characters/jazzy/front-dressed.svg",
  2492. extra: 2738 / 2651,
  2493. bottom: 41.8 / 2786
  2494. }
  2495. },
  2496. backDressed: {
  2497. height: math.unit(216, "feet"),
  2498. weight: math.unit(7000000, "lb"),
  2499. name: "Back (Dressed)",
  2500. image: {
  2501. source: "./media/characters/jazzy/back-dressed.svg",
  2502. extra: 2775 / 2673,
  2503. bottom: 36.8 / 2817
  2504. }
  2505. },
  2506. front: {
  2507. height: math.unit(216, "feet"),
  2508. weight: math.unit(7000000, "lb"),
  2509. name: "Front",
  2510. image: {
  2511. source: "./media/characters/jazzy/front.svg",
  2512. extra: 2738 / 2651,
  2513. bottom: 41.8 / 2786
  2514. }
  2515. },
  2516. back: {
  2517. height: math.unit(216, "feet"),
  2518. weight: math.unit(7000000, "lb"),
  2519. name: "Back",
  2520. image: {
  2521. source: "./media/characters/jazzy/back.svg",
  2522. extra: 2775 / 2673,
  2523. bottom: 36.8 / 2817
  2524. }
  2525. },
  2526. maw: {
  2527. height: math.unit(20, "feet"),
  2528. name: "Maw",
  2529. image: {
  2530. source: "./media/characters/jazzy/maw.svg"
  2531. }
  2532. },
  2533. paws: {
  2534. height: math.unit(27.5, "feet"),
  2535. name: "Paws",
  2536. image: {
  2537. source: "./media/characters/jazzy/paws.svg"
  2538. }
  2539. },
  2540. eye: {
  2541. height: math.unit(4.4, "feet"),
  2542. name: "Eye",
  2543. image: {
  2544. source: "./media/characters/jazzy/eye.svg"
  2545. }
  2546. },
  2547. droneOffense: {
  2548. height: math.unit(9.5, "inches"),
  2549. name: "Drone (Offense)",
  2550. image: {
  2551. source: "./media/characters/jazzy/drone-offense.svg"
  2552. }
  2553. },
  2554. droneRecon: {
  2555. height: math.unit(9.5, "inches"),
  2556. name: "Drone (Recon)",
  2557. image: {
  2558. source: "./media/characters/jazzy/drone-recon.svg"
  2559. }
  2560. },
  2561. droneDefense: {
  2562. height: math.unit(9.5, "inches"),
  2563. name: "Drone (Defense)",
  2564. image: {
  2565. source: "./media/characters/jazzy/drone-defense.svg"
  2566. }
  2567. },
  2568. },
  2569. [
  2570. {
  2571. name: "Macro",
  2572. height: math.unit(216, "feet"),
  2573. default: true
  2574. },
  2575. ]
  2576. ))
  2577. characterMakers.push(() => makeCharacter(
  2578. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2579. {
  2580. front: {
  2581. height: math.unit(9 + 6/12, "feet"),
  2582. weight: math.unit(700, "lb"),
  2583. name: "Front",
  2584. image: {
  2585. source: "./media/characters/flamm/front.svg",
  2586. extra: 1751/1632,
  2587. bottom: 46/1797
  2588. }
  2589. },
  2590. buff: {
  2591. height: math.unit(9 + 6/12, "feet"),
  2592. weight: math.unit(950, "lb"),
  2593. name: "Buff",
  2594. image: {
  2595. source: "./media/characters/flamm/buff.svg",
  2596. extra: 3018/2874,
  2597. bottom: 221/3239
  2598. }
  2599. },
  2600. },
  2601. [
  2602. {
  2603. name: "Normal",
  2604. height: math.unit(9.5, "feet")
  2605. },
  2606. {
  2607. name: "Macro",
  2608. height: math.unit(200, "feet"),
  2609. default: true
  2610. },
  2611. ]
  2612. ))
  2613. characterMakers.push(() => makeCharacter(
  2614. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2615. {
  2616. front: {
  2617. height: math.unit(5 + 3/12, "feet"),
  2618. weight: math.unit(60, "kg"),
  2619. name: "Front",
  2620. image: {
  2621. source: "./media/characters/zephiro/front.svg",
  2622. extra: 2309 / 2162,
  2623. bottom: 0.069
  2624. }
  2625. },
  2626. side: {
  2627. height: math.unit(5 + 3/12, "feet"),
  2628. weight: math.unit(60, "kg"),
  2629. name: "Side",
  2630. image: {
  2631. source: "./media/characters/zephiro/side.svg",
  2632. extra: 2403 / 2279,
  2633. bottom: 0.015
  2634. }
  2635. },
  2636. back: {
  2637. height: math.unit(5 + 3/12, "feet"),
  2638. weight: math.unit(60, "kg"),
  2639. name: "Back",
  2640. image: {
  2641. source: "./media/characters/zephiro/back.svg",
  2642. extra: 2373 / 2244,
  2643. bottom: 0.013
  2644. }
  2645. },
  2646. hand: {
  2647. height: math.unit(0.68, "feet"),
  2648. name: "Hand",
  2649. image: {
  2650. source: "./media/characters/zephiro/hand.svg"
  2651. }
  2652. },
  2653. paw: {
  2654. height: math.unit(1, "feet"),
  2655. name: "Paw",
  2656. image: {
  2657. source: "./media/characters/zephiro/paw.svg"
  2658. }
  2659. },
  2660. beans: {
  2661. height: math.unit(0.93, "feet"),
  2662. name: "Beans",
  2663. image: {
  2664. source: "./media/characters/zephiro/beans.svg"
  2665. }
  2666. },
  2667. },
  2668. [
  2669. {
  2670. name: "Micro",
  2671. height: math.unit(3, "inches")
  2672. },
  2673. {
  2674. name: "Normal",
  2675. height: math.unit(5 + 3 / 12, "feet"),
  2676. default: true
  2677. },
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(118, "feet")
  2681. },
  2682. ]
  2683. ))
  2684. characterMakers.push(() => makeCharacter(
  2685. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2686. {
  2687. front: {
  2688. height: math.unit(5, "feet"),
  2689. weight: math.unit(90, "kg"),
  2690. name: "Front",
  2691. image: {
  2692. source: "./media/characters/fory/front.svg",
  2693. extra: 2862 / 2674,
  2694. bottom: 180 / 3043.8
  2695. }
  2696. },
  2697. back: {
  2698. height: math.unit(5, "feet"),
  2699. weight: math.unit(90, "kg"),
  2700. name: "Back",
  2701. image: {
  2702. source: "./media/characters/fory/back.svg",
  2703. extra: 2962 / 2791,
  2704. bottom: 106 / 3071.8
  2705. }
  2706. },
  2707. foot: {
  2708. height: math.unit(2.14, "feet"),
  2709. name: "Foot",
  2710. image: {
  2711. source: "./media/characters/fory/foot.svg"
  2712. }
  2713. },
  2714. },
  2715. [
  2716. {
  2717. name: "Normal",
  2718. height: math.unit(5, "feet")
  2719. },
  2720. {
  2721. name: "Macro",
  2722. height: math.unit(50, "feet"),
  2723. default: true
  2724. },
  2725. {
  2726. name: "Megamacro",
  2727. height: math.unit(10, "miles")
  2728. },
  2729. {
  2730. name: "Gigamacro",
  2731. height: math.unit(5, "earths")
  2732. },
  2733. ]
  2734. ))
  2735. characterMakers.push(() => makeCharacter(
  2736. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2737. {
  2738. front: {
  2739. height: math.unit(7, "feet"),
  2740. weight: math.unit(90, "kg"),
  2741. name: "Front",
  2742. image: {
  2743. source: "./media/characters/kurrikage/front.svg",
  2744. extra: 1845/1733,
  2745. bottom: 119/1964
  2746. }
  2747. },
  2748. back: {
  2749. height: math.unit(7, "feet"),
  2750. weight: math.unit(90, "kg"),
  2751. name: "Back",
  2752. image: {
  2753. source: "./media/characters/kurrikage/back.svg",
  2754. extra: 1790/1677,
  2755. bottom: 61/1851
  2756. }
  2757. },
  2758. dressed: {
  2759. height: math.unit(7, "feet"),
  2760. weight: math.unit(90, "kg"),
  2761. name: "Dressed",
  2762. image: {
  2763. source: "./media/characters/kurrikage/dressed.svg",
  2764. extra: 1845/1733,
  2765. bottom: 119/1964
  2766. }
  2767. },
  2768. foot: {
  2769. height: math.unit(1.5, "feet"),
  2770. name: "Foot",
  2771. image: {
  2772. source: "./media/characters/kurrikage/foot.svg"
  2773. }
  2774. },
  2775. staff: {
  2776. height: math.unit(6.7, "feet"),
  2777. name: "Staff",
  2778. image: {
  2779. source: "./media/characters/kurrikage/staff.svg"
  2780. }
  2781. },
  2782. peek: {
  2783. height: math.unit(1.05, "feet"),
  2784. name: "Peeking",
  2785. image: {
  2786. source: "./media/characters/kurrikage/peek.svg",
  2787. bottom: 0.08
  2788. }
  2789. },
  2790. },
  2791. [
  2792. {
  2793. name: "Normal",
  2794. height: math.unit(12, "feet"),
  2795. default: true
  2796. },
  2797. {
  2798. name: "Big",
  2799. height: math.unit(20, "feet")
  2800. },
  2801. {
  2802. name: "Macro",
  2803. height: math.unit(500, "feet")
  2804. },
  2805. {
  2806. name: "Megamacro",
  2807. height: math.unit(20, "miles")
  2808. },
  2809. ]
  2810. ))
  2811. characterMakers.push(() => makeCharacter(
  2812. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2813. {
  2814. front: {
  2815. height: math.unit(6, "feet"),
  2816. weight: math.unit(75, "kg"),
  2817. name: "Front",
  2818. image: {
  2819. source: "./media/characters/shingo/front.svg",
  2820. extra: 1900/1825,
  2821. bottom: 82/1982
  2822. }
  2823. },
  2824. side: {
  2825. height: math.unit(6, "feet"),
  2826. weight: math.unit(75, "kg"),
  2827. name: "Side",
  2828. image: {
  2829. source: "./media/characters/shingo/side.svg",
  2830. extra: 1930/1865,
  2831. bottom: 16/1946
  2832. }
  2833. },
  2834. back: {
  2835. height: math.unit(6, "feet"),
  2836. weight: math.unit(75, "kg"),
  2837. name: "Back",
  2838. image: {
  2839. source: "./media/characters/shingo/back.svg",
  2840. extra: 1922/1852,
  2841. bottom: 16/1938
  2842. }
  2843. },
  2844. frontDressed: {
  2845. height: math.unit(6, "feet"),
  2846. weight: math.unit(150, "lb"),
  2847. name: "Front-dressed",
  2848. image: {
  2849. source: "./media/characters/shingo/front-dressed.svg",
  2850. extra: 1900/1825,
  2851. bottom: 82/1982
  2852. }
  2853. },
  2854. paw: {
  2855. height: math.unit(1.29, "feet"),
  2856. name: "Paw",
  2857. image: {
  2858. source: "./media/characters/shingo/paw.svg"
  2859. }
  2860. },
  2861. hand: {
  2862. height: math.unit(1.07, "feet"),
  2863. name: "Hand",
  2864. image: {
  2865. source: "./media/characters/shingo/hand.svg"
  2866. }
  2867. },
  2868. frontAlt: {
  2869. height: math.unit(6, "feet"),
  2870. weight: math.unit(75, "kg"),
  2871. name: "Front (Alt)",
  2872. image: {
  2873. source: "./media/characters/shingo/front-alt.svg",
  2874. extra: 3511 / 3338,
  2875. bottom: 0.005
  2876. }
  2877. },
  2878. frontAlt2: {
  2879. height: math.unit(6, "feet"),
  2880. weight: math.unit(75, "kg"),
  2881. name: "Front (Alt 2)",
  2882. image: {
  2883. source: "./media/characters/shingo/front-alt-2.svg",
  2884. extra: 706/681,
  2885. bottom: 11/717
  2886. }
  2887. },
  2888. pawAlt: {
  2889. height: math.unit(1, "feet"),
  2890. name: "Paw (Alt)",
  2891. image: {
  2892. source: "./media/characters/shingo/paw-alt.svg"
  2893. }
  2894. },
  2895. },
  2896. [
  2897. {
  2898. name: "Micro",
  2899. height: math.unit(4, "inches")
  2900. },
  2901. {
  2902. name: "Normal",
  2903. height: math.unit(6, "feet"),
  2904. default: true
  2905. },
  2906. {
  2907. name: "Macro",
  2908. height: math.unit(108, "feet")
  2909. },
  2910. {
  2911. name: "Macro+",
  2912. height: math.unit(1500, "feet")
  2913. },
  2914. ]
  2915. ))
  2916. characterMakers.push(() => makeCharacter(
  2917. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2918. {
  2919. side: {
  2920. height: math.unit(6, "feet"),
  2921. weight: math.unit(75, "kg"),
  2922. name: "Side",
  2923. image: {
  2924. source: "./media/characters/aigey/side.svg"
  2925. }
  2926. },
  2927. },
  2928. [
  2929. {
  2930. name: "Macro",
  2931. height: math.unit(200, "feet"),
  2932. default: true
  2933. },
  2934. {
  2935. name: "Megamacro",
  2936. height: math.unit(100, "miles")
  2937. },
  2938. ]
  2939. )
  2940. )
  2941. characterMakers.push(() => makeCharacter(
  2942. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2943. {
  2944. front: {
  2945. height: math.unit(5 + 5 / 12, "feet"),
  2946. weight: math.unit(75, "kg"),
  2947. name: "Front",
  2948. image: {
  2949. source: "./media/characters/natasha/front.svg",
  2950. extra: 859 / 824,
  2951. bottom: 23 / 879.6
  2952. }
  2953. },
  2954. frontNsfw: {
  2955. height: math.unit(5 + 5 / 12, "feet"),
  2956. weight: math.unit(75, "kg"),
  2957. name: "Front (NSFW)",
  2958. image: {
  2959. source: "./media/characters/natasha/front-nsfw.svg",
  2960. extra: 859 / 824,
  2961. bottom: 23 / 879.6
  2962. }
  2963. },
  2964. frontErect: {
  2965. height: math.unit(5 + 5 / 12, "feet"),
  2966. weight: math.unit(75, "kg"),
  2967. name: "Front (Erect)",
  2968. image: {
  2969. source: "./media/characters/natasha/front-erect.svg",
  2970. extra: 859 / 824,
  2971. bottom: 23 / 879.6
  2972. }
  2973. },
  2974. back: {
  2975. height: math.unit(5 + 5 / 12, "feet"),
  2976. weight: math.unit(75, "kg"),
  2977. name: "Back",
  2978. image: {
  2979. source: "./media/characters/natasha/back.svg",
  2980. extra: 887.9 / 852.6,
  2981. bottom: 9.7 / 896.4
  2982. }
  2983. },
  2984. backAlt: {
  2985. height: math.unit(5 + 5 / 12, "feet"),
  2986. weight: math.unit(75, "kg"),
  2987. name: "Back (Alt)",
  2988. image: {
  2989. source: "./media/characters/natasha/back-alt.svg",
  2990. extra: 1236.7 / 1192,
  2991. bottom: 22.3 / 1258.2
  2992. }
  2993. },
  2994. dick: {
  2995. height: math.unit(1.772, "feet"),
  2996. name: "Dick",
  2997. image: {
  2998. source: "./media/characters/natasha/dick.svg"
  2999. }
  3000. },
  3001. paw: {
  3002. height: math.unit(0.250, "meters"),
  3003. name: "Paw",
  3004. image: {
  3005. source: "./media/characters/natasha/paw.svg"
  3006. }
  3007. },
  3008. },
  3009. [
  3010. {
  3011. name: "Normal",
  3012. height: math.unit(5 + 5 / 12, "feet")
  3013. },
  3014. {
  3015. name: "Large",
  3016. height: math.unit(12, "feet")
  3017. },
  3018. {
  3019. name: "Macro",
  3020. height: math.unit(100, "feet"),
  3021. default: true
  3022. },
  3023. {
  3024. name: "Macro+",
  3025. height: math.unit(260, "feet")
  3026. },
  3027. {
  3028. name: "Macro++",
  3029. height: math.unit(1, "mile")
  3030. },
  3031. ]
  3032. ))
  3033. characterMakers.push(() => makeCharacter(
  3034. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3035. {
  3036. front: {
  3037. height: math.unit(6, "feet"),
  3038. weight: math.unit(75, "kg"),
  3039. name: "Front",
  3040. image: {
  3041. source: "./media/characters/malik/front.svg"
  3042. }
  3043. },
  3044. side: {
  3045. height: math.unit(6, "feet"),
  3046. weight: math.unit(75, "kg"),
  3047. name: "Side",
  3048. image: {
  3049. source: "./media/characters/malik/side.svg",
  3050. extra: 1.1539
  3051. }
  3052. },
  3053. back: {
  3054. height: math.unit(6, "feet"),
  3055. weight: math.unit(75, "kg"),
  3056. name: "Back",
  3057. image: {
  3058. source: "./media/characters/malik/back.svg"
  3059. }
  3060. },
  3061. },
  3062. [
  3063. {
  3064. name: "Macro",
  3065. height: math.unit(156, "feet"),
  3066. default: true
  3067. },
  3068. {
  3069. name: "Macro+",
  3070. height: math.unit(1188, "feet")
  3071. },
  3072. ]
  3073. ))
  3074. characterMakers.push(() => makeCharacter(
  3075. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3076. {
  3077. front: {
  3078. height: math.unit(6, "feet"),
  3079. weight: math.unit(75, "kg"),
  3080. name: "Front",
  3081. image: {
  3082. source: "./media/characters/sefer/front.svg",
  3083. extra: 848 / 659,
  3084. bottom: 28.3 / 876.442
  3085. }
  3086. },
  3087. back: {
  3088. height: math.unit(6, "feet"),
  3089. weight: math.unit(75, "kg"),
  3090. name: "Back",
  3091. image: {
  3092. source: "./media/characters/sefer/back.svg",
  3093. extra: 864 / 695,
  3094. bottom: 10 / 871
  3095. }
  3096. },
  3097. frontDressed: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Front (Dressed)",
  3101. image: {
  3102. source: "./media/characters/sefer/front-dressed.svg",
  3103. extra: 839 / 653,
  3104. bottom: 37.6 / 878
  3105. }
  3106. },
  3107. },
  3108. [
  3109. {
  3110. name: "Normal",
  3111. height: math.unit(6, "feet"),
  3112. default: true
  3113. },
  3114. ]
  3115. ))
  3116. characterMakers.push(() => makeCharacter(
  3117. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3118. {
  3119. body: {
  3120. height: math.unit(2.2428, "meter"),
  3121. weight: math.unit(124.738, "kg"),
  3122. name: "Body",
  3123. image: {
  3124. extra: 1225 / 1050,
  3125. source: "./media/characters/north/front.svg"
  3126. }
  3127. }
  3128. },
  3129. [
  3130. {
  3131. name: "Micro",
  3132. height: math.unit(4, "inches")
  3133. },
  3134. {
  3135. name: "Macro",
  3136. height: math.unit(63, "meters")
  3137. },
  3138. {
  3139. name: "Megamacro",
  3140. height: math.unit(101, "miles"),
  3141. default: true
  3142. }
  3143. ]
  3144. ))
  3145. characterMakers.push(() => makeCharacter(
  3146. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3147. {
  3148. angled: {
  3149. height: math.unit(4, "meter"),
  3150. weight: math.unit(150, "kg"),
  3151. name: "Angled",
  3152. image: {
  3153. source: "./media/characters/talan/angled-sfw.svg",
  3154. bottom: 29 / 3734
  3155. }
  3156. },
  3157. angledNsfw: {
  3158. height: math.unit(4, "meter"),
  3159. weight: math.unit(150, "kg"),
  3160. name: "Angled (NSFW)",
  3161. image: {
  3162. source: "./media/characters/talan/angled-nsfw.svg",
  3163. bottom: 29 / 3734
  3164. }
  3165. },
  3166. frontNsfw: {
  3167. height: math.unit(4, "meter"),
  3168. weight: math.unit(150, "kg"),
  3169. name: "Front (NSFW)",
  3170. image: {
  3171. source: "./media/characters/talan/front-nsfw.svg",
  3172. bottom: 29 / 3734
  3173. }
  3174. },
  3175. sideNsfw: {
  3176. height: math.unit(4, "meter"),
  3177. weight: math.unit(150, "kg"),
  3178. name: "Side (NSFW)",
  3179. image: {
  3180. source: "./media/characters/talan/side-nsfw.svg",
  3181. bottom: 29 / 3734
  3182. }
  3183. },
  3184. back: {
  3185. height: math.unit(4, "meter"),
  3186. weight: math.unit(150, "kg"),
  3187. name: "Back",
  3188. image: {
  3189. source: "./media/characters/talan/back.svg"
  3190. }
  3191. },
  3192. dickBottom: {
  3193. height: math.unit(0.621, "meter"),
  3194. name: "Dick (Bottom)",
  3195. image: {
  3196. source: "./media/characters/talan/dick-bottom.svg"
  3197. }
  3198. },
  3199. dickTop: {
  3200. height: math.unit(0.621, "meter"),
  3201. name: "Dick (Top)",
  3202. image: {
  3203. source: "./media/characters/talan/dick-top.svg"
  3204. }
  3205. },
  3206. dickSide: {
  3207. height: math.unit(0.305, "meter"),
  3208. name: "Dick (Side)",
  3209. image: {
  3210. source: "./media/characters/talan/dick-side.svg"
  3211. }
  3212. },
  3213. dickFront: {
  3214. height: math.unit(0.305, "meter"),
  3215. name: "Dick (Front)",
  3216. image: {
  3217. source: "./media/characters/talan/dick-front.svg"
  3218. }
  3219. },
  3220. },
  3221. [
  3222. {
  3223. name: "Normal",
  3224. height: math.unit(4, "meters")
  3225. },
  3226. {
  3227. name: "Macro",
  3228. height: math.unit(100, "meters")
  3229. },
  3230. {
  3231. name: "Megamacro",
  3232. height: math.unit(2, "miles"),
  3233. default: true
  3234. },
  3235. {
  3236. name: "Gigamacro",
  3237. height: math.unit(5000, "miles")
  3238. },
  3239. {
  3240. name: "Teramacro",
  3241. height: math.unit(100, "parsecs")
  3242. }
  3243. ]
  3244. ))
  3245. characterMakers.push(() => makeCharacter(
  3246. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3247. {
  3248. front: {
  3249. height: math.unit(2, "meter"),
  3250. weight: math.unit(90, "kg"),
  3251. name: "Front",
  3252. image: {
  3253. source: "./media/characters/gael'rathus/front.svg"
  3254. }
  3255. },
  3256. frontAlt: {
  3257. height: math.unit(2, "meter"),
  3258. weight: math.unit(90, "kg"),
  3259. name: "Front (alt)",
  3260. image: {
  3261. source: "./media/characters/gael'rathus/front-alt.svg"
  3262. }
  3263. },
  3264. frontAlt2: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(90, "kg"),
  3267. name: "Front (alt 2)",
  3268. image: {
  3269. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3270. }
  3271. }
  3272. },
  3273. [
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(9, "feet"),
  3277. default: true
  3278. },
  3279. {
  3280. name: "Large",
  3281. height: math.unit(25, "feet")
  3282. },
  3283. {
  3284. name: "Macro",
  3285. height: math.unit(0.25, "miles")
  3286. },
  3287. {
  3288. name: "Megamacro",
  3289. height: math.unit(10, "miles")
  3290. }
  3291. ]
  3292. ))
  3293. characterMakers.push(() => makeCharacter(
  3294. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3295. {
  3296. side: {
  3297. height: math.unit(2, "meter"),
  3298. weight: math.unit(140, "kg"),
  3299. name: "Side",
  3300. image: {
  3301. source: "./media/characters/sosha/side.svg",
  3302. bottom: 0.042
  3303. }
  3304. },
  3305. },
  3306. [
  3307. {
  3308. name: "Normal",
  3309. height: math.unit(12, "feet"),
  3310. default: true
  3311. }
  3312. ]
  3313. ))
  3314. characterMakers.push(() => makeCharacter(
  3315. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3316. {
  3317. side: {
  3318. height: math.unit(5 + 5 / 12, "feet"),
  3319. weight: math.unit(170, "kg"),
  3320. name: "Side",
  3321. image: {
  3322. source: "./media/characters/runnola/side.svg",
  3323. extra: 741 / 448,
  3324. bottom: 0.05
  3325. }
  3326. },
  3327. },
  3328. [
  3329. {
  3330. name: "Small",
  3331. height: math.unit(3, "feet")
  3332. },
  3333. {
  3334. name: "Normal",
  3335. height: math.unit(5 + 5 / 12, "feet"),
  3336. default: true
  3337. },
  3338. {
  3339. name: "Big",
  3340. height: math.unit(10, "feet")
  3341. },
  3342. ]
  3343. ))
  3344. characterMakers.push(() => makeCharacter(
  3345. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3346. {
  3347. front: {
  3348. height: math.unit(2, "meter"),
  3349. weight: math.unit(50, "kg"),
  3350. name: "Front",
  3351. image: {
  3352. source: "./media/characters/kurribird/front.svg",
  3353. bottom: 0.015
  3354. }
  3355. },
  3356. frontAlt: {
  3357. height: math.unit(1.5, "meter"),
  3358. weight: math.unit(50, "kg"),
  3359. name: "Front (Alt)",
  3360. image: {
  3361. source: "./media/characters/kurribird/front-alt.svg",
  3362. extra: 1.45
  3363. }
  3364. },
  3365. },
  3366. [
  3367. {
  3368. name: "Normal",
  3369. height: math.unit(7, "feet")
  3370. },
  3371. {
  3372. name: "Big",
  3373. height: math.unit(12, "feet"),
  3374. default: true
  3375. },
  3376. {
  3377. name: "Macro",
  3378. height: math.unit(1500, "feet")
  3379. },
  3380. {
  3381. name: "Megamacro",
  3382. height: math.unit(2, "miles")
  3383. }
  3384. ]
  3385. ))
  3386. characterMakers.push(() => makeCharacter(
  3387. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3388. {
  3389. front: {
  3390. height: math.unit(2, "meter"),
  3391. weight: math.unit(80, "kg"),
  3392. name: "Front",
  3393. image: {
  3394. source: "./media/characters/elbial/front.svg",
  3395. extra: 1643 / 1556,
  3396. bottom: 60.2 / 1696
  3397. }
  3398. },
  3399. side: {
  3400. height: math.unit(2, "meter"),
  3401. weight: math.unit(80, "kg"),
  3402. name: "Side",
  3403. image: {
  3404. source: "./media/characters/elbial/side.svg",
  3405. extra: 1630 / 1565,
  3406. bottom: 71.5 / 1697
  3407. }
  3408. },
  3409. back: {
  3410. height: math.unit(2, "meter"),
  3411. weight: math.unit(80, "kg"),
  3412. name: "Back",
  3413. image: {
  3414. source: "./media/characters/elbial/back.svg",
  3415. extra: 1668 / 1595,
  3416. bottom: 5.6 / 1672
  3417. }
  3418. },
  3419. frontDressed: {
  3420. height: math.unit(2, "meter"),
  3421. weight: math.unit(80, "kg"),
  3422. name: "Front (Dressed)",
  3423. image: {
  3424. source: "./media/characters/elbial/front-dressed.svg",
  3425. extra: 1653 / 1584,
  3426. bottom: 57 / 1708
  3427. }
  3428. },
  3429. genitals: {
  3430. height: math.unit(2 / 3.367, "meter"),
  3431. name: "Genitals",
  3432. image: {
  3433. source: "./media/characters/elbial/genitals.svg"
  3434. }
  3435. },
  3436. },
  3437. [
  3438. {
  3439. name: "Large",
  3440. height: math.unit(100, "feet")
  3441. },
  3442. {
  3443. name: "Macro",
  3444. height: math.unit(500, "feet"),
  3445. default: true
  3446. },
  3447. {
  3448. name: "Megamacro",
  3449. height: math.unit(10, "miles")
  3450. },
  3451. {
  3452. name: "Gigamacro",
  3453. height: math.unit(25000, "miles")
  3454. },
  3455. {
  3456. name: "Full-Size",
  3457. height: math.unit(8000000, "gigaparsecs")
  3458. }
  3459. ]
  3460. ))
  3461. characterMakers.push(() => makeCharacter(
  3462. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3463. {
  3464. front: {
  3465. height: math.unit(2, "meter"),
  3466. weight: math.unit(60, "kg"),
  3467. name: "Front",
  3468. image: {
  3469. source: "./media/characters/noah/front.svg"
  3470. }
  3471. },
  3472. talons: {
  3473. height: math.unit(0.315, "meter"),
  3474. name: "Talons",
  3475. image: {
  3476. source: "./media/characters/noah/talons.svg"
  3477. }
  3478. }
  3479. },
  3480. [
  3481. {
  3482. name: "Large",
  3483. height: math.unit(50, "feet")
  3484. },
  3485. {
  3486. name: "Macro",
  3487. height: math.unit(750, "feet"),
  3488. default: true
  3489. },
  3490. {
  3491. name: "Megamacro",
  3492. height: math.unit(50, "miles")
  3493. },
  3494. {
  3495. name: "Gigamacro",
  3496. height: math.unit(100000, "miles")
  3497. },
  3498. {
  3499. name: "Full-Size",
  3500. height: math.unit(3000000000, "miles")
  3501. }
  3502. ]
  3503. ))
  3504. characterMakers.push(() => makeCharacter(
  3505. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3506. {
  3507. front: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(80, "kg"),
  3510. name: "Front",
  3511. image: {
  3512. source: "./media/characters/natalya/front.svg"
  3513. }
  3514. },
  3515. back: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(80, "kg"),
  3518. name: "Back",
  3519. image: {
  3520. source: "./media/characters/natalya/back.svg"
  3521. }
  3522. }
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(150, "feet"),
  3528. default: true
  3529. },
  3530. {
  3531. name: "Megamacro",
  3532. height: math.unit(5, "miles")
  3533. },
  3534. {
  3535. name: "Full-Size",
  3536. height: math.unit(600, "kiloparsecs")
  3537. }
  3538. ]
  3539. ))
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3542. {
  3543. front: {
  3544. height: math.unit(2, "meter"),
  3545. weight: math.unit(50, "kg"),
  3546. name: "Front",
  3547. image: {
  3548. source: "./media/characters/erestrebah/front.svg",
  3549. extra: 1262/1162,
  3550. bottom: 96/1358
  3551. }
  3552. },
  3553. back: {
  3554. height: math.unit(2, "meter"),
  3555. weight: math.unit(50, "kg"),
  3556. name: "Back",
  3557. image: {
  3558. source: "./media/characters/erestrebah/back.svg",
  3559. extra: 1257/1139,
  3560. bottom: 13/1270
  3561. }
  3562. },
  3563. wing: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(50, "kg"),
  3566. name: "Wing",
  3567. image: {
  3568. source: "./media/characters/erestrebah/wing.svg",
  3569. extra: 1262/1162,
  3570. bottom: 96/1358
  3571. }
  3572. },
  3573. mouth: {
  3574. height: math.unit(0.39, "feet"),
  3575. name: "Mouth",
  3576. image: {
  3577. source: "./media/characters/erestrebah/mouth.svg"
  3578. }
  3579. }
  3580. },
  3581. [
  3582. {
  3583. name: "Normal",
  3584. height: math.unit(10, "feet")
  3585. },
  3586. {
  3587. name: "Large",
  3588. height: math.unit(50, "feet"),
  3589. default: true
  3590. },
  3591. {
  3592. name: "Macro",
  3593. height: math.unit(300, "feet")
  3594. },
  3595. {
  3596. name: "Macro+",
  3597. height: math.unit(750, "feet")
  3598. },
  3599. {
  3600. name: "Megamacro",
  3601. height: math.unit(3, "miles")
  3602. }
  3603. ]
  3604. ))
  3605. characterMakers.push(() => makeCharacter(
  3606. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3607. {
  3608. front: {
  3609. height: math.unit(2, "meter"),
  3610. weight: math.unit(80, "kg"),
  3611. name: "Front",
  3612. image: {
  3613. source: "./media/characters/jennifer/front.svg",
  3614. bottom: 0.11,
  3615. extra: 1.16
  3616. }
  3617. },
  3618. frontAlt: {
  3619. height: math.unit(2, "meter"),
  3620. weight: math.unit(80, "kg"),
  3621. name: "Front (Alt)",
  3622. image: {
  3623. source: "./media/characters/jennifer/front-alt.svg"
  3624. }
  3625. }
  3626. },
  3627. [
  3628. {
  3629. name: "Canon Height",
  3630. height: math.unit(120, "feet"),
  3631. default: true
  3632. },
  3633. {
  3634. name: "Macro+",
  3635. height: math.unit(300, "feet")
  3636. },
  3637. {
  3638. name: "Megamacro",
  3639. height: math.unit(20000, "feet")
  3640. }
  3641. ]
  3642. ))
  3643. characterMakers.push(() => makeCharacter(
  3644. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3645. {
  3646. front: {
  3647. height: math.unit(2, "meter"),
  3648. weight: math.unit(50, "kg"),
  3649. name: "Front",
  3650. image: {
  3651. source: "./media/characters/kalista/front.svg",
  3652. extra: 1947 / 1700,
  3653. bottom: 76.6 / 1412.98
  3654. }
  3655. },
  3656. back: {
  3657. height: math.unit(2, "meter"),
  3658. weight: math.unit(50, "kg"),
  3659. name: "Back",
  3660. image: {
  3661. source: "./media/characters/kalista/back.svg",
  3662. extra: 1366 / 1156,
  3663. bottom: 33.9 / 1362.78
  3664. }
  3665. }
  3666. },
  3667. [
  3668. {
  3669. name: "Uncomfortably Small",
  3670. height: math.unit(10, "feet")
  3671. },
  3672. {
  3673. name: "Small",
  3674. height: math.unit(30, "feet")
  3675. },
  3676. {
  3677. name: "Macro",
  3678. height: math.unit(100, "feet"),
  3679. default: true
  3680. },
  3681. {
  3682. name: "Macro+",
  3683. height: math.unit(2000, "feet")
  3684. },
  3685. {
  3686. name: "True Form",
  3687. height: math.unit(8924, "miles")
  3688. }
  3689. ]
  3690. ))
  3691. characterMakers.push(() => makeCharacter(
  3692. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3693. {
  3694. front: {
  3695. height: math.unit(2, "meter"),
  3696. weight: math.unit(120, "kg"),
  3697. name: "Front",
  3698. image: {
  3699. source: "./media/characters/ggv/front.svg"
  3700. }
  3701. },
  3702. side: {
  3703. height: math.unit(2, "meter"),
  3704. weight: math.unit(120, "kg"),
  3705. name: "Side",
  3706. image: {
  3707. source: "./media/characters/ggv/side.svg"
  3708. }
  3709. }
  3710. },
  3711. [
  3712. {
  3713. name: "Extremely Puny",
  3714. height: math.unit(9 + 5 / 12, "feet")
  3715. },
  3716. {
  3717. name: "Horribly Small",
  3718. height: math.unit(47.7, "miles"),
  3719. default: true
  3720. },
  3721. {
  3722. name: "Reasonably Sized",
  3723. height: math.unit(25000, "parsecs")
  3724. },
  3725. {
  3726. name: "Slightly Uncompressed",
  3727. height: math.unit(7.77e31, "parsecs")
  3728. },
  3729. {
  3730. name: "Omniversal",
  3731. height: math.unit(1e300, "meters")
  3732. },
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3737. {
  3738. front: {
  3739. height: math.unit(2, "meter"),
  3740. weight: math.unit(75, "lb"),
  3741. name: "Front",
  3742. image: {
  3743. source: "./media/characters/napalm/front.svg"
  3744. }
  3745. },
  3746. back: {
  3747. height: math.unit(2, "meter"),
  3748. weight: math.unit(75, "lb"),
  3749. name: "Back",
  3750. image: {
  3751. source: "./media/characters/napalm/back.svg"
  3752. }
  3753. }
  3754. },
  3755. [
  3756. {
  3757. name: "Standard",
  3758. height: math.unit(55, "feet"),
  3759. default: true
  3760. }
  3761. ]
  3762. ))
  3763. characterMakers.push(() => makeCharacter(
  3764. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3765. {
  3766. front: {
  3767. height: math.unit(7 + 5 / 6, "feet"),
  3768. weight: math.unit(325, "lb"),
  3769. name: "Front",
  3770. image: {
  3771. source: "./media/characters/asana/front.svg",
  3772. extra: 1133 / 1060,
  3773. bottom: 15.2 / 1148.6
  3774. }
  3775. },
  3776. back: {
  3777. height: math.unit(7 + 5 / 6, "feet"),
  3778. weight: math.unit(325, "lb"),
  3779. name: "Back",
  3780. image: {
  3781. source: "./media/characters/asana/back.svg",
  3782. extra: 1114 / 1043,
  3783. bottom: 5 / 1120
  3784. }
  3785. },
  3786. dressedDark: {
  3787. height: math.unit(7 + 5 / 6, "feet"),
  3788. weight: math.unit(325, "lb"),
  3789. name: "Dressed (Dark)",
  3790. image: {
  3791. source: "./media/characters/asana/dressed-dark.svg",
  3792. extra: 1133 / 1060,
  3793. bottom: 15.2 / 1148.6
  3794. }
  3795. },
  3796. dressedLight: {
  3797. height: math.unit(7 + 5 / 6, "feet"),
  3798. weight: math.unit(325, "lb"),
  3799. name: "Dressed (Light)",
  3800. image: {
  3801. source: "./media/characters/asana/dressed-light.svg",
  3802. extra: 1133 / 1060,
  3803. bottom: 15.2 / 1148.6
  3804. }
  3805. },
  3806. },
  3807. [
  3808. {
  3809. name: "Standard",
  3810. height: math.unit(7 + 5 / 6, "feet"),
  3811. default: true
  3812. },
  3813. {
  3814. name: "Large",
  3815. height: math.unit(10, "meters")
  3816. },
  3817. {
  3818. name: "Macro",
  3819. height: math.unit(2500, "meters")
  3820. },
  3821. {
  3822. name: "Megamacro",
  3823. height: math.unit(5e6, "meters")
  3824. },
  3825. {
  3826. name: "Examacro",
  3827. height: math.unit(5e12, "lightyears")
  3828. },
  3829. {
  3830. name: "Max Size",
  3831. height: math.unit(1e31, "lightyears")
  3832. }
  3833. ]
  3834. ))
  3835. characterMakers.push(() => makeCharacter(
  3836. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3837. {
  3838. front: {
  3839. height: math.unit(2, "meter"),
  3840. weight: math.unit(60, "kg"),
  3841. name: "Front",
  3842. image: {
  3843. source: "./media/characters/ebony/front.svg",
  3844. bottom: 0.03,
  3845. extra: 1045 / 810 + 0.03
  3846. }
  3847. },
  3848. side: {
  3849. height: math.unit(2, "meter"),
  3850. weight: math.unit(60, "kg"),
  3851. name: "Side",
  3852. image: {
  3853. source: "./media/characters/ebony/side.svg",
  3854. bottom: 0.03,
  3855. extra: 1045 / 810 + 0.03
  3856. }
  3857. },
  3858. back: {
  3859. height: math.unit(2, "meter"),
  3860. weight: math.unit(60, "kg"),
  3861. name: "Back",
  3862. image: {
  3863. source: "./media/characters/ebony/back.svg",
  3864. bottom: 0.01,
  3865. extra: 1045 / 810 + 0.01
  3866. }
  3867. },
  3868. },
  3869. [
  3870. // TODO check why I did this lol
  3871. {
  3872. name: "Standard",
  3873. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3874. default: true
  3875. },
  3876. {
  3877. name: "Macro",
  3878. height: math.unit(200, "feet")
  3879. },
  3880. {
  3881. name: "Gigamacro",
  3882. height: math.unit(13000, "km")
  3883. }
  3884. ]
  3885. ))
  3886. characterMakers.push(() => makeCharacter(
  3887. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3888. {
  3889. front: {
  3890. height: math.unit(6, "feet"),
  3891. weight: math.unit(175, "lb"),
  3892. name: "Front",
  3893. image: {
  3894. source: "./media/characters/mountain/front.svg",
  3895. extra: 972 / 955,
  3896. bottom: 64 / 1036.6
  3897. }
  3898. },
  3899. back: {
  3900. height: math.unit(6, "feet"),
  3901. weight: math.unit(175, "lb"),
  3902. name: "Back",
  3903. image: {
  3904. source: "./media/characters/mountain/back.svg",
  3905. extra: 970 / 950,
  3906. bottom: 28.25 / 999
  3907. }
  3908. },
  3909. },
  3910. [
  3911. {
  3912. name: "Large",
  3913. height: math.unit(20, "meters")
  3914. },
  3915. {
  3916. name: "Macro",
  3917. height: math.unit(300, "meters")
  3918. },
  3919. {
  3920. name: "Gigamacro",
  3921. height: math.unit(10000, "km"),
  3922. default: true
  3923. },
  3924. {
  3925. name: "Examacro",
  3926. height: math.unit(10e9, "lightyears")
  3927. }
  3928. ]
  3929. ))
  3930. characterMakers.push(() => makeCharacter(
  3931. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3932. {
  3933. front: {
  3934. height: math.unit(8, "feet"),
  3935. weight: math.unit(500, "lb"),
  3936. name: "Front",
  3937. image: {
  3938. source: "./media/characters/rick/front.svg"
  3939. }
  3940. }
  3941. },
  3942. [
  3943. {
  3944. name: "Normal",
  3945. height: math.unit(8, "feet"),
  3946. default: true
  3947. },
  3948. {
  3949. name: "Macro",
  3950. height: math.unit(5, "km")
  3951. }
  3952. ]
  3953. ))
  3954. characterMakers.push(() => makeCharacter(
  3955. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3956. {
  3957. front: {
  3958. height: math.unit(8, "feet"),
  3959. weight: math.unit(120, "lb"),
  3960. name: "Front",
  3961. image: {
  3962. source: "./media/characters/ona/front.svg"
  3963. }
  3964. },
  3965. frontAlt: {
  3966. height: math.unit(8, "feet"),
  3967. weight: math.unit(120, "lb"),
  3968. name: "Front (Alt)",
  3969. image: {
  3970. source: "./media/characters/ona/front-alt.svg"
  3971. }
  3972. },
  3973. back: {
  3974. height: math.unit(8, "feet"),
  3975. weight: math.unit(120, "lb"),
  3976. name: "Back",
  3977. image: {
  3978. source: "./media/characters/ona/back.svg"
  3979. }
  3980. },
  3981. foot: {
  3982. height: math.unit(1.1, "feet"),
  3983. name: "Foot",
  3984. image: {
  3985. source: "./media/characters/ona/foot.svg"
  3986. }
  3987. }
  3988. },
  3989. [
  3990. {
  3991. name: "Megamacro",
  3992. height: math.unit(70, "km"),
  3993. default: true
  3994. },
  3995. {
  3996. name: "Gigamacro",
  3997. height: math.unit(681818, "miles")
  3998. },
  3999. {
  4000. name: "Examacro",
  4001. height: math.unit(3800000, "lightyears")
  4002. },
  4003. ]
  4004. ))
  4005. characterMakers.push(() => makeCharacter(
  4006. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4007. {
  4008. front: {
  4009. height: math.unit(12, "feet"),
  4010. weight: math.unit(3000, "lb"),
  4011. name: "Front",
  4012. image: {
  4013. source: "./media/characters/mech/front.svg",
  4014. extra: 2900 / 2770,
  4015. bottom: 110 / 3010
  4016. }
  4017. },
  4018. back: {
  4019. height: math.unit(12, "feet"),
  4020. weight: math.unit(3000, "lb"),
  4021. name: "Back",
  4022. image: {
  4023. source: "./media/characters/mech/back.svg",
  4024. extra: 3011 / 2890,
  4025. bottom: 94 / 3105
  4026. }
  4027. },
  4028. maw: {
  4029. height: math.unit(3.07, "feet"),
  4030. name: "Maw",
  4031. image: {
  4032. source: "./media/characters/mech/maw.svg"
  4033. }
  4034. },
  4035. head: {
  4036. height: math.unit(2.82, "feet"),
  4037. name: "Head",
  4038. image: {
  4039. source: "./media/characters/mech/head.svg"
  4040. }
  4041. },
  4042. dick: {
  4043. height: math.unit(1.43, "feet"),
  4044. name: "Dick",
  4045. image: {
  4046. source: "./media/characters/mech/dick.svg"
  4047. }
  4048. },
  4049. },
  4050. [
  4051. {
  4052. name: "Normal",
  4053. height: math.unit(12, "feet")
  4054. },
  4055. {
  4056. name: "Macro",
  4057. height: math.unit(300, "feet"),
  4058. default: true
  4059. },
  4060. {
  4061. name: "Macro+",
  4062. height: math.unit(1500, "feet")
  4063. },
  4064. ]
  4065. ))
  4066. characterMakers.push(() => makeCharacter(
  4067. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4068. {
  4069. front: {
  4070. height: math.unit(1.3, "meter"),
  4071. weight: math.unit(30, "kg"),
  4072. name: "Front",
  4073. image: {
  4074. source: "./media/characters/gregory/front.svg",
  4075. }
  4076. }
  4077. },
  4078. [
  4079. {
  4080. name: "Normal",
  4081. height: math.unit(1.3, "meter"),
  4082. default: true
  4083. },
  4084. {
  4085. name: "Macro",
  4086. height: math.unit(20, "meter")
  4087. }
  4088. ]
  4089. ))
  4090. characterMakers.push(() => makeCharacter(
  4091. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4092. {
  4093. front: {
  4094. height: math.unit(2.8, "meter"),
  4095. weight: math.unit(200, "kg"),
  4096. name: "Front",
  4097. image: {
  4098. source: "./media/characters/elory/front.svg",
  4099. }
  4100. }
  4101. },
  4102. [
  4103. {
  4104. name: "Normal",
  4105. height: math.unit(2.8, "meter"),
  4106. default: true
  4107. },
  4108. {
  4109. name: "Macro",
  4110. height: math.unit(38, "meter")
  4111. }
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(470, "feet"),
  4119. weight: math.unit(924, "tons"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/angelpatamon/front.svg",
  4123. }
  4124. }
  4125. },
  4126. [
  4127. {
  4128. name: "Normal",
  4129. height: math.unit(470, "feet"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Deity Size I",
  4134. height: math.unit(28651.2, "km")
  4135. },
  4136. {
  4137. name: "Deity Size II",
  4138. height: math.unit(171907.2, "km")
  4139. }
  4140. ]
  4141. ))
  4142. characterMakers.push(() => makeCharacter(
  4143. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4144. {
  4145. side: {
  4146. height: math.unit(7.2, "meter"),
  4147. weight: math.unit(8.2, "tons"),
  4148. name: "Side",
  4149. image: {
  4150. source: "./media/characters/cryae/side.svg",
  4151. extra: 3500 / 1500
  4152. }
  4153. }
  4154. },
  4155. [
  4156. {
  4157. name: "Normal",
  4158. height: math.unit(7.2, "meter"),
  4159. default: true
  4160. }
  4161. ]
  4162. ))
  4163. characterMakers.push(() => makeCharacter(
  4164. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4165. {
  4166. front: {
  4167. height: math.unit(6, "feet"),
  4168. weight: math.unit(175, "lb"),
  4169. name: "Front",
  4170. image: {
  4171. source: "./media/characters/xera/front.svg",
  4172. extra: 2377 / 1972,
  4173. bottom: 75.5 / 2452
  4174. }
  4175. },
  4176. side: {
  4177. height: math.unit(6, "feet"),
  4178. weight: math.unit(175, "lb"),
  4179. name: "Side",
  4180. image: {
  4181. source: "./media/characters/xera/side.svg",
  4182. extra: 2345 / 2019,
  4183. bottom: 39.7 / 2384
  4184. }
  4185. },
  4186. back: {
  4187. height: math.unit(6, "feet"),
  4188. weight: math.unit(175, "lb"),
  4189. name: "Back",
  4190. image: {
  4191. source: "./media/characters/xera/back.svg",
  4192. extra: 2095 / 1984,
  4193. bottom: 67 / 2166
  4194. }
  4195. },
  4196. },
  4197. [
  4198. {
  4199. name: "Small",
  4200. height: math.unit(10, "feet")
  4201. },
  4202. {
  4203. name: "Macro",
  4204. height: math.unit(500, "meters"),
  4205. default: true
  4206. },
  4207. {
  4208. name: "Macro+",
  4209. height: math.unit(10, "km")
  4210. },
  4211. {
  4212. name: "Gigamacro",
  4213. height: math.unit(25000, "km")
  4214. },
  4215. {
  4216. name: "Teramacro",
  4217. height: math.unit(3e6, "km")
  4218. }
  4219. ]
  4220. ))
  4221. characterMakers.push(() => makeCharacter(
  4222. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4223. {
  4224. front: {
  4225. height: math.unit(6, "feet"),
  4226. weight: math.unit(175, "lb"),
  4227. name: "Front",
  4228. image: {
  4229. source: "./media/characters/nebula/front.svg",
  4230. extra: 2566 / 2362,
  4231. bottom: 81 / 2644
  4232. }
  4233. }
  4234. },
  4235. [
  4236. {
  4237. name: "Small",
  4238. height: math.unit(4.5, "meters")
  4239. },
  4240. {
  4241. name: "Macro",
  4242. height: math.unit(1500, "meters"),
  4243. default: true
  4244. },
  4245. {
  4246. name: "Megamacro",
  4247. height: math.unit(150, "km")
  4248. },
  4249. {
  4250. name: "Gigamacro",
  4251. height: math.unit(27000, "km")
  4252. }
  4253. ]
  4254. ))
  4255. characterMakers.push(() => makeCharacter(
  4256. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4257. {
  4258. front: {
  4259. height: math.unit(6, "feet"),
  4260. weight: math.unit(225, "lb"),
  4261. name: "Front",
  4262. image: {
  4263. source: "./media/characters/abysgar/front.svg"
  4264. }
  4265. }
  4266. },
  4267. [
  4268. {
  4269. name: "Small",
  4270. height: math.unit(4.5, "meters")
  4271. },
  4272. {
  4273. name: "Macro",
  4274. height: math.unit(1250, "meters"),
  4275. default: true
  4276. },
  4277. {
  4278. name: "Megamacro",
  4279. height: math.unit(125, "km")
  4280. },
  4281. {
  4282. name: "Gigamacro",
  4283. height: math.unit(26000, "km")
  4284. }
  4285. ]
  4286. ))
  4287. characterMakers.push(() => makeCharacter(
  4288. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4289. {
  4290. front: {
  4291. height: math.unit(6, "feet"),
  4292. weight: math.unit(180, "lb"),
  4293. name: "Front",
  4294. image: {
  4295. source: "./media/characters/yakuz/front.svg"
  4296. }
  4297. }
  4298. },
  4299. [
  4300. {
  4301. name: "Small",
  4302. height: math.unit(5, "meters")
  4303. },
  4304. {
  4305. name: "Macro",
  4306. height: math.unit(1500, "meters"),
  4307. default: true
  4308. },
  4309. {
  4310. name: "Megamacro",
  4311. height: math.unit(200, "km")
  4312. },
  4313. {
  4314. name: "Gigamacro",
  4315. height: math.unit(100000, "km")
  4316. }
  4317. ]
  4318. ))
  4319. characterMakers.push(() => makeCharacter(
  4320. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4321. {
  4322. front: {
  4323. height: math.unit(6, "feet"),
  4324. weight: math.unit(175, "lb"),
  4325. name: "Front",
  4326. image: {
  4327. source: "./media/characters/mirova/front.svg",
  4328. extra: 3334 / 3071,
  4329. bottom: 42 / 3375.6
  4330. }
  4331. }
  4332. },
  4333. [
  4334. {
  4335. name: "Small",
  4336. height: math.unit(5, "meters")
  4337. },
  4338. {
  4339. name: "Macro",
  4340. height: math.unit(900, "meters"),
  4341. default: true
  4342. },
  4343. {
  4344. name: "Megamacro",
  4345. height: math.unit(135, "km")
  4346. },
  4347. {
  4348. name: "Gigamacro",
  4349. height: math.unit(20000, "km")
  4350. }
  4351. ]
  4352. ))
  4353. characterMakers.push(() => makeCharacter(
  4354. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4355. {
  4356. side: {
  4357. height: math.unit(28.35, "feet"),
  4358. weight: math.unit(99.75, "tons"),
  4359. name: "Side",
  4360. image: {
  4361. source: "./media/characters/asana-mech/side.svg",
  4362. extra: 923 / 699,
  4363. bottom: 50 / 975
  4364. }
  4365. },
  4366. chaingun: {
  4367. height: math.unit(7, "feet"),
  4368. weight: math.unit(2400, "lb"),
  4369. name: "Chaingun",
  4370. image: {
  4371. source: "./media/characters/asana-mech/chaingun.svg"
  4372. }
  4373. },
  4374. laser: {
  4375. height: math.unit(7.12, "feet"),
  4376. weight: math.unit(2000, "lb"),
  4377. name: "Laser",
  4378. image: {
  4379. source: "./media/characters/asana-mech/laser.svg"
  4380. }
  4381. },
  4382. },
  4383. [
  4384. {
  4385. name: "Normal",
  4386. height: math.unit(28.35, "feet"),
  4387. default: true
  4388. },
  4389. {
  4390. name: "Macro",
  4391. height: math.unit(2500, "feet")
  4392. },
  4393. {
  4394. name: "Megamacro",
  4395. height: math.unit(25, "miles")
  4396. },
  4397. {
  4398. name: "Examacro",
  4399. height: math.unit(6e8, "lightyears")
  4400. },
  4401. ]
  4402. ))
  4403. characterMakers.push(() => makeCharacter(
  4404. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4405. {
  4406. front: {
  4407. height: math.unit(5, "meters"),
  4408. weight: math.unit(1000, "kg"),
  4409. name: "Front",
  4410. image: {
  4411. source: "./media/characters/asche/front.svg",
  4412. extra: 1258 / 1190,
  4413. bottom: 47 / 1305
  4414. }
  4415. },
  4416. frontUnderwear: {
  4417. height: math.unit(5, "meters"),
  4418. weight: math.unit(1000, "kg"),
  4419. name: "Front (Underwear)",
  4420. image: {
  4421. source: "./media/characters/asche/front-underwear.svg",
  4422. extra: 1258 / 1190,
  4423. bottom: 47 / 1305
  4424. }
  4425. },
  4426. frontDressed: {
  4427. height: math.unit(5, "meters"),
  4428. weight: math.unit(1000, "kg"),
  4429. name: "Front (Dressed)",
  4430. image: {
  4431. source: "./media/characters/asche/front-dressed.svg",
  4432. extra: 1258 / 1190,
  4433. bottom: 47 / 1305
  4434. }
  4435. },
  4436. frontArmor: {
  4437. height: math.unit(5, "meters"),
  4438. weight: math.unit(1000, "kg"),
  4439. name: "Front (Armored)",
  4440. image: {
  4441. source: "./media/characters/asche/front-armored.svg",
  4442. extra: 1374 / 1308,
  4443. bottom: 23 / 1397
  4444. }
  4445. },
  4446. mp724: {
  4447. height: math.unit(0.96, "meters"),
  4448. weight: math.unit(38, "kg"),
  4449. name: "H&K MP724",
  4450. image: {
  4451. source: "./media/characters/asche/h&k-mp724.svg"
  4452. }
  4453. },
  4454. side: {
  4455. height: math.unit(5, "meters"),
  4456. weight: math.unit(1000, "kg"),
  4457. name: "Side",
  4458. image: {
  4459. source: "./media/characters/asche/side.svg",
  4460. extra: 1717 / 1609,
  4461. bottom: 0.005
  4462. }
  4463. },
  4464. back: {
  4465. height: math.unit(5, "meters"),
  4466. weight: math.unit(1000, "kg"),
  4467. name: "Back",
  4468. image: {
  4469. source: "./media/characters/asche/back.svg",
  4470. extra: 1570 / 1501
  4471. }
  4472. },
  4473. },
  4474. [
  4475. {
  4476. name: "DEFCON 5",
  4477. height: math.unit(5, "meters")
  4478. },
  4479. {
  4480. name: "DEFCON 4",
  4481. height: math.unit(500, "meters"),
  4482. default: true
  4483. },
  4484. {
  4485. name: "DEFCON 3",
  4486. height: math.unit(5, "km")
  4487. },
  4488. {
  4489. name: "DEFCON 2",
  4490. height: math.unit(500, "km")
  4491. },
  4492. {
  4493. name: "DEFCON 1",
  4494. height: math.unit(500000, "km")
  4495. },
  4496. {
  4497. name: "DEFCON 0",
  4498. height: math.unit(3, "gigaparsecs")
  4499. },
  4500. ]
  4501. ))
  4502. characterMakers.push(() => makeCharacter(
  4503. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4504. {
  4505. front: {
  4506. height: math.unit(2, "meters"),
  4507. weight: math.unit(76, "kg"),
  4508. name: "Front",
  4509. image: {
  4510. source: "./media/characters/gale/front.svg"
  4511. }
  4512. },
  4513. frontAlt1: {
  4514. height: math.unit(2, "meters"),
  4515. weight: math.unit(76, "kg"),
  4516. name: "Front (Alt 1)",
  4517. image: {
  4518. source: "./media/characters/gale/front-alt-1.svg"
  4519. }
  4520. },
  4521. frontAlt2: {
  4522. height: math.unit(2, "meters"),
  4523. weight: math.unit(76, "kg"),
  4524. name: "Front (Alt 2)",
  4525. image: {
  4526. source: "./media/characters/gale/front-alt-2.svg"
  4527. }
  4528. },
  4529. },
  4530. [
  4531. {
  4532. name: "Normal",
  4533. height: math.unit(7, "feet")
  4534. },
  4535. {
  4536. name: "Macro",
  4537. height: math.unit(150, "feet"),
  4538. default: true
  4539. },
  4540. {
  4541. name: "Macro+",
  4542. height: math.unit(300, "feet")
  4543. },
  4544. ]
  4545. ))
  4546. characterMakers.push(() => makeCharacter(
  4547. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4548. {
  4549. front: {
  4550. height: math.unit(5 + 10/12, "feet"),
  4551. weight: math.unit(67, "kg"),
  4552. name: "Front",
  4553. image: {
  4554. source: "./media/characters/draylen/front.svg",
  4555. extra: 832/777,
  4556. bottom: 85/917
  4557. }
  4558. }
  4559. },
  4560. [
  4561. {
  4562. name: "Normal",
  4563. height: math.unit(5 + 10/12, "feet")
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(150, "feet"),
  4568. default: true
  4569. }
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4574. {
  4575. front: {
  4576. height: math.unit(7 + 9 / 12, "feet"),
  4577. weight: math.unit(379, "lbs"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/chez/front.svg"
  4581. }
  4582. },
  4583. side: {
  4584. height: math.unit(7 + 9 / 12, "feet"),
  4585. weight: math.unit(379, "lbs"),
  4586. name: "Side",
  4587. image: {
  4588. source: "./media/characters/chez/side.svg"
  4589. }
  4590. }
  4591. },
  4592. [
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(7 + 9 / 12, "feet"),
  4596. default: true
  4597. },
  4598. {
  4599. name: "God King",
  4600. height: math.unit(9750000, "meters")
  4601. }
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4606. {
  4607. front: {
  4608. height: math.unit(6, "feet"),
  4609. weight: math.unit(275, "lbs"),
  4610. name: "Front",
  4611. image: {
  4612. source: "./media/characters/kaylum/front.svg",
  4613. bottom: 0.01,
  4614. extra: 1166 / 1031
  4615. }
  4616. },
  4617. frontWingless: {
  4618. height: math.unit(6, "feet"),
  4619. weight: math.unit(275, "lbs"),
  4620. name: "Front (Wingless)",
  4621. image: {
  4622. source: "./media/characters/kaylum/front-wingless.svg",
  4623. bottom: 0.01,
  4624. extra: 1117 / 1031
  4625. }
  4626. }
  4627. },
  4628. [
  4629. {
  4630. name: "Normal",
  4631. height: math.unit(3.05, "meters")
  4632. },
  4633. {
  4634. name: "Master",
  4635. height: math.unit(5.5, "meters")
  4636. },
  4637. {
  4638. name: "Rampage",
  4639. height: math.unit(19, "meters")
  4640. },
  4641. {
  4642. name: "Macro Lite",
  4643. height: math.unit(37, "meters")
  4644. },
  4645. {
  4646. name: "Hyper Predator",
  4647. height: math.unit(61, "meters")
  4648. },
  4649. {
  4650. name: "Macro",
  4651. height: math.unit(138, "meters"),
  4652. default: true
  4653. }
  4654. ]
  4655. ))
  4656. characterMakers.push(() => makeCharacter(
  4657. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4658. {
  4659. front: {
  4660. height: math.unit(6, "feet"),
  4661. weight: math.unit(150, "lbs"),
  4662. name: "Front",
  4663. image: {
  4664. source: "./media/characters/geta/front.svg"
  4665. }
  4666. }
  4667. },
  4668. [
  4669. {
  4670. name: "Micro",
  4671. height: math.unit(3, "inches"),
  4672. default: true
  4673. },
  4674. {
  4675. name: "Normal",
  4676. height: math.unit(5 + 5 / 12, "feet")
  4677. }
  4678. ]
  4679. ))
  4680. characterMakers.push(() => makeCharacter(
  4681. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4682. {
  4683. front: {
  4684. height: math.unit(6, "feet"),
  4685. weight: math.unit(300, "lbs"),
  4686. name: "Front",
  4687. image: {
  4688. source: "./media/characters/tyrnn/front.svg"
  4689. }
  4690. }
  4691. },
  4692. [
  4693. {
  4694. name: "Main Height",
  4695. height: math.unit(355, "feet"),
  4696. default: true
  4697. },
  4698. {
  4699. name: "Fave. Height",
  4700. height: math.unit(2400, "feet")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(6, "feet"),
  4709. weight: math.unit(300, "lbs"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/appledectomy/front.svg"
  4713. }
  4714. }
  4715. },
  4716. [
  4717. {
  4718. name: "Macro",
  4719. height: math.unit(2500, "feet")
  4720. },
  4721. {
  4722. name: "Megamacro",
  4723. height: math.unit(50, "miles"),
  4724. default: true
  4725. },
  4726. {
  4727. name: "Gigamacro",
  4728. height: math.unit(5000, "miles")
  4729. },
  4730. {
  4731. name: "Teramacro",
  4732. height: math.unit(250000, "miles")
  4733. },
  4734. ]
  4735. ))
  4736. characterMakers.push(() => makeCharacter(
  4737. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4738. {
  4739. front: {
  4740. height: math.unit(6, "feet"),
  4741. weight: math.unit(200, "lbs"),
  4742. name: "Front",
  4743. image: {
  4744. source: "./media/characters/vulpes/front.svg",
  4745. extra: 573 / 543,
  4746. bottom: 0.033
  4747. }
  4748. },
  4749. side: {
  4750. height: math.unit(6, "feet"),
  4751. weight: math.unit(200, "lbs"),
  4752. name: "Side",
  4753. image: {
  4754. source: "./media/characters/vulpes/side.svg",
  4755. extra: 577 / 549,
  4756. bottom: 11 / 588
  4757. }
  4758. },
  4759. back: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(200, "lbs"),
  4762. name: "Back",
  4763. image: {
  4764. source: "./media/characters/vulpes/back.svg",
  4765. extra: 573 / 549,
  4766. bottom: 20 / 593
  4767. }
  4768. },
  4769. feet: {
  4770. height: math.unit(1.276, "feet"),
  4771. name: "Feet",
  4772. image: {
  4773. source: "./media/characters/vulpes/feet.svg"
  4774. }
  4775. },
  4776. maw: {
  4777. height: math.unit(1.18, "feet"),
  4778. name: "Maw",
  4779. image: {
  4780. source: "./media/characters/vulpes/maw.svg"
  4781. }
  4782. },
  4783. },
  4784. [
  4785. {
  4786. name: "Micro",
  4787. height: math.unit(2, "inches")
  4788. },
  4789. {
  4790. name: "Normal",
  4791. height: math.unit(6.3, "feet")
  4792. },
  4793. {
  4794. name: "Macro",
  4795. height: math.unit(850, "feet")
  4796. },
  4797. {
  4798. name: "Megamacro",
  4799. height: math.unit(7500, "feet"),
  4800. default: true
  4801. },
  4802. {
  4803. name: "Gigamacro",
  4804. height: math.unit(570000, "miles")
  4805. }
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4810. {
  4811. front: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(210, "lbs"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/rain-fallen/front.svg"
  4817. }
  4818. },
  4819. side: {
  4820. height: math.unit(6, "feet"),
  4821. weight: math.unit(210, "lbs"),
  4822. name: "Side",
  4823. image: {
  4824. source: "./media/characters/rain-fallen/side.svg"
  4825. }
  4826. },
  4827. back: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(210, "lbs"),
  4830. name: "Back",
  4831. image: {
  4832. source: "./media/characters/rain-fallen/back.svg"
  4833. }
  4834. },
  4835. feral: {
  4836. height: math.unit(9, "feet"),
  4837. weight: math.unit(700, "lbs"),
  4838. name: "Feral",
  4839. image: {
  4840. source: "./media/characters/rain-fallen/feral.svg"
  4841. }
  4842. },
  4843. },
  4844. [
  4845. {
  4846. name: "Meddling with Mortals",
  4847. height: math.unit(8 + 8/12, "feet")
  4848. },
  4849. {
  4850. name: "Normal",
  4851. height: math.unit(5, "meter")
  4852. },
  4853. {
  4854. name: "Macro",
  4855. height: math.unit(150, "meter"),
  4856. default: true
  4857. },
  4858. {
  4859. name: "Megamacro",
  4860. height: math.unit(278e6, "meter")
  4861. },
  4862. {
  4863. name: "Gigamacro",
  4864. height: math.unit(2e9, "meter")
  4865. },
  4866. {
  4867. name: "Teramacro",
  4868. height: math.unit(8e12, "meter")
  4869. },
  4870. {
  4871. name: "Devourer",
  4872. height: math.unit(14, "zettameters")
  4873. },
  4874. {
  4875. name: "Scarlet King",
  4876. height: math.unit(18, "yottameters")
  4877. },
  4878. {
  4879. name: "Void",
  4880. height: math.unit(1e88, "yottameters")
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4886. {
  4887. standing: {
  4888. height: math.unit(6, "feet"),
  4889. weight: math.unit(180, "lbs"),
  4890. name: "Standing",
  4891. image: {
  4892. source: "./media/characters/zaakira/standing.svg",
  4893. extra: 1599/1504,
  4894. bottom: 39/1638
  4895. }
  4896. },
  4897. laying: {
  4898. height: math.unit(3, "feet"),
  4899. weight: math.unit(180, "lbs"),
  4900. name: "Laying",
  4901. image: {
  4902. source: "./media/characters/zaakira/laying.svg"
  4903. }
  4904. },
  4905. },
  4906. [
  4907. {
  4908. name: "Normal",
  4909. height: math.unit(12, "feet")
  4910. },
  4911. {
  4912. name: "Macro",
  4913. height: math.unit(279, "feet"),
  4914. default: true
  4915. }
  4916. ]
  4917. ))
  4918. characterMakers.push(() => makeCharacter(
  4919. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4920. {
  4921. femSfw: {
  4922. height: math.unit(8, "feet"),
  4923. weight: math.unit(350, "lb"),
  4924. name: "Fem",
  4925. image: {
  4926. source: "./media/characters/sigvald/fem-sfw.svg",
  4927. extra: 182 / 164,
  4928. bottom: 8.7 / 190.5
  4929. }
  4930. },
  4931. femNsfw: {
  4932. height: math.unit(8, "feet"),
  4933. weight: math.unit(350, "lb"),
  4934. name: "Fem (NSFW)",
  4935. image: {
  4936. source: "./media/characters/sigvald/fem-nsfw.svg",
  4937. extra: 182 / 164,
  4938. bottom: 8.7 / 190.5
  4939. }
  4940. },
  4941. maleNsfw: {
  4942. height: math.unit(8, "feet"),
  4943. weight: math.unit(350, "lb"),
  4944. name: "Male (NSFW)",
  4945. image: {
  4946. source: "./media/characters/sigvald/male-nsfw.svg",
  4947. extra: 182 / 164,
  4948. bottom: 8.7 / 190.5
  4949. }
  4950. },
  4951. hermNsfw: {
  4952. height: math.unit(8, "feet"),
  4953. weight: math.unit(350, "lb"),
  4954. name: "Herm (NSFW)",
  4955. image: {
  4956. source: "./media/characters/sigvald/herm-nsfw.svg",
  4957. extra: 182 / 164,
  4958. bottom: 8.7 / 190.5
  4959. }
  4960. },
  4961. dick: {
  4962. height: math.unit(2.36, "feet"),
  4963. name: "Dick",
  4964. image: {
  4965. source: "./media/characters/sigvald/dick.svg"
  4966. }
  4967. },
  4968. eye: {
  4969. height: math.unit(0.31, "feet"),
  4970. name: "Eye",
  4971. image: {
  4972. source: "./media/characters/sigvald/eye.svg"
  4973. }
  4974. },
  4975. mouth: {
  4976. height: math.unit(0.92, "feet"),
  4977. name: "Mouth",
  4978. image: {
  4979. source: "./media/characters/sigvald/mouth.svg"
  4980. }
  4981. },
  4982. paws: {
  4983. height: math.unit(2.2, "feet"),
  4984. name: "Paws",
  4985. image: {
  4986. source: "./media/characters/sigvald/paws.svg"
  4987. }
  4988. }
  4989. },
  4990. [
  4991. {
  4992. name: "Normal",
  4993. height: math.unit(8, "feet")
  4994. },
  4995. {
  4996. name: "Large",
  4997. height: math.unit(12, "feet")
  4998. },
  4999. {
  5000. name: "Larger",
  5001. height: math.unit(20, "feet")
  5002. },
  5003. {
  5004. name: "Macro",
  5005. height: math.unit(150, "feet")
  5006. },
  5007. {
  5008. name: "Macro+",
  5009. height: math.unit(200, "feet"),
  5010. default: true
  5011. },
  5012. ]
  5013. ))
  5014. characterMakers.push(() => makeCharacter(
  5015. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5016. {
  5017. side: {
  5018. height: math.unit(12, "feet"),
  5019. weight: math.unit(2000, "kg"),
  5020. name: "Side",
  5021. image: {
  5022. source: "./media/characters/scott/side.svg",
  5023. extra: 754 / 724,
  5024. bottom: 0.069
  5025. }
  5026. },
  5027. upright: {
  5028. height: math.unit(12, "feet"),
  5029. weight: math.unit(2000, "kg"),
  5030. name: "Upright",
  5031. image: {
  5032. source: "./media/characters/scott/upright.svg",
  5033. extra: 3881 / 3722,
  5034. bottom: 0.05
  5035. }
  5036. },
  5037. },
  5038. [
  5039. {
  5040. name: "Normal",
  5041. height: math.unit(12, "feet"),
  5042. default: true
  5043. },
  5044. ]
  5045. ))
  5046. characterMakers.push(() => makeCharacter(
  5047. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5048. {
  5049. side: {
  5050. height: math.unit(8, "meters"),
  5051. weight: math.unit(84755, "lbs"),
  5052. name: "Side",
  5053. image: {
  5054. source: "./media/characters/tobias/side.svg",
  5055. extra: 1474 / 1096,
  5056. bottom: 38.9 / 1513.1235
  5057. }
  5058. },
  5059. },
  5060. [
  5061. {
  5062. name: "Normal",
  5063. height: math.unit(8, "meters"),
  5064. default: true
  5065. },
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5070. {
  5071. front: {
  5072. height: math.unit(5.5, "feet"),
  5073. weight: math.unit(400, "lbs"),
  5074. name: "Front",
  5075. image: {
  5076. source: "./media/characters/kieran/front.svg",
  5077. extra: 2694 / 2364,
  5078. bottom: 217 / 2908
  5079. }
  5080. },
  5081. side: {
  5082. height: math.unit(5.5, "feet"),
  5083. weight: math.unit(400, "lbs"),
  5084. name: "Side",
  5085. image: {
  5086. source: "./media/characters/kieran/side.svg",
  5087. extra: 875 / 777,
  5088. bottom: 84.6 / 959
  5089. }
  5090. },
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(5.5, "feet"),
  5096. default: true
  5097. },
  5098. ]
  5099. ))
  5100. characterMakers.push(() => makeCharacter(
  5101. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5102. {
  5103. side: {
  5104. height: math.unit(2, "meters"),
  5105. weight: math.unit(70, "kg"),
  5106. name: "Side",
  5107. image: {
  5108. source: "./media/characters/sanya/side.svg",
  5109. bottom: 0.02,
  5110. extra: 1.02
  5111. }
  5112. },
  5113. },
  5114. [
  5115. {
  5116. name: "Small",
  5117. height: math.unit(2, "meters")
  5118. },
  5119. {
  5120. name: "Normal",
  5121. height: math.unit(3, "meters")
  5122. },
  5123. {
  5124. name: "Macro",
  5125. height: math.unit(16, "meters"),
  5126. default: true
  5127. },
  5128. ]
  5129. ))
  5130. characterMakers.push(() => makeCharacter(
  5131. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5132. {
  5133. front: {
  5134. height: math.unit(2, "meters"),
  5135. weight: math.unit(120, "kg"),
  5136. name: "Front",
  5137. image: {
  5138. source: "./media/characters/miranda/front.svg",
  5139. extra: 195 / 185,
  5140. bottom: 10.9 / 206.5
  5141. }
  5142. },
  5143. back: {
  5144. height: math.unit(2, "meters"),
  5145. weight: math.unit(120, "kg"),
  5146. name: "Back",
  5147. image: {
  5148. source: "./media/characters/miranda/back.svg",
  5149. extra: 201 / 193,
  5150. bottom: 2.3 / 203.7
  5151. }
  5152. },
  5153. },
  5154. [
  5155. {
  5156. name: "Normal",
  5157. height: math.unit(10, "feet"),
  5158. default: true
  5159. }
  5160. ]
  5161. ))
  5162. characterMakers.push(() => makeCharacter(
  5163. { name: "James", species: ["deer"], tags: ["anthro"] },
  5164. {
  5165. side: {
  5166. height: math.unit(2, "meters"),
  5167. weight: math.unit(100, "kg"),
  5168. name: "Front",
  5169. image: {
  5170. source: "./media/characters/james/front.svg",
  5171. extra: 10 / 8.5
  5172. }
  5173. },
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(8.5, "feet"),
  5179. default: true
  5180. }
  5181. ]
  5182. ))
  5183. characterMakers.push(() => makeCharacter(
  5184. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5185. {
  5186. side: {
  5187. height: math.unit(9.5, "feet"),
  5188. weight: math.unit(2500, "lbs"),
  5189. name: "Side",
  5190. image: {
  5191. source: "./media/characters/heather/side.svg"
  5192. }
  5193. },
  5194. },
  5195. [
  5196. {
  5197. name: "Normal",
  5198. height: math.unit(9.5, "feet"),
  5199. default: true
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5205. {
  5206. side: {
  5207. height: math.unit(6.5, "feet"),
  5208. weight: math.unit(400, "lbs"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/lukas/side.svg",
  5212. extra: 7.25 / 6.5
  5213. }
  5214. },
  5215. },
  5216. [
  5217. {
  5218. name: "Normal",
  5219. height: math.unit(6.5, "feet"),
  5220. default: true
  5221. }
  5222. ]
  5223. ))
  5224. characterMakers.push(() => makeCharacter(
  5225. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5226. {
  5227. side: {
  5228. height: math.unit(5, "feet"),
  5229. weight: math.unit(3000, "lbs"),
  5230. name: "Side",
  5231. image: {
  5232. source: "./media/characters/louise/side.svg"
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Normal",
  5239. height: math.unit(5, "feet"),
  5240. default: true
  5241. }
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5246. {
  5247. side: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(150, "lbs"),
  5250. name: "Side",
  5251. image: {
  5252. source: "./media/characters/ramona/side.svg"
  5253. }
  5254. },
  5255. },
  5256. [
  5257. {
  5258. name: "Normal",
  5259. height: math.unit(5.3, "meters"),
  5260. default: true
  5261. },
  5262. {
  5263. name: "Macro",
  5264. height: math.unit(20, "stories")
  5265. },
  5266. {
  5267. name: "Macro+",
  5268. height: math.unit(50, "stories")
  5269. },
  5270. ]
  5271. ))
  5272. characterMakers.push(() => makeCharacter(
  5273. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5274. {
  5275. standing: {
  5276. height: math.unit(5.75, "feet"),
  5277. weight: math.unit(160, "lbs"),
  5278. name: "Standing",
  5279. image: {
  5280. source: "./media/characters/deerpuff/standing.svg",
  5281. extra: 682 / 624
  5282. }
  5283. },
  5284. sitting: {
  5285. height: math.unit(5.75 / 1.79, "feet"),
  5286. weight: math.unit(160, "lbs"),
  5287. name: "Sitting",
  5288. image: {
  5289. source: "./media/characters/deerpuff/sitting.svg",
  5290. bottom: 44 / 400,
  5291. extra: 1
  5292. }
  5293. },
  5294. taurLaying: {
  5295. height: math.unit(6, "feet"),
  5296. weight: math.unit(400, "lbs"),
  5297. name: "Taur (Laying)",
  5298. image: {
  5299. source: "./media/characters/deerpuff/taur-laying.svg"
  5300. }
  5301. },
  5302. },
  5303. [
  5304. {
  5305. name: "Puffball",
  5306. height: math.unit(6, "inches")
  5307. },
  5308. {
  5309. name: "Normalpuff",
  5310. height: math.unit(5.75, "feet")
  5311. },
  5312. {
  5313. name: "Macropuff",
  5314. height: math.unit(1500, "feet"),
  5315. default: true
  5316. },
  5317. {
  5318. name: "Megapuff",
  5319. height: math.unit(500, "miles")
  5320. },
  5321. {
  5322. name: "Gigapuff",
  5323. height: math.unit(250000, "miles")
  5324. },
  5325. {
  5326. name: "Omegapuff",
  5327. height: math.unit(1000, "lightyears")
  5328. },
  5329. ]
  5330. ))
  5331. characterMakers.push(() => makeCharacter(
  5332. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5333. {
  5334. stomping: {
  5335. height: math.unit(6, "feet"),
  5336. weight: math.unit(170, "lbs"),
  5337. name: "Stomping",
  5338. image: {
  5339. source: "./media/characters/vivian/stomping.svg"
  5340. }
  5341. },
  5342. sitting: {
  5343. height: math.unit(6 / 1.75, "feet"),
  5344. weight: math.unit(170, "lbs"),
  5345. name: "Sitting",
  5346. image: {
  5347. source: "./media/characters/vivian/sitting.svg",
  5348. bottom: 1 / 6.4,
  5349. extra: 1,
  5350. }
  5351. },
  5352. },
  5353. [
  5354. {
  5355. name: "Normal",
  5356. height: math.unit(7, "feet"),
  5357. default: true
  5358. },
  5359. {
  5360. name: "Macro",
  5361. height: math.unit(10, "stories")
  5362. },
  5363. {
  5364. name: "Macro+",
  5365. height: math.unit(30, "stories")
  5366. },
  5367. {
  5368. name: "Megamacro",
  5369. height: math.unit(10, "miles")
  5370. },
  5371. {
  5372. name: "Megamacro+",
  5373. height: math.unit(2750000, "meters")
  5374. },
  5375. ]
  5376. ))
  5377. characterMakers.push(() => makeCharacter(
  5378. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5379. {
  5380. front: {
  5381. height: math.unit(6, "feet"),
  5382. weight: math.unit(160, "lbs"),
  5383. name: "Front",
  5384. image: {
  5385. source: "./media/characters/prince/front.svg",
  5386. extra: 3400 / 3000
  5387. }
  5388. },
  5389. jumping: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(160, "lbs"),
  5392. name: "Jumping",
  5393. image: {
  5394. source: "./media/characters/prince/jump.svg",
  5395. extra: 2555 / 2134
  5396. }
  5397. },
  5398. },
  5399. [
  5400. {
  5401. name: "Normal",
  5402. height: math.unit(7.75, "feet"),
  5403. default: true
  5404. },
  5405. {
  5406. name: "Not cute",
  5407. height: math.unit(17, "feet")
  5408. },
  5409. {
  5410. name: "I said NOT",
  5411. height: math.unit(91, "feet")
  5412. },
  5413. {
  5414. name: "Please stop",
  5415. height: math.unit(560, "feet")
  5416. },
  5417. {
  5418. name: "What have you done",
  5419. height: math.unit(2200, "feet")
  5420. },
  5421. {
  5422. name: "Deer God",
  5423. height: math.unit(3.6, "miles")
  5424. },
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5429. {
  5430. standing: {
  5431. height: math.unit(6, "feet"),
  5432. weight: math.unit(300, "lbs"),
  5433. name: "Standing",
  5434. image: {
  5435. source: "./media/characters/psymon/standing.svg",
  5436. extra: 1888 / 1810,
  5437. bottom: 0.05
  5438. }
  5439. },
  5440. slithering: {
  5441. height: math.unit(6, "feet"),
  5442. weight: math.unit(300, "lbs"),
  5443. name: "Slithering",
  5444. image: {
  5445. source: "./media/characters/psymon/slithering.svg",
  5446. extra: 1330 / 1224
  5447. }
  5448. },
  5449. slitheringAlt: {
  5450. height: math.unit(6, "feet"),
  5451. weight: math.unit(300, "lbs"),
  5452. name: "Slithering (Alt)",
  5453. image: {
  5454. source: "./media/characters/psymon/slithering-alt.svg",
  5455. extra: 1330 / 1224
  5456. }
  5457. },
  5458. },
  5459. [
  5460. {
  5461. name: "Normal",
  5462. height: math.unit(11.25, "feet"),
  5463. default: true
  5464. },
  5465. {
  5466. name: "Large",
  5467. height: math.unit(27, "feet")
  5468. },
  5469. {
  5470. name: "Giant",
  5471. height: math.unit(87, "feet")
  5472. },
  5473. {
  5474. name: "Macro",
  5475. height: math.unit(365, "feet")
  5476. },
  5477. {
  5478. name: "Megamacro",
  5479. height: math.unit(3, "miles")
  5480. },
  5481. {
  5482. name: "World Serpent",
  5483. height: math.unit(8000, "miles")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(6, "feet"),
  5492. weight: math.unit(180, "lbs"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/daimos/front.svg",
  5496. extra: 4160 / 3897,
  5497. bottom: 0.021
  5498. }
  5499. }
  5500. },
  5501. [
  5502. {
  5503. name: "Normal",
  5504. height: math.unit(8, "feet"),
  5505. default: true
  5506. },
  5507. {
  5508. name: "Big Dog",
  5509. height: math.unit(22, "feet")
  5510. },
  5511. {
  5512. name: "Macro",
  5513. height: math.unit(127, "feet")
  5514. },
  5515. {
  5516. name: "Megamacro",
  5517. height: math.unit(3600, "feet")
  5518. },
  5519. ]
  5520. ))
  5521. characterMakers.push(() => makeCharacter(
  5522. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5523. {
  5524. side: {
  5525. height: math.unit(6, "feet"),
  5526. weight: math.unit(180, "lbs"),
  5527. name: "Side",
  5528. image: {
  5529. source: "./media/characters/blake/side.svg",
  5530. extra: 1212 / 1120,
  5531. bottom: 0.05
  5532. }
  5533. },
  5534. crouched: {
  5535. height: math.unit(6 * 0.57, "feet"),
  5536. weight: math.unit(180, "lbs"),
  5537. name: "Crouched",
  5538. image: {
  5539. source: "./media/characters/blake/crouched.svg",
  5540. extra: 840 / 587,
  5541. bottom: 0.04
  5542. }
  5543. },
  5544. bent: {
  5545. height: math.unit(6 * 0.75, "feet"),
  5546. weight: math.unit(180, "lbs"),
  5547. name: "Bent",
  5548. image: {
  5549. source: "./media/characters/blake/bent.svg",
  5550. extra: 592 / 544,
  5551. bottom: 0.035
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(8 + 1 / 6, "feet"),
  5559. default: true
  5560. },
  5561. {
  5562. name: "Big Backside",
  5563. height: math.unit(37, "feet")
  5564. },
  5565. {
  5566. name: "Subway Shredder",
  5567. height: math.unit(72, "feet")
  5568. },
  5569. {
  5570. name: "City Carver",
  5571. height: math.unit(1675, "feet")
  5572. },
  5573. {
  5574. name: "Tectonic Tweaker",
  5575. height: math.unit(2300, "miles")
  5576. },
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5581. {
  5582. front: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(180, "lbs"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/guisetto/front.svg",
  5588. extra: 856 / 817,
  5589. bottom: 0.06
  5590. }
  5591. },
  5592. airborne: {
  5593. height: math.unit(6, "feet"),
  5594. weight: math.unit(180, "lbs"),
  5595. name: "Airborne",
  5596. image: {
  5597. source: "./media/characters/guisetto/airborne.svg",
  5598. extra: 584 / 525
  5599. }
  5600. },
  5601. },
  5602. [
  5603. {
  5604. name: "Normal",
  5605. height: math.unit(10 + 11 / 12, "feet"),
  5606. default: true
  5607. },
  5608. {
  5609. name: "Large",
  5610. height: math.unit(35, "feet")
  5611. },
  5612. {
  5613. name: "Macro",
  5614. height: math.unit(475, "feet")
  5615. },
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5620. {
  5621. front: {
  5622. height: math.unit(6, "feet"),
  5623. weight: math.unit(180, "lbs"),
  5624. name: "Front",
  5625. image: {
  5626. source: "./media/characters/luxor/front.svg",
  5627. extra: 2940 / 2152
  5628. }
  5629. },
  5630. back: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(180, "lbs"),
  5633. name: "Back",
  5634. image: {
  5635. source: "./media/characters/luxor/back.svg",
  5636. extra: 1083 / 960
  5637. }
  5638. },
  5639. },
  5640. [
  5641. {
  5642. name: "Normal",
  5643. height: math.unit(5 + 5 / 6, "feet"),
  5644. default: true
  5645. },
  5646. {
  5647. name: "Lamp",
  5648. height: math.unit(50, "feet")
  5649. },
  5650. {
  5651. name: "Lämp",
  5652. height: math.unit(300, "feet")
  5653. },
  5654. {
  5655. name: "The sun is a lamp",
  5656. height: math.unit(250000, "miles")
  5657. },
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5662. {
  5663. front: {
  5664. height: math.unit(6, "feet"),
  5665. weight: math.unit(50, "lbs"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/huoyan/front.svg"
  5669. }
  5670. },
  5671. side: {
  5672. height: math.unit(6, "feet"),
  5673. weight: math.unit(180, "lbs"),
  5674. name: "Side",
  5675. image: {
  5676. source: "./media/characters/huoyan/side.svg"
  5677. }
  5678. },
  5679. },
  5680. [
  5681. {
  5682. name: "Chef",
  5683. height: math.unit(9, "feet")
  5684. },
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(65, "feet"),
  5688. default: true
  5689. },
  5690. {
  5691. name: "Macro",
  5692. height: math.unit(780, "feet")
  5693. },
  5694. {
  5695. name: "Flaming Mountain",
  5696. height: math.unit(4.8, "miles")
  5697. },
  5698. {
  5699. name: "Celestial",
  5700. height: math.unit(765000, "miles")
  5701. },
  5702. ]
  5703. ))
  5704. characterMakers.push(() => makeCharacter(
  5705. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5706. {
  5707. front: {
  5708. height: math.unit(5 + 3 / 4, "feet"),
  5709. weight: math.unit(120, "lbs"),
  5710. name: "Front",
  5711. image: {
  5712. source: "./media/characters/tails/front.svg"
  5713. }
  5714. }
  5715. },
  5716. [
  5717. {
  5718. name: "Normal",
  5719. height: math.unit(5 + 3 / 4, "feet"),
  5720. default: true
  5721. }
  5722. ]
  5723. ))
  5724. characterMakers.push(() => makeCharacter(
  5725. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5726. {
  5727. front: {
  5728. height: math.unit(4, "feet"),
  5729. weight: math.unit(50, "lbs"),
  5730. name: "Front",
  5731. image: {
  5732. source: "./media/characters/rainy/front.svg"
  5733. }
  5734. }
  5735. },
  5736. [
  5737. {
  5738. name: "Macro",
  5739. height: math.unit(800, "feet"),
  5740. default: true
  5741. }
  5742. ]
  5743. ))
  5744. characterMakers.push(() => makeCharacter(
  5745. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5746. {
  5747. front: {
  5748. height: math.unit(6, "feet"),
  5749. weight: math.unit(150, "lbs"),
  5750. name: "Front",
  5751. image: {
  5752. source: "./media/characters/rainier/front.svg"
  5753. }
  5754. }
  5755. },
  5756. [
  5757. {
  5758. name: "Micro",
  5759. height: math.unit(2, "mm"),
  5760. default: true
  5761. }
  5762. ]
  5763. ))
  5764. characterMakers.push(() => makeCharacter(
  5765. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5766. {
  5767. front: {
  5768. height: math.unit(8 + 4/12, "feet"),
  5769. name: "Front",
  5770. image: {
  5771. source: "./media/characters/andy-renard/front.svg",
  5772. extra: 1839/1726,
  5773. bottom: 134/1973
  5774. }
  5775. },
  5776. back: {
  5777. height: math.unit(8 + 4/12, "feet"),
  5778. name: "Back",
  5779. image: {
  5780. source: "./media/characters/andy-renard/back.svg",
  5781. extra: 1838/1710,
  5782. bottom: 105/1943
  5783. }
  5784. },
  5785. },
  5786. [
  5787. {
  5788. name: "Tall",
  5789. height: math.unit(8 + 4/12, "feet")
  5790. },
  5791. {
  5792. name: "Mini Macro",
  5793. height: math.unit(15, "feet"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Macro",
  5798. height: math.unit(100, "feet")
  5799. },
  5800. {
  5801. name: "Mega Macro",
  5802. height: math.unit(1000, "feet")
  5803. },
  5804. {
  5805. name: "Giga Macro",
  5806. height: math.unit(10, "miles")
  5807. },
  5808. {
  5809. name: "God Macro",
  5810. height: math.unit(1, "multiverse")
  5811. },
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5816. {
  5817. front: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(210, "lbs"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/cimmaron/front-sfw.svg",
  5823. extra: 701 / 676,
  5824. bottom: 0.046
  5825. }
  5826. },
  5827. back: {
  5828. height: math.unit(6, "feet"),
  5829. weight: math.unit(210, "lbs"),
  5830. name: "Back",
  5831. image: {
  5832. source: "./media/characters/cimmaron/back-sfw.svg",
  5833. extra: 701 / 676,
  5834. bottom: 0.046
  5835. }
  5836. },
  5837. frontNsfw: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(210, "lbs"),
  5840. name: "Front (NSFW)",
  5841. image: {
  5842. source: "./media/characters/cimmaron/front-nsfw.svg",
  5843. extra: 701 / 676,
  5844. bottom: 0.046
  5845. }
  5846. },
  5847. backNsfw: {
  5848. height: math.unit(6, "feet"),
  5849. weight: math.unit(210, "lbs"),
  5850. name: "Back (NSFW)",
  5851. image: {
  5852. source: "./media/characters/cimmaron/back-nsfw.svg",
  5853. extra: 701 / 676,
  5854. bottom: 0.046
  5855. }
  5856. },
  5857. dick: {
  5858. height: math.unit(1.714, "feet"),
  5859. name: "Dick",
  5860. image: {
  5861. source: "./media/characters/cimmaron/dick.svg"
  5862. }
  5863. },
  5864. },
  5865. [
  5866. {
  5867. name: "Normal",
  5868. height: math.unit(6, "feet"),
  5869. default: true
  5870. },
  5871. {
  5872. name: "Macro Mayor",
  5873. height: math.unit(350, "meters")
  5874. },
  5875. ]
  5876. ))
  5877. characterMakers.push(() => makeCharacter(
  5878. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5879. {
  5880. front: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(200, "lbs"),
  5883. name: "Front",
  5884. image: {
  5885. source: "./media/characters/akari/front.svg",
  5886. extra: 962 / 901,
  5887. bottom: 0.04
  5888. }
  5889. }
  5890. },
  5891. [
  5892. {
  5893. name: "Micro",
  5894. height: math.unit(5, "inches"),
  5895. default: true
  5896. },
  5897. {
  5898. name: "Normal",
  5899. height: math.unit(7, "feet")
  5900. },
  5901. ]
  5902. ))
  5903. characterMakers.push(() => makeCharacter(
  5904. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5905. {
  5906. front: {
  5907. height: math.unit(6, "feet"),
  5908. weight: math.unit(140, "lbs"),
  5909. name: "Front",
  5910. image: {
  5911. source: "./media/characters/cynosura/front.svg",
  5912. extra: 896 / 847
  5913. }
  5914. },
  5915. back: {
  5916. height: math.unit(6, "feet"),
  5917. weight: math.unit(140, "lbs"),
  5918. name: "Back",
  5919. image: {
  5920. source: "./media/characters/cynosura/back.svg",
  5921. extra: 1365 / 1250
  5922. }
  5923. },
  5924. },
  5925. [
  5926. {
  5927. name: "Micro",
  5928. height: math.unit(4, "inches")
  5929. },
  5930. {
  5931. name: "Normal",
  5932. height: math.unit(5.75, "feet"),
  5933. default: true
  5934. },
  5935. {
  5936. name: "Tall",
  5937. height: math.unit(10, "feet")
  5938. },
  5939. {
  5940. name: "Big",
  5941. height: math.unit(20, "feet")
  5942. },
  5943. {
  5944. name: "Macro",
  5945. height: math.unit(50, "feet")
  5946. },
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5951. {
  5952. front: {
  5953. height: math.unit(13 + 2/12, "feet"),
  5954. weight: math.unit(800, "kg"),
  5955. name: "Front",
  5956. image: {
  5957. source: "./media/characters/gin/front.svg",
  5958. extra: 1312/1191,
  5959. bottom: 45/1357
  5960. }
  5961. },
  5962. mouth: {
  5963. height: math.unit(2.39 * 1.8, "feet"),
  5964. name: "Mouth",
  5965. image: {
  5966. source: "./media/characters/gin/mouth.svg"
  5967. }
  5968. },
  5969. hand: {
  5970. height: math.unit(1.57 * 2.19, "feet"),
  5971. name: "Hand",
  5972. image: {
  5973. source: "./media/characters/gin/hand.svg"
  5974. }
  5975. },
  5976. foot: {
  5977. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5978. name: "Foot",
  5979. image: {
  5980. source: "./media/characters/gin/foot.svg"
  5981. }
  5982. },
  5983. sole: {
  5984. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5985. name: "Sole",
  5986. image: {
  5987. source: "./media/characters/gin/sole.svg"
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Very Small",
  5994. height: math.unit(13 + 2 / 12, "feet")
  5995. },
  5996. {
  5997. name: "Micro",
  5998. height: math.unit(600, "miles")
  5999. },
  6000. {
  6001. name: "Regular",
  6002. height: math.unit(20, "earths"),
  6003. default: true
  6004. },
  6005. {
  6006. name: "Macro",
  6007. height: math.unit(2.2, "solarradii")
  6008. },
  6009. {
  6010. name: "Teramacro",
  6011. height: math.unit(1.2, "galaxies")
  6012. },
  6013. {
  6014. name: "Omegamacro",
  6015. height: math.unit(200, "universes")
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6021. {
  6022. front: {
  6023. height: math.unit(6 + 1 / 6, "feet"),
  6024. weight: math.unit(178, "lbs"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/guy/front.svg"
  6028. }
  6029. }
  6030. },
  6031. [
  6032. {
  6033. name: "Normal",
  6034. height: math.unit(6 + 1 / 6, "feet"),
  6035. default: true
  6036. },
  6037. {
  6038. name: "Large",
  6039. height: math.unit(25 + 7 / 12, "feet")
  6040. },
  6041. {
  6042. name: "Macro",
  6043. height: math.unit(60 + 9 / 12, "feet")
  6044. },
  6045. {
  6046. name: "Macro+",
  6047. height: math.unit(246, "feet")
  6048. },
  6049. {
  6050. name: "Macro++",
  6051. height: math.unit(878, "feet")
  6052. }
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(9, "feet"),
  6060. weight: math.unit(800, "lbs"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/tiberius/front.svg",
  6064. extra: 2295 / 2071
  6065. }
  6066. },
  6067. back: {
  6068. height: math.unit(9, "feet"),
  6069. weight: math.unit(800, "lbs"),
  6070. name: "Back",
  6071. image: {
  6072. source: "./media/characters/tiberius/back.svg",
  6073. extra: 2373 / 2160
  6074. }
  6075. },
  6076. },
  6077. [
  6078. {
  6079. name: "Normal",
  6080. height: math.unit(9, "feet"),
  6081. default: true
  6082. }
  6083. ]
  6084. ))
  6085. characterMakers.push(() => makeCharacter(
  6086. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6087. {
  6088. front: {
  6089. height: math.unit(6, "feet"),
  6090. weight: math.unit(600, "lbs"),
  6091. name: "Front",
  6092. image: {
  6093. source: "./media/characters/surgo/front.svg",
  6094. extra: 3591 / 2227
  6095. }
  6096. },
  6097. back: {
  6098. height: math.unit(6, "feet"),
  6099. weight: math.unit(600, "lbs"),
  6100. name: "Back",
  6101. image: {
  6102. source: "./media/characters/surgo/back.svg",
  6103. extra: 3557 / 2228
  6104. }
  6105. },
  6106. laying: {
  6107. height: math.unit(6 * 0.85, "feet"),
  6108. weight: math.unit(600, "lbs"),
  6109. name: "Laying",
  6110. image: {
  6111. source: "./media/characters/surgo/laying.svg"
  6112. }
  6113. },
  6114. },
  6115. [
  6116. {
  6117. name: "Normal",
  6118. height: math.unit(6, "feet"),
  6119. default: true
  6120. }
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6125. {
  6126. side: {
  6127. height: math.unit(6, "feet"),
  6128. weight: math.unit(150, "lbs"),
  6129. name: "Side",
  6130. image: {
  6131. source: "./media/characters/cibus/side.svg",
  6132. extra: 800 / 400
  6133. }
  6134. },
  6135. },
  6136. [
  6137. {
  6138. name: "Normal",
  6139. height: math.unit(6, "feet"),
  6140. default: true
  6141. }
  6142. ]
  6143. ))
  6144. characterMakers.push(() => makeCharacter(
  6145. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6146. {
  6147. front: {
  6148. height: math.unit(6, "feet"),
  6149. weight: math.unit(240, "lbs"),
  6150. name: "Front",
  6151. image: {
  6152. source: "./media/characters/nibbles/front.svg"
  6153. }
  6154. },
  6155. side: {
  6156. height: math.unit(6, "feet"),
  6157. weight: math.unit(240, "lbs"),
  6158. name: "Side",
  6159. image: {
  6160. source: "./media/characters/nibbles/side.svg"
  6161. }
  6162. },
  6163. },
  6164. [
  6165. {
  6166. name: "Normal",
  6167. height: math.unit(9, "feet"),
  6168. default: true
  6169. }
  6170. ]
  6171. ))
  6172. characterMakers.push(() => makeCharacter(
  6173. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6174. {
  6175. side: {
  6176. height: math.unit(5 + 1 / 6, "feet"),
  6177. weight: math.unit(130, "lbs"),
  6178. name: "Side",
  6179. image: {
  6180. source: "./media/characters/rikky/side.svg",
  6181. extra: 851 / 801
  6182. }
  6183. },
  6184. },
  6185. [
  6186. {
  6187. name: "Normal",
  6188. height: math.unit(5 + 1 / 6, "feet")
  6189. },
  6190. {
  6191. name: "Macro",
  6192. height: math.unit(152, "feet"),
  6193. default: true
  6194. },
  6195. {
  6196. name: "Megamacro",
  6197. height: math.unit(7, "miles")
  6198. }
  6199. ]
  6200. ))
  6201. characterMakers.push(() => makeCharacter(
  6202. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6203. {
  6204. side: {
  6205. height: math.unit(370, "cm"),
  6206. weight: math.unit(350, "lbs"),
  6207. name: "Side",
  6208. image: {
  6209. source: "./media/characters/malfressa/side.svg"
  6210. }
  6211. },
  6212. walking: {
  6213. height: math.unit(370, "cm"),
  6214. weight: math.unit(350, "lbs"),
  6215. name: "Walking",
  6216. image: {
  6217. source: "./media/characters/malfressa/walking.svg"
  6218. }
  6219. },
  6220. feral: {
  6221. height: math.unit(2500, "cm"),
  6222. weight: math.unit(100000, "lbs"),
  6223. name: "Feral",
  6224. image: {
  6225. source: "./media/characters/malfressa/feral.svg",
  6226. extra: 2108 / 837,
  6227. bottom: 0.02
  6228. }
  6229. },
  6230. },
  6231. [
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(370, "cm")
  6235. },
  6236. {
  6237. name: "Macro",
  6238. height: math.unit(300, "meters"),
  6239. default: true
  6240. }
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6245. {
  6246. front: {
  6247. height: math.unit(6, "feet"),
  6248. weight: math.unit(60, "kg"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/jaro/front.svg"
  6252. }
  6253. },
  6254. back: {
  6255. height: math.unit(6, "feet"),
  6256. weight: math.unit(60, "kg"),
  6257. name: "Back",
  6258. image: {
  6259. source: "./media/characters/jaro/back.svg"
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Micro",
  6266. height: math.unit(7, "inches")
  6267. },
  6268. {
  6269. name: "Normal",
  6270. height: math.unit(5.5, "feet"),
  6271. default: true
  6272. },
  6273. {
  6274. name: "Minimacro",
  6275. height: math.unit(20, "feet")
  6276. },
  6277. {
  6278. name: "Macro",
  6279. height: math.unit(200, "meters")
  6280. }
  6281. ]
  6282. ))
  6283. characterMakers.push(() => makeCharacter(
  6284. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6285. {
  6286. front: {
  6287. height: math.unit(6, "feet"),
  6288. weight: math.unit(195, "lb"),
  6289. name: "Front",
  6290. image: {
  6291. source: "./media/characters/rogue/front.svg"
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Macro",
  6298. height: math.unit(90, "feet"),
  6299. default: true
  6300. },
  6301. ]
  6302. ))
  6303. characterMakers.push(() => makeCharacter(
  6304. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6305. {
  6306. front: {
  6307. height: math.unit(5 + 8 / 12, "feet"),
  6308. weight: math.unit(140, "lb"),
  6309. name: "Front",
  6310. image: {
  6311. source: "./media/characters/piper/front.svg",
  6312. extra: 3948/3655,
  6313. bottom: 0/3948
  6314. }
  6315. },
  6316. },
  6317. [
  6318. {
  6319. name: "Micro",
  6320. height: math.unit(2, "inches")
  6321. },
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(5 + 8 / 12, "feet")
  6325. },
  6326. {
  6327. name: "Macro",
  6328. height: math.unit(250, "feet"),
  6329. default: true
  6330. },
  6331. {
  6332. name: "Megamacro",
  6333. height: math.unit(7, "miles")
  6334. },
  6335. ]
  6336. ))
  6337. characterMakers.push(() => makeCharacter(
  6338. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6339. {
  6340. front: {
  6341. height: math.unit(6, "feet"),
  6342. weight: math.unit(220, "lb"),
  6343. name: "Front",
  6344. image: {
  6345. source: "./media/characters/gemini/front.svg"
  6346. }
  6347. },
  6348. back: {
  6349. height: math.unit(6, "feet"),
  6350. weight: math.unit(220, "lb"),
  6351. name: "Back",
  6352. image: {
  6353. source: "./media/characters/gemini/back.svg"
  6354. }
  6355. },
  6356. kneeling: {
  6357. height: math.unit(6 / 1.5, "feet"),
  6358. weight: math.unit(220, "lb"),
  6359. name: "Kneeling",
  6360. image: {
  6361. source: "./media/characters/gemini/kneeling.svg",
  6362. bottom: 0.02
  6363. }
  6364. },
  6365. },
  6366. [
  6367. {
  6368. name: "Macro",
  6369. height: math.unit(300, "meters"),
  6370. default: true
  6371. },
  6372. {
  6373. name: "Megamacro",
  6374. height: math.unit(6900, "meters")
  6375. },
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6380. {
  6381. anthro: {
  6382. height: math.unit(2.35, "meters"),
  6383. weight: math.unit(73, "kg"),
  6384. name: "Anthro",
  6385. image: {
  6386. source: "./media/characters/alicia/anthro.svg",
  6387. extra: 2571 / 2385,
  6388. bottom: 75 / 2648
  6389. }
  6390. },
  6391. paw: {
  6392. height: math.unit(1.32, "feet"),
  6393. name: "Paw",
  6394. image: {
  6395. source: "./media/characters/alicia/paw.svg"
  6396. }
  6397. },
  6398. feral: {
  6399. height: math.unit(1.69, "meters"),
  6400. weight: math.unit(73, "kg"),
  6401. name: "Feral",
  6402. image: {
  6403. source: "./media/characters/alicia/feral.svg",
  6404. extra: 2123 / 1715,
  6405. bottom: 222 / 2349
  6406. }
  6407. },
  6408. },
  6409. [
  6410. {
  6411. name: "Normal",
  6412. height: math.unit(2.35, "meters")
  6413. },
  6414. {
  6415. name: "Macro",
  6416. height: math.unit(60, "meters"),
  6417. default: true
  6418. },
  6419. {
  6420. name: "Megamacro",
  6421. height: math.unit(10000, "kilometers")
  6422. },
  6423. ]
  6424. ))
  6425. characterMakers.push(() => makeCharacter(
  6426. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6427. {
  6428. front: {
  6429. height: math.unit(7, "feet"),
  6430. weight: math.unit(250, "lbs"),
  6431. name: "Front",
  6432. image: {
  6433. source: "./media/characters/archy/front.svg"
  6434. }
  6435. }
  6436. },
  6437. [
  6438. {
  6439. name: "Micro",
  6440. height: math.unit(1, "inch")
  6441. },
  6442. {
  6443. name: "Shorty",
  6444. height: math.unit(5, "feet")
  6445. },
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(7, "feet")
  6449. },
  6450. {
  6451. name: "Macro",
  6452. height: math.unit(600, "meters"),
  6453. default: true
  6454. },
  6455. {
  6456. name: "Megamacro",
  6457. height: math.unit(1, "mile")
  6458. },
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6463. {
  6464. front: {
  6465. height: math.unit(1.65, "meters"),
  6466. weight: math.unit(74, "kg"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/berri/front.svg",
  6470. extra: 857 / 837,
  6471. bottom: 18 / 877
  6472. }
  6473. },
  6474. bum: {
  6475. height: math.unit(1.46, "feet"),
  6476. name: "Bum",
  6477. image: {
  6478. source: "./media/characters/berri/bum.svg"
  6479. }
  6480. },
  6481. mouth: {
  6482. height: math.unit(0.44, "feet"),
  6483. name: "Mouth",
  6484. image: {
  6485. source: "./media/characters/berri/mouth.svg"
  6486. }
  6487. },
  6488. paw: {
  6489. height: math.unit(0.826, "feet"),
  6490. name: "Paw",
  6491. image: {
  6492. source: "./media/characters/berri/paw.svg"
  6493. }
  6494. },
  6495. },
  6496. [
  6497. {
  6498. name: "Normal",
  6499. height: math.unit(1.65, "meters")
  6500. },
  6501. {
  6502. name: "Macro",
  6503. height: math.unit(60, "m"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Megamacro",
  6508. height: math.unit(9.213, "km")
  6509. },
  6510. {
  6511. name: "Planet Eater",
  6512. height: math.unit(489, "megameters")
  6513. },
  6514. {
  6515. name: "Teramacro",
  6516. height: math.unit(2471635000000, "meters")
  6517. },
  6518. {
  6519. name: "Examacro",
  6520. height: math.unit(8.0624e+26, "meters")
  6521. }
  6522. ]
  6523. ))
  6524. characterMakers.push(() => makeCharacter(
  6525. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6526. {
  6527. front: {
  6528. height: math.unit(1.72, "meters"),
  6529. weight: math.unit(68, "kg"),
  6530. name: "Front",
  6531. image: {
  6532. source: "./media/characters/lexi/front.svg"
  6533. }
  6534. }
  6535. },
  6536. [
  6537. {
  6538. name: "Very Smol",
  6539. height: math.unit(10, "mm")
  6540. },
  6541. {
  6542. name: "Micro",
  6543. height: math.unit(6.8, "cm"),
  6544. default: true
  6545. },
  6546. {
  6547. name: "Normal",
  6548. height: math.unit(1.72, "m")
  6549. }
  6550. ]
  6551. ))
  6552. characterMakers.push(() => makeCharacter(
  6553. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6554. {
  6555. front: {
  6556. height: math.unit(1.69, "meters"),
  6557. weight: math.unit(68, "kg"),
  6558. name: "Front",
  6559. image: {
  6560. source: "./media/characters/martin/front.svg",
  6561. extra: 596 / 581
  6562. }
  6563. }
  6564. },
  6565. [
  6566. {
  6567. name: "Micro",
  6568. height: math.unit(6.85, "cm"),
  6569. default: true
  6570. },
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(1.69, "m")
  6574. }
  6575. ]
  6576. ))
  6577. characterMakers.push(() => makeCharacter(
  6578. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6579. {
  6580. front: {
  6581. height: math.unit(1.69, "meters"),
  6582. weight: math.unit(68, "kg"),
  6583. name: "Front",
  6584. image: {
  6585. source: "./media/characters/juno/front.svg"
  6586. }
  6587. }
  6588. },
  6589. [
  6590. {
  6591. name: "Micro",
  6592. height: math.unit(7, "cm")
  6593. },
  6594. {
  6595. name: "Normal",
  6596. height: math.unit(1.89, "m")
  6597. },
  6598. {
  6599. name: "Macro",
  6600. height: math.unit(353, "meters"),
  6601. default: true
  6602. }
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6607. {
  6608. front: {
  6609. height: math.unit(1.93, "meters"),
  6610. weight: math.unit(83, "kg"),
  6611. name: "Front",
  6612. image: {
  6613. source: "./media/characters/samantha/front.svg"
  6614. }
  6615. },
  6616. frontClothed: {
  6617. height: math.unit(1.93, "meters"),
  6618. weight: math.unit(83, "kg"),
  6619. name: "Front (Clothed)",
  6620. image: {
  6621. source: "./media/characters/samantha/front-clothed.svg"
  6622. }
  6623. },
  6624. back: {
  6625. height: math.unit(1.93, "meters"),
  6626. weight: math.unit(83, "kg"),
  6627. name: "Back",
  6628. image: {
  6629. source: "./media/characters/samantha/back.svg"
  6630. }
  6631. },
  6632. },
  6633. [
  6634. {
  6635. name: "Normal",
  6636. height: math.unit(1.93, "m")
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(74, "meters"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Macro+",
  6645. height: math.unit(223, "meters"),
  6646. },
  6647. {
  6648. name: "Megamacro",
  6649. height: math.unit(8381, "meters"),
  6650. },
  6651. {
  6652. name: "Megamacro+",
  6653. height: math.unit(12000, "kilometers")
  6654. },
  6655. ]
  6656. ))
  6657. characterMakers.push(() => makeCharacter(
  6658. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6659. {
  6660. front: {
  6661. height: math.unit(1.92, "meters"),
  6662. weight: math.unit(80, "kg"),
  6663. name: "Front",
  6664. image: {
  6665. source: "./media/characters/dr-clay/front.svg"
  6666. }
  6667. },
  6668. frontClothed: {
  6669. height: math.unit(1.92, "meters"),
  6670. weight: math.unit(80, "kg"),
  6671. name: "Front (Clothed)",
  6672. image: {
  6673. source: "./media/characters/dr-clay/front-clothed.svg"
  6674. }
  6675. }
  6676. },
  6677. [
  6678. {
  6679. name: "Normal",
  6680. height: math.unit(1.92, "m")
  6681. },
  6682. {
  6683. name: "Macro",
  6684. height: math.unit(214, "meters"),
  6685. default: true
  6686. },
  6687. {
  6688. name: "Macro+",
  6689. height: math.unit(12.237, "meters"),
  6690. },
  6691. {
  6692. name: "Megamacro",
  6693. height: math.unit(557, "megameters"),
  6694. },
  6695. {
  6696. name: "Unimaginable",
  6697. height: math.unit(120e9, "lightyears")
  6698. },
  6699. ]
  6700. ))
  6701. characterMakers.push(() => makeCharacter(
  6702. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6703. {
  6704. front: {
  6705. height: math.unit(2, "meters"),
  6706. weight: math.unit(80, "kg"),
  6707. name: "Front",
  6708. image: {
  6709. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6710. }
  6711. }
  6712. },
  6713. [
  6714. {
  6715. name: "Teramacro",
  6716. height: math.unit(500000, "lightyears"),
  6717. default: true
  6718. },
  6719. ]
  6720. ))
  6721. characterMakers.push(() => makeCharacter(
  6722. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6723. {
  6724. crux: {
  6725. height: math.unit(2, "meters"),
  6726. weight: math.unit(150, "kg"),
  6727. name: "Crux",
  6728. image: {
  6729. source: "./media/characters/vemus/crux.svg",
  6730. extra: 1074/936,
  6731. bottom: 23/1097
  6732. }
  6733. },
  6734. skunkTanuki: {
  6735. height: math.unit(2, "meters"),
  6736. weight: math.unit(150, "kg"),
  6737. name: "Skunk-Tanuki",
  6738. image: {
  6739. source: "./media/characters/vemus/skunk-tanuki.svg",
  6740. extra: 926/893,
  6741. bottom: 20/946
  6742. }
  6743. },
  6744. },
  6745. [
  6746. {
  6747. name: "Normal",
  6748. height: math.unit(3.75, "meters"),
  6749. default: true
  6750. },
  6751. {
  6752. name: "Big",
  6753. height: math.unit(8, "meters")
  6754. },
  6755. {
  6756. name: "Macro",
  6757. height: math.unit(100, "meters")
  6758. },
  6759. {
  6760. name: "Macro+",
  6761. height: math.unit(1500, "meters")
  6762. },
  6763. {
  6764. name: "Stellar",
  6765. height: math.unit(14e8, "meters")
  6766. },
  6767. ]
  6768. ))
  6769. characterMakers.push(() => makeCharacter(
  6770. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6771. {
  6772. front: {
  6773. height: math.unit(2, "meters"),
  6774. weight: math.unit(70, "kg"),
  6775. name: "Front",
  6776. image: {
  6777. source: "./media/characters/beherit/front.svg",
  6778. extra: 1408 / 1242
  6779. }
  6780. }
  6781. },
  6782. [
  6783. {
  6784. name: "Normal",
  6785. height: math.unit(6, "feet")
  6786. },
  6787. {
  6788. name: "Lorg",
  6789. height: math.unit(25, "feet"),
  6790. default: true
  6791. },
  6792. {
  6793. name: "Lorger",
  6794. height: math.unit(75, "feet")
  6795. },
  6796. {
  6797. name: "Macro",
  6798. height: math.unit(200, "meters")
  6799. },
  6800. ]
  6801. ))
  6802. characterMakers.push(() => makeCharacter(
  6803. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6804. {
  6805. front: {
  6806. height: math.unit(2, "meters"),
  6807. weight: math.unit(150, "kg"),
  6808. name: "Front",
  6809. image: {
  6810. source: "./media/characters/everett/front.svg",
  6811. extra: 2038 / 1737,
  6812. bottom: 0.03
  6813. }
  6814. },
  6815. paw: {
  6816. height: math.unit(2 / 3.6, "meters"),
  6817. name: "Paw",
  6818. image: {
  6819. source: "./media/characters/everett/paw.svg"
  6820. }
  6821. },
  6822. },
  6823. [
  6824. {
  6825. name: "Normal",
  6826. height: math.unit(15, "feet"),
  6827. default: true
  6828. },
  6829. {
  6830. name: "Lorg",
  6831. height: math.unit(70, "feet"),
  6832. default: true
  6833. },
  6834. {
  6835. name: "Lorger",
  6836. height: math.unit(250, "feet")
  6837. },
  6838. {
  6839. name: "Macro",
  6840. height: math.unit(500, "meters")
  6841. },
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(2, "meters"),
  6849. weight: math.unit(86, "kg"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/rose/front.svg",
  6853. extra: 1785/1636,
  6854. bottom: 30/1815
  6855. }
  6856. },
  6857. frontSporty: {
  6858. height: math.unit(2, "meters"),
  6859. weight: math.unit(86, "kg"),
  6860. name: "Front (Sporty)",
  6861. image: {
  6862. source: "./media/characters/rose/front-sporty.svg",
  6863. extra: 350/335,
  6864. bottom: 10/360
  6865. }
  6866. },
  6867. frontAlt: {
  6868. height: math.unit(1.6, "meters"),
  6869. weight: math.unit(86, "kg"),
  6870. name: "Front (Alt)",
  6871. image: {
  6872. source: "./media/characters/rose/front-alt.svg",
  6873. extra: 299/283,
  6874. bottom: 3/302
  6875. }
  6876. },
  6877. plush: {
  6878. height: math.unit(2, "meters"),
  6879. weight: math.unit(86/3, "kg"),
  6880. name: "Plush",
  6881. image: {
  6882. source: "./media/characters/rose/plush.svg",
  6883. extra: 361/337,
  6884. bottom: 11/372
  6885. }
  6886. },
  6887. },
  6888. [
  6889. {
  6890. name: "True Micro",
  6891. height: math.unit(9, "cm")
  6892. },
  6893. {
  6894. name: "Micro",
  6895. height: math.unit(16, "cm")
  6896. },
  6897. {
  6898. name: "Normal",
  6899. height: math.unit(1.85, "meters"),
  6900. default: true
  6901. },
  6902. {
  6903. name: "Mini-Macro",
  6904. height: math.unit(5, "meters")
  6905. },
  6906. {
  6907. name: "Macro",
  6908. height: math.unit(15, "meters")
  6909. },
  6910. {
  6911. name: "True Macro",
  6912. height: math.unit(40, "meters")
  6913. },
  6914. {
  6915. name: "City Scale",
  6916. height: math.unit(1, "km")
  6917. },
  6918. ]
  6919. ))
  6920. characterMakers.push(() => makeCharacter(
  6921. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6922. {
  6923. front: {
  6924. height: math.unit(2, "meters"),
  6925. weight: math.unit(350, "lbs"),
  6926. name: "Front",
  6927. image: {
  6928. source: "./media/characters/regal/front.svg"
  6929. }
  6930. },
  6931. back: {
  6932. height: math.unit(2, "meters"),
  6933. weight: math.unit(350, "lbs"),
  6934. name: "Back",
  6935. image: {
  6936. source: "./media/characters/regal/back.svg"
  6937. }
  6938. },
  6939. },
  6940. [
  6941. {
  6942. name: "Macro",
  6943. height: math.unit(350, "feet"),
  6944. default: true
  6945. }
  6946. ]
  6947. ))
  6948. characterMakers.push(() => makeCharacter(
  6949. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6950. {
  6951. front: {
  6952. height: math.unit(4 + 11 / 12, "feet"),
  6953. weight: math.unit(100, "lbs"),
  6954. name: "Front",
  6955. image: {
  6956. source: "./media/characters/opal/front.svg"
  6957. }
  6958. },
  6959. frontAlt: {
  6960. height: math.unit(4 + 11 / 12, "feet"),
  6961. weight: math.unit(100, "lbs"),
  6962. name: "Front (Alt)",
  6963. image: {
  6964. source: "./media/characters/opal/front-alt.svg"
  6965. }
  6966. },
  6967. },
  6968. [
  6969. {
  6970. name: "Small",
  6971. height: math.unit(4 + 11 / 12, "feet")
  6972. },
  6973. {
  6974. name: "Normal",
  6975. height: math.unit(20, "feet"),
  6976. default: true
  6977. },
  6978. {
  6979. name: "Macro",
  6980. height: math.unit(120, "feet")
  6981. },
  6982. {
  6983. name: "Megamacro",
  6984. height: math.unit(80, "miles")
  6985. },
  6986. {
  6987. name: "True Size",
  6988. height: math.unit(100000, "lightyears")
  6989. },
  6990. ]
  6991. ))
  6992. characterMakers.push(() => makeCharacter(
  6993. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6994. {
  6995. front: {
  6996. height: math.unit(6, "feet"),
  6997. weight: math.unit(200, "lbs"),
  6998. name: "Front",
  6999. image: {
  7000. source: "./media/characters/vector-wuff/front.svg"
  7001. }
  7002. }
  7003. },
  7004. [
  7005. {
  7006. name: "Normal",
  7007. height: math.unit(2.8, "meters")
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(450, "meters"),
  7012. default: true
  7013. },
  7014. {
  7015. name: "Megamacro",
  7016. height: math.unit(15, "kilometers")
  7017. }
  7018. ]
  7019. ))
  7020. characterMakers.push(() => makeCharacter(
  7021. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7022. {
  7023. front: {
  7024. height: math.unit(6, "feet"),
  7025. weight: math.unit(256, "lbs"),
  7026. name: "Front",
  7027. image: {
  7028. source: "./media/characters/dannik/front.svg"
  7029. }
  7030. }
  7031. },
  7032. [
  7033. {
  7034. name: "Macro",
  7035. height: math.unit(69.57, "meters"),
  7036. default: true
  7037. },
  7038. ]
  7039. ))
  7040. characterMakers.push(() => makeCharacter(
  7041. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7042. {
  7043. front: {
  7044. height: math.unit(6, "feet"),
  7045. weight: math.unit(120, "lbs"),
  7046. name: "Front",
  7047. image: {
  7048. source: "./media/characters/azura-saharah/front.svg"
  7049. }
  7050. },
  7051. back: {
  7052. height: math.unit(6, "feet"),
  7053. weight: math.unit(120, "lbs"),
  7054. name: "Back",
  7055. image: {
  7056. source: "./media/characters/azura-saharah/back.svg"
  7057. }
  7058. },
  7059. },
  7060. [
  7061. {
  7062. name: "Macro",
  7063. height: math.unit(100, "feet"),
  7064. default: true
  7065. },
  7066. ]
  7067. ))
  7068. characterMakers.push(() => makeCharacter(
  7069. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7070. {
  7071. side: {
  7072. height: math.unit(5 + 4 / 12, "feet"),
  7073. weight: math.unit(163, "lbs"),
  7074. name: "Side",
  7075. image: {
  7076. source: "./media/characters/kennedy/side.svg"
  7077. }
  7078. }
  7079. },
  7080. [
  7081. {
  7082. name: "Standard Doggo",
  7083. height: math.unit(5 + 4 / 12, "feet")
  7084. },
  7085. {
  7086. name: "Big Doggo",
  7087. height: math.unit(25 + 3 / 12, "feet"),
  7088. default: true
  7089. },
  7090. ]
  7091. ))
  7092. characterMakers.push(() => makeCharacter(
  7093. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7094. {
  7095. front: {
  7096. height: math.unit(6, "feet"),
  7097. weight: math.unit(90, "lbs"),
  7098. name: "Front",
  7099. image: {
  7100. source: "./media/characters/odi-lunar/front.svg"
  7101. }
  7102. }
  7103. },
  7104. [
  7105. {
  7106. name: "Micro",
  7107. height: math.unit(3, "inches"),
  7108. default: true
  7109. },
  7110. {
  7111. name: "Normal",
  7112. height: math.unit(5.5, "feet")
  7113. }
  7114. ]
  7115. ))
  7116. characterMakers.push(() => makeCharacter(
  7117. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7118. {
  7119. back: {
  7120. height: math.unit(6, "feet"),
  7121. weight: math.unit(220, "lbs"),
  7122. name: "Back",
  7123. image: {
  7124. source: "./media/characters/mandake/back.svg"
  7125. }
  7126. }
  7127. },
  7128. [
  7129. {
  7130. name: "Normal",
  7131. height: math.unit(7, "feet"),
  7132. default: true
  7133. },
  7134. {
  7135. name: "Macro",
  7136. height: math.unit(78, "feet")
  7137. },
  7138. {
  7139. name: "Macro+",
  7140. height: math.unit(300, "meters")
  7141. },
  7142. {
  7143. name: "Macro++",
  7144. height: math.unit(2400, "feet")
  7145. },
  7146. {
  7147. name: "Megamacro",
  7148. height: math.unit(5167, "meters")
  7149. },
  7150. {
  7151. name: "Gigamacro",
  7152. height: math.unit(41769, "miles")
  7153. },
  7154. ]
  7155. ))
  7156. characterMakers.push(() => makeCharacter(
  7157. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7158. {
  7159. front: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(120, "lbs"),
  7162. name: "Front",
  7163. image: {
  7164. source: "./media/characters/yozey/front.svg"
  7165. }
  7166. },
  7167. frontAlt: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(120, "lbs"),
  7170. name: "Front (Alt)",
  7171. image: {
  7172. source: "./media/characters/yozey/front-alt.svg"
  7173. }
  7174. },
  7175. side: {
  7176. height: math.unit(6, "feet"),
  7177. weight: math.unit(120, "lbs"),
  7178. name: "Side",
  7179. image: {
  7180. source: "./media/characters/yozey/side.svg"
  7181. }
  7182. },
  7183. },
  7184. [
  7185. {
  7186. name: "Micro",
  7187. height: math.unit(3, "inches"),
  7188. default: true
  7189. },
  7190. {
  7191. name: "Normal",
  7192. height: math.unit(6, "feet")
  7193. }
  7194. ]
  7195. ))
  7196. characterMakers.push(() => makeCharacter(
  7197. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7198. {
  7199. front: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(103, "lbs"),
  7202. name: "Front",
  7203. image: {
  7204. source: "./media/characters/valeska-voss/front.svg"
  7205. }
  7206. }
  7207. },
  7208. [
  7209. {
  7210. name: "Mini-Sized Sub",
  7211. height: math.unit(3.1, "inches")
  7212. },
  7213. {
  7214. name: "Mid-Sized Sub",
  7215. height: math.unit(6.2, "inches")
  7216. },
  7217. {
  7218. name: "Full-Sized Sub",
  7219. height: math.unit(9.3, "inches")
  7220. },
  7221. {
  7222. name: "Normal",
  7223. height: math.unit(5 + 2 / 12, "foot"),
  7224. default: true
  7225. },
  7226. ]
  7227. ))
  7228. characterMakers.push(() => makeCharacter(
  7229. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7230. {
  7231. front: {
  7232. height: math.unit(6, "feet"),
  7233. weight: math.unit(160, "lbs"),
  7234. name: "Front",
  7235. image: {
  7236. source: "./media/characters/gene-zeta/front.svg",
  7237. extra: 3006 / 2826,
  7238. bottom: 182 / 3188
  7239. }
  7240. }
  7241. },
  7242. [
  7243. {
  7244. name: "Micro",
  7245. height: math.unit(6, "inches")
  7246. },
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(5 + 11 / 12, "foot"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(140, "feet")
  7255. },
  7256. {
  7257. name: "Supercharged",
  7258. height: math.unit(2500, "feet")
  7259. },
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7264. {
  7265. front: {
  7266. height: math.unit(6, "feet"),
  7267. weight: math.unit(350, "lbs"),
  7268. name: "Front",
  7269. image: {
  7270. source: "./media/characters/razinox/front.svg",
  7271. extra: 1686 / 1548,
  7272. bottom: 28.2 / 1868
  7273. }
  7274. },
  7275. back: {
  7276. height: math.unit(6, "feet"),
  7277. weight: math.unit(350, "lbs"),
  7278. name: "Back",
  7279. image: {
  7280. source: "./media/characters/razinox/back.svg",
  7281. extra: 1660 / 1590,
  7282. bottom: 15 / 1665
  7283. }
  7284. },
  7285. },
  7286. [
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(10 + 8 / 12, "foot")
  7290. },
  7291. {
  7292. name: "Minimacro",
  7293. height: math.unit(15, "foot")
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(60, "foot"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Megamacro",
  7302. height: math.unit(5, "miles")
  7303. },
  7304. {
  7305. name: "Gigamacro",
  7306. height: math.unit(6000, "miles")
  7307. },
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(6, "feet"),
  7315. weight: math.unit(150, "lbs"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/cobalt/front.svg"
  7319. }
  7320. }
  7321. },
  7322. [
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(8 + 1 / 12, "foot")
  7326. },
  7327. {
  7328. name: "Macro",
  7329. height: math.unit(111, "foot"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Supracosmic",
  7334. height: math.unit(1e42, "feet")
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(6, "feet"),
  7343. weight: math.unit(140, "lbs"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/amanda/front.svg"
  7347. }
  7348. }
  7349. },
  7350. [
  7351. {
  7352. name: "Micro",
  7353. height: math.unit(5, "inches"),
  7354. default: true
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(2.75, "meters"),
  7363. weight: math.unit(1200, "lb"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/teal/front.svg",
  7367. extra: 2463 / 2320,
  7368. bottom: 166 / 2629
  7369. }
  7370. },
  7371. back: {
  7372. height: math.unit(2.75, "meters"),
  7373. weight: math.unit(1200, "lb"),
  7374. name: "Back",
  7375. image: {
  7376. source: "./media/characters/teal/back.svg",
  7377. extra: 2580 / 2489,
  7378. bottom: 151 / 2731
  7379. }
  7380. },
  7381. sitting: {
  7382. height: math.unit(1.9, "meters"),
  7383. weight: math.unit(1200, "lb"),
  7384. name: "Sitting",
  7385. image: {
  7386. source: "./media/characters/teal/sitting.svg",
  7387. extra: 623 / 590,
  7388. bottom: 121 / 744
  7389. }
  7390. },
  7391. standing: {
  7392. height: math.unit(2.75, "meters"),
  7393. weight: math.unit(1200, "lb"),
  7394. name: "Standing",
  7395. image: {
  7396. source: "./media/characters/teal/standing.svg",
  7397. extra: 923 / 893,
  7398. bottom: 60 / 983
  7399. }
  7400. },
  7401. stretching: {
  7402. height: math.unit(3.65, "meters"),
  7403. weight: math.unit(1200, "lb"),
  7404. name: "Stretching",
  7405. image: {
  7406. source: "./media/characters/teal/stretching.svg",
  7407. extra: 1276 / 1244,
  7408. bottom: 0 / 1276
  7409. }
  7410. },
  7411. legged: {
  7412. height: math.unit(1.3, "meters"),
  7413. weight: math.unit(100, "lb"),
  7414. name: "Legged",
  7415. image: {
  7416. source: "./media/characters/teal/legged.svg",
  7417. extra: 462 / 437,
  7418. bottom: 24 / 486
  7419. }
  7420. },
  7421. naga: {
  7422. height: math.unit(5.4, "meters"),
  7423. weight: math.unit(4000, "lb"),
  7424. name: "Naga",
  7425. image: {
  7426. source: "./media/characters/teal/naga.svg",
  7427. extra: 1902 / 1858,
  7428. bottom: 0 / 1902
  7429. }
  7430. },
  7431. hand: {
  7432. height: math.unit(0.52, "meters"),
  7433. name: "Hand",
  7434. image: {
  7435. source: "./media/characters/teal/hand.svg"
  7436. }
  7437. },
  7438. maw: {
  7439. height: math.unit(0.43, "meters"),
  7440. name: "Maw",
  7441. image: {
  7442. source: "./media/characters/teal/maw.svg"
  7443. }
  7444. },
  7445. slit: {
  7446. height: math.unit(0.25, "meters"),
  7447. name: "Slit",
  7448. image: {
  7449. source: "./media/characters/teal/slit.svg"
  7450. }
  7451. },
  7452. },
  7453. [
  7454. {
  7455. name: "Normal",
  7456. height: math.unit(2.75, "meters"),
  7457. default: true
  7458. },
  7459. {
  7460. name: "Macro",
  7461. height: math.unit(300, "feet")
  7462. },
  7463. {
  7464. name: "Macro+",
  7465. height: math.unit(2000, "feet")
  7466. },
  7467. ]
  7468. ))
  7469. characterMakers.push(() => makeCharacter(
  7470. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7471. {
  7472. frontCat: {
  7473. height: math.unit(6, "feet"),
  7474. weight: math.unit(180, "lbs"),
  7475. name: "Front (Cat)",
  7476. image: {
  7477. source: "./media/characters/ravin-amulet/front-cat.svg"
  7478. }
  7479. },
  7480. frontCatAlt: {
  7481. height: math.unit(6, "feet"),
  7482. weight: math.unit(180, "lbs"),
  7483. name: "Front (Alt, Cat)",
  7484. image: {
  7485. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7486. }
  7487. },
  7488. frontWerewolf: {
  7489. height: math.unit(6 * 1.2, "feet"),
  7490. weight: math.unit(225, "lbs"),
  7491. name: "Front (Werewolf)",
  7492. image: {
  7493. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7494. }
  7495. },
  7496. backWerewolf: {
  7497. height: math.unit(6 * 1.2, "feet"),
  7498. weight: math.unit(225, "lbs"),
  7499. name: "Back (Werewolf)",
  7500. image: {
  7501. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7502. }
  7503. },
  7504. },
  7505. [
  7506. {
  7507. name: "Nano",
  7508. height: math.unit(1, "micrometer")
  7509. },
  7510. {
  7511. name: "Micro",
  7512. height: math.unit(1, "inch")
  7513. },
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(6, "feet"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(60, "feet")
  7522. }
  7523. ]
  7524. ))
  7525. characterMakers.push(() => makeCharacter(
  7526. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7527. {
  7528. front: {
  7529. height: math.unit(6, "feet"),
  7530. weight: math.unit(165, "lbs"),
  7531. name: "Front",
  7532. image: {
  7533. source: "./media/characters/fluoresce/front.svg"
  7534. }
  7535. }
  7536. },
  7537. [
  7538. {
  7539. name: "Micro",
  7540. height: math.unit(6, "cm")
  7541. },
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(5 + 7 / 12, "feet"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Macro",
  7549. height: math.unit(56, "feet")
  7550. },
  7551. {
  7552. name: "Megamacro",
  7553. height: math.unit(1.9, "miles")
  7554. },
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(9 + 6 / 12, "feet"),
  7562. weight: math.unit(523, "lbs"),
  7563. name: "Side",
  7564. image: {
  7565. source: "./media/characters/aurora/side.svg"
  7566. }
  7567. }
  7568. },
  7569. [
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(9 + 6 / 12, "feet")
  7573. },
  7574. {
  7575. name: "Macro",
  7576. height: math.unit(96, "feet"),
  7577. default: true
  7578. },
  7579. {
  7580. name: "Macro+",
  7581. height: math.unit(243, "feet")
  7582. },
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(194, "cm"),
  7590. weight: math.unit(90, "kg"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/ranek/front.svg"
  7594. }
  7595. },
  7596. side: {
  7597. height: math.unit(194, "cm"),
  7598. weight: math.unit(90, "kg"),
  7599. name: "Side",
  7600. image: {
  7601. source: "./media/characters/ranek/side.svg"
  7602. }
  7603. },
  7604. back: {
  7605. height: math.unit(194, "cm"),
  7606. weight: math.unit(90, "kg"),
  7607. name: "Back",
  7608. image: {
  7609. source: "./media/characters/ranek/back.svg"
  7610. }
  7611. },
  7612. feral: {
  7613. height: math.unit(30, "cm"),
  7614. weight: math.unit(1.6, "lbs"),
  7615. name: "Feral",
  7616. image: {
  7617. source: "./media/characters/ranek/feral.svg"
  7618. }
  7619. },
  7620. },
  7621. [
  7622. {
  7623. name: "Normal",
  7624. height: math.unit(194, "cm"),
  7625. default: true
  7626. },
  7627. {
  7628. name: "Macro",
  7629. height: math.unit(100, "meters")
  7630. },
  7631. ]
  7632. ))
  7633. characterMakers.push(() => makeCharacter(
  7634. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7635. {
  7636. front: {
  7637. height: math.unit(5 + 6 / 12, "feet"),
  7638. weight: math.unit(153, "lbs"),
  7639. name: "Front",
  7640. image: {
  7641. source: "./media/characters/andrew-cooper/front.svg"
  7642. }
  7643. },
  7644. },
  7645. [
  7646. {
  7647. name: "Nano",
  7648. height: math.unit(1, "mm")
  7649. },
  7650. {
  7651. name: "Micro",
  7652. height: math.unit(2, "inches")
  7653. },
  7654. {
  7655. name: "Normal",
  7656. height: math.unit(5 + 6 / 12, "feet"),
  7657. default: true
  7658. }
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7663. {
  7664. front: {
  7665. height: math.unit(6, "feet"),
  7666. weight: math.unit(180, "lbs"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/akane-sato/front.svg",
  7670. extra: 1219 / 1140
  7671. }
  7672. },
  7673. back: {
  7674. height: math.unit(6, "feet"),
  7675. weight: math.unit(180, "lbs"),
  7676. name: "Back",
  7677. image: {
  7678. source: "./media/characters/akane-sato/back.svg",
  7679. extra: 1219 / 1170
  7680. }
  7681. },
  7682. },
  7683. [
  7684. {
  7685. name: "Normal",
  7686. height: math.unit(2.5, "meters")
  7687. },
  7688. {
  7689. name: "Macro",
  7690. height: math.unit(250, "meters"),
  7691. default: true
  7692. },
  7693. {
  7694. name: "Megamacro",
  7695. height: math.unit(25, "km")
  7696. },
  7697. ]
  7698. ))
  7699. characterMakers.push(() => makeCharacter(
  7700. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7701. {
  7702. front: {
  7703. height: math.unit(6, "feet"),
  7704. weight: math.unit(65, "kg"),
  7705. name: "Front",
  7706. image: {
  7707. source: "./media/characters/rook/front.svg",
  7708. extra: 960 / 950
  7709. }
  7710. }
  7711. },
  7712. [
  7713. {
  7714. name: "Normal",
  7715. height: math.unit(8.8, "feet")
  7716. },
  7717. {
  7718. name: "Macro",
  7719. height: math.unit(88, "feet"),
  7720. default: true
  7721. },
  7722. {
  7723. name: "Megamacro",
  7724. height: math.unit(8, "miles")
  7725. },
  7726. ]
  7727. ))
  7728. characterMakers.push(() => makeCharacter(
  7729. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7730. {
  7731. front: {
  7732. height: math.unit(12 + 2 / 12, "feet"),
  7733. weight: math.unit(808, "lbs"),
  7734. name: "Front",
  7735. image: {
  7736. source: "./media/characters/prodigy/front.svg"
  7737. }
  7738. }
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(12 + 2 / 12, "feet"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Macro",
  7748. height: math.unit(143, "feet")
  7749. },
  7750. {
  7751. name: "Macro+",
  7752. height: math.unit(400, "feet")
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(225, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/daniel/front.svg"
  7765. }
  7766. },
  7767. leaning: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(225, "lbs"),
  7770. name: "Leaning",
  7771. image: {
  7772. source: "./media/characters/daniel/leaning.svg"
  7773. }
  7774. },
  7775. },
  7776. [
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(1000, "feet"),
  7780. default: true
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7786. {
  7787. front: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(88, "lbs"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/chiros/front.svg",
  7793. extra: 306 / 226
  7794. }
  7795. },
  7796. side: {
  7797. height: math.unit(6, "feet"),
  7798. weight: math.unit(88, "lbs"),
  7799. name: "Side",
  7800. image: {
  7801. source: "./media/characters/chiros/side.svg",
  7802. extra: 306 / 226
  7803. }
  7804. },
  7805. },
  7806. [
  7807. {
  7808. name: "Normal",
  7809. height: math.unit(6, "cm"),
  7810. default: true
  7811. },
  7812. ]
  7813. ))
  7814. characterMakers.push(() => makeCharacter(
  7815. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7816. {
  7817. front: {
  7818. height: math.unit(6, "feet"),
  7819. weight: math.unit(100, "lbs"),
  7820. name: "Front",
  7821. image: {
  7822. source: "./media/characters/selka/front.svg",
  7823. extra: 947 / 887
  7824. }
  7825. }
  7826. },
  7827. [
  7828. {
  7829. name: "Normal",
  7830. height: math.unit(5, "cm"),
  7831. default: true
  7832. },
  7833. ]
  7834. ))
  7835. characterMakers.push(() => makeCharacter(
  7836. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7837. {
  7838. front: {
  7839. height: math.unit(8 + 3 / 12, "feet"),
  7840. weight: math.unit(424, "lbs"),
  7841. name: "Front",
  7842. image: {
  7843. source: "./media/characters/verin/front.svg",
  7844. extra: 1845 / 1550
  7845. }
  7846. },
  7847. frontArmored: {
  7848. height: math.unit(8 + 3 / 12, "feet"),
  7849. weight: math.unit(424, "lbs"),
  7850. name: "Front (Armored)",
  7851. image: {
  7852. source: "./media/characters/verin/front-armor.svg",
  7853. extra: 1845 / 1550,
  7854. bottom: 0.01
  7855. }
  7856. },
  7857. back: {
  7858. height: math.unit(8 + 3 / 12, "feet"),
  7859. weight: math.unit(424, "lbs"),
  7860. name: "Back",
  7861. image: {
  7862. source: "./media/characters/verin/back.svg",
  7863. bottom: 0.1,
  7864. extra: 1
  7865. }
  7866. },
  7867. foot: {
  7868. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7869. name: "Foot",
  7870. image: {
  7871. source: "./media/characters/verin/foot.svg"
  7872. }
  7873. },
  7874. },
  7875. [
  7876. {
  7877. name: "Normal",
  7878. height: math.unit(8 + 3 / 12, "feet")
  7879. },
  7880. {
  7881. name: "Minimacro",
  7882. height: math.unit(21, "feet"),
  7883. default: true
  7884. },
  7885. {
  7886. name: "Macro",
  7887. height: math.unit(626, "feet")
  7888. },
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(2.718, "meters"),
  7896. weight: math.unit(150, "lbs"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/sovrim-terraquian/front.svg"
  7900. }
  7901. },
  7902. back: {
  7903. height: math.unit(2.718, "meters"),
  7904. weight: math.unit(150, "lbs"),
  7905. name: "Back",
  7906. image: {
  7907. source: "./media/characters/sovrim-terraquian/back.svg"
  7908. }
  7909. }
  7910. },
  7911. [
  7912. {
  7913. name: "Micro",
  7914. height: math.unit(2, "inches")
  7915. },
  7916. {
  7917. name: "Small",
  7918. height: math.unit(1, "meter")
  7919. },
  7920. {
  7921. name: "Normal",
  7922. height: math.unit(Math.E, "meters"),
  7923. default: true
  7924. },
  7925. {
  7926. name: "Macro",
  7927. height: math.unit(20, "meters")
  7928. },
  7929. {
  7930. name: "Macro+",
  7931. height: math.unit(400, "meters")
  7932. },
  7933. ]
  7934. ))
  7935. characterMakers.push(() => makeCharacter(
  7936. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7937. {
  7938. front: {
  7939. height: math.unit(7, "feet"),
  7940. weight: math.unit(489, "lbs"),
  7941. name: "Front",
  7942. image: {
  7943. source: "./media/characters/reece-silvermane/front.svg",
  7944. bottom: 0.02,
  7945. extra: 1
  7946. }
  7947. },
  7948. },
  7949. [
  7950. {
  7951. name: "Macro",
  7952. height: math.unit(1.5, "miles"),
  7953. default: true
  7954. },
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7959. {
  7960. front: {
  7961. height: math.unit(6, "feet"),
  7962. weight: math.unit(78, "kg"),
  7963. name: "Front",
  7964. image: {
  7965. source: "./media/characters/kane/front.svg",
  7966. extra: 978 / 899
  7967. }
  7968. },
  7969. },
  7970. [
  7971. {
  7972. name: "Normal",
  7973. height: math.unit(2.1, "m"),
  7974. },
  7975. {
  7976. name: "Macro",
  7977. height: math.unit(1, "km"),
  7978. default: true
  7979. },
  7980. ]
  7981. ))
  7982. characterMakers.push(() => makeCharacter(
  7983. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7984. {
  7985. front: {
  7986. height: math.unit(6, "feet"),
  7987. weight: math.unit(200, "kg"),
  7988. name: "Front",
  7989. image: {
  7990. source: "./media/characters/tegon/front.svg",
  7991. bottom: 0.01,
  7992. extra: 1
  7993. }
  7994. },
  7995. },
  7996. [
  7997. {
  7998. name: "Micro",
  7999. height: math.unit(1, "inch")
  8000. },
  8001. {
  8002. name: "Normal",
  8003. height: math.unit(6 + 3 / 12, "feet"),
  8004. default: true
  8005. },
  8006. {
  8007. name: "Macro",
  8008. height: math.unit(300, "feet")
  8009. },
  8010. {
  8011. name: "Megamacro",
  8012. height: math.unit(69, "miles")
  8013. },
  8014. ]
  8015. ))
  8016. characterMakers.push(() => makeCharacter(
  8017. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8018. {
  8019. side: {
  8020. height: math.unit(6, "feet"),
  8021. weight: math.unit(2304, "lbs"),
  8022. name: "Side",
  8023. image: {
  8024. source: "./media/characters/arcturax/side.svg",
  8025. extra: 790 / 376,
  8026. bottom: 0.01
  8027. }
  8028. },
  8029. },
  8030. [
  8031. {
  8032. name: "Micro",
  8033. height: math.unit(2, "inch")
  8034. },
  8035. {
  8036. name: "Normal",
  8037. height: math.unit(6, "feet")
  8038. },
  8039. {
  8040. name: "Macro",
  8041. height: math.unit(39, "feet"),
  8042. default: true
  8043. },
  8044. {
  8045. name: "Megamacro",
  8046. height: math.unit(7, "miles")
  8047. },
  8048. ]
  8049. ))
  8050. characterMakers.push(() => makeCharacter(
  8051. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8052. {
  8053. front: {
  8054. height: math.unit(6, "feet"),
  8055. weight: math.unit(50, "lbs"),
  8056. name: "Front",
  8057. image: {
  8058. source: "./media/characters/sentri/front.svg",
  8059. extra: 1750 / 1570,
  8060. bottom: 0.025
  8061. }
  8062. },
  8063. frontAlt: {
  8064. height: math.unit(6, "feet"),
  8065. weight: math.unit(50, "lbs"),
  8066. name: "Front (Alt)",
  8067. image: {
  8068. source: "./media/characters/sentri/front-alt.svg",
  8069. extra: 1750 / 1570,
  8070. bottom: 0.025
  8071. }
  8072. },
  8073. },
  8074. [
  8075. {
  8076. name: "Normal",
  8077. height: math.unit(15, "feet"),
  8078. default: true
  8079. },
  8080. {
  8081. name: "Macro",
  8082. height: math.unit(2500, "feet")
  8083. }
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(5 + 8 / 12, "feet"),
  8091. weight: math.unit(130, "lbs"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/corvin/front.svg",
  8095. extra: 1803 / 1629
  8096. }
  8097. },
  8098. frontShirt: {
  8099. height: math.unit(5 + 8 / 12, "feet"),
  8100. weight: math.unit(130, "lbs"),
  8101. name: "Front (Shirt)",
  8102. image: {
  8103. source: "./media/characters/corvin/front-shirt.svg",
  8104. extra: 1803 / 1629
  8105. }
  8106. },
  8107. frontPoncho: {
  8108. height: math.unit(5 + 8 / 12, "feet"),
  8109. weight: math.unit(130, "lbs"),
  8110. name: "Front (Poncho)",
  8111. image: {
  8112. source: "./media/characters/corvin/front-poncho.svg",
  8113. extra: 1803 / 1629
  8114. }
  8115. },
  8116. side: {
  8117. height: math.unit(5 + 8 / 12, "feet"),
  8118. weight: math.unit(130, "lbs"),
  8119. name: "Side",
  8120. image: {
  8121. source: "./media/characters/corvin/side.svg",
  8122. extra: 1012 / 945
  8123. }
  8124. },
  8125. back: {
  8126. height: math.unit(5 + 8 / 12, "feet"),
  8127. weight: math.unit(130, "lbs"),
  8128. name: "Back",
  8129. image: {
  8130. source: "./media/characters/corvin/back.svg",
  8131. extra: 1803 / 1629
  8132. }
  8133. },
  8134. },
  8135. [
  8136. {
  8137. name: "Micro",
  8138. height: math.unit(3, "inches")
  8139. },
  8140. {
  8141. name: "Normal",
  8142. height: math.unit(5 + 8 / 12, "feet")
  8143. },
  8144. {
  8145. name: "Macro",
  8146. height: math.unit(300, "feet"),
  8147. default: true
  8148. },
  8149. {
  8150. name: "Megamacro",
  8151. height: math.unit(500, "miles")
  8152. }
  8153. ]
  8154. ))
  8155. characterMakers.push(() => makeCharacter(
  8156. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8157. {
  8158. front: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(135, "lbs"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/q/front.svg",
  8164. extra: 854 / 752,
  8165. bottom: 0.005
  8166. }
  8167. },
  8168. back: {
  8169. height: math.unit(6, "feet"),
  8170. weight: math.unit(130, "lbs"),
  8171. name: "Back",
  8172. image: {
  8173. source: "./media/characters/q/back.svg",
  8174. extra: 854 / 752
  8175. }
  8176. },
  8177. },
  8178. [
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(90, "feet"),
  8182. default: true
  8183. },
  8184. {
  8185. name: "Extra Macro",
  8186. height: math.unit(300, "feet"),
  8187. },
  8188. {
  8189. name: "BIG WALF",
  8190. height: math.unit(750, "feet"),
  8191. },
  8192. ]
  8193. ))
  8194. characterMakers.push(() => makeCharacter(
  8195. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8196. {
  8197. front: {
  8198. height: math.unit(6, "feet"),
  8199. weight: math.unit(150, "lbs"),
  8200. name: "Front",
  8201. image: {
  8202. source: "./media/characters/carley/front.svg",
  8203. extra: 3927 / 3540,
  8204. bottom: 29.2 / 735
  8205. }
  8206. }
  8207. },
  8208. [
  8209. {
  8210. name: "Normal",
  8211. height: math.unit(6 + 3 / 12, "feet")
  8212. },
  8213. {
  8214. name: "Macro",
  8215. height: math.unit(185, "feet"),
  8216. default: true
  8217. },
  8218. {
  8219. name: "Megamacro",
  8220. height: math.unit(8, "miles"),
  8221. },
  8222. ]
  8223. ))
  8224. characterMakers.push(() => makeCharacter(
  8225. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8226. {
  8227. front: {
  8228. height: math.unit(3, "feet"),
  8229. weight: math.unit(28, "lbs"),
  8230. name: "Front",
  8231. image: {
  8232. source: "./media/characters/citrine/front.svg"
  8233. }
  8234. }
  8235. },
  8236. [
  8237. {
  8238. name: "Normal",
  8239. height: math.unit(3, "feet"),
  8240. default: true
  8241. }
  8242. ]
  8243. ))
  8244. characterMakers.push(() => makeCharacter(
  8245. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8246. {
  8247. front: {
  8248. height: math.unit(14, "feet"),
  8249. weight: math.unit(1450, "kg"),
  8250. capacity: math.unit(15, "people"),
  8251. name: "Front",
  8252. image: {
  8253. source: "./media/characters/aura-starwind/front.svg",
  8254. extra: 1440/1327,
  8255. bottom: 11/1451
  8256. }
  8257. },
  8258. side: {
  8259. height: math.unit(14, "feet"),
  8260. weight: math.unit(1450, "kg"),
  8261. capacity: math.unit(15, "people"),
  8262. name: "Side",
  8263. image: {
  8264. source: "./media/characters/aura-starwind/side.svg",
  8265. extra: 1654 / 1497
  8266. }
  8267. },
  8268. taur: {
  8269. height: math.unit(18, "feet"),
  8270. weight: math.unit(5500, "kg"),
  8271. capacity: math.unit(50, "people"),
  8272. name: "Taur",
  8273. image: {
  8274. source: "./media/characters/aura-starwind/taur.svg",
  8275. extra: 1760 / 1650
  8276. }
  8277. },
  8278. feral: {
  8279. height: math.unit(46, "feet"),
  8280. weight: math.unit(25000, "kg"),
  8281. capacity: math.unit(120, "people"),
  8282. name: "Feral",
  8283. image: {
  8284. source: "./media/characters/aura-starwind/feral.svg"
  8285. }
  8286. },
  8287. },
  8288. [
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(14, "feet"),
  8292. default: true
  8293. },
  8294. {
  8295. name: "Macro",
  8296. height: math.unit(50, "meters")
  8297. },
  8298. {
  8299. name: "Megamacro",
  8300. height: math.unit(5000, "meters")
  8301. },
  8302. {
  8303. name: "Gigamacro",
  8304. height: math.unit(100000, "kilometers")
  8305. },
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8310. {
  8311. front: {
  8312. height: math.unit(2 + 7 / 12, "feet"),
  8313. weight: math.unit(32, "lbs"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/rivet/front.svg",
  8317. extra: 1716 / 1658,
  8318. bottom: 0.03
  8319. }
  8320. },
  8321. foot: {
  8322. height: math.unit(0.551, "feet"),
  8323. name: "Rivet's Foot",
  8324. image: {
  8325. source: "./media/characters/rivet/foot.svg"
  8326. },
  8327. rename: true
  8328. }
  8329. },
  8330. [
  8331. {
  8332. name: "Micro",
  8333. height: math.unit(1.5, "inches"),
  8334. },
  8335. {
  8336. name: "Normal",
  8337. height: math.unit(2 + 7 / 12, "feet"),
  8338. default: true
  8339. },
  8340. {
  8341. name: "Macro",
  8342. height: math.unit(85, "feet")
  8343. },
  8344. {
  8345. name: "Megamacro",
  8346. height: math.unit(2.2, "km")
  8347. }
  8348. ]
  8349. ))
  8350. characterMakers.push(() => makeCharacter(
  8351. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8352. {
  8353. front: {
  8354. height: math.unit(5 + 9 / 12, "feet"),
  8355. weight: math.unit(150, "lbs"),
  8356. name: "Front",
  8357. image: {
  8358. source: "./media/characters/coffee/front.svg",
  8359. extra: 3666 / 3032,
  8360. bottom: 0.04
  8361. }
  8362. },
  8363. foot: {
  8364. height: math.unit(1.29, "feet"),
  8365. name: "Foot",
  8366. image: {
  8367. source: "./media/characters/coffee/foot.svg"
  8368. }
  8369. },
  8370. },
  8371. [
  8372. {
  8373. name: "Micro",
  8374. height: math.unit(2, "inches"),
  8375. },
  8376. {
  8377. name: "Normal",
  8378. height: math.unit(5 + 9 / 12, "feet"),
  8379. default: true
  8380. },
  8381. {
  8382. name: "Macro",
  8383. height: math.unit(800, "feet")
  8384. },
  8385. {
  8386. name: "Megamacro",
  8387. height: math.unit(25, "miles")
  8388. }
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8393. {
  8394. front: {
  8395. height: math.unit(6, "feet"),
  8396. weight: math.unit(200, "lbs"),
  8397. name: "Front",
  8398. image: {
  8399. source: "./media/characters/chari-gal/front.svg",
  8400. extra: 1568 / 1385,
  8401. bottom: 0.047
  8402. }
  8403. },
  8404. gigantamax: {
  8405. height: math.unit(6 * 16, "feet"),
  8406. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8407. name: "Gigantamax",
  8408. image: {
  8409. source: "./media/characters/chari-gal/gigantamax.svg",
  8410. extra: 1124 / 888,
  8411. bottom: 0.03
  8412. }
  8413. },
  8414. },
  8415. [
  8416. {
  8417. name: "Normal",
  8418. height: math.unit(5 + 7 / 12, "feet")
  8419. },
  8420. {
  8421. name: "Macro",
  8422. height: math.unit(200, "feet"),
  8423. default: true
  8424. }
  8425. ]
  8426. ))
  8427. characterMakers.push(() => makeCharacter(
  8428. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8429. {
  8430. front: {
  8431. height: math.unit(6, "feet"),
  8432. weight: math.unit(150, "lbs"),
  8433. name: "Front",
  8434. image: {
  8435. source: "./media/characters/nova/front.svg",
  8436. extra: 5000 / 4722,
  8437. bottom: 0.02
  8438. }
  8439. }
  8440. },
  8441. [
  8442. {
  8443. name: "Micro-",
  8444. height: math.unit(0.8, "inches")
  8445. },
  8446. {
  8447. name: "Micro",
  8448. height: math.unit(2, "inches"),
  8449. default: true
  8450. },
  8451. ]
  8452. ))
  8453. characterMakers.push(() => makeCharacter(
  8454. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8455. {
  8456. front: {
  8457. height: math.unit(3 + 1 / 12, "feet"),
  8458. weight: math.unit(21.7, "lbs"),
  8459. name: "Front",
  8460. image: {
  8461. source: "./media/characters/argent/front.svg",
  8462. extra: 1471 / 1331,
  8463. bottom: 100.8 / 1575.5
  8464. }
  8465. }
  8466. },
  8467. [
  8468. {
  8469. name: "Micro",
  8470. height: math.unit(2, "inches")
  8471. },
  8472. {
  8473. name: "Normal",
  8474. height: math.unit(3 + 1 / 12, "feet"),
  8475. default: true
  8476. },
  8477. {
  8478. name: "Macro",
  8479. height: math.unit(120, "feet")
  8480. },
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8485. {
  8486. lamp: {
  8487. height: math.unit(7 * 1559 / 989, "feet"),
  8488. name: "Magic Lamp",
  8489. image: {
  8490. source: "./media/characters/mira-al-cul/lamp.svg",
  8491. extra: 1617 / 1559
  8492. }
  8493. },
  8494. front: {
  8495. height: math.unit(7, "feet"),
  8496. name: "Front",
  8497. image: {
  8498. source: "./media/characters/mira-al-cul/front.svg",
  8499. extra: 1044 / 990
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Heavily Restricted",
  8506. height: math.unit(7 * 1559 / 989, "feet")
  8507. },
  8508. {
  8509. name: "Freshly Freed",
  8510. height: math.unit(50 * 1559 / 989, "feet")
  8511. },
  8512. {
  8513. name: "World Encompassing",
  8514. height: math.unit(10000 * 1559 / 989, "miles")
  8515. },
  8516. {
  8517. name: "Galactic",
  8518. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8519. },
  8520. {
  8521. name: "Palmed Universe",
  8522. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8523. default: true
  8524. },
  8525. {
  8526. name: "Multiversal Matriarch",
  8527. height: math.unit(8.87e10, "yottameters")
  8528. },
  8529. {
  8530. name: "Void Mother",
  8531. height: math.unit(3.14e110, "yottaparsecs")
  8532. },
  8533. {
  8534. name: "Toying with Transcendence",
  8535. height: math.unit(1e307, "meters")
  8536. },
  8537. ]
  8538. ))
  8539. characterMakers.push(() => makeCharacter(
  8540. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8541. {
  8542. front: {
  8543. height: math.unit(17 + 1 / 12, "feet"),
  8544. weight: math.unit(476.2 * 5, "lbs"),
  8545. name: "Front",
  8546. image: {
  8547. source: "./media/characters/kuro-shi-uchū/front.svg",
  8548. extra: 2329 / 1835,
  8549. bottom: 0.02
  8550. }
  8551. },
  8552. },
  8553. [
  8554. {
  8555. name: "Micro",
  8556. height: math.unit(2, "inches")
  8557. },
  8558. {
  8559. name: "Normal",
  8560. height: math.unit(12, "meters")
  8561. },
  8562. {
  8563. name: "Planetary",
  8564. height: math.unit(0.00929, "AU"),
  8565. default: true
  8566. },
  8567. {
  8568. name: "Universal",
  8569. height: math.unit(20, "gigaparsecs")
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8575. {
  8576. front: {
  8577. height: math.unit(5 + 2 / 12, "feet"),
  8578. weight: math.unit(120, "lbs"),
  8579. name: "Front",
  8580. image: {
  8581. source: "./media/characters/katherine/front.svg",
  8582. extra: 2075 / 1969
  8583. }
  8584. },
  8585. dress: {
  8586. height: math.unit(5 + 2 / 12, "feet"),
  8587. weight: math.unit(120, "lbs"),
  8588. name: "Dress",
  8589. image: {
  8590. source: "./media/characters/katherine/dress.svg",
  8591. extra: 2258 / 2064
  8592. }
  8593. },
  8594. },
  8595. [
  8596. {
  8597. name: "Micro",
  8598. height: math.unit(1, "inches"),
  8599. default: true
  8600. },
  8601. {
  8602. name: "Normal",
  8603. height: math.unit(5 + 2 / 12, "feet")
  8604. },
  8605. {
  8606. name: "Macro",
  8607. height: math.unit(100, "meters")
  8608. },
  8609. {
  8610. name: "Megamacro",
  8611. height: math.unit(80, "miles")
  8612. },
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8617. {
  8618. front: {
  8619. height: math.unit(7 + 8 / 12, "feet"),
  8620. weight: math.unit(250, "lbs"),
  8621. name: "Front",
  8622. image: {
  8623. source: "./media/characters/yevis/front.svg",
  8624. extra: 1938 / 1755
  8625. }
  8626. }
  8627. },
  8628. [
  8629. {
  8630. name: "Mortal",
  8631. height: math.unit(7 + 8 / 12, "feet")
  8632. },
  8633. {
  8634. name: "Battle",
  8635. height: math.unit(25 + 11 / 12, "feet")
  8636. },
  8637. {
  8638. name: "Wrath",
  8639. height: math.unit(1654 + 11 / 12, "feet")
  8640. },
  8641. {
  8642. name: "Planet Destroyer",
  8643. height: math.unit(12000, "miles")
  8644. },
  8645. {
  8646. name: "Galaxy Conqueror",
  8647. height: math.unit(1.45, "zettameters"),
  8648. default: true
  8649. },
  8650. {
  8651. name: "Universal War",
  8652. height: math.unit(184, "gigaparsecs")
  8653. },
  8654. {
  8655. name: "Eternity War",
  8656. height: math.unit(1.98e55, "yottaparsecs")
  8657. },
  8658. ]
  8659. ))
  8660. characterMakers.push(() => makeCharacter(
  8661. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8662. {
  8663. front: {
  8664. height: math.unit(5 + 8 / 12, "feet"),
  8665. weight: math.unit(63, "kg"),
  8666. name: "Front",
  8667. image: {
  8668. source: "./media/characters/xavier/front.svg",
  8669. extra: 944 / 883
  8670. }
  8671. },
  8672. frontStretch: {
  8673. height: math.unit(5 + 8 / 12, "feet"),
  8674. weight: math.unit(63, "kg"),
  8675. name: "Stretching",
  8676. image: {
  8677. source: "./media/characters/xavier/front-stretch.svg",
  8678. extra: 962 / 820
  8679. }
  8680. },
  8681. },
  8682. [
  8683. {
  8684. name: "Normal",
  8685. height: math.unit(5 + 8 / 12, "feet")
  8686. },
  8687. {
  8688. name: "Macro",
  8689. height: math.unit(100, "meters"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "McLargeHuge",
  8694. height: math.unit(10, "miles")
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8700. {
  8701. front: {
  8702. height: math.unit(5 + 5 / 12, "feet"),
  8703. weight: math.unit(150, "lb"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/joshii/front.svg",
  8707. extra: 765 / 653,
  8708. bottom: 51 / 816
  8709. }
  8710. },
  8711. foot: {
  8712. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8713. name: "Foot",
  8714. image: {
  8715. source: "./media/characters/joshii/foot.svg"
  8716. }
  8717. },
  8718. },
  8719. [
  8720. {
  8721. name: "Micro",
  8722. height: math.unit(2, "inches"),
  8723. default: true
  8724. },
  8725. {
  8726. name: "Normal",
  8727. height: math.unit(5 + 5 / 12, "feet")
  8728. },
  8729. {
  8730. name: "Macro",
  8731. height: math.unit(785, "feet")
  8732. },
  8733. {
  8734. name: "Megamacro",
  8735. height: math.unit(24.5, "miles")
  8736. },
  8737. ]
  8738. ))
  8739. characterMakers.push(() => makeCharacter(
  8740. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8741. {
  8742. front: {
  8743. height: math.unit(6, "feet"),
  8744. weight: math.unit(150, "lb"),
  8745. name: "Front",
  8746. image: {
  8747. source: "./media/characters/goddess-elizabeth/front.svg",
  8748. extra: 1800 / 1525,
  8749. bottom: 0.005
  8750. }
  8751. },
  8752. foot: {
  8753. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8754. name: "Foot",
  8755. image: {
  8756. source: "./media/characters/goddess-elizabeth/foot.svg"
  8757. }
  8758. },
  8759. mouth: {
  8760. height: math.unit(6, "feet"),
  8761. name: "Mouth",
  8762. image: {
  8763. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8764. }
  8765. },
  8766. },
  8767. [
  8768. {
  8769. name: "Micro",
  8770. height: math.unit(12, "feet")
  8771. },
  8772. {
  8773. name: "Normal",
  8774. height: math.unit(80, "miles"),
  8775. default: true
  8776. },
  8777. {
  8778. name: "Macro",
  8779. height: math.unit(15000, "parsecs")
  8780. },
  8781. ]
  8782. ))
  8783. characterMakers.push(() => makeCharacter(
  8784. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8785. {
  8786. front: {
  8787. height: math.unit(5 + 9 / 12, "feet"),
  8788. weight: math.unit(144, "lb"),
  8789. name: "Front",
  8790. image: {
  8791. source: "./media/characters/kara/front.svg"
  8792. }
  8793. },
  8794. feet: {
  8795. height: math.unit(6 / 6.765, "feet"),
  8796. name: "Kara's Feet",
  8797. rename: true,
  8798. image: {
  8799. source: "./media/characters/kara/feet.svg"
  8800. }
  8801. },
  8802. },
  8803. [
  8804. {
  8805. name: "Normal",
  8806. height: math.unit(5 + 9 / 12, "feet")
  8807. },
  8808. {
  8809. name: "Macro",
  8810. height: math.unit(174, "feet"),
  8811. default: true
  8812. },
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8817. {
  8818. front: {
  8819. height: math.unit(18, "feet"),
  8820. weight: math.unit(4050, "lb"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/tyrone/front.svg",
  8824. extra: 2405 / 2270,
  8825. bottom: 182 / 2587
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Normal",
  8832. height: math.unit(18, "feet"),
  8833. default: true
  8834. },
  8835. {
  8836. name: "Macro",
  8837. height: math.unit(300, "feet")
  8838. },
  8839. {
  8840. name: "Megamacro",
  8841. height: math.unit(15, "km")
  8842. },
  8843. {
  8844. name: "Gigamacro",
  8845. height: math.unit(500, "km")
  8846. },
  8847. {
  8848. name: "Teramacro",
  8849. height: math.unit(0.5, "gigameters")
  8850. },
  8851. {
  8852. name: "Omnimacro",
  8853. height: math.unit(1e252, "yottauniverse")
  8854. },
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8859. {
  8860. front: {
  8861. height: math.unit(7 + 8 / 12, "feet"),
  8862. weight: math.unit(120, "lb"),
  8863. name: "Front",
  8864. image: {
  8865. source: "./media/characters/danny/front.svg",
  8866. extra: 1490 / 1350
  8867. }
  8868. },
  8869. back: {
  8870. height: math.unit(7 + 8 / 12, "feet"),
  8871. weight: math.unit(120, "lb"),
  8872. name: "Back",
  8873. image: {
  8874. source: "./media/characters/danny/back.svg",
  8875. extra: 1490 / 1350
  8876. }
  8877. },
  8878. },
  8879. [
  8880. {
  8881. name: "Normal",
  8882. height: math.unit(7 + 8 / 12, "feet"),
  8883. default: true
  8884. },
  8885. ]
  8886. ))
  8887. characterMakers.push(() => makeCharacter(
  8888. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8889. {
  8890. front: {
  8891. height: math.unit(3.5, "inches"),
  8892. weight: math.unit(19, "grams"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/mallow/front.svg",
  8896. extra: 471 / 431
  8897. }
  8898. },
  8899. back: {
  8900. height: math.unit(3.5, "inches"),
  8901. weight: math.unit(19, "grams"),
  8902. name: "Back",
  8903. image: {
  8904. source: "./media/characters/mallow/back.svg",
  8905. extra: 471 / 431
  8906. }
  8907. },
  8908. },
  8909. [
  8910. {
  8911. name: "Normal",
  8912. height: math.unit(3.5, "inches"),
  8913. default: true
  8914. },
  8915. ]
  8916. ))
  8917. characterMakers.push(() => makeCharacter(
  8918. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8919. {
  8920. front: {
  8921. height: math.unit(9, "feet"),
  8922. weight: math.unit(230, "kg"),
  8923. name: "Front",
  8924. image: {
  8925. source: "./media/characters/starry-aqua/front.svg"
  8926. }
  8927. },
  8928. back: {
  8929. height: math.unit(9, "feet"),
  8930. weight: math.unit(230, "kg"),
  8931. name: "Back",
  8932. image: {
  8933. source: "./media/characters/starry-aqua/back.svg"
  8934. }
  8935. },
  8936. hand: {
  8937. height: math.unit(9 * 0.1168, "feet"),
  8938. name: "Hand",
  8939. image: {
  8940. source: "./media/characters/starry-aqua/hand.svg"
  8941. }
  8942. },
  8943. foot: {
  8944. height: math.unit(9 * 0.18, "feet"),
  8945. name: "Foot",
  8946. image: {
  8947. source: "./media/characters/starry-aqua/foot.svg"
  8948. }
  8949. }
  8950. },
  8951. [
  8952. {
  8953. name: "Micro",
  8954. height: math.unit(3, "inches")
  8955. },
  8956. {
  8957. name: "Normal",
  8958. height: math.unit(9, "feet")
  8959. },
  8960. {
  8961. name: "Macro",
  8962. height: math.unit(300, "feet"),
  8963. default: true
  8964. },
  8965. {
  8966. name: "Megamacro",
  8967. height: math.unit(3200, "feet")
  8968. }
  8969. ]
  8970. ))
  8971. characterMakers.push(() => makeCharacter(
  8972. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8973. {
  8974. front: {
  8975. height: math.unit(15, "feet"),
  8976. weight: math.unit(5026, "lb"),
  8977. name: "Front",
  8978. image: {
  8979. source: "./media/characters/luka-towers/front.svg",
  8980. extra: 1269/1133,
  8981. bottom: 51/1320
  8982. }
  8983. },
  8984. },
  8985. [
  8986. {
  8987. name: "Normal",
  8988. height: math.unit(15, "feet"),
  8989. default: true
  8990. },
  8991. {
  8992. name: "Minimacro",
  8993. height: math.unit(25, "feet")
  8994. },
  8995. {
  8996. name: "Macro",
  8997. height: math.unit(320, "feet")
  8998. },
  8999. {
  9000. name: "Megamacro",
  9001. height: math.unit(35000, "feet")
  9002. },
  9003. {
  9004. name: "Gigamacro",
  9005. height: math.unit(4000, "miles")
  9006. },
  9007. {
  9008. name: "Teramacro",
  9009. height: math.unit(15000, "miles")
  9010. },
  9011. ]
  9012. ))
  9013. characterMakers.push(() => makeCharacter(
  9014. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9015. {
  9016. front: {
  9017. height: math.unit(6, "feet"),
  9018. weight: math.unit(150, "lb"),
  9019. name: "Front",
  9020. image: {
  9021. source: "./media/characters/natalie-nightring/front.svg",
  9022. extra: 1,
  9023. bottom: 0.06
  9024. }
  9025. },
  9026. },
  9027. [
  9028. {
  9029. name: "Uh Oh",
  9030. height: math.unit(0.1, "mm")
  9031. },
  9032. {
  9033. name: "Small",
  9034. height: math.unit(3, "inches")
  9035. },
  9036. {
  9037. name: "Human Scale",
  9038. height: math.unit(6, "feet")
  9039. },
  9040. {
  9041. name: "Librarian",
  9042. height: math.unit(50, "feet"),
  9043. default: true
  9044. },
  9045. {
  9046. name: "Immense",
  9047. height: math.unit(200, "miles")
  9048. },
  9049. ]
  9050. ))
  9051. characterMakers.push(() => makeCharacter(
  9052. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9053. {
  9054. front: {
  9055. height: math.unit(6, "feet"),
  9056. weight: math.unit(180, "lbs"),
  9057. name: "Front",
  9058. image: {
  9059. source: "./media/characters/danni-rosie/front.svg",
  9060. extra: 1260 / 1128,
  9061. bottom: 0.022
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Micro",
  9068. height: math.unit(2, "inches"),
  9069. default: true
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9075. {
  9076. front: {
  9077. height: math.unit(5 + 9 / 12, "feet"),
  9078. weight: math.unit(220, "lb"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/samantha-kruse/front.svg",
  9082. extra: (985 / 935),
  9083. bottom: 0.03
  9084. }
  9085. },
  9086. frontUndressed: {
  9087. height: math.unit(5 + 9 / 12, "feet"),
  9088. weight: math.unit(220, "lb"),
  9089. name: "Front (Undressed)",
  9090. image: {
  9091. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9092. extra: (973 / 923),
  9093. bottom: 0.025
  9094. }
  9095. },
  9096. fat: {
  9097. height: math.unit(5 + 9 / 12, "feet"),
  9098. weight: math.unit(900, "lb"),
  9099. name: "Front (Fat)",
  9100. image: {
  9101. source: "./media/characters/samantha-kruse/fat.svg",
  9102. extra: 2688 / 2561
  9103. }
  9104. },
  9105. },
  9106. [
  9107. {
  9108. name: "Normal",
  9109. height: math.unit(5 + 9 / 12, "feet"),
  9110. default: true
  9111. }
  9112. ]
  9113. ))
  9114. characterMakers.push(() => makeCharacter(
  9115. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9116. {
  9117. back: {
  9118. height: math.unit(5 + 4 / 12, "feet"),
  9119. weight: math.unit(4963, "lb"),
  9120. name: "Back",
  9121. image: {
  9122. source: "./media/characters/amelia-rosie/back.svg",
  9123. extra: 1113 / 963,
  9124. bottom: 0.01
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Level 0",
  9131. height: math.unit(5 + 4 / 12, "feet")
  9132. },
  9133. {
  9134. name: "Level 1",
  9135. height: math.unit(164597, "feet"),
  9136. default: true
  9137. },
  9138. {
  9139. name: "Level 2",
  9140. height: math.unit(956243, "miles")
  9141. },
  9142. {
  9143. name: "Level 3",
  9144. height: math.unit(29421709423, "miles")
  9145. },
  9146. {
  9147. name: "Level 4",
  9148. height: math.unit(154, "lightyears")
  9149. },
  9150. {
  9151. name: "Level 5",
  9152. height: math.unit(4738272, "lightyears")
  9153. },
  9154. {
  9155. name: "Level 6",
  9156. height: math.unit(145787152896, "lightyears")
  9157. },
  9158. ]
  9159. ))
  9160. characterMakers.push(() => makeCharacter(
  9161. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9162. {
  9163. front: {
  9164. height: math.unit(5 + 11 / 12, "feet"),
  9165. weight: math.unit(65, "kg"),
  9166. name: "Front",
  9167. image: {
  9168. source: "./media/characters/rook-kitara/front.svg",
  9169. extra: 1347 / 1274,
  9170. bottom: 0.005
  9171. }
  9172. },
  9173. },
  9174. [
  9175. {
  9176. name: "Totally Unfair",
  9177. height: math.unit(1.8, "mm")
  9178. },
  9179. {
  9180. name: "Lap Rookie",
  9181. height: math.unit(1.4, "feet")
  9182. },
  9183. {
  9184. name: "Normal",
  9185. height: math.unit(5 + 11 / 12, "feet"),
  9186. default: true
  9187. },
  9188. {
  9189. name: "How Did This Happen",
  9190. height: math.unit(80, "miles")
  9191. }
  9192. ]
  9193. ))
  9194. characterMakers.push(() => makeCharacter(
  9195. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9196. {
  9197. front: {
  9198. height: math.unit(7, "feet"),
  9199. weight: math.unit(300, "lb"),
  9200. name: "Front",
  9201. image: {
  9202. source: "./media/characters/pisces/front.svg",
  9203. extra: 2255 / 2115,
  9204. bottom: 0.03
  9205. }
  9206. },
  9207. back: {
  9208. height: math.unit(7, "feet"),
  9209. weight: math.unit(300, "lb"),
  9210. name: "Back",
  9211. image: {
  9212. source: "./media/characters/pisces/back.svg",
  9213. extra: 2146 / 2055,
  9214. bottom: 0.04
  9215. }
  9216. },
  9217. },
  9218. [
  9219. {
  9220. name: "Normal",
  9221. height: math.unit(7, "feet"),
  9222. default: true
  9223. },
  9224. {
  9225. name: "Swimming Pool",
  9226. height: math.unit(12.2, "meters")
  9227. },
  9228. {
  9229. name: "Olympic Swimming Pool",
  9230. height: math.unit(56.3, "meters")
  9231. },
  9232. {
  9233. name: "Lake Superior",
  9234. height: math.unit(93900, "meters")
  9235. },
  9236. {
  9237. name: "Mediterranean Sea",
  9238. height: math.unit(644457, "meters")
  9239. },
  9240. {
  9241. name: "World's Oceans",
  9242. height: math.unit(4567491, "meters")
  9243. },
  9244. ]
  9245. ))
  9246. characterMakers.push(() => makeCharacter(
  9247. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9248. {
  9249. front: {
  9250. height: math.unit(2.3, "meters"),
  9251. weight: math.unit(120, "kg"),
  9252. name: "Front",
  9253. image: {
  9254. source: "./media/characters/zelas/front.svg"
  9255. }
  9256. },
  9257. side: {
  9258. height: math.unit(2.3, "meters"),
  9259. weight: math.unit(120, "kg"),
  9260. name: "Side",
  9261. image: {
  9262. source: "./media/characters/zelas/side.svg"
  9263. }
  9264. },
  9265. back: {
  9266. height: math.unit(2.3, "meters"),
  9267. weight: math.unit(120, "kg"),
  9268. name: "Back",
  9269. image: {
  9270. source: "./media/characters/zelas/back.svg"
  9271. }
  9272. },
  9273. foot: {
  9274. height: math.unit(1.116, "feet"),
  9275. name: "Foot",
  9276. image: {
  9277. source: "./media/characters/zelas/foot.svg"
  9278. }
  9279. },
  9280. },
  9281. [
  9282. {
  9283. name: "Normal",
  9284. height: math.unit(2.3, "meters")
  9285. },
  9286. {
  9287. name: "Macro",
  9288. height: math.unit(30, "meters"),
  9289. default: true
  9290. },
  9291. ]
  9292. ))
  9293. characterMakers.push(() => makeCharacter(
  9294. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9295. {
  9296. front: {
  9297. height: math.unit(1, "inch"),
  9298. weight: math.unit(0.21, "grams"),
  9299. name: "Front",
  9300. image: {
  9301. source: "./media/characters/talbot/front.svg",
  9302. extra: 594 / 544
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Micro",
  9309. height: math.unit(1, "inch"),
  9310. default: true
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9316. {
  9317. front: {
  9318. height: math.unit(3 + 3 / 12, "feet"),
  9319. weight: math.unit(51.8, "lb"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/fliss/front.svg",
  9323. extra: 840 / 640
  9324. }
  9325. },
  9326. },
  9327. [
  9328. {
  9329. name: "Teeny Tiny",
  9330. height: math.unit(1, "mm")
  9331. },
  9332. {
  9333. name: "Small",
  9334. height: math.unit(1, "inch"),
  9335. default: true
  9336. },
  9337. {
  9338. name: "Standard Sylveon",
  9339. height: math.unit(3 + 3 / 12, "feet")
  9340. },
  9341. {
  9342. name: "Large Nuisance",
  9343. height: math.unit(33, "feet")
  9344. },
  9345. {
  9346. name: "City Filler",
  9347. height: math.unit(3000, "feet")
  9348. },
  9349. {
  9350. name: "New Horizon",
  9351. height: math.unit(6000, "miles")
  9352. },
  9353. ]
  9354. ))
  9355. characterMakers.push(() => makeCharacter(
  9356. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9357. {
  9358. front: {
  9359. height: math.unit(5, "cm"),
  9360. weight: math.unit(1.94, "g"),
  9361. name: "Front",
  9362. image: {
  9363. source: "./media/characters/fleta/front.svg",
  9364. extra: 835 / 803
  9365. }
  9366. },
  9367. back: {
  9368. height: math.unit(5, "cm"),
  9369. weight: math.unit(1.94, "g"),
  9370. name: "Back",
  9371. image: {
  9372. source: "./media/characters/fleta/back.svg",
  9373. extra: 835 / 803
  9374. }
  9375. },
  9376. },
  9377. [
  9378. {
  9379. name: "Micro",
  9380. height: math.unit(5, "cm"),
  9381. default: true
  9382. },
  9383. ]
  9384. ))
  9385. characterMakers.push(() => makeCharacter(
  9386. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9387. {
  9388. front: {
  9389. height: math.unit(6, "feet"),
  9390. weight: math.unit(225, "lb"),
  9391. name: "Front",
  9392. image: {
  9393. source: "./media/characters/dominic/front.svg",
  9394. extra: 1770 / 1620,
  9395. bottom: 0.025
  9396. }
  9397. },
  9398. back: {
  9399. height: math.unit(6, "feet"),
  9400. weight: math.unit(225, "lb"),
  9401. name: "Back",
  9402. image: {
  9403. source: "./media/characters/dominic/back.svg",
  9404. extra: 1745 / 1620,
  9405. bottom: 0.065
  9406. }
  9407. },
  9408. },
  9409. [
  9410. {
  9411. name: "Nano",
  9412. height: math.unit(0.1, "mm")
  9413. },
  9414. {
  9415. name: "Micro-",
  9416. height: math.unit(1, "mm")
  9417. },
  9418. {
  9419. name: "Micro",
  9420. height: math.unit(4, "inches")
  9421. },
  9422. {
  9423. name: "Normal",
  9424. height: math.unit(6 + 4 / 12, "feet"),
  9425. default: true
  9426. },
  9427. {
  9428. name: "Macro",
  9429. height: math.unit(115, "feet")
  9430. },
  9431. {
  9432. name: "Macro+",
  9433. height: math.unit(955, "feet")
  9434. },
  9435. {
  9436. name: "Megamacro",
  9437. height: math.unit(8990, "feet")
  9438. },
  9439. {
  9440. name: "Gigmacro",
  9441. height: math.unit(9310, "miles")
  9442. },
  9443. {
  9444. name: "Teramacro",
  9445. height: math.unit(1567005010, "miles")
  9446. },
  9447. {
  9448. name: "Examacro",
  9449. height: math.unit(1425, "parsecs")
  9450. },
  9451. ]
  9452. ))
  9453. characterMakers.push(() => makeCharacter(
  9454. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9455. {
  9456. front: {
  9457. height: math.unit(400, "feet"),
  9458. weight: math.unit(44444444, "lb"),
  9459. name: "Front",
  9460. image: {
  9461. source: "./media/characters/major-colonel/front.svg"
  9462. }
  9463. },
  9464. back: {
  9465. height: math.unit(400, "feet"),
  9466. weight: math.unit(44444444, "lb"),
  9467. name: "Back",
  9468. image: {
  9469. source: "./media/characters/major-colonel/back.svg"
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Macro",
  9476. height: math.unit(400, "feet"),
  9477. default: true
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9483. {
  9484. catFront: {
  9485. height: math.unit(6, "feet"),
  9486. weight: math.unit(120, "lb"),
  9487. name: "Front (Cat Side)",
  9488. image: {
  9489. source: "./media/characters/axel-lycan/cat-front.svg",
  9490. extra: 430 / 402,
  9491. bottom: 43 / 472.35
  9492. }
  9493. },
  9494. catBack: {
  9495. height: math.unit(6, "feet"),
  9496. weight: math.unit(120, "lb"),
  9497. name: "Back (Cat Side)",
  9498. image: {
  9499. source: "./media/characters/axel-lycan/cat-back.svg",
  9500. extra: 447 / 419,
  9501. bottom: 23.3 / 469
  9502. }
  9503. },
  9504. wolfFront: {
  9505. height: math.unit(6, "feet"),
  9506. weight: math.unit(120, "lb"),
  9507. name: "Front (Wolf Side)",
  9508. image: {
  9509. source: "./media/characters/axel-lycan/wolf-front.svg",
  9510. extra: 485 / 456,
  9511. bottom: 19 / 504
  9512. }
  9513. },
  9514. wolfBack: {
  9515. height: math.unit(6, "feet"),
  9516. weight: math.unit(120, "lb"),
  9517. name: "Back (Wolf Side)",
  9518. image: {
  9519. source: "./media/characters/axel-lycan/wolf-back.svg",
  9520. extra: 475 / 438,
  9521. bottom: 39.2 / 514
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Macro",
  9528. height: math.unit(1, "km"),
  9529. default: true
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9535. {
  9536. front: {
  9537. height: math.unit(5 + 9 / 12, "feet"),
  9538. weight: math.unit(175, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/vanrel-hyena/front.svg",
  9542. extra: 1086 / 1010,
  9543. bottom: 0.04
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(5 + 9 / 12, "feet"),
  9551. default: true
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(6, "feet"),
  9560. weight: math.unit(103, "lb"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/abbott-absol/front.svg",
  9564. extra: 2010 / 1842
  9565. }
  9566. },
  9567. },
  9568. [
  9569. {
  9570. name: "Megamicro",
  9571. height: math.unit(0.1, "mm")
  9572. },
  9573. {
  9574. name: "Micro",
  9575. height: math.unit(1, "inch")
  9576. },
  9577. {
  9578. name: "Normal",
  9579. height: math.unit(6, "feet"),
  9580. default: true
  9581. },
  9582. ]
  9583. ))
  9584. characterMakers.push(() => makeCharacter(
  9585. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9586. {
  9587. front: {
  9588. height: math.unit(6, "feet"),
  9589. weight: math.unit(264, "lb"),
  9590. name: "Front",
  9591. image: {
  9592. source: "./media/characters/hector/front.svg",
  9593. extra: 2280 / 2130,
  9594. bottom: 0.07
  9595. }
  9596. },
  9597. },
  9598. [
  9599. {
  9600. name: "Normal",
  9601. height: math.unit(12.25, "foot"),
  9602. default: true
  9603. },
  9604. {
  9605. name: "Macro",
  9606. height: math.unit(160, "feet")
  9607. },
  9608. ]
  9609. ))
  9610. characterMakers.push(() => makeCharacter(
  9611. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9612. {
  9613. front: {
  9614. height: math.unit(6, "feet"),
  9615. weight: math.unit(150, "lb"),
  9616. name: "Front",
  9617. image: {
  9618. source: "./media/characters/sal/front.svg",
  9619. extra: 1846 / 1699,
  9620. bottom: 0.04
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Megamacro",
  9627. height: math.unit(10, "miles"),
  9628. default: true
  9629. },
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9634. {
  9635. front: {
  9636. height: math.unit(3, "meters"),
  9637. weight: math.unit(450, "kg"),
  9638. name: "front",
  9639. image: {
  9640. source: "./media/characters/ranger/front.svg",
  9641. extra: 2401 / 2243,
  9642. bottom: 0.05
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Normal",
  9649. height: math.unit(3, "meters"),
  9650. default: true
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(14, "feet"),
  9659. weight: math.unit(800, "kg"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/theresa/front.svg",
  9663. extra: 3575 / 3346,
  9664. bottom: 0.03
  9665. }
  9666. },
  9667. },
  9668. [
  9669. {
  9670. name: "Normal",
  9671. height: math.unit(14, "feet"),
  9672. default: true
  9673. },
  9674. ]
  9675. ))
  9676. characterMakers.push(() => makeCharacter(
  9677. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9678. {
  9679. front: {
  9680. height: math.unit(6, "feet"),
  9681. weight: math.unit(3, "kg"),
  9682. name: "Front",
  9683. image: {
  9684. source: "./media/characters/ine/front.svg",
  9685. extra: 678 / 539,
  9686. bottom: 0.023
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Normal",
  9693. height: math.unit(2.265, "feet"),
  9694. default: true
  9695. },
  9696. ]
  9697. ))
  9698. characterMakers.push(() => makeCharacter(
  9699. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9700. {
  9701. front: {
  9702. height: math.unit(5, "feet"),
  9703. weight: math.unit(30, "kg"),
  9704. name: "Front",
  9705. image: {
  9706. source: "./media/characters/vial/front.svg",
  9707. extra: 1365 / 1277,
  9708. bottom: 0.04
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Normal",
  9715. height: math.unit(5, "feet"),
  9716. default: true
  9717. },
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9722. {
  9723. side: {
  9724. height: math.unit(3.4, "meters"),
  9725. weight: math.unit(1000, "lb"),
  9726. name: "Side",
  9727. image: {
  9728. source: "./media/characters/rovoska/side.svg",
  9729. extra: 4403 / 1515
  9730. }
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Normal",
  9736. height: math.unit(3.4, "meters"),
  9737. default: true
  9738. },
  9739. ]
  9740. ))
  9741. characterMakers.push(() => makeCharacter(
  9742. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9743. {
  9744. front: {
  9745. height: math.unit(8, "feet"),
  9746. weight: math.unit(315, "lb"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/gunner-rotthbauer/front.svg"
  9750. }
  9751. },
  9752. back: {
  9753. height: math.unit(8, "feet"),
  9754. weight: math.unit(315, "lb"),
  9755. name: "Back",
  9756. image: {
  9757. source: "./media/characters/gunner-rotthbauer/back.svg"
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Micro",
  9764. height: math.unit(3.5, "inches")
  9765. },
  9766. {
  9767. name: "Normal",
  9768. height: math.unit(8, "feet"),
  9769. default: true
  9770. },
  9771. {
  9772. name: "Macro",
  9773. height: math.unit(250, "feet")
  9774. },
  9775. {
  9776. name: "Megamacro",
  9777. height: math.unit(1, "AU")
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9783. {
  9784. front: {
  9785. height: math.unit(5 + 5 / 12, "feet"),
  9786. weight: math.unit(140, "lb"),
  9787. name: "Front",
  9788. image: {
  9789. source: "./media/characters/allatia/front.svg",
  9790. extra: 1227 / 1180,
  9791. bottom: 0.027
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(5 + 5 / 12, "feet")
  9799. },
  9800. {
  9801. name: "Macro",
  9802. height: math.unit(250, "feet"),
  9803. default: true
  9804. },
  9805. {
  9806. name: "Megamacro",
  9807. height: math.unit(8, "miles")
  9808. }
  9809. ]
  9810. ))
  9811. characterMakers.push(() => makeCharacter(
  9812. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9813. {
  9814. front: {
  9815. height: math.unit(6, "feet"),
  9816. weight: math.unit(120, "lb"),
  9817. name: "Front",
  9818. image: {
  9819. source: "./media/characters/tene/front.svg",
  9820. extra: 1728 / 1578,
  9821. bottom: 0.022
  9822. }
  9823. },
  9824. stomping: {
  9825. height: math.unit(2.025, "meters"),
  9826. weight: math.unit(120, "lb"),
  9827. name: "Stomping",
  9828. image: {
  9829. source: "./media/characters/tene/stomping.svg",
  9830. extra: 938 / 873,
  9831. bottom: 0.01
  9832. }
  9833. },
  9834. sitting: {
  9835. height: math.unit(1, "meter"),
  9836. weight: math.unit(120, "lb"),
  9837. name: "Sitting",
  9838. image: {
  9839. source: "./media/characters/tene/sitting.svg",
  9840. extra: 437 / 415,
  9841. bottom: 0.1
  9842. }
  9843. },
  9844. feral: {
  9845. height: math.unit(3.9, "feet"),
  9846. weight: math.unit(250, "lb"),
  9847. name: "Feral",
  9848. image: {
  9849. source: "./media/characters/tene/feral.svg",
  9850. extra: 717 / 458,
  9851. bottom: 0.179
  9852. }
  9853. },
  9854. },
  9855. [
  9856. {
  9857. name: "Normal",
  9858. height: math.unit(6, "feet")
  9859. },
  9860. {
  9861. name: "Macro",
  9862. height: math.unit(300, "feet"),
  9863. default: true
  9864. },
  9865. {
  9866. name: "Megamacro",
  9867. height: math.unit(5, "miles")
  9868. },
  9869. ]
  9870. ))
  9871. characterMakers.push(() => makeCharacter(
  9872. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9873. {
  9874. side: {
  9875. height: math.unit(6, "feet"),
  9876. name: "Side",
  9877. image: {
  9878. source: "./media/characters/evander/side.svg",
  9879. extra: 877 / 477
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Normal",
  9886. height: math.unit(0.83, "meters"),
  9887. default: true
  9888. },
  9889. ]
  9890. ))
  9891. characterMakers.push(() => makeCharacter(
  9892. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9893. {
  9894. front: {
  9895. height: math.unit(12, "feet"),
  9896. weight: math.unit(1000, "lb"),
  9897. name: "Front",
  9898. image: {
  9899. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9900. extra: 1762 / 1611
  9901. }
  9902. },
  9903. back: {
  9904. height: math.unit(12, "feet"),
  9905. weight: math.unit(1000, "lb"),
  9906. name: "Back",
  9907. image: {
  9908. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9909. extra: 1762 / 1611
  9910. }
  9911. },
  9912. },
  9913. [
  9914. {
  9915. name: "Normal",
  9916. height: math.unit(12, "feet"),
  9917. default: true
  9918. },
  9919. {
  9920. name: "Kaiju",
  9921. height: math.unit(150, "feet")
  9922. },
  9923. ]
  9924. ))
  9925. characterMakers.push(() => makeCharacter(
  9926. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9927. {
  9928. front: {
  9929. height: math.unit(6, "feet"),
  9930. weight: math.unit(150, "lb"),
  9931. name: "Front",
  9932. image: {
  9933. source: "./media/characters/zero-alurus/front.svg"
  9934. }
  9935. },
  9936. back: {
  9937. height: math.unit(6, "feet"),
  9938. weight: math.unit(150, "lb"),
  9939. name: "Back",
  9940. image: {
  9941. source: "./media/characters/zero-alurus/back.svg"
  9942. }
  9943. },
  9944. },
  9945. [
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(5 + 10 / 12, "feet")
  9949. },
  9950. {
  9951. name: "Macro",
  9952. height: math.unit(60, "feet"),
  9953. default: true
  9954. },
  9955. {
  9956. name: "Macro+",
  9957. height: math.unit(450, "feet")
  9958. },
  9959. ]
  9960. ))
  9961. characterMakers.push(() => makeCharacter(
  9962. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9963. {
  9964. front: {
  9965. height: math.unit(6, "feet"),
  9966. weight: math.unit(200, "lb"),
  9967. name: "Front",
  9968. image: {
  9969. source: "./media/characters/mega-shi/front.svg",
  9970. extra: 1279 / 1250,
  9971. bottom: 0.02
  9972. }
  9973. },
  9974. back: {
  9975. height: math.unit(6, "feet"),
  9976. weight: math.unit(200, "lb"),
  9977. name: "Back",
  9978. image: {
  9979. source: "./media/characters/mega-shi/back.svg",
  9980. extra: 1279 / 1250,
  9981. bottom: 0.02
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Micro",
  9988. height: math.unit(16 + 6 / 12, "feet")
  9989. },
  9990. {
  9991. name: "Third Dimension",
  9992. height: math.unit(40, "meters")
  9993. },
  9994. {
  9995. name: "Normal",
  9996. height: math.unit(660, "feet"),
  9997. default: true
  9998. },
  9999. {
  10000. name: "Megamacro",
  10001. height: math.unit(10, "miles")
  10002. },
  10003. {
  10004. name: "Planetary Launch",
  10005. height: math.unit(500, "miles")
  10006. },
  10007. {
  10008. name: "Interstellar",
  10009. height: math.unit(1e9, "miles")
  10010. },
  10011. {
  10012. name: "Leaving the Universe",
  10013. height: math.unit(1, "gigaparsec")
  10014. },
  10015. {
  10016. name: "Travelling Universes",
  10017. height: math.unit(30e15, "parsecs")
  10018. },
  10019. ]
  10020. ))
  10021. characterMakers.push(() => makeCharacter(
  10022. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10023. {
  10024. front: {
  10025. height: math.unit(6, "feet"),
  10026. weight: math.unit(150, "lb"),
  10027. name: "Front",
  10028. image: {
  10029. source: "./media/characters/odyssey/front.svg",
  10030. extra: 1782 / 1582,
  10031. bottom: 0.01
  10032. }
  10033. },
  10034. side: {
  10035. height: math.unit(5.7, "feet"),
  10036. weight: math.unit(140, "lb"),
  10037. name: "Side",
  10038. image: {
  10039. source: "./media/characters/odyssey/side.svg",
  10040. extra: 6462 / 5700
  10041. }
  10042. },
  10043. },
  10044. [
  10045. {
  10046. name: "Normal",
  10047. height: math.unit(5 + 4 / 12, "feet")
  10048. },
  10049. {
  10050. name: "Macro",
  10051. height: math.unit(1, "km")
  10052. },
  10053. {
  10054. name: "Megamacro",
  10055. height: math.unit(3000, "km")
  10056. },
  10057. {
  10058. name: "Gigamacro",
  10059. height: math.unit(1, "AU"),
  10060. default: true
  10061. },
  10062. {
  10063. name: "Omniversal",
  10064. height: math.unit(100e14, "lightyears")
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10070. {
  10071. front: {
  10072. height: math.unit(6, "feet"),
  10073. weight: math.unit(300, "lb"),
  10074. name: "Front",
  10075. image: {
  10076. source: "./media/characters/mekuto/front.svg",
  10077. extra: 921 / 832,
  10078. bottom: 0.03
  10079. }
  10080. },
  10081. hand: {
  10082. height: math.unit(6 / 10.24, "feet"),
  10083. name: "Hand",
  10084. image: {
  10085. source: "./media/characters/mekuto/hand.svg"
  10086. }
  10087. },
  10088. foot: {
  10089. height: math.unit(6 / 5.05, "feet"),
  10090. name: "Foot",
  10091. image: {
  10092. source: "./media/characters/mekuto/foot.svg"
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Minimicro",
  10099. height: math.unit(0.2, "inches")
  10100. },
  10101. {
  10102. name: "Micro",
  10103. height: math.unit(1.5, "inches")
  10104. },
  10105. {
  10106. name: "Normal",
  10107. height: math.unit(5 + 11 / 12, "feet"),
  10108. default: true
  10109. },
  10110. {
  10111. name: "Minimacro",
  10112. height: math.unit(17 + 9 / 12, "feet")
  10113. },
  10114. {
  10115. name: "Macro",
  10116. height: math.unit(177.5, "feet")
  10117. },
  10118. {
  10119. name: "Megamacro",
  10120. height: math.unit(152, "miles")
  10121. },
  10122. ]
  10123. ))
  10124. characterMakers.push(() => makeCharacter(
  10125. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10126. {
  10127. front: {
  10128. height: math.unit(6.5, "inches"),
  10129. weight: math.unit(13, "oz"),
  10130. name: "Front",
  10131. image: {
  10132. source: "./media/characters/dafydd-tomos/front.svg",
  10133. extra: 2990 / 2603,
  10134. bottom: 0.03
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Micro",
  10141. height: math.unit(6.5, "inches"),
  10142. default: true
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(6, "feet"),
  10151. weight: math.unit(150, "lb"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/splinter/front.svg",
  10155. extra: 2990 / 2882,
  10156. bottom: 0.04
  10157. }
  10158. },
  10159. back: {
  10160. height: math.unit(6, "feet"),
  10161. weight: math.unit(150, "lb"),
  10162. name: "Back",
  10163. image: {
  10164. source: "./media/characters/splinter/back.svg",
  10165. extra: 2990 / 2882,
  10166. bottom: 0.04
  10167. }
  10168. },
  10169. },
  10170. [
  10171. {
  10172. name: "Normal",
  10173. height: math.unit(6, "feet")
  10174. },
  10175. {
  10176. name: "Macro",
  10177. height: math.unit(230, "meters"),
  10178. default: true
  10179. },
  10180. ]
  10181. ))
  10182. characterMakers.push(() => makeCharacter(
  10183. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10184. {
  10185. front: {
  10186. height: math.unit(4 + 10 / 12, "feet"),
  10187. weight: math.unit(480, "lb"),
  10188. name: "Front",
  10189. image: {
  10190. source: "./media/characters/snow-gabumon/front.svg",
  10191. extra: 1140 / 963,
  10192. bottom: 0.058
  10193. }
  10194. },
  10195. back: {
  10196. height: math.unit(4 + 10 / 12, "feet"),
  10197. weight: math.unit(480, "lb"),
  10198. name: "Back",
  10199. image: {
  10200. source: "./media/characters/snow-gabumon/back.svg",
  10201. extra: 1115 / 962,
  10202. bottom: 0.041
  10203. }
  10204. },
  10205. frontUndresed: {
  10206. height: math.unit(4 + 10 / 12, "feet"),
  10207. weight: math.unit(480, "lb"),
  10208. name: "Front (Undressed)",
  10209. image: {
  10210. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10211. extra: 1061 / 960,
  10212. bottom: 0.045
  10213. }
  10214. },
  10215. },
  10216. [
  10217. {
  10218. name: "Micro",
  10219. height: math.unit(1, "inch")
  10220. },
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(4 + 10 / 12, "feet"),
  10224. default: true
  10225. },
  10226. {
  10227. name: "Macro",
  10228. height: math.unit(200, "feet")
  10229. },
  10230. {
  10231. name: "Megamacro",
  10232. height: math.unit(120, "miles")
  10233. },
  10234. {
  10235. name: "Gigamacro",
  10236. height: math.unit(9800, "miles")
  10237. },
  10238. ]
  10239. ))
  10240. characterMakers.push(() => makeCharacter(
  10241. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10242. {
  10243. front: {
  10244. height: math.unit(1.7, "meters"),
  10245. weight: math.unit(140, "lb"),
  10246. name: "Front",
  10247. image: {
  10248. source: "./media/characters/moody/front.svg",
  10249. extra: 3226 / 3007,
  10250. bottom: 0.087
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Micro",
  10257. height: math.unit(1, "mm")
  10258. },
  10259. {
  10260. name: "Normal",
  10261. height: math.unit(1.7, "meters"),
  10262. default: true
  10263. },
  10264. {
  10265. name: "Macro",
  10266. height: math.unit(80, "meters")
  10267. },
  10268. {
  10269. name: "Macro+",
  10270. height: math.unit(500, "meters")
  10271. },
  10272. ]
  10273. ))
  10274. characterMakers.push(() => makeCharacter(
  10275. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10276. {
  10277. front: {
  10278. height: math.unit(6, "feet"),
  10279. weight: math.unit(150, "lb"),
  10280. name: "Front",
  10281. image: {
  10282. source: "./media/characters/zyas/front.svg",
  10283. extra: 1180 / 1120,
  10284. bottom: 0.045
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(10, "feet"),
  10292. default: true
  10293. },
  10294. {
  10295. name: "Macro",
  10296. height: math.unit(500, "feet")
  10297. },
  10298. {
  10299. name: "Megamacro",
  10300. height: math.unit(5, "miles")
  10301. },
  10302. {
  10303. name: "Teramacro",
  10304. height: math.unit(150000, "miles")
  10305. },
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10310. {
  10311. front: {
  10312. height: math.unit(6, "feet"),
  10313. weight: math.unit(150, "lb"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/cuon/front.svg",
  10317. extra: 1390 / 1320,
  10318. bottom: 0.008
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Micro",
  10325. height: math.unit(3, "inches")
  10326. },
  10327. {
  10328. name: "Normal",
  10329. height: math.unit(18 + 9 / 12, "feet"),
  10330. default: true
  10331. },
  10332. {
  10333. name: "Macro",
  10334. height: math.unit(360, "feet")
  10335. },
  10336. {
  10337. name: "Megamacro",
  10338. height: math.unit(360, "miles")
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10344. {
  10345. front: {
  10346. height: math.unit(2.4, "meters"),
  10347. weight: math.unit(70, "kg"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/nyanuxk/front.svg",
  10351. extra: 1172 / 1084,
  10352. bottom: 0.065
  10353. }
  10354. },
  10355. side: {
  10356. height: math.unit(2.4, "meters"),
  10357. weight: math.unit(70, "kg"),
  10358. name: "Side",
  10359. image: {
  10360. source: "./media/characters/nyanuxk/side.svg",
  10361. extra: 1190 / 1132,
  10362. bottom: 0.007
  10363. }
  10364. },
  10365. back: {
  10366. height: math.unit(2.4, "meters"),
  10367. weight: math.unit(70, "kg"),
  10368. name: "Back",
  10369. image: {
  10370. source: "./media/characters/nyanuxk/back.svg",
  10371. extra: 1200 / 1141,
  10372. bottom: 0.015
  10373. }
  10374. },
  10375. foot: {
  10376. height: math.unit(0.52, "meters"),
  10377. name: "Foot",
  10378. image: {
  10379. source: "./media/characters/nyanuxk/foot.svg"
  10380. }
  10381. },
  10382. },
  10383. [
  10384. {
  10385. name: "Micro",
  10386. height: math.unit(2, "cm")
  10387. },
  10388. {
  10389. name: "Normal",
  10390. height: math.unit(2.4, "meters"),
  10391. default: true
  10392. },
  10393. {
  10394. name: "Smaller Macro",
  10395. height: math.unit(120, "meters")
  10396. },
  10397. {
  10398. name: "Bigger Macro",
  10399. height: math.unit(1.2, "km")
  10400. },
  10401. {
  10402. name: "Megamacro",
  10403. height: math.unit(15, "kilometers")
  10404. },
  10405. {
  10406. name: "Gigamacro",
  10407. height: math.unit(2000, "km")
  10408. },
  10409. {
  10410. name: "Teramacro",
  10411. height: math.unit(500000, "km")
  10412. },
  10413. ]
  10414. ))
  10415. characterMakers.push(() => makeCharacter(
  10416. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10417. {
  10418. side: {
  10419. height: math.unit(6, "feet"),
  10420. name: "Side",
  10421. image: {
  10422. source: "./media/characters/ailbhe/side.svg",
  10423. extra: 757 / 464,
  10424. bottom: 0.041
  10425. }
  10426. },
  10427. },
  10428. [
  10429. {
  10430. name: "Normal",
  10431. height: math.unit(1.07, "meters"),
  10432. default: true
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(6, "feet"),
  10441. weight: math.unit(120, "kg"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/zevulfius/front.svg",
  10445. extra: 965 / 903
  10446. }
  10447. },
  10448. side: {
  10449. height: math.unit(6, "feet"),
  10450. weight: math.unit(120, "kg"),
  10451. name: "Side",
  10452. image: {
  10453. source: "./media/characters/zevulfius/side.svg",
  10454. extra: 939 / 900
  10455. }
  10456. },
  10457. back: {
  10458. height: math.unit(6, "feet"),
  10459. weight: math.unit(120, "kg"),
  10460. name: "Back",
  10461. image: {
  10462. source: "./media/characters/zevulfius/back.svg",
  10463. extra: 918 / 854,
  10464. bottom: 0.005
  10465. }
  10466. },
  10467. foot: {
  10468. height: math.unit(6 / 3.72, "feet"),
  10469. name: "Foot",
  10470. image: {
  10471. source: "./media/characters/zevulfius/foot.svg"
  10472. }
  10473. },
  10474. },
  10475. [
  10476. {
  10477. name: "Macro",
  10478. height: math.unit(750, "meters")
  10479. },
  10480. {
  10481. name: "Megamacro",
  10482. height: math.unit(20, "km"),
  10483. default: true
  10484. },
  10485. {
  10486. name: "Gigamacro",
  10487. height: math.unit(2000, "km")
  10488. },
  10489. {
  10490. name: "Teramacro",
  10491. height: math.unit(250000, "km")
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10497. {
  10498. front: {
  10499. height: math.unit(100, "feet"),
  10500. weight: math.unit(350, "kg"),
  10501. name: "Front",
  10502. image: {
  10503. source: "./media/characters/rikes/front.svg",
  10504. extra: 1565 / 1483,
  10505. bottom: 0.017
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Macro",
  10512. height: math.unit(100, "feet"),
  10513. default: true
  10514. },
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10519. {
  10520. front: {
  10521. height: math.unit(8, "feet"),
  10522. weight: math.unit(356, "lb"),
  10523. name: "Front",
  10524. image: {
  10525. source: "./media/characters/adam-silver-mane/front.svg",
  10526. extra: 1036/937,
  10527. bottom: 63/1099
  10528. }
  10529. },
  10530. side: {
  10531. height: math.unit(8, "feet"),
  10532. weight: math.unit(356, "lb"),
  10533. name: "Side",
  10534. image: {
  10535. source: "./media/characters/adam-silver-mane/side.svg",
  10536. extra: 997/901,
  10537. bottom: 59/1056
  10538. }
  10539. },
  10540. frontNsfw: {
  10541. height: math.unit(8, "feet"),
  10542. weight: math.unit(356, "lb"),
  10543. name: "Front (NSFW)",
  10544. image: {
  10545. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10546. extra: 1036/937,
  10547. bottom: 63/1099
  10548. }
  10549. },
  10550. sideNsfw: {
  10551. height: math.unit(8, "feet"),
  10552. weight: math.unit(356, "lb"),
  10553. name: "Side (NSFW)",
  10554. image: {
  10555. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10556. extra: 997/901,
  10557. bottom: 59/1056
  10558. }
  10559. },
  10560. dick: {
  10561. height: math.unit(2.1, "feet"),
  10562. name: "Dick",
  10563. image: {
  10564. source: "./media/characters/adam-silver-mane/dick.svg"
  10565. }
  10566. },
  10567. taur: {
  10568. height: math.unit(16, "feet"),
  10569. weight: math.unit(1500, "kg"),
  10570. name: "Taur",
  10571. image: {
  10572. source: "./media/characters/adam-silver-mane/taur.svg",
  10573. extra: 1713 / 1571,
  10574. bottom: 0.01
  10575. }
  10576. },
  10577. },
  10578. [
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(8, "feet")
  10582. },
  10583. {
  10584. name: "Minimacro",
  10585. height: math.unit(80, "feet")
  10586. },
  10587. {
  10588. name: "MDA",
  10589. height: math.unit(80, "meters")
  10590. },
  10591. {
  10592. name: "Macro",
  10593. height: math.unit(800, "feet"),
  10594. default: true
  10595. },
  10596. {
  10597. name: "Megamacro",
  10598. height: math.unit(8000, "feet")
  10599. },
  10600. {
  10601. name: "Gigamacro",
  10602. height: math.unit(800, "miles")
  10603. },
  10604. {
  10605. name: "Teramacro",
  10606. height: math.unit(80000, "miles")
  10607. },
  10608. {
  10609. name: "Celestial",
  10610. height: math.unit(8e6, "miles")
  10611. },
  10612. {
  10613. name: "Star Dragon",
  10614. height: math.unit(800000, "parsecs")
  10615. },
  10616. {
  10617. name: "Godly",
  10618. height: math.unit(800, "teraparsecs")
  10619. },
  10620. ]
  10621. ))
  10622. characterMakers.push(() => makeCharacter(
  10623. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10624. {
  10625. front: {
  10626. height: math.unit(6, "feet"),
  10627. weight: math.unit(150, "lb"),
  10628. name: "Front",
  10629. image: {
  10630. source: "./media/characters/ky'owin/front.svg",
  10631. extra: 3888 / 3068,
  10632. bottom: 0.015
  10633. }
  10634. },
  10635. },
  10636. [
  10637. {
  10638. name: "Normal",
  10639. height: math.unit(6 + 8 / 12, "feet")
  10640. },
  10641. {
  10642. name: "Large",
  10643. height: math.unit(68, "feet")
  10644. },
  10645. {
  10646. name: "Macro",
  10647. height: math.unit(132, "feet")
  10648. },
  10649. {
  10650. name: "Macro+",
  10651. height: math.unit(340, "feet")
  10652. },
  10653. {
  10654. name: "Macro++",
  10655. height: math.unit(680, "feet"),
  10656. default: true
  10657. },
  10658. {
  10659. name: "Megamacro",
  10660. height: math.unit(1, "mile")
  10661. },
  10662. {
  10663. name: "Megamacro+",
  10664. height: math.unit(10, "miles")
  10665. },
  10666. ]
  10667. ))
  10668. characterMakers.push(() => makeCharacter(
  10669. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10670. {
  10671. front: {
  10672. height: math.unit(4, "feet"),
  10673. weight: math.unit(50, "lb"),
  10674. name: "Front",
  10675. image: {
  10676. source: "./media/characters/mal/front.svg",
  10677. extra: 785 / 724,
  10678. bottom: 0.07
  10679. }
  10680. },
  10681. },
  10682. [
  10683. {
  10684. name: "Micro",
  10685. height: math.unit(4, "inches")
  10686. },
  10687. {
  10688. name: "Normal",
  10689. height: math.unit(4, "feet"),
  10690. default: true
  10691. },
  10692. {
  10693. name: "Macro",
  10694. height: math.unit(200, "feet")
  10695. },
  10696. ]
  10697. ))
  10698. characterMakers.push(() => makeCharacter(
  10699. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10700. {
  10701. front: {
  10702. height: math.unit(6, "feet"),
  10703. weight: math.unit(150, "lb"),
  10704. name: "Front",
  10705. image: {
  10706. source: "./media/characters/jordan-deware/front.svg",
  10707. extra: 1191 / 1012
  10708. }
  10709. },
  10710. },
  10711. [
  10712. {
  10713. name: "Nano",
  10714. height: math.unit(0.01, "mm")
  10715. },
  10716. {
  10717. name: "Minimicro",
  10718. height: math.unit(1, "mm")
  10719. },
  10720. {
  10721. name: "Micro",
  10722. height: math.unit(0.5, "inches")
  10723. },
  10724. {
  10725. name: "Normal",
  10726. height: math.unit(4, "feet"),
  10727. default: true
  10728. },
  10729. {
  10730. name: "Minimacro",
  10731. height: math.unit(40, "meters")
  10732. },
  10733. {
  10734. name: "Small Macro",
  10735. height: math.unit(400, "meters")
  10736. },
  10737. {
  10738. name: "Macro",
  10739. height: math.unit(4, "miles")
  10740. },
  10741. {
  10742. name: "Megamacro",
  10743. height: math.unit(40, "miles")
  10744. },
  10745. {
  10746. name: "Megamacro+",
  10747. height: math.unit(400, "miles")
  10748. },
  10749. {
  10750. name: "Gigamacro",
  10751. height: math.unit(400000, "miles")
  10752. },
  10753. ]
  10754. ))
  10755. characterMakers.push(() => makeCharacter(
  10756. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10757. {
  10758. side: {
  10759. height: math.unit(6, "feet"),
  10760. weight: math.unit(150, "lb"),
  10761. name: "Side",
  10762. image: {
  10763. source: "./media/characters/kimiko/side.svg",
  10764. extra: 600 / 358
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Normal",
  10771. height: math.unit(15, "feet"),
  10772. default: true
  10773. },
  10774. {
  10775. name: "Macro",
  10776. height: math.unit(220, "feet")
  10777. },
  10778. {
  10779. name: "Macro+",
  10780. height: math.unit(1450, "feet")
  10781. },
  10782. {
  10783. name: "Megamacro",
  10784. height: math.unit(11500, "feet")
  10785. },
  10786. {
  10787. name: "Gigamacro",
  10788. height: math.unit(9500, "miles")
  10789. },
  10790. {
  10791. name: "Teramacro",
  10792. height: math.unit(2208005005, "miles")
  10793. },
  10794. {
  10795. name: "Examacro",
  10796. height: math.unit(2750, "parsecs")
  10797. },
  10798. {
  10799. name: "Zettamacro",
  10800. height: math.unit(101500, "parsecs")
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10806. {
  10807. front: {
  10808. height: math.unit(6, "feet"),
  10809. weight: math.unit(70, "kg"),
  10810. name: "Front",
  10811. image: {
  10812. source: "./media/characters/andrew-sleepy/front.svg"
  10813. }
  10814. },
  10815. side: {
  10816. height: math.unit(6, "feet"),
  10817. weight: math.unit(70, "kg"),
  10818. name: "Side",
  10819. image: {
  10820. source: "./media/characters/andrew-sleepy/side.svg"
  10821. }
  10822. },
  10823. },
  10824. [
  10825. {
  10826. name: "Micro",
  10827. height: math.unit(1, "mm"),
  10828. default: true
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10834. {
  10835. front: {
  10836. height: math.unit(6, "feet"),
  10837. weight: math.unit(150, "lb"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/judio/front.svg",
  10841. extra: 1258 / 1110
  10842. }
  10843. },
  10844. },
  10845. [
  10846. {
  10847. name: "Normal",
  10848. height: math.unit(5 + 6 / 12, "feet")
  10849. },
  10850. {
  10851. name: "Macro",
  10852. height: math.unit(1000, "feet"),
  10853. default: true
  10854. },
  10855. {
  10856. name: "Megamacro",
  10857. height: math.unit(10, "miles")
  10858. },
  10859. ]
  10860. ))
  10861. characterMakers.push(() => makeCharacter(
  10862. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10863. {
  10864. front: {
  10865. height: math.unit(6, "feet"),
  10866. weight: math.unit(68, "kg"),
  10867. name: "Front",
  10868. image: {
  10869. source: "./media/characters/nomaxice/front.svg",
  10870. extra: 1498 / 1073,
  10871. bottom: 0.075
  10872. }
  10873. },
  10874. foot: {
  10875. height: math.unit(1.1, "feet"),
  10876. name: "Foot",
  10877. image: {
  10878. source: "./media/characters/nomaxice/foot.svg"
  10879. }
  10880. },
  10881. },
  10882. [
  10883. {
  10884. name: "Micro",
  10885. height: math.unit(8, "cm")
  10886. },
  10887. {
  10888. name: "Norm",
  10889. height: math.unit(1.82, "m")
  10890. },
  10891. {
  10892. name: "Norm+",
  10893. height: math.unit(8.8, "feet")
  10894. },
  10895. {
  10896. name: "Big",
  10897. height: math.unit(8, "meters"),
  10898. default: true
  10899. },
  10900. {
  10901. name: "Macro",
  10902. height: math.unit(18, "meters")
  10903. },
  10904. {
  10905. name: "Macro+",
  10906. height: math.unit(88, "meters")
  10907. },
  10908. ]
  10909. ))
  10910. characterMakers.push(() => makeCharacter(
  10911. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10912. {
  10913. front: {
  10914. height: math.unit(12, "feet"),
  10915. weight: math.unit(1.5, "tons"),
  10916. name: "Front",
  10917. image: {
  10918. source: "./media/characters/dydros/front.svg",
  10919. extra: 863 / 800,
  10920. bottom: 0.015
  10921. }
  10922. },
  10923. back: {
  10924. height: math.unit(12, "feet"),
  10925. weight: math.unit(1.5, "tons"),
  10926. name: "Back",
  10927. image: {
  10928. source: "./media/characters/dydros/back.svg",
  10929. extra: 900 / 843,
  10930. bottom: 0.005
  10931. }
  10932. },
  10933. },
  10934. [
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(12, "feet"),
  10938. default: true
  10939. },
  10940. ]
  10941. ))
  10942. characterMakers.push(() => makeCharacter(
  10943. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10944. {
  10945. front: {
  10946. height: math.unit(6, "feet"),
  10947. weight: math.unit(100, "kg"),
  10948. name: "Front",
  10949. image: {
  10950. source: "./media/characters/riggi/front.svg",
  10951. extra: 5787 / 5303
  10952. }
  10953. },
  10954. hyper: {
  10955. height: math.unit(6 * 5 / 3, "feet"),
  10956. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10957. name: "Hyper",
  10958. image: {
  10959. source: "./media/characters/riggi/hyper.svg",
  10960. extra: 3595 / 3485
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Small Macro",
  10967. height: math.unit(50, "feet")
  10968. },
  10969. {
  10970. name: "Default",
  10971. height: math.unit(200, "feet"),
  10972. default: true
  10973. },
  10974. {
  10975. name: "Loom",
  10976. height: math.unit(10000, "feet")
  10977. },
  10978. {
  10979. name: "Cruising Altitude",
  10980. height: math.unit(30000, "feet")
  10981. },
  10982. {
  10983. name: "Megamacro",
  10984. height: math.unit(100, "miles")
  10985. },
  10986. {
  10987. name: "Continent Sized",
  10988. height: math.unit(2800, "miles")
  10989. },
  10990. {
  10991. name: "Earth Sized",
  10992. height: math.unit(8000, "miles")
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10998. {
  10999. front: {
  11000. height: math.unit(6, "feet"),
  11001. weight: math.unit(250, "lb"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/alexi/front.svg",
  11005. extra: 3483 / 3291,
  11006. bottom: 0.04
  11007. }
  11008. },
  11009. back: {
  11010. height: math.unit(6, "feet"),
  11011. weight: math.unit(250, "lb"),
  11012. name: "Back",
  11013. image: {
  11014. source: "./media/characters/alexi/back.svg",
  11015. extra: 3533 / 3356,
  11016. bottom: 0.021
  11017. }
  11018. },
  11019. frontTransforming: {
  11020. height: math.unit(8.58, "feet"),
  11021. weight: math.unit(1300, "lb"),
  11022. name: "Transforming",
  11023. image: {
  11024. source: "./media/characters/alexi/front-transforming.svg",
  11025. extra: 437 / 409,
  11026. bottom: 19 / 458.66
  11027. }
  11028. },
  11029. frontTransformed: {
  11030. height: math.unit(12.5, "feet"),
  11031. weight: math.unit(4000, "lb"),
  11032. name: "Transformed",
  11033. image: {
  11034. source: "./media/characters/alexi/front-transformed.svg",
  11035. extra: 639 / 614,
  11036. bottom: 30.55 / 671
  11037. }
  11038. },
  11039. },
  11040. [
  11041. {
  11042. name: "Normal",
  11043. height: math.unit(14, "feet"),
  11044. default: true
  11045. },
  11046. {
  11047. name: "Minimacro",
  11048. height: math.unit(30, "meters")
  11049. },
  11050. {
  11051. name: "Macro",
  11052. height: math.unit(500, "meters")
  11053. },
  11054. {
  11055. name: "Megamacro",
  11056. height: math.unit(9000, "km")
  11057. },
  11058. {
  11059. name: "Teramacro",
  11060. height: math.unit(384000, "km")
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11066. {
  11067. front: {
  11068. height: math.unit(6, "feet"),
  11069. weight: math.unit(150, "lb"),
  11070. name: "Front",
  11071. image: {
  11072. source: "./media/characters/kayroo/front.svg",
  11073. extra: 1153 / 1038,
  11074. bottom: 0.06
  11075. }
  11076. },
  11077. foot: {
  11078. height: math.unit(6, "feet"),
  11079. weight: math.unit(150, "lb"),
  11080. name: "Foot",
  11081. image: {
  11082. source: "./media/characters/kayroo/foot.svg"
  11083. }
  11084. },
  11085. },
  11086. [
  11087. {
  11088. name: "Normal",
  11089. height: math.unit(8, "feet"),
  11090. default: true
  11091. },
  11092. {
  11093. name: "Minimacro",
  11094. height: math.unit(250, "feet")
  11095. },
  11096. {
  11097. name: "Macro",
  11098. height: math.unit(2800, "feet")
  11099. },
  11100. {
  11101. name: "Megamacro",
  11102. height: math.unit(5200, "feet")
  11103. },
  11104. {
  11105. name: "Gigamacro",
  11106. height: math.unit(27000, "feet")
  11107. },
  11108. {
  11109. name: "Omega",
  11110. height: math.unit(45000, "feet")
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11116. {
  11117. front: {
  11118. height: math.unit(18, "feet"),
  11119. weight: math.unit(5800, "lb"),
  11120. name: "Front",
  11121. image: {
  11122. source: "./media/characters/rhys/front.svg",
  11123. extra: 3386 / 3090,
  11124. bottom: 0.07
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Normal",
  11131. height: math.unit(18, "feet"),
  11132. default: true
  11133. },
  11134. {
  11135. name: "Working Size",
  11136. height: math.unit(200, "feet")
  11137. },
  11138. {
  11139. name: "Demolition Size",
  11140. height: math.unit(2000, "feet")
  11141. },
  11142. {
  11143. name: "Maximum Licensed Size",
  11144. height: math.unit(5, "miles")
  11145. },
  11146. {
  11147. name: "Maximum Observed Size",
  11148. height: math.unit(10, "yottameters")
  11149. },
  11150. ]
  11151. ))
  11152. characterMakers.push(() => makeCharacter(
  11153. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11154. {
  11155. front: {
  11156. height: math.unit(6, "feet"),
  11157. weight: math.unit(250, "lb"),
  11158. name: "Front",
  11159. image: {
  11160. source: "./media/characters/toto/front.svg",
  11161. extra: 527 / 479,
  11162. bottom: 0.05
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Micro",
  11169. height: math.unit(3, "feet")
  11170. },
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(10, "feet")
  11174. },
  11175. {
  11176. name: "Macro",
  11177. height: math.unit(150, "feet"),
  11178. default: true
  11179. },
  11180. {
  11181. name: "Megamacro",
  11182. height: math.unit(1200, "feet")
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "King", species: ["lion"], tags: ["anthro"] },
  11188. {
  11189. back: {
  11190. height: math.unit(6, "feet"),
  11191. weight: math.unit(150, "lb"),
  11192. name: "Back",
  11193. image: {
  11194. source: "./media/characters/king/back.svg"
  11195. }
  11196. },
  11197. },
  11198. [
  11199. {
  11200. name: "Micro",
  11201. height: math.unit(2, "inches")
  11202. },
  11203. {
  11204. name: "Normal",
  11205. height: math.unit(8, "feet")
  11206. },
  11207. {
  11208. name: "Macro",
  11209. height: math.unit(200, "feet"),
  11210. default: true
  11211. },
  11212. {
  11213. name: "Megamacro",
  11214. height: math.unit(50, "miles")
  11215. },
  11216. ]
  11217. ))
  11218. characterMakers.push(() => makeCharacter(
  11219. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11220. {
  11221. front: {
  11222. height: math.unit(11, "feet"),
  11223. weight: math.unit(1400, "lb"),
  11224. name: "Front",
  11225. image: {
  11226. source: "./media/characters/cordite/front.svg",
  11227. extra: 1919/1827,
  11228. bottom: 40/1959
  11229. }
  11230. },
  11231. side: {
  11232. height: math.unit(11, "feet"),
  11233. weight: math.unit(1400, "lb"),
  11234. name: "Side",
  11235. image: {
  11236. source: "./media/characters/cordite/side.svg",
  11237. extra: 1908/1793,
  11238. bottom: 38/1946
  11239. }
  11240. },
  11241. back: {
  11242. height: math.unit(11, "feet"),
  11243. weight: math.unit(1400, "lb"),
  11244. name: "Back",
  11245. image: {
  11246. source: "./media/characters/cordite/back.svg",
  11247. extra: 1938/1837,
  11248. bottom: 10/1948
  11249. }
  11250. },
  11251. feral: {
  11252. height: math.unit(2, "feet"),
  11253. weight: math.unit(90, "lb"),
  11254. name: "Feral",
  11255. image: {
  11256. source: "./media/characters/cordite/feral.svg",
  11257. extra: 1260 / 755,
  11258. bottom: 0.05
  11259. }
  11260. },
  11261. },
  11262. [
  11263. {
  11264. name: "Normal",
  11265. height: math.unit(11, "feet"),
  11266. default: true
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11272. {
  11273. front: {
  11274. height: math.unit(6, "feet"),
  11275. weight: math.unit(150, "lb"),
  11276. name: "Front",
  11277. image: {
  11278. source: "./media/characters/pianostrong/front.svg",
  11279. extra: 6577 / 6254,
  11280. bottom: 0.02
  11281. }
  11282. },
  11283. side: {
  11284. height: math.unit(6, "feet"),
  11285. weight: math.unit(150, "lb"),
  11286. name: "Side",
  11287. image: {
  11288. source: "./media/characters/pianostrong/side.svg",
  11289. extra: 6106 / 5730
  11290. }
  11291. },
  11292. back: {
  11293. height: math.unit(6, "feet"),
  11294. weight: math.unit(150, "lb"),
  11295. name: "Back",
  11296. image: {
  11297. source: "./media/characters/pianostrong/back.svg",
  11298. extra: 6085 / 5733,
  11299. bottom: 0.01
  11300. }
  11301. },
  11302. },
  11303. [
  11304. {
  11305. name: "Macro",
  11306. height: math.unit(100, "feet")
  11307. },
  11308. {
  11309. name: "Macro+",
  11310. height: math.unit(300, "feet"),
  11311. default: true
  11312. },
  11313. {
  11314. name: "Macro++",
  11315. height: math.unit(1000, "feet")
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(6, "feet"),
  11324. weight: math.unit(150, "lb"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/kona/front.svg",
  11328. extra: 2960 / 2629,
  11329. bottom: 0.005
  11330. }
  11331. },
  11332. },
  11333. [
  11334. {
  11335. name: "Normal",
  11336. height: math.unit(11 + 8 / 12, "feet")
  11337. },
  11338. {
  11339. name: "Macro",
  11340. height: math.unit(850, "feet"),
  11341. default: true
  11342. },
  11343. {
  11344. name: "Macro+",
  11345. height: math.unit(1.5, "km"),
  11346. default: true
  11347. },
  11348. {
  11349. name: "Megamacro",
  11350. height: math.unit(80, "miles")
  11351. },
  11352. {
  11353. name: "Gigamacro",
  11354. height: math.unit(3500, "miles")
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11360. {
  11361. side: {
  11362. height: math.unit(1.9, "meters"),
  11363. weight: math.unit(326, "kg"),
  11364. name: "Side",
  11365. image: {
  11366. source: "./media/characters/levi/side.svg",
  11367. extra: 1704 / 1334,
  11368. bottom: 0.02
  11369. }
  11370. },
  11371. },
  11372. [
  11373. {
  11374. name: "Normal",
  11375. height: math.unit(1.9, "meters"),
  11376. default: true
  11377. },
  11378. {
  11379. name: "Macro",
  11380. height: math.unit(20, "meters")
  11381. },
  11382. {
  11383. name: "Macro+",
  11384. height: math.unit(200, "meters")
  11385. },
  11386. {
  11387. name: "Megamacro",
  11388. height: math.unit(2, "km")
  11389. },
  11390. {
  11391. name: "Megamacro+",
  11392. height: math.unit(20, "km")
  11393. },
  11394. {
  11395. name: "Gigamacro",
  11396. height: math.unit(2500, "km")
  11397. },
  11398. {
  11399. name: "Gigamacro+",
  11400. height: math.unit(120000, "km")
  11401. },
  11402. {
  11403. name: "Teramacro",
  11404. height: math.unit(7.77e6, "km")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(6 + 4/12, "feet"),
  11413. weight: math.unit(190, "lb"),
  11414. name: "Front",
  11415. image: {
  11416. source: "./media/characters/bmc/front.svg",
  11417. extra: 1626/1472,
  11418. bottom: 79/1705
  11419. }
  11420. },
  11421. back: {
  11422. height: math.unit(6 + 4/12, "feet"),
  11423. weight: math.unit(190, "lb"),
  11424. name: "Back",
  11425. image: {
  11426. source: "./media/characters/bmc/back.svg",
  11427. extra: 1640/1479,
  11428. bottom: 45/1685
  11429. }
  11430. },
  11431. frontArmor: {
  11432. height: math.unit(6 + 4/12, "feet"),
  11433. weight: math.unit(190, "lb"),
  11434. name: "Front-armor",
  11435. image: {
  11436. source: "./media/characters/bmc/front-armor.svg",
  11437. extra: 1538/1468,
  11438. bottom: 79/1617
  11439. }
  11440. },
  11441. },
  11442. [
  11443. {
  11444. name: "Human-sized",
  11445. height: math.unit(6 + 4 / 12, "feet")
  11446. },
  11447. {
  11448. name: "Interactive Size",
  11449. height: math.unit(25, "feet")
  11450. },
  11451. {
  11452. name: "Small",
  11453. height: math.unit(250, "feet")
  11454. },
  11455. {
  11456. name: "Normal",
  11457. height: math.unit(1250, "feet"),
  11458. default: true
  11459. },
  11460. {
  11461. name: "Good Day",
  11462. height: math.unit(88, "miles")
  11463. },
  11464. {
  11465. name: "Largest Measured Size",
  11466. height: math.unit(105.960, "galaxies")
  11467. },
  11468. ]
  11469. ))
  11470. characterMakers.push(() => makeCharacter(
  11471. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11472. {
  11473. front: {
  11474. height: math.unit(20, "feet"),
  11475. weight: math.unit(2016, "kg"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/sven-the-kaiju/front.svg",
  11479. extra: 1277/1250,
  11480. bottom: 35/1312
  11481. }
  11482. },
  11483. mouth: {
  11484. height: math.unit(1.85, "feet"),
  11485. name: "Mouth",
  11486. image: {
  11487. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11488. }
  11489. },
  11490. },
  11491. [
  11492. {
  11493. name: "Fairy",
  11494. height: math.unit(6, "inches")
  11495. },
  11496. {
  11497. name: "Normal",
  11498. height: math.unit(20, "feet"),
  11499. default: true
  11500. },
  11501. {
  11502. name: "Rampage",
  11503. height: math.unit(200, "feet")
  11504. },
  11505. {
  11506. name: "Archfey Forest Guardian",
  11507. height: math.unit(1, "mile")
  11508. },
  11509. ]
  11510. ))
  11511. characterMakers.push(() => makeCharacter(
  11512. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11513. {
  11514. front: {
  11515. height: math.unit(4, "meters"),
  11516. weight: math.unit(2, "tons"),
  11517. name: "Front",
  11518. image: {
  11519. source: "./media/characters/marik/front.svg",
  11520. extra: 1057 / 1003,
  11521. bottom: 0.08
  11522. }
  11523. },
  11524. },
  11525. [
  11526. {
  11527. name: "Normal",
  11528. height: math.unit(4, "meters"),
  11529. default: true
  11530. },
  11531. {
  11532. name: "Macro",
  11533. height: math.unit(20, "meters")
  11534. },
  11535. {
  11536. name: "Megamacro",
  11537. height: math.unit(50, "km")
  11538. },
  11539. {
  11540. name: "Gigamacro",
  11541. height: math.unit(100, "km")
  11542. },
  11543. {
  11544. name: "Alpha Macro",
  11545. height: math.unit(7.88e7, "yottameters")
  11546. },
  11547. ]
  11548. ))
  11549. characterMakers.push(() => makeCharacter(
  11550. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11551. {
  11552. front: {
  11553. height: math.unit(6, "feet"),
  11554. weight: math.unit(110, "lb"),
  11555. name: "Front",
  11556. image: {
  11557. source: "./media/characters/mel/front.svg",
  11558. extra: 736 / 617,
  11559. bottom: 0.017
  11560. }
  11561. },
  11562. },
  11563. [
  11564. {
  11565. name: "Pico",
  11566. height: math.unit(3, "pm")
  11567. },
  11568. {
  11569. name: "Nano",
  11570. height: math.unit(3, "nm")
  11571. },
  11572. {
  11573. name: "Micro",
  11574. height: math.unit(0.3, "mm"),
  11575. default: true
  11576. },
  11577. {
  11578. name: "Micro+",
  11579. height: math.unit(3, "mm")
  11580. },
  11581. {
  11582. name: "Normal",
  11583. height: math.unit(5 + 10.5 / 12, "feet")
  11584. },
  11585. ]
  11586. ))
  11587. characterMakers.push(() => makeCharacter(
  11588. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11589. {
  11590. kaiju: {
  11591. height: math.unit(1.75, "meters"),
  11592. weight: math.unit(55, "kg"),
  11593. name: "Kaiju",
  11594. image: {
  11595. source: "./media/characters/lykonous/kaiju.svg",
  11596. extra: 1055 / 946,
  11597. bottom: 0.135
  11598. }
  11599. },
  11600. },
  11601. [
  11602. {
  11603. name: "Normal",
  11604. height: math.unit(2.5, "meters"),
  11605. default: true
  11606. },
  11607. {
  11608. name: "Kaiju Dragon",
  11609. height: math.unit(60, "meters")
  11610. },
  11611. {
  11612. name: "Mega Kaiju",
  11613. height: math.unit(120, "km")
  11614. },
  11615. {
  11616. name: "Giga Kaiju",
  11617. height: math.unit(200, "megameters")
  11618. },
  11619. {
  11620. name: "Terra Kaiju",
  11621. height: math.unit(400, "gigameters")
  11622. },
  11623. {
  11624. name: "Kaiju Dragon God",
  11625. height: math.unit(13000, "exaparsecs")
  11626. },
  11627. ]
  11628. ))
  11629. characterMakers.push(() => makeCharacter(
  11630. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11631. {
  11632. front: {
  11633. height: math.unit(6, "feet"),
  11634. weight: math.unit(150, "lb"),
  11635. name: "Front",
  11636. image: {
  11637. source: "./media/characters/blü/front.svg",
  11638. extra: 1883 / 1564,
  11639. bottom: 0.031
  11640. }
  11641. },
  11642. },
  11643. [
  11644. {
  11645. name: "Normal",
  11646. height: math.unit(13, "feet"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Big Boi",
  11651. height: math.unit(150, "meters")
  11652. },
  11653. {
  11654. name: "Mini Stomper",
  11655. height: math.unit(300, "meters")
  11656. },
  11657. {
  11658. name: "Macro",
  11659. height: math.unit(1000, "meters")
  11660. },
  11661. {
  11662. name: "Megamacro",
  11663. height: math.unit(11000, "meters")
  11664. },
  11665. {
  11666. name: "Gigamacro",
  11667. height: math.unit(11000, "km")
  11668. },
  11669. {
  11670. name: "Teramacro",
  11671. height: math.unit(420000, "km")
  11672. },
  11673. {
  11674. name: "Examacro",
  11675. height: math.unit(120, "parsecs")
  11676. },
  11677. {
  11678. name: "God Tho",
  11679. height: math.unit(98000000000, "parsecs")
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11685. {
  11686. taurFront: {
  11687. height: math.unit(6, "feet"),
  11688. weight: math.unit(200, "lb"),
  11689. name: "Taur (Front)",
  11690. image: {
  11691. source: "./media/characters/scales/taur-front.svg",
  11692. extra: 1,
  11693. bottom: 0.05
  11694. }
  11695. },
  11696. taurBack: {
  11697. height: math.unit(6, "feet"),
  11698. weight: math.unit(200, "lb"),
  11699. name: "Taur (Back)",
  11700. image: {
  11701. source: "./media/characters/scales/taur-back.svg",
  11702. extra: 1,
  11703. bottom: 0.08
  11704. }
  11705. },
  11706. anthro: {
  11707. height: math.unit(6 * 7 / 12, "feet"),
  11708. weight: math.unit(100, "lb"),
  11709. name: "Anthro",
  11710. image: {
  11711. source: "./media/characters/scales/anthro.svg",
  11712. extra: 1,
  11713. bottom: 0.06
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Normal",
  11720. height: math.unit(12, "feet"),
  11721. default: true
  11722. },
  11723. ]
  11724. ))
  11725. characterMakers.push(() => makeCharacter(
  11726. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11727. {
  11728. front: {
  11729. height: math.unit(6, "feet"),
  11730. weight: math.unit(150, "lb"),
  11731. name: "Front",
  11732. image: {
  11733. source: "./media/characters/koragos/front.svg",
  11734. extra: 841 / 794,
  11735. bottom: 0.035
  11736. }
  11737. },
  11738. back: {
  11739. height: math.unit(6, "feet"),
  11740. weight: math.unit(150, "lb"),
  11741. name: "Back",
  11742. image: {
  11743. source: "./media/characters/koragos/back.svg",
  11744. extra: 841 / 810,
  11745. bottom: 0.022
  11746. }
  11747. },
  11748. },
  11749. [
  11750. {
  11751. name: "Normal",
  11752. height: math.unit(6 + 11 / 12, "feet"),
  11753. default: true
  11754. },
  11755. {
  11756. name: "Macro",
  11757. height: math.unit(490, "feet")
  11758. },
  11759. {
  11760. name: "Megamacro",
  11761. height: math.unit(10, "miles")
  11762. },
  11763. {
  11764. name: "Gigamacro",
  11765. height: math.unit(50, "miles")
  11766. },
  11767. ]
  11768. ))
  11769. characterMakers.push(() => makeCharacter(
  11770. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11771. {
  11772. front: {
  11773. height: math.unit(6, "feet"),
  11774. weight: math.unit(250, "lb"),
  11775. name: "Front",
  11776. image: {
  11777. source: "./media/characters/xylrem/front.svg",
  11778. extra: 3323 / 3050,
  11779. bottom: 0.065
  11780. }
  11781. },
  11782. },
  11783. [
  11784. {
  11785. name: "Micro",
  11786. height: math.unit(4, "feet")
  11787. },
  11788. {
  11789. name: "Normal",
  11790. height: math.unit(16, "feet"),
  11791. default: true
  11792. },
  11793. {
  11794. name: "Macro",
  11795. height: math.unit(2720, "feet")
  11796. },
  11797. {
  11798. name: "Megamacro",
  11799. height: math.unit(25000, "miles")
  11800. },
  11801. ]
  11802. ))
  11803. characterMakers.push(() => makeCharacter(
  11804. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11805. {
  11806. front: {
  11807. height: math.unit(8, "feet"),
  11808. weight: math.unit(250, "kg"),
  11809. name: "Front",
  11810. image: {
  11811. source: "./media/characters/ikideru/front.svg",
  11812. extra: 930 / 870,
  11813. bottom: 0.087
  11814. }
  11815. },
  11816. back: {
  11817. height: math.unit(8, "feet"),
  11818. weight: math.unit(250, "kg"),
  11819. name: "Back",
  11820. image: {
  11821. source: "./media/characters/ikideru/back.svg",
  11822. extra: 919 / 852,
  11823. bottom: 0.055
  11824. }
  11825. },
  11826. },
  11827. [
  11828. {
  11829. name: "Rare",
  11830. height: math.unit(8, "feet"),
  11831. default: true
  11832. },
  11833. {
  11834. name: "Playful Loom",
  11835. height: math.unit(80, "feet")
  11836. },
  11837. {
  11838. name: "City Leaner",
  11839. height: math.unit(230, "feet")
  11840. },
  11841. {
  11842. name: "Megamacro",
  11843. height: math.unit(2500, "feet")
  11844. },
  11845. {
  11846. name: "Gigamacro",
  11847. height: math.unit(26400, "feet")
  11848. },
  11849. {
  11850. name: "Tectonic Shifter",
  11851. height: math.unit(1.7, "megameters")
  11852. },
  11853. {
  11854. name: "Planet Carer",
  11855. height: math.unit(21, "megameters")
  11856. },
  11857. {
  11858. name: "God",
  11859. height: math.unit(11157.22, "parsecs")
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11865. {
  11866. front: {
  11867. height: math.unit(6, "feet"),
  11868. weight: math.unit(120, "lb"),
  11869. name: "Front",
  11870. image: {
  11871. source: "./media/characters/neo/front.svg"
  11872. }
  11873. },
  11874. },
  11875. [
  11876. {
  11877. name: "Micro",
  11878. height: math.unit(2, "inches"),
  11879. default: true
  11880. },
  11881. {
  11882. name: "Human Size",
  11883. height: math.unit(5 + 8 / 12, "feet")
  11884. },
  11885. ]
  11886. ))
  11887. characterMakers.push(() => makeCharacter(
  11888. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11889. {
  11890. front: {
  11891. height: math.unit(13 + 10 / 12, "feet"),
  11892. weight: math.unit(5320, "lb"),
  11893. name: "Front",
  11894. image: {
  11895. source: "./media/characters/chauncey-chantz/front.svg",
  11896. extra: 1587 / 1435,
  11897. bottom: 0.02
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(13 + 10 / 12, "feet"),
  11905. default: true
  11906. },
  11907. {
  11908. name: "Macro",
  11909. height: math.unit(45, "feet")
  11910. },
  11911. {
  11912. name: "Megamacro",
  11913. height: math.unit(250, "miles")
  11914. },
  11915. {
  11916. name: "Planetary",
  11917. height: math.unit(10000, "miles")
  11918. },
  11919. {
  11920. name: "Galactic",
  11921. height: math.unit(40000, "parsecs")
  11922. },
  11923. {
  11924. name: "Universal",
  11925. height: math.unit(1, "yottameter")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11931. {
  11932. front: {
  11933. height: math.unit(6, "feet"),
  11934. weight: math.unit(150, "lb"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/epifox/front.svg",
  11938. extra: 1,
  11939. bottom: 0.075
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Micro",
  11946. height: math.unit(6, "inches")
  11947. },
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(12, "feet"),
  11951. default: true
  11952. },
  11953. {
  11954. name: "Macro",
  11955. height: math.unit(3810, "feet")
  11956. },
  11957. {
  11958. name: "Megamacro",
  11959. height: math.unit(500, "miles")
  11960. },
  11961. ]
  11962. ))
  11963. characterMakers.push(() => makeCharacter(
  11964. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11965. {
  11966. front: {
  11967. height: math.unit(1.8796, "m"),
  11968. weight: math.unit(230, "lb"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/colin-t/front.svg",
  11972. extra: 1272 / 1193,
  11973. bottom: 0.07
  11974. }
  11975. },
  11976. },
  11977. [
  11978. {
  11979. name: "Micro",
  11980. height: math.unit(0.571, "meters")
  11981. },
  11982. {
  11983. name: "Normal",
  11984. height: math.unit(1.8796, "meters"),
  11985. default: true
  11986. },
  11987. {
  11988. name: "Tall",
  11989. height: math.unit(4, "meters")
  11990. },
  11991. {
  11992. name: "Macro",
  11993. height: math.unit(67.241, "meters")
  11994. },
  11995. {
  11996. name: "Megamacro",
  11997. height: math.unit(371.856, "meters")
  11998. },
  11999. {
  12000. name: "Planetary",
  12001. height: math.unit(12631.5689, "km")
  12002. },
  12003. ]
  12004. ))
  12005. characterMakers.push(() => makeCharacter(
  12006. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12007. {
  12008. front: {
  12009. height: math.unit(1.85, "meters"),
  12010. weight: math.unit(80, "kg"),
  12011. name: "Front",
  12012. image: {
  12013. source: "./media/characters/matvei/front.svg",
  12014. extra: 614 / 594,
  12015. bottom: 0.01
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Normal",
  12022. height: math.unit(1.85, "meters"),
  12023. default: true
  12024. },
  12025. ]
  12026. ))
  12027. characterMakers.push(() => makeCharacter(
  12028. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12029. {
  12030. front: {
  12031. height: math.unit(5 + 9 / 12, "feet"),
  12032. weight: math.unit(70, "lb"),
  12033. name: "Front",
  12034. image: {
  12035. source: "./media/characters/quincy/front.svg",
  12036. extra: 3041 / 2751
  12037. }
  12038. },
  12039. back: {
  12040. height: math.unit(5 + 9 / 12, "feet"),
  12041. weight: math.unit(70, "lb"),
  12042. name: "Back",
  12043. image: {
  12044. source: "./media/characters/quincy/back.svg",
  12045. extra: 3041 / 2751
  12046. }
  12047. },
  12048. flying: {
  12049. height: math.unit(5 + 4 / 12, "feet"),
  12050. weight: math.unit(70, "lb"),
  12051. name: "Flying",
  12052. image: {
  12053. source: "./media/characters/quincy/flying.svg",
  12054. extra: 1044 / 930
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Micro",
  12061. height: math.unit(3, "cm")
  12062. },
  12063. {
  12064. name: "Normal",
  12065. height: math.unit(5 + 9 / 12, "feet")
  12066. },
  12067. {
  12068. name: "Macro",
  12069. height: math.unit(200, "meters"),
  12070. default: true
  12071. },
  12072. {
  12073. name: "Megamacro",
  12074. height: math.unit(1000, "meters")
  12075. },
  12076. ]
  12077. ))
  12078. characterMakers.push(() => makeCharacter(
  12079. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12080. {
  12081. front: {
  12082. height: math.unit(3 + 11/12, "feet"),
  12083. weight: math.unit(50, "lb"),
  12084. name: "Front",
  12085. image: {
  12086. source: "./media/characters/vanrel/front.svg",
  12087. extra: 1104/949,
  12088. bottom: 52/1156
  12089. }
  12090. },
  12091. back: {
  12092. height: math.unit(3 + 11/12, "feet"),
  12093. weight: math.unit(50, "lb"),
  12094. name: "Back",
  12095. image: {
  12096. source: "./media/characters/vanrel/back.svg",
  12097. extra: 1119/976,
  12098. bottom: 37/1156
  12099. }
  12100. },
  12101. tome: {
  12102. height: math.unit(1.35, "feet"),
  12103. weight: math.unit(10, "lb"),
  12104. name: "Vanrel's Tome",
  12105. rename: true,
  12106. image: {
  12107. source: "./media/characters/vanrel/tome.svg"
  12108. }
  12109. },
  12110. beans: {
  12111. height: math.unit(0.89, "feet"),
  12112. name: "Beans",
  12113. image: {
  12114. source: "./media/characters/vanrel/beans.svg"
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Normal",
  12121. height: math.unit(3 + 11/12, "feet"),
  12122. default: true
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(7 + 5 / 12, "feet"),
  12131. name: "Front",
  12132. image: {
  12133. source: "./media/characters/kuiper-vanrel/front.svg",
  12134. extra: 1219/1169,
  12135. bottom: 69/1288
  12136. }
  12137. },
  12138. back: {
  12139. height: math.unit(7 + 5 / 12, "feet"),
  12140. name: "Back",
  12141. image: {
  12142. source: "./media/characters/kuiper-vanrel/back.svg",
  12143. extra: 1236/1193,
  12144. bottom: 27/1263
  12145. }
  12146. },
  12147. foot: {
  12148. height: math.unit(0.55, "meters"),
  12149. name: "Foot",
  12150. image: {
  12151. source: "./media/characters/kuiper-vanrel/foot.svg",
  12152. }
  12153. },
  12154. battle: {
  12155. height: math.unit(6.824, "feet"),
  12156. name: "Battle",
  12157. image: {
  12158. source: "./media/characters/kuiper-vanrel/battle.svg",
  12159. extra: 1466 / 1327,
  12160. bottom: 29 / 1492.5
  12161. }
  12162. },
  12163. meerkui: {
  12164. height: math.unit(18, "inches"),
  12165. name: "Meerkui",
  12166. image: {
  12167. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12168. extra: 1354/1289,
  12169. bottom: 69/1423
  12170. }
  12171. },
  12172. },
  12173. [
  12174. {
  12175. name: "Normal",
  12176. height: math.unit(7 + 5 / 12, "feet"),
  12177. default: true
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(8 + 5 / 12, "feet"),
  12186. name: "Front",
  12187. image: {
  12188. source: "./media/characters/keset-vanrel/front.svg",
  12189. extra: 1231/1148,
  12190. bottom: 82/1313
  12191. }
  12192. },
  12193. back: {
  12194. height: math.unit(8 + 5 / 12, "feet"),
  12195. name: "Back",
  12196. image: {
  12197. source: "./media/characters/keset-vanrel/back.svg",
  12198. extra: 1240/1174,
  12199. bottom: 33/1273
  12200. }
  12201. },
  12202. hand: {
  12203. height: math.unit(0.6, "meters"),
  12204. name: "Hand",
  12205. image: {
  12206. source: "./media/characters/keset-vanrel/hand.svg"
  12207. }
  12208. },
  12209. foot: {
  12210. height: math.unit(0.94978, "meters"),
  12211. name: "Foot",
  12212. image: {
  12213. source: "./media/characters/keset-vanrel/foot.svg"
  12214. }
  12215. },
  12216. battle: {
  12217. height: math.unit(7.408, "feet"),
  12218. name: "Battle",
  12219. image: {
  12220. source: "./media/characters/keset-vanrel/battle.svg",
  12221. extra: 1890 / 1386,
  12222. bottom: 73.28 / 1970
  12223. }
  12224. },
  12225. },
  12226. [
  12227. {
  12228. name: "Normal",
  12229. height: math.unit(8 + 5 / 12, "feet"),
  12230. default: true
  12231. },
  12232. ]
  12233. ))
  12234. characterMakers.push(() => makeCharacter(
  12235. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12236. {
  12237. front: {
  12238. height: math.unit(6, "feet"),
  12239. weight: math.unit(150, "lb"),
  12240. name: "Front",
  12241. image: {
  12242. source: "./media/characters/neos/front.svg",
  12243. extra: 1696 / 992,
  12244. bottom: 0.14
  12245. }
  12246. },
  12247. },
  12248. [
  12249. {
  12250. name: "Normal",
  12251. height: math.unit(54, "cm"),
  12252. default: true
  12253. },
  12254. {
  12255. name: "Macro",
  12256. height: math.unit(100, "m")
  12257. },
  12258. {
  12259. name: "Megamacro",
  12260. height: math.unit(10, "km")
  12261. },
  12262. {
  12263. name: "Megamacro+",
  12264. height: math.unit(100, "km")
  12265. },
  12266. {
  12267. name: "Gigamacro",
  12268. height: math.unit(100, "Mm")
  12269. },
  12270. {
  12271. name: "Teramacro",
  12272. height: math.unit(100, "Gm")
  12273. },
  12274. {
  12275. name: "Examacro",
  12276. height: math.unit(100, "Em")
  12277. },
  12278. {
  12279. name: "Godly",
  12280. height: math.unit(10000, "Ym")
  12281. },
  12282. {
  12283. name: "Beyond Godly",
  12284. height: math.unit(25, "multiverses")
  12285. },
  12286. ]
  12287. ))
  12288. characterMakers.push(() => makeCharacter(
  12289. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12290. {
  12291. feminine: {
  12292. height: math.unit(5, "feet"),
  12293. weight: math.unit(100, "lb"),
  12294. name: "Feminine",
  12295. image: {
  12296. source: "./media/characters/sammy-mouse/feminine.svg",
  12297. extra: 2526 / 2425,
  12298. bottom: 0.123
  12299. }
  12300. },
  12301. masculine: {
  12302. height: math.unit(5, "feet"),
  12303. weight: math.unit(100, "lb"),
  12304. name: "Masculine",
  12305. image: {
  12306. source: "./media/characters/sammy-mouse/masculine.svg",
  12307. extra: 2526 / 2425,
  12308. bottom: 0.123
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Micro",
  12315. height: math.unit(5, "inches")
  12316. },
  12317. {
  12318. name: "Normal",
  12319. height: math.unit(5, "feet"),
  12320. default: true
  12321. },
  12322. {
  12323. name: "Macro",
  12324. height: math.unit(60, "feet")
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12330. {
  12331. front: {
  12332. height: math.unit(4, "feet"),
  12333. weight: math.unit(50, "lb"),
  12334. name: "Front",
  12335. image: {
  12336. source: "./media/characters/kole/front.svg",
  12337. extra: 1423 / 1303,
  12338. bottom: 0.025
  12339. }
  12340. },
  12341. back: {
  12342. height: math.unit(4, "feet"),
  12343. weight: math.unit(50, "lb"),
  12344. name: "Back",
  12345. image: {
  12346. source: "./media/characters/kole/back.svg",
  12347. extra: 1426 / 1280,
  12348. bottom: 0.02
  12349. }
  12350. },
  12351. },
  12352. [
  12353. {
  12354. name: "Normal",
  12355. height: math.unit(4, "feet"),
  12356. default: true
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12362. {
  12363. front: {
  12364. height: math.unit(2.5, "feet"),
  12365. weight: math.unit(32, "lb"),
  12366. name: "Front",
  12367. image: {
  12368. source: "./media/characters/rufran/front.svg",
  12369. extra: 1313/885,
  12370. bottom: 94/1407
  12371. }
  12372. },
  12373. side: {
  12374. height: math.unit(2.5, "feet"),
  12375. weight: math.unit(32, "lb"),
  12376. name: "Side",
  12377. image: {
  12378. source: "./media/characters/rufran/side.svg",
  12379. extra: 1109/852,
  12380. bottom: 118/1227
  12381. }
  12382. },
  12383. back: {
  12384. height: math.unit(2.5, "feet"),
  12385. weight: math.unit(32, "lb"),
  12386. name: "Back",
  12387. image: {
  12388. source: "./media/characters/rufran/back.svg",
  12389. extra: 1280/878,
  12390. bottom: 131/1411
  12391. }
  12392. },
  12393. mouth: {
  12394. height: math.unit(1.13, "feet"),
  12395. name: "Mouth",
  12396. image: {
  12397. source: "./media/characters/rufran/mouth.svg"
  12398. }
  12399. },
  12400. foot: {
  12401. height: math.unit(1.33, "feet"),
  12402. name: "Foot",
  12403. image: {
  12404. source: "./media/characters/rufran/foot.svg"
  12405. }
  12406. },
  12407. koboldFront: {
  12408. height: math.unit(2 + 6 / 12, "feet"),
  12409. weight: math.unit(20, "lb"),
  12410. name: "Front (Kobold)",
  12411. image: {
  12412. source: "./media/characters/rufran/kobold-front.svg",
  12413. extra: 2041 / 1839,
  12414. bottom: 0.055
  12415. }
  12416. },
  12417. koboldBack: {
  12418. height: math.unit(2 + 6 / 12, "feet"),
  12419. weight: math.unit(20, "lb"),
  12420. name: "Back (Kobold)",
  12421. image: {
  12422. source: "./media/characters/rufran/kobold-back.svg",
  12423. extra: 2054 / 1839,
  12424. bottom: 0.01
  12425. }
  12426. },
  12427. koboldHand: {
  12428. height: math.unit(0.2166, "meters"),
  12429. name: "Hand (Kobold)",
  12430. image: {
  12431. source: "./media/characters/rufran/kobold-hand.svg"
  12432. }
  12433. },
  12434. koboldFoot: {
  12435. height: math.unit(0.185, "meters"),
  12436. name: "Foot (Kobold)",
  12437. image: {
  12438. source: "./media/characters/rufran/kobold-foot.svg"
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Micro",
  12445. height: math.unit(1, "inch")
  12446. },
  12447. {
  12448. name: "Normal",
  12449. height: math.unit(2 + 6 / 12, "feet"),
  12450. default: true
  12451. },
  12452. {
  12453. name: "Big",
  12454. height: math.unit(60, "feet")
  12455. },
  12456. {
  12457. name: "Macro",
  12458. height: math.unit(325, "feet")
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12464. {
  12465. front: {
  12466. height: math.unit(0.3, "meters"),
  12467. weight: math.unit(3.5, "kg"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/chip/front.svg",
  12471. extra: 748 / 674
  12472. }
  12473. },
  12474. },
  12475. [
  12476. {
  12477. name: "Micro",
  12478. height: math.unit(1, "inch"),
  12479. default: true
  12480. },
  12481. ]
  12482. ))
  12483. characterMakers.push(() => makeCharacter(
  12484. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12485. {
  12486. side: {
  12487. height: math.unit(2.3, "meters"),
  12488. weight: math.unit(3500, "lb"),
  12489. name: "Side",
  12490. image: {
  12491. source: "./media/characters/torvid/side.svg",
  12492. extra: 1972 / 722,
  12493. bottom: 0.035
  12494. }
  12495. },
  12496. },
  12497. [
  12498. {
  12499. name: "Normal",
  12500. height: math.unit(2.3, "meters"),
  12501. default: true
  12502. },
  12503. ]
  12504. ))
  12505. characterMakers.push(() => makeCharacter(
  12506. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12507. {
  12508. front: {
  12509. height: math.unit(2, "meters"),
  12510. weight: math.unit(150.5, "kg"),
  12511. name: "Front",
  12512. image: {
  12513. source: "./media/characters/susan/front.svg",
  12514. extra: 693 / 635,
  12515. bottom: 0.05
  12516. }
  12517. },
  12518. },
  12519. [
  12520. {
  12521. name: "Megamacro",
  12522. height: math.unit(505, "miles"),
  12523. default: true
  12524. },
  12525. ]
  12526. ))
  12527. characterMakers.push(() => makeCharacter(
  12528. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12529. {
  12530. front: {
  12531. height: math.unit(6, "feet"),
  12532. weight: math.unit(150, "lb"),
  12533. name: "Front",
  12534. image: {
  12535. source: "./media/characters/raindrops/front.svg",
  12536. extra: 2655 / 2461,
  12537. bottom: 49 / 2705
  12538. }
  12539. },
  12540. back: {
  12541. height: math.unit(6, "feet"),
  12542. weight: math.unit(150, "lb"),
  12543. name: "Back",
  12544. image: {
  12545. source: "./media/characters/raindrops/back.svg",
  12546. extra: 2574 / 2400,
  12547. bottom: 65 / 2634
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Micro",
  12554. height: math.unit(6, "inches")
  12555. },
  12556. {
  12557. name: "Normal",
  12558. height: math.unit(6 + 2 / 12, "feet")
  12559. },
  12560. {
  12561. name: "Macro",
  12562. height: math.unit(131, "feet"),
  12563. default: true
  12564. },
  12565. {
  12566. name: "Megamacro",
  12567. height: math.unit(15, "miles")
  12568. },
  12569. {
  12570. name: "Gigamacro",
  12571. height: math.unit(4000, "miles")
  12572. },
  12573. {
  12574. name: "Teramacro",
  12575. height: math.unit(315000, "miles")
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12581. {
  12582. front: {
  12583. height: math.unit(2.794, "meters"),
  12584. weight: math.unit(325, "kg"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/tezwa/front.svg",
  12588. extra: 2083 / 1906,
  12589. bottom: 0.031
  12590. }
  12591. },
  12592. foot: {
  12593. height: math.unit(0.687, "meters"),
  12594. name: "Foot",
  12595. image: {
  12596. source: "./media/characters/tezwa/foot.svg"
  12597. }
  12598. },
  12599. },
  12600. [
  12601. {
  12602. name: "Normal",
  12603. height: math.unit(9 + 2 / 12, "feet"),
  12604. default: true
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(58, "feet"),
  12613. weight: math.unit(89000, "lb"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/typhus/front.svg",
  12617. extra: 816 / 800,
  12618. bottom: 0.065
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Macro",
  12625. height: math.unit(58, "feet"),
  12626. default: true
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(12, "feet"),
  12635. weight: math.unit(6, "tonnes"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/lyra-von-wulf/front.svg",
  12639. extra: 1,
  12640. bottom: 0.10
  12641. }
  12642. },
  12643. frontMecha: {
  12644. height: math.unit(12, "feet"),
  12645. weight: math.unit(12, "tonnes"),
  12646. name: "Front (Mecha)",
  12647. image: {
  12648. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12649. extra: 1,
  12650. bottom: 0.042
  12651. }
  12652. },
  12653. maw: {
  12654. height: math.unit(2.2, "feet"),
  12655. name: "Maw",
  12656. image: {
  12657. source: "./media/characters/lyra-von-wulf/maw.svg"
  12658. }
  12659. },
  12660. },
  12661. [
  12662. {
  12663. name: "Normal",
  12664. height: math.unit(12, "feet"),
  12665. default: true
  12666. },
  12667. {
  12668. name: "Classic",
  12669. height: math.unit(50, "feet")
  12670. },
  12671. {
  12672. name: "Macro",
  12673. height: math.unit(500, "feet")
  12674. },
  12675. {
  12676. name: "Megamacro",
  12677. height: math.unit(1, "mile")
  12678. },
  12679. {
  12680. name: "Gigamacro",
  12681. height: math.unit(400, "miles")
  12682. },
  12683. {
  12684. name: "Teramacro",
  12685. height: math.unit(22000, "miles")
  12686. },
  12687. {
  12688. name: "Solarmacro",
  12689. height: math.unit(8600000, "miles")
  12690. },
  12691. {
  12692. name: "Galactic",
  12693. height: math.unit(1057000, "lightyears")
  12694. },
  12695. ]
  12696. ))
  12697. characterMakers.push(() => makeCharacter(
  12698. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12699. {
  12700. front: {
  12701. height: math.unit(6 + 10 / 12, "feet"),
  12702. weight: math.unit(150, "lb"),
  12703. name: "Front",
  12704. image: {
  12705. source: "./media/characters/dixon/front.svg",
  12706. extra: 3361 / 3209,
  12707. bottom: 0.01
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Normal",
  12714. height: math.unit(6 + 10 / 12, "feet"),
  12715. default: true
  12716. },
  12717. {
  12718. name: "Big",
  12719. height: math.unit(12, "meters")
  12720. },
  12721. {
  12722. name: "Macro",
  12723. height: math.unit(500, "meters")
  12724. },
  12725. {
  12726. name: "Megamacro",
  12727. height: math.unit(2, "km")
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(185, "cm"),
  12736. weight: math.unit(68, "kg"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/kauko/front.svg",
  12740. extra: 1455 / 1421,
  12741. bottom: 0.03
  12742. }
  12743. },
  12744. back: {
  12745. height: math.unit(185, "cm"),
  12746. weight: math.unit(68, "kg"),
  12747. name: "Back",
  12748. image: {
  12749. source: "./media/characters/kauko/back.svg",
  12750. extra: 1455 / 1421,
  12751. bottom: 0.004
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(185, "cm"),
  12759. default: true
  12760. },
  12761. ]
  12762. ))
  12763. characterMakers.push(() => makeCharacter(
  12764. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12765. {
  12766. front: {
  12767. height: math.unit(6, "feet"),
  12768. weight: math.unit(150, "kg"),
  12769. name: "Front",
  12770. image: {
  12771. source: "./media/characters/varg/front.svg",
  12772. extra: 1108 / 1018,
  12773. bottom: 0.0375
  12774. }
  12775. },
  12776. },
  12777. [
  12778. {
  12779. name: "Normal",
  12780. height: math.unit(5, "meters")
  12781. },
  12782. {
  12783. name: "Macro",
  12784. height: math.unit(200, "meters")
  12785. },
  12786. {
  12787. name: "Megamacro",
  12788. height: math.unit(20, "kilometers")
  12789. },
  12790. {
  12791. name: "True Size",
  12792. height: math.unit(211, "km"),
  12793. default: true
  12794. },
  12795. {
  12796. name: "Gigamacro",
  12797. height: math.unit(1000, "km")
  12798. },
  12799. {
  12800. name: "Gigamacro+",
  12801. height: math.unit(8000, "km")
  12802. },
  12803. {
  12804. name: "Teramacro",
  12805. height: math.unit(1000000, "km")
  12806. },
  12807. ]
  12808. ))
  12809. characterMakers.push(() => makeCharacter(
  12810. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12811. {
  12812. front: {
  12813. height: math.unit(7 + 7 / 12, "feet"),
  12814. weight: math.unit(267, "lb"),
  12815. name: "Front",
  12816. image: {
  12817. source: "./media/characters/dayza/front.svg",
  12818. extra: 1262 / 1200,
  12819. bottom: 0.035
  12820. }
  12821. },
  12822. side: {
  12823. height: math.unit(7 + 7 / 12, "feet"),
  12824. weight: math.unit(267, "lb"),
  12825. name: "Side",
  12826. image: {
  12827. source: "./media/characters/dayza/side.svg",
  12828. extra: 1295 / 1245,
  12829. bottom: 0.05
  12830. }
  12831. },
  12832. back: {
  12833. height: math.unit(7 + 7 / 12, "feet"),
  12834. weight: math.unit(267, "lb"),
  12835. name: "Back",
  12836. image: {
  12837. source: "./media/characters/dayza/back.svg",
  12838. extra: 1241 / 1170
  12839. }
  12840. },
  12841. },
  12842. [
  12843. {
  12844. name: "Normal",
  12845. height: math.unit(7 + 7 / 12, "feet"),
  12846. default: true
  12847. },
  12848. {
  12849. name: "Macro",
  12850. height: math.unit(155, "feet")
  12851. },
  12852. ]
  12853. ))
  12854. characterMakers.push(() => makeCharacter(
  12855. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12856. {
  12857. front: {
  12858. height: math.unit(6 + 5 / 12, "feet"),
  12859. weight: math.unit(160, "lb"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/xanthos/front.svg",
  12863. extra: 1,
  12864. bottom: 0.04
  12865. }
  12866. },
  12867. back: {
  12868. height: math.unit(6 + 5 / 12, "feet"),
  12869. weight: math.unit(160, "lb"),
  12870. name: "Back",
  12871. image: {
  12872. source: "./media/characters/xanthos/back.svg",
  12873. extra: 1,
  12874. bottom: 0.03
  12875. }
  12876. },
  12877. hand: {
  12878. height: math.unit(0.928, "feet"),
  12879. name: "Hand",
  12880. image: {
  12881. source: "./media/characters/xanthos/hand.svg"
  12882. }
  12883. },
  12884. foot: {
  12885. height: math.unit(1.286, "feet"),
  12886. name: "Foot",
  12887. image: {
  12888. source: "./media/characters/xanthos/foot.svg"
  12889. }
  12890. },
  12891. },
  12892. [
  12893. {
  12894. name: "Normal",
  12895. height: math.unit(6 + 5 / 12, "feet"),
  12896. default: true
  12897. },
  12898. {
  12899. name: "Normal+",
  12900. height: math.unit(6, "meters")
  12901. },
  12902. {
  12903. name: "Macro",
  12904. height: math.unit(40, "feet")
  12905. },
  12906. {
  12907. name: "Macro+",
  12908. height: math.unit(200, "meters")
  12909. },
  12910. {
  12911. name: "Megamacro",
  12912. height: math.unit(20, "km")
  12913. },
  12914. {
  12915. name: "Megamacro+",
  12916. height: math.unit(100, "km")
  12917. },
  12918. {
  12919. name: "Gigamacro",
  12920. height: math.unit(200, "megameters")
  12921. },
  12922. {
  12923. name: "Gigamacro+",
  12924. height: math.unit(1.5, "gigameters")
  12925. },
  12926. ]
  12927. ))
  12928. characterMakers.push(() => makeCharacter(
  12929. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12930. {
  12931. front: {
  12932. height: math.unit(6 + 3 / 12, "feet"),
  12933. weight: math.unit(215, "lb"),
  12934. name: "Front",
  12935. image: {
  12936. source: "./media/characters/grynn/front.svg",
  12937. extra: 4627 / 4209,
  12938. bottom: 0.047
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Micro",
  12945. height: math.unit(6, "inches")
  12946. },
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(6 + 3 / 12, "feet"),
  12950. default: true
  12951. },
  12952. {
  12953. name: "Big",
  12954. height: math.unit(104, "feet")
  12955. },
  12956. {
  12957. name: "Macro",
  12958. height: math.unit(944, "feet")
  12959. },
  12960. {
  12961. name: "Macro+",
  12962. height: math.unit(9480, "feet")
  12963. },
  12964. {
  12965. name: "Megamacro",
  12966. height: math.unit(78752, "feet")
  12967. },
  12968. {
  12969. name: "Megamacro+",
  12970. height: math.unit(630128, "feet")
  12971. },
  12972. {
  12973. name: "Megamacro++",
  12974. height: math.unit(3150695, "feet")
  12975. },
  12976. ]
  12977. ))
  12978. characterMakers.push(() => makeCharacter(
  12979. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12980. {
  12981. front: {
  12982. height: math.unit(7 + 5 / 12, "feet"),
  12983. weight: math.unit(450, "lb"),
  12984. name: "Front",
  12985. image: {
  12986. source: "./media/characters/mocha-aura/front.svg",
  12987. extra: 1907 / 1817,
  12988. bottom: 0.04
  12989. }
  12990. },
  12991. back: {
  12992. height: math.unit(7 + 5 / 12, "feet"),
  12993. weight: math.unit(450, "lb"),
  12994. name: "Back",
  12995. image: {
  12996. source: "./media/characters/mocha-aura/back.svg",
  12997. extra: 1900 / 1825,
  12998. bottom: 0.045
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Nano",
  13005. height: math.unit(1, "nm")
  13006. },
  13007. {
  13008. name: "Megamicro",
  13009. height: math.unit(1, "mm")
  13010. },
  13011. {
  13012. name: "Micro",
  13013. height: math.unit(3, "inches")
  13014. },
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(7 + 5 / 12, "feet"),
  13018. default: true
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(30, "feet")
  13023. },
  13024. {
  13025. name: "Megamacro",
  13026. height: math.unit(3500, "feet")
  13027. },
  13028. {
  13029. name: "Teramacro",
  13030. height: math.unit(500000, "miles")
  13031. },
  13032. {
  13033. name: "Petamacro",
  13034. height: math.unit(50000000000000000, "parsecs")
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13040. {
  13041. front: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(150, "lb"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/ilisha-devya/front.svg",
  13047. extra: 1,
  13048. bottom: 0.175
  13049. }
  13050. },
  13051. back: {
  13052. height: math.unit(6, "feet"),
  13053. weight: math.unit(150, "lb"),
  13054. name: "Back",
  13055. image: {
  13056. source: "./media/characters/ilisha-devya/back.svg",
  13057. extra: 1,
  13058. bottom: 0.015
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Macro",
  13065. height: math.unit(500, "feet"),
  13066. default: true
  13067. },
  13068. {
  13069. name: "Megamacro",
  13070. height: math.unit(10, "miles")
  13071. },
  13072. {
  13073. name: "Gigamacro",
  13074. height: math.unit(100000, "miles")
  13075. },
  13076. {
  13077. name: "Examacro",
  13078. height: math.unit(1e9, "lightyears")
  13079. },
  13080. {
  13081. name: "Omniversal",
  13082. height: math.unit(1e33, "lightyears")
  13083. },
  13084. {
  13085. name: "Beyond Infinite",
  13086. height: math.unit(1e100, "lightyears")
  13087. },
  13088. ]
  13089. ))
  13090. characterMakers.push(() => makeCharacter(
  13091. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13092. {
  13093. Side: {
  13094. height: math.unit(6, "feet"),
  13095. weight: math.unit(150, "lb"),
  13096. name: "Side",
  13097. image: {
  13098. source: "./media/characters/mira/side.svg",
  13099. extra: 900 / 799,
  13100. bottom: 0.02
  13101. }
  13102. },
  13103. },
  13104. [
  13105. {
  13106. name: "Human Size",
  13107. height: math.unit(6, "feet")
  13108. },
  13109. {
  13110. name: "Macro",
  13111. height: math.unit(100, "feet"),
  13112. default: true
  13113. },
  13114. {
  13115. name: "Megamacro",
  13116. height: math.unit(10, "miles")
  13117. },
  13118. {
  13119. name: "Gigamacro",
  13120. height: math.unit(25000, "miles")
  13121. },
  13122. {
  13123. name: "Teramacro",
  13124. height: math.unit(300, "AU")
  13125. },
  13126. {
  13127. name: "Full Size",
  13128. height: math.unit(4.5e10, "lightyears")
  13129. },
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13134. {
  13135. front: {
  13136. height: math.unit(6, "feet"),
  13137. weight: math.unit(150, "lb"),
  13138. name: "Front",
  13139. image: {
  13140. source: "./media/characters/holly/front.svg",
  13141. extra: 639 / 606
  13142. }
  13143. },
  13144. back: {
  13145. height: math.unit(6, "feet"),
  13146. weight: math.unit(150, "lb"),
  13147. name: "Back",
  13148. image: {
  13149. source: "./media/characters/holly/back.svg",
  13150. extra: 623 / 598
  13151. }
  13152. },
  13153. frontWorking: {
  13154. height: math.unit(6, "feet"),
  13155. weight: math.unit(150, "lb"),
  13156. name: "Front (Working)",
  13157. image: {
  13158. source: "./media/characters/holly/front-working.svg",
  13159. extra: 607 / 577,
  13160. bottom: 0.048
  13161. }
  13162. },
  13163. },
  13164. [
  13165. {
  13166. name: "Normal",
  13167. height: math.unit(12 + 3 / 12, "feet"),
  13168. default: true
  13169. },
  13170. ]
  13171. ))
  13172. characterMakers.push(() => makeCharacter(
  13173. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13174. {
  13175. front: {
  13176. height: math.unit(6, "feet"),
  13177. weight: math.unit(150, "lb"),
  13178. name: "Front",
  13179. image: {
  13180. source: "./media/characters/porter/front.svg",
  13181. extra: 1,
  13182. bottom: 0.01
  13183. }
  13184. },
  13185. frontRobes: {
  13186. height: math.unit(6, "feet"),
  13187. weight: math.unit(150, "lb"),
  13188. name: "Front (Robes)",
  13189. image: {
  13190. source: "./media/characters/porter/front-robes.svg",
  13191. extra: 1.01,
  13192. bottom: 0.01
  13193. }
  13194. },
  13195. },
  13196. [
  13197. {
  13198. name: "Normal",
  13199. height: math.unit(11 + 9 / 12, "feet"),
  13200. default: true
  13201. },
  13202. ]
  13203. ))
  13204. characterMakers.push(() => makeCharacter(
  13205. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13206. {
  13207. legendary: {
  13208. height: math.unit(6, "feet"),
  13209. weight: math.unit(150, "lb"),
  13210. name: "Legendary",
  13211. image: {
  13212. source: "./media/characters/lucy/legendary.svg",
  13213. extra: 1355 / 1100,
  13214. bottom: 0.045
  13215. }
  13216. },
  13217. },
  13218. [
  13219. {
  13220. name: "Legendary",
  13221. height: math.unit(86882 * 2, "miles"),
  13222. default: true
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13228. {
  13229. front: {
  13230. height: math.unit(6, "feet"),
  13231. weight: math.unit(150, "lb"),
  13232. name: "Front",
  13233. image: {
  13234. source: "./media/characters/drusilla/front.svg",
  13235. extra: 678 / 635,
  13236. bottom: 0.03
  13237. }
  13238. },
  13239. back: {
  13240. height: math.unit(6, "feet"),
  13241. weight: math.unit(150, "lb"),
  13242. name: "Back",
  13243. image: {
  13244. source: "./media/characters/drusilla/back.svg",
  13245. extra: 678 / 635,
  13246. bottom: 0.005
  13247. }
  13248. },
  13249. },
  13250. [
  13251. {
  13252. name: "Macro",
  13253. height: math.unit(100, "feet")
  13254. },
  13255. {
  13256. name: "Canon Height",
  13257. height: math.unit(2000, "feet"),
  13258. default: true
  13259. },
  13260. ]
  13261. ))
  13262. characterMakers.push(() => makeCharacter(
  13263. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13264. {
  13265. front: {
  13266. height: math.unit(6, "feet"),
  13267. weight: math.unit(180, "lb"),
  13268. name: "Front",
  13269. image: {
  13270. source: "./media/characters/renard-thatch/front.svg",
  13271. extra: 2411 / 2275,
  13272. bottom: 0.01
  13273. }
  13274. },
  13275. frontPosing: {
  13276. height: math.unit(6, "feet"),
  13277. weight: math.unit(180, "lb"),
  13278. name: "Front (Posing)",
  13279. image: {
  13280. source: "./media/characters/renard-thatch/front-posing.svg",
  13281. extra: 2381 / 2261,
  13282. bottom: 0.01
  13283. }
  13284. },
  13285. back: {
  13286. height: math.unit(6, "feet"),
  13287. weight: math.unit(180, "lb"),
  13288. name: "Back",
  13289. image: {
  13290. source: "./media/characters/renard-thatch/back.svg",
  13291. extra: 2428 / 2288
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Micro",
  13298. height: math.unit(3, "inches")
  13299. },
  13300. {
  13301. name: "Default",
  13302. height: math.unit(6, "feet"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Macro",
  13307. height: math.unit(75, "feet")
  13308. },
  13309. ]
  13310. ))
  13311. characterMakers.push(() => makeCharacter(
  13312. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13313. {
  13314. front: {
  13315. height: math.unit(1450, "feet"),
  13316. weight: math.unit(1.21e6, "tons"),
  13317. name: "Front",
  13318. image: {
  13319. source: "./media/characters/sekvra/front.svg",
  13320. extra: 1,
  13321. bottom: 0.03
  13322. }
  13323. },
  13324. frontClothed: {
  13325. height: math.unit(1450, "feet"),
  13326. weight: math.unit(1.21e6, "tons"),
  13327. name: "Front (Clothed)",
  13328. image: {
  13329. source: "./media/characters/sekvra/front-clothed.svg",
  13330. extra: 1,
  13331. bottom: 0.03
  13332. }
  13333. },
  13334. side: {
  13335. height: math.unit(1450, "feet"),
  13336. weight: math.unit(1.21e6, "tons"),
  13337. name: "Side",
  13338. image: {
  13339. source: "./media/characters/sekvra/side.svg",
  13340. extra: 1,
  13341. bottom: 0.025
  13342. }
  13343. },
  13344. back: {
  13345. height: math.unit(1450, "feet"),
  13346. weight: math.unit(1.21e6, "tons"),
  13347. name: "Back",
  13348. image: {
  13349. source: "./media/characters/sekvra/back.svg",
  13350. extra: 1,
  13351. bottom: 0.005
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Macro",
  13358. height: math.unit(1450, "feet"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Megamacro",
  13363. height: math.unit(15000, "feet")
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(6, "feet"),
  13372. weight: math.unit(150, "lb"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/carmine/front.svg",
  13376. extra: 1,
  13377. bottom: 0.035
  13378. }
  13379. },
  13380. frontArmor: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(150, "lb"),
  13383. name: "Front (Armor)",
  13384. image: {
  13385. source: "./media/characters/carmine/front-armor.svg",
  13386. extra: 1,
  13387. bottom: 0.035
  13388. }
  13389. },
  13390. },
  13391. [
  13392. {
  13393. name: "Large",
  13394. height: math.unit(1, "mile")
  13395. },
  13396. {
  13397. name: "Huge",
  13398. height: math.unit(40, "miles"),
  13399. default: true
  13400. },
  13401. {
  13402. name: "Colossal",
  13403. height: math.unit(2500, "miles")
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Elyssia", species: ["banchofossa"], 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/elyssia/front.svg",
  13416. extra: 2201 / 2035,
  13417. bottom: 0.05
  13418. }
  13419. },
  13420. frontClothed: {
  13421. height: math.unit(6, "feet"),
  13422. weight: math.unit(150, "lb"),
  13423. name: "Front (Clothed)",
  13424. image: {
  13425. source: "./media/characters/elyssia/front-clothed.svg",
  13426. extra: 2201 / 2035,
  13427. bottom: 0.05
  13428. }
  13429. },
  13430. back: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(150, "lb"),
  13433. name: "Back",
  13434. image: {
  13435. source: "./media/characters/elyssia/back.svg",
  13436. extra: 2201 / 2035,
  13437. bottom: 0.013
  13438. }
  13439. },
  13440. },
  13441. [
  13442. {
  13443. name: "Smaller",
  13444. height: math.unit(150, "feet")
  13445. },
  13446. {
  13447. name: "Standard",
  13448. height: math.unit(1400, "feet"),
  13449. default: true
  13450. },
  13451. {
  13452. name: "Distracted",
  13453. height: math.unit(15000, "feet")
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13459. {
  13460. front: {
  13461. height: math.unit(7 + 4 / 12, "feet"),
  13462. weight: math.unit(500, "lb"),
  13463. name: "Front",
  13464. image: {
  13465. source: "./media/characters/geno-maxwell/front.svg",
  13466. extra: 2207 / 2040,
  13467. bottom: 0.015
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Micro",
  13474. height: math.unit(3, "inches")
  13475. },
  13476. {
  13477. name: "Normal",
  13478. height: math.unit(7 + 4 / 12, "feet"),
  13479. default: true
  13480. },
  13481. {
  13482. name: "Macro",
  13483. height: math.unit(220, "feet")
  13484. },
  13485. {
  13486. name: "Megamacro",
  13487. height: math.unit(11, "miles")
  13488. },
  13489. ]
  13490. ))
  13491. characterMakers.push(() => makeCharacter(
  13492. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13493. {
  13494. front: {
  13495. height: math.unit(7 + 4 / 12, "feet"),
  13496. weight: math.unit(500, "lb"),
  13497. name: "Front",
  13498. image: {
  13499. source: "./media/characters/regena-maxwell/front.svg",
  13500. extra: 3115 / 2770,
  13501. bottom: 0.02
  13502. }
  13503. },
  13504. },
  13505. [
  13506. {
  13507. name: "Normal",
  13508. height: math.unit(7 + 4 / 12, "feet"),
  13509. default: true
  13510. },
  13511. {
  13512. name: "Macro",
  13513. height: math.unit(220, "feet")
  13514. },
  13515. {
  13516. name: "Megamacro",
  13517. height: math.unit(11, "miles")
  13518. },
  13519. ]
  13520. ))
  13521. characterMakers.push(() => makeCharacter(
  13522. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13523. {
  13524. front: {
  13525. height: math.unit(6, "feet"),
  13526. weight: math.unit(150, "lb"),
  13527. name: "Front",
  13528. image: {
  13529. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13530. extra: 860 / 690,
  13531. bottom: 0.03
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Normal",
  13538. height: math.unit(1.7, "meters"),
  13539. default: true
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(6, "feet"),
  13548. weight: math.unit(150, "lb"),
  13549. name: "Front",
  13550. image: {
  13551. source: "./media/characters/quilly/front.svg",
  13552. extra: 890 / 776
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Gigamacro",
  13559. height: math.unit(404090, "miles"),
  13560. default: true
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13566. {
  13567. front: {
  13568. height: math.unit(7 + 8 / 12, "feet"),
  13569. weight: math.unit(350, "lb"),
  13570. name: "Front",
  13571. image: {
  13572. source: "./media/characters/tempest/front.svg",
  13573. extra: 1175 / 1086,
  13574. bottom: 0.02
  13575. }
  13576. },
  13577. },
  13578. [
  13579. {
  13580. name: "Normal",
  13581. height: math.unit(7 + 8 / 12, "feet"),
  13582. default: true
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13588. {
  13589. side: {
  13590. height: math.unit(4 + 5 / 12, "feet"),
  13591. weight: math.unit(80, "lb"),
  13592. name: "Side",
  13593. image: {
  13594. source: "./media/characters/rodger/side.svg",
  13595. extra: 1235 / 1118
  13596. }
  13597. },
  13598. },
  13599. [
  13600. {
  13601. name: "Micro",
  13602. height: math.unit(1, "inch")
  13603. },
  13604. {
  13605. name: "Normal",
  13606. height: math.unit(4 + 5 / 12, "feet"),
  13607. default: true
  13608. },
  13609. {
  13610. name: "Macro",
  13611. height: math.unit(120, "feet")
  13612. },
  13613. ]
  13614. ))
  13615. characterMakers.push(() => makeCharacter(
  13616. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13617. {
  13618. front: {
  13619. height: math.unit(6, "feet"),
  13620. weight: math.unit(150, "lb"),
  13621. name: "Front",
  13622. image: {
  13623. source: "./media/characters/danyel/front.svg",
  13624. extra: 1185 / 1123,
  13625. bottom: 0.05
  13626. }
  13627. },
  13628. },
  13629. [
  13630. {
  13631. name: "Shrunken",
  13632. height: math.unit(0.5, "mm")
  13633. },
  13634. {
  13635. name: "Micro",
  13636. height: math.unit(1, "mm"),
  13637. default: true
  13638. },
  13639. {
  13640. name: "Upsized",
  13641. height: math.unit(5 + 5 / 12, "feet")
  13642. },
  13643. ]
  13644. ))
  13645. characterMakers.push(() => makeCharacter(
  13646. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13647. {
  13648. front: {
  13649. height: math.unit(5 + 6 / 12, "feet"),
  13650. weight: math.unit(200, "lb"),
  13651. name: "Front",
  13652. image: {
  13653. source: "./media/characters/vivian-bijoux/front.svg",
  13654. extra: 1,
  13655. bottom: 0.072
  13656. }
  13657. },
  13658. },
  13659. [
  13660. {
  13661. name: "Normal",
  13662. height: math.unit(5 + 6 / 12, "feet"),
  13663. default: true
  13664. },
  13665. {
  13666. name: "Bad Dream",
  13667. height: math.unit(500, "feet")
  13668. },
  13669. {
  13670. name: "Nightmare",
  13671. height: math.unit(500, "miles")
  13672. },
  13673. ]
  13674. ))
  13675. characterMakers.push(() => makeCharacter(
  13676. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13677. {
  13678. front: {
  13679. height: math.unit(6 + 1 / 12, "feet"),
  13680. weight: math.unit(260, "lb"),
  13681. name: "Front",
  13682. image: {
  13683. source: "./media/characters/zeta/front.svg",
  13684. extra: 1968 / 1889,
  13685. bottom: 0.06
  13686. }
  13687. },
  13688. back: {
  13689. height: math.unit(6 + 1 / 12, "feet"),
  13690. weight: math.unit(260, "lb"),
  13691. name: "Back",
  13692. image: {
  13693. source: "./media/characters/zeta/back.svg",
  13694. extra: 1944 / 1858,
  13695. bottom: 0.03
  13696. }
  13697. },
  13698. hand: {
  13699. height: math.unit(1.112, "feet"),
  13700. name: "Hand",
  13701. image: {
  13702. source: "./media/characters/zeta/hand.svg"
  13703. }
  13704. },
  13705. foot: {
  13706. height: math.unit(1.48, "feet"),
  13707. name: "Foot",
  13708. image: {
  13709. source: "./media/characters/zeta/foot.svg"
  13710. }
  13711. },
  13712. },
  13713. [
  13714. {
  13715. name: "Micro",
  13716. height: math.unit(6, "inches")
  13717. },
  13718. {
  13719. name: "Normal",
  13720. height: math.unit(6 + 1 / 12, "feet"),
  13721. default: true
  13722. },
  13723. {
  13724. name: "Macro",
  13725. height: math.unit(20, "feet")
  13726. },
  13727. ]
  13728. ))
  13729. characterMakers.push(() => makeCharacter(
  13730. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13731. {
  13732. front: {
  13733. height: math.unit(6, "feet"),
  13734. weight: math.unit(150, "lb"),
  13735. name: "Front",
  13736. image: {
  13737. source: "./media/characters/jamie-larsen/front.svg",
  13738. extra: 962 / 933,
  13739. bottom: 0.02
  13740. }
  13741. },
  13742. back: {
  13743. height: math.unit(6, "feet"),
  13744. weight: math.unit(150, "lb"),
  13745. name: "Back",
  13746. image: {
  13747. source: "./media/characters/jamie-larsen/back.svg",
  13748. extra: 997 / 946
  13749. }
  13750. },
  13751. },
  13752. [
  13753. {
  13754. name: "Macro",
  13755. height: math.unit(28 + 7 / 12, "feet"),
  13756. default: true
  13757. },
  13758. {
  13759. name: "Macro+",
  13760. height: math.unit(180, "feet")
  13761. },
  13762. {
  13763. name: "Megamacro",
  13764. height: math.unit(10, "miles")
  13765. },
  13766. {
  13767. name: "Gigamacro",
  13768. height: math.unit(200000, "miles")
  13769. },
  13770. ]
  13771. ))
  13772. characterMakers.push(() => makeCharacter(
  13773. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13774. {
  13775. front: {
  13776. height: math.unit(6, "feet"),
  13777. weight: math.unit(120, "lb"),
  13778. name: "Front",
  13779. image: {
  13780. source: "./media/characters/vance/front.svg",
  13781. extra: 1980 / 1890,
  13782. bottom: 0.09
  13783. }
  13784. },
  13785. back: {
  13786. height: math.unit(6, "feet"),
  13787. weight: math.unit(120, "lb"),
  13788. name: "Back",
  13789. image: {
  13790. source: "./media/characters/vance/back.svg",
  13791. extra: 2081 / 1994,
  13792. bottom: 0.014
  13793. }
  13794. },
  13795. hand: {
  13796. height: math.unit(0.88, "feet"),
  13797. name: "Hand",
  13798. image: {
  13799. source: "./media/characters/vance/hand.svg"
  13800. }
  13801. },
  13802. foot: {
  13803. height: math.unit(0.64, "feet"),
  13804. name: "Foot",
  13805. image: {
  13806. source: "./media/characters/vance/foot.svg"
  13807. }
  13808. },
  13809. },
  13810. [
  13811. {
  13812. name: "Small",
  13813. height: math.unit(90, "feet"),
  13814. default: true
  13815. },
  13816. {
  13817. name: "Macro",
  13818. height: math.unit(100, "meters")
  13819. },
  13820. {
  13821. name: "Megamacro",
  13822. height: math.unit(15, "miles")
  13823. },
  13824. ]
  13825. ))
  13826. characterMakers.push(() => makeCharacter(
  13827. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13828. {
  13829. front: {
  13830. height: math.unit(6, "feet"),
  13831. weight: math.unit(180, "lb"),
  13832. name: "Front",
  13833. image: {
  13834. source: "./media/characters/xochitl/front.svg",
  13835. extra: 2297 / 2261,
  13836. bottom: 0.065
  13837. }
  13838. },
  13839. back: {
  13840. height: math.unit(6, "feet"),
  13841. weight: math.unit(180, "lb"),
  13842. name: "Back",
  13843. image: {
  13844. source: "./media/characters/xochitl/back.svg",
  13845. extra: 2386 / 2354,
  13846. bottom: 0.01
  13847. }
  13848. },
  13849. foot: {
  13850. height: math.unit(6 / 5 * 1.15, "feet"),
  13851. weight: math.unit(150, "lb"),
  13852. name: "Foot",
  13853. image: {
  13854. source: "./media/characters/xochitl/foot.svg"
  13855. }
  13856. },
  13857. },
  13858. [
  13859. {
  13860. name: "Macro",
  13861. height: math.unit(80, "feet")
  13862. },
  13863. {
  13864. name: "Macro+",
  13865. height: math.unit(400, "feet"),
  13866. default: true
  13867. },
  13868. {
  13869. name: "Gigamacro",
  13870. height: math.unit(80000, "miles")
  13871. },
  13872. {
  13873. name: "Gigamacro+",
  13874. height: math.unit(400000, "miles")
  13875. },
  13876. {
  13877. name: "Teramacro",
  13878. height: math.unit(300, "AU")
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13884. {
  13885. front: {
  13886. height: math.unit(6, "feet"),
  13887. weight: math.unit(150, "lb"),
  13888. name: "Front",
  13889. image: {
  13890. source: "./media/characters/vincent/front.svg",
  13891. extra: 1130 / 1080,
  13892. bottom: 0.055
  13893. }
  13894. },
  13895. beak: {
  13896. height: math.unit(6 * 0.1, "feet"),
  13897. name: "Beak",
  13898. image: {
  13899. source: "./media/characters/vincent/beak.svg"
  13900. }
  13901. },
  13902. hand: {
  13903. height: math.unit(6 * 0.85, "feet"),
  13904. weight: math.unit(150, "lb"),
  13905. name: "Hand",
  13906. image: {
  13907. source: "./media/characters/vincent/hand.svg"
  13908. }
  13909. },
  13910. foot: {
  13911. height: math.unit(6 * 0.19, "feet"),
  13912. weight: math.unit(150, "lb"),
  13913. name: "Foot",
  13914. image: {
  13915. source: "./media/characters/vincent/foot.svg"
  13916. }
  13917. },
  13918. },
  13919. [
  13920. {
  13921. name: "Base",
  13922. height: math.unit(6 + 5 / 12, "feet"),
  13923. default: true
  13924. },
  13925. {
  13926. name: "Macro",
  13927. height: math.unit(300, "feet")
  13928. },
  13929. {
  13930. name: "Megamacro",
  13931. height: math.unit(2, "miles")
  13932. },
  13933. {
  13934. name: "Gigamacro",
  13935. height: math.unit(1000, "miles")
  13936. },
  13937. ]
  13938. ))
  13939. characterMakers.push(() => makeCharacter(
  13940. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13941. {
  13942. front: {
  13943. height: math.unit(2, "meters"),
  13944. weight: math.unit(500, "kg"),
  13945. name: "Front",
  13946. image: {
  13947. source: "./media/characters/coatl/front.svg",
  13948. extra: 3948 / 3500,
  13949. bottom: 0.082
  13950. }
  13951. },
  13952. },
  13953. [
  13954. {
  13955. name: "Normal",
  13956. height: math.unit(4, "meters")
  13957. },
  13958. {
  13959. name: "Macro",
  13960. height: math.unit(100, "meters"),
  13961. default: true
  13962. },
  13963. {
  13964. name: "Macro+",
  13965. height: math.unit(300, "meters")
  13966. },
  13967. {
  13968. name: "Megamacro",
  13969. height: math.unit(3, "gigameters")
  13970. },
  13971. {
  13972. name: "Megamacro+",
  13973. height: math.unit(300, "terameters")
  13974. },
  13975. {
  13976. name: "Megamacro++",
  13977. height: math.unit(3, "lightyears")
  13978. },
  13979. ]
  13980. ))
  13981. characterMakers.push(() => makeCharacter(
  13982. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13983. {
  13984. front: {
  13985. height: math.unit(6, "feet"),
  13986. weight: math.unit(50, "kg"),
  13987. name: "front",
  13988. image: {
  13989. source: "./media/characters/shiroryu/front.svg",
  13990. extra: 1990 / 1935
  13991. }
  13992. },
  13993. },
  13994. [
  13995. {
  13996. name: "Mortal Mingling",
  13997. height: math.unit(3, "meters")
  13998. },
  13999. {
  14000. name: "Kaiju-ish",
  14001. height: math.unit(250, "meters")
  14002. },
  14003. {
  14004. name: "Somewhat Godly",
  14005. height: math.unit(400, "km"),
  14006. default: true
  14007. },
  14008. {
  14009. name: "Planetary",
  14010. height: math.unit(300, "megameters")
  14011. },
  14012. {
  14013. name: "Galaxy-dwarfing",
  14014. height: math.unit(450, "kiloparsecs")
  14015. },
  14016. {
  14017. name: "Universe Eater",
  14018. height: math.unit(150, "gigaparsecs")
  14019. },
  14020. {
  14021. name: "Almost Immeasurable",
  14022. height: math.unit(1.3e266, "yottaparsecs")
  14023. },
  14024. ]
  14025. ))
  14026. characterMakers.push(() => makeCharacter(
  14027. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14028. {
  14029. front: {
  14030. height: math.unit(6, "feet"),
  14031. weight: math.unit(150, "lb"),
  14032. name: "Front",
  14033. image: {
  14034. source: "./media/characters/umeko/front.svg",
  14035. extra: 1,
  14036. bottom: 0.019
  14037. }
  14038. },
  14039. frontArmored: {
  14040. height: math.unit(6, "feet"),
  14041. weight: math.unit(150, "lb"),
  14042. name: "Front (Armored)",
  14043. image: {
  14044. source: "./media/characters/umeko/front-armored.svg",
  14045. extra: 1,
  14046. bottom: 0.021
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Macro",
  14053. height: math.unit(220, "feet"),
  14054. default: true
  14055. },
  14056. {
  14057. name: "Guardian Dragon",
  14058. height: math.unit(50, "miles")
  14059. },
  14060. {
  14061. name: "Cosmic",
  14062. height: math.unit(800000, "miles")
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14068. {
  14069. front: {
  14070. height: math.unit(6, "feet"),
  14071. weight: math.unit(150, "lb"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/cassidy/front.svg",
  14075. extra: 1,
  14076. bottom: 0.043
  14077. }
  14078. },
  14079. },
  14080. [
  14081. {
  14082. name: "Canon Height",
  14083. height: math.unit(120, "feet"),
  14084. default: true
  14085. },
  14086. {
  14087. name: "Macro+",
  14088. height: math.unit(400, "feet")
  14089. },
  14090. {
  14091. name: "Macro++",
  14092. height: math.unit(4000, "feet")
  14093. },
  14094. {
  14095. name: "Megamacro",
  14096. height: math.unit(3, "miles")
  14097. },
  14098. ]
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14102. {
  14103. front: {
  14104. height: math.unit(6, "feet"),
  14105. weight: math.unit(150, "lb"),
  14106. name: "Front",
  14107. image: {
  14108. source: "./media/characters/isaac/front.svg",
  14109. extra: 896 / 815,
  14110. bottom: 0.11
  14111. }
  14112. },
  14113. },
  14114. [
  14115. {
  14116. name: "Human Size",
  14117. height: math.unit(8, "feet"),
  14118. default: true
  14119. },
  14120. {
  14121. name: "Macro",
  14122. height: math.unit(400, "feet")
  14123. },
  14124. {
  14125. name: "Megamacro",
  14126. height: math.unit(50, "miles")
  14127. },
  14128. {
  14129. name: "Canon Height",
  14130. height: math.unit(200, "AU")
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14136. {
  14137. front: {
  14138. height: math.unit(6, "feet"),
  14139. weight: math.unit(72, "kg"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/sleekit/front.svg",
  14143. extra: 4693 / 4487,
  14144. bottom: 0.012
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Minimum Height",
  14151. height: math.unit(10, "meters")
  14152. },
  14153. {
  14154. name: "Smaller",
  14155. height: math.unit(25, "meters")
  14156. },
  14157. {
  14158. name: "Larger",
  14159. height: math.unit(38, "meters"),
  14160. default: true
  14161. },
  14162. {
  14163. name: "Maximum height",
  14164. height: math.unit(100, "meters")
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(6, "feet"),
  14173. weight: math.unit(150, "lb"),
  14174. name: "Front",
  14175. image: {
  14176. source: "./media/characters/nillia/front.svg",
  14177. extra: 2195 / 2037,
  14178. bottom: 0.005
  14179. }
  14180. },
  14181. back: {
  14182. height: math.unit(6, "feet"),
  14183. weight: math.unit(150, "lb"),
  14184. name: "Back",
  14185. image: {
  14186. source: "./media/characters/nillia/back.svg",
  14187. extra: 2195 / 2037,
  14188. bottom: 0.005
  14189. }
  14190. },
  14191. },
  14192. [
  14193. {
  14194. name: "Canon Height",
  14195. height: math.unit(489, "feet"),
  14196. default: true
  14197. }
  14198. ]
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14202. {
  14203. front: {
  14204. height: math.unit(6, "feet"),
  14205. weight: math.unit(150, "lb"),
  14206. name: "Front",
  14207. image: {
  14208. source: "./media/characters/mesmyriza/front.svg",
  14209. extra: 2067 / 1784,
  14210. bottom: 0.035
  14211. }
  14212. },
  14213. foot: {
  14214. height: math.unit(6 / (250 / 35), "feet"),
  14215. name: "Foot",
  14216. image: {
  14217. source: "./media/characters/mesmyriza/foot.svg"
  14218. }
  14219. },
  14220. },
  14221. [
  14222. {
  14223. name: "Macro",
  14224. height: math.unit(457, "meters"),
  14225. default: true
  14226. },
  14227. {
  14228. name: "Megamacro",
  14229. height: math.unit(8, "megameters")
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14235. {
  14236. front: {
  14237. height: math.unit(6, "feet"),
  14238. weight: math.unit(250, "lb"),
  14239. name: "Front",
  14240. image: {
  14241. source: "./media/characters/saudade/front.svg",
  14242. extra: 1172 / 1139,
  14243. bottom: 0.035
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Micro",
  14250. height: math.unit(3, "inches")
  14251. },
  14252. {
  14253. name: "Normal",
  14254. height: math.unit(6, "feet"),
  14255. default: true
  14256. },
  14257. {
  14258. name: "Macro",
  14259. height: math.unit(50, "feet")
  14260. },
  14261. {
  14262. name: "Megamacro",
  14263. height: math.unit(2800, "feet")
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14269. {
  14270. front: {
  14271. height: math.unit(5 + 4 / 12, "feet"),
  14272. weight: math.unit(100, "lb"),
  14273. name: "Front",
  14274. image: {
  14275. source: "./media/characters/keireer/front.svg",
  14276. extra: 716 / 666,
  14277. bottom: 0.05
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(5 + 4 / 12, "feet"),
  14285. default: true
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(6, "feet"),
  14294. weight: math.unit(90, "kg"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/mirja/front.svg",
  14298. extra: 1789 / 1683,
  14299. bottom: 0.05
  14300. }
  14301. },
  14302. frontDressed: {
  14303. height: math.unit(6, "feet"),
  14304. weight: math.unit(90, "lb"),
  14305. name: "Front (Dressed)",
  14306. image: {
  14307. source: "./media/characters/mirja/front-dressed.svg",
  14308. extra: 1789 / 1683,
  14309. bottom: 0.05
  14310. }
  14311. },
  14312. back: {
  14313. height: math.unit(6, "feet"),
  14314. weight: math.unit(90, "lb"),
  14315. name: "Back",
  14316. image: {
  14317. source: "./media/characters/mirja/back.svg",
  14318. extra: 953 / 917,
  14319. bottom: 0.017
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "\"Incognito\"",
  14326. height: math.unit(3, "meters")
  14327. },
  14328. {
  14329. name: "Strolling Size",
  14330. height: math.unit(15, "km")
  14331. },
  14332. {
  14333. name: "Larger Strolling Size",
  14334. height: math.unit(400, "km")
  14335. },
  14336. {
  14337. name: "Preferred Size",
  14338. height: math.unit(5000, "km")
  14339. },
  14340. {
  14341. name: "True Size",
  14342. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14343. default: true
  14344. },
  14345. ]
  14346. ))
  14347. characterMakers.push(() => makeCharacter(
  14348. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14349. {
  14350. front: {
  14351. height: math.unit(15, "feet"),
  14352. weight: math.unit(880, "kg"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/nightraver/front.svg",
  14356. extra: 2444 / 2160,
  14357. bottom: 0.027
  14358. }
  14359. },
  14360. back: {
  14361. height: math.unit(15, "feet"),
  14362. weight: math.unit(880, "kg"),
  14363. name: "Back",
  14364. image: {
  14365. source: "./media/characters/nightraver/back.svg",
  14366. extra: 2309 / 2180,
  14367. bottom: 0.005
  14368. }
  14369. },
  14370. sole: {
  14371. height: math.unit(2.878, "feet"),
  14372. name: "Sole",
  14373. image: {
  14374. source: "./media/characters/nightraver/sole.svg"
  14375. }
  14376. },
  14377. foot: {
  14378. height: math.unit(2.285, "feet"),
  14379. name: "Foot",
  14380. image: {
  14381. source: "./media/characters/nightraver/foot.svg"
  14382. }
  14383. },
  14384. maw: {
  14385. height: math.unit(2.67, "feet"),
  14386. name: "Maw",
  14387. image: {
  14388. source: "./media/characters/nightraver/maw.svg"
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Micro",
  14395. height: math.unit(1, "cm")
  14396. },
  14397. {
  14398. name: "Normal",
  14399. height: math.unit(15, "feet"),
  14400. default: true
  14401. },
  14402. {
  14403. name: "Macro",
  14404. height: math.unit(300, "feet")
  14405. },
  14406. {
  14407. name: "Megamacro",
  14408. height: math.unit(300, "miles")
  14409. },
  14410. {
  14411. name: "Gigamacro",
  14412. height: math.unit(10000, "miles")
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14418. {
  14419. side: {
  14420. height: math.unit(2, "inches"),
  14421. weight: math.unit(5, "grams"),
  14422. name: "Side",
  14423. image: {
  14424. source: "./media/characters/arc/side.svg"
  14425. }
  14426. },
  14427. },
  14428. [
  14429. {
  14430. name: "Micro",
  14431. height: math.unit(2, "inches"),
  14432. default: true
  14433. },
  14434. ]
  14435. ))
  14436. characterMakers.push(() => makeCharacter(
  14437. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14438. {
  14439. front: {
  14440. height: math.unit(1.1938, "meters"),
  14441. weight: math.unit(54, "kg"),
  14442. name: "Front",
  14443. image: {
  14444. source: "./media/characters/nebula-shahar/front.svg",
  14445. extra: 1642 / 1436,
  14446. bottom: 0.06
  14447. }
  14448. },
  14449. },
  14450. [
  14451. {
  14452. name: "Megamicro",
  14453. height: math.unit(0.3, "mm")
  14454. },
  14455. {
  14456. name: "Micro",
  14457. height: math.unit(3, "cm")
  14458. },
  14459. {
  14460. name: "Normal",
  14461. height: math.unit(138, "cm"),
  14462. default: true
  14463. },
  14464. {
  14465. name: "Macro",
  14466. height: math.unit(30, "m")
  14467. },
  14468. ]
  14469. ))
  14470. characterMakers.push(() => makeCharacter(
  14471. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14472. {
  14473. front: {
  14474. height: math.unit(5.24, "feet"),
  14475. weight: math.unit(150, "lb"),
  14476. name: "Front",
  14477. image: {
  14478. source: "./media/characters/shayla/front.svg",
  14479. extra: 1512 / 1414,
  14480. bottom: 0.01
  14481. }
  14482. },
  14483. back: {
  14484. height: math.unit(5.24, "feet"),
  14485. weight: math.unit(150, "lb"),
  14486. name: "Back",
  14487. image: {
  14488. source: "./media/characters/shayla/back.svg",
  14489. extra: 1512 / 1414
  14490. }
  14491. },
  14492. hand: {
  14493. height: math.unit(0.7781496062992126, "feet"),
  14494. name: "Hand",
  14495. image: {
  14496. source: "./media/characters/shayla/hand.svg"
  14497. }
  14498. },
  14499. foot: {
  14500. height: math.unit(1.4206036745406823, "feet"),
  14501. name: "Foot",
  14502. image: {
  14503. source: "./media/characters/shayla/foot.svg"
  14504. }
  14505. },
  14506. },
  14507. [
  14508. {
  14509. name: "Micro",
  14510. height: math.unit(0.32, "feet")
  14511. },
  14512. {
  14513. name: "Normal",
  14514. height: math.unit(5.24, "feet"),
  14515. default: true
  14516. },
  14517. {
  14518. name: "Macro",
  14519. height: math.unit(492.12, "feet")
  14520. },
  14521. {
  14522. name: "Megamacro",
  14523. height: math.unit(186.41, "miles")
  14524. },
  14525. ]
  14526. ))
  14527. characterMakers.push(() => makeCharacter(
  14528. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14529. {
  14530. front: {
  14531. height: math.unit(2.2, "m"),
  14532. weight: math.unit(120, "kg"),
  14533. name: "Front",
  14534. image: {
  14535. source: "./media/characters/pia-jr/front.svg",
  14536. extra: 1000 / 970,
  14537. bottom: 0.035
  14538. }
  14539. },
  14540. hand: {
  14541. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14542. name: "Hand",
  14543. image: {
  14544. source: "./media/characters/pia-jr/hand.svg"
  14545. }
  14546. },
  14547. paw: {
  14548. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14549. name: "Paw",
  14550. image: {
  14551. source: "./media/characters/pia-jr/paw.svg"
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "Micro",
  14558. height: math.unit(1.2, "cm")
  14559. },
  14560. {
  14561. name: "Normal",
  14562. height: math.unit(2.2, "m"),
  14563. default: true
  14564. },
  14565. {
  14566. name: "Macro",
  14567. height: math.unit(180, "m")
  14568. },
  14569. {
  14570. name: "Megamacro",
  14571. height: math.unit(420, "km")
  14572. },
  14573. ]
  14574. ))
  14575. characterMakers.push(() => makeCharacter(
  14576. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14577. {
  14578. front: {
  14579. height: math.unit(2, "m"),
  14580. weight: math.unit(115, "kg"),
  14581. name: "Front",
  14582. image: {
  14583. source: "./media/characters/pia-sr/front.svg",
  14584. extra: 760 / 730,
  14585. bottom: 0.015
  14586. }
  14587. },
  14588. back: {
  14589. height: math.unit(2, "m"),
  14590. weight: math.unit(115, "kg"),
  14591. name: "Back",
  14592. image: {
  14593. source: "./media/characters/pia-sr/back.svg",
  14594. extra: 760 / 730,
  14595. bottom: 0.01
  14596. }
  14597. },
  14598. hand: {
  14599. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14600. name: "Hand",
  14601. image: {
  14602. source: "./media/characters/pia-sr/hand.svg"
  14603. }
  14604. },
  14605. foot: {
  14606. height: math.unit(1.83, "feet"),
  14607. name: "Foot",
  14608. image: {
  14609. source: "./media/characters/pia-sr/foot.svg"
  14610. }
  14611. },
  14612. },
  14613. [
  14614. {
  14615. name: "Micro",
  14616. height: math.unit(88, "mm")
  14617. },
  14618. {
  14619. name: "Normal",
  14620. height: math.unit(2, "m"),
  14621. default: true
  14622. },
  14623. {
  14624. name: "Macro",
  14625. height: math.unit(200, "m")
  14626. },
  14627. {
  14628. name: "Megamacro",
  14629. height: math.unit(420, "km")
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14635. {
  14636. front: {
  14637. height: math.unit(8 + 2 / 12, "feet"),
  14638. weight: math.unit(300, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/kibibyte/front.svg",
  14642. extra: 2221 / 2098,
  14643. bottom: 0.04
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Normal",
  14650. height: math.unit(8 + 2 / 12, "feet"),
  14651. default: true
  14652. },
  14653. {
  14654. name: "Socialable Macro",
  14655. height: math.unit(50, "feet")
  14656. },
  14657. {
  14658. name: "Macro",
  14659. height: math.unit(300, "feet")
  14660. },
  14661. {
  14662. name: "Megamacro",
  14663. height: math.unit(500, "miles")
  14664. },
  14665. ]
  14666. ))
  14667. characterMakers.push(() => makeCharacter(
  14668. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14669. {
  14670. front: {
  14671. height: math.unit(6, "feet"),
  14672. weight: math.unit(150, "lb"),
  14673. name: "Front",
  14674. image: {
  14675. source: "./media/characters/felix/front.svg",
  14676. extra: 762 / 722,
  14677. bottom: 0.02
  14678. }
  14679. },
  14680. frontClothed: {
  14681. height: math.unit(6, "feet"),
  14682. weight: math.unit(150, "lb"),
  14683. name: "Front (Clothed)",
  14684. image: {
  14685. source: "./media/characters/felix/front-clothed.svg",
  14686. extra: 762 / 722,
  14687. bottom: 0.02
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(6 + 8 / 12, "feet"),
  14695. default: true
  14696. },
  14697. {
  14698. name: "Macro",
  14699. height: math.unit(2600, "feet")
  14700. },
  14701. {
  14702. name: "Megamacro",
  14703. height: math.unit(450, "miles")
  14704. },
  14705. ]
  14706. ))
  14707. characterMakers.push(() => makeCharacter(
  14708. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14709. {
  14710. front: {
  14711. height: math.unit(6 + 1 / 12, "feet"),
  14712. weight: math.unit(250, "lb"),
  14713. name: "Front",
  14714. image: {
  14715. source: "./media/characters/tobo/front.svg",
  14716. extra: 608 / 586,
  14717. bottom: 0.023
  14718. }
  14719. },
  14720. back: {
  14721. height: math.unit(6 + 1 / 12, "feet"),
  14722. weight: math.unit(250, "lb"),
  14723. name: "Back",
  14724. image: {
  14725. source: "./media/characters/tobo/back.svg",
  14726. extra: 608 / 586
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Nano",
  14733. height: math.unit(2, "nm")
  14734. },
  14735. {
  14736. name: "Megamicro",
  14737. height: math.unit(0.1, "mm")
  14738. },
  14739. {
  14740. name: "Micro",
  14741. height: math.unit(1, "inch"),
  14742. default: true
  14743. },
  14744. {
  14745. name: "Human-sized",
  14746. height: math.unit(6 + 1 / 12, "feet")
  14747. },
  14748. {
  14749. name: "Macro",
  14750. height: math.unit(250, "feet")
  14751. },
  14752. {
  14753. name: "Megamacro",
  14754. height: math.unit(75, "miles")
  14755. },
  14756. {
  14757. name: "Texas-sized",
  14758. height: math.unit(750, "miles")
  14759. },
  14760. {
  14761. name: "Teramacro",
  14762. height: math.unit(50000, "miles")
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(6, "feet"),
  14771. weight: math.unit(269, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/danny-kapowsky/front.svg",
  14775. extra: 766 / 736,
  14776. bottom: 0.044
  14777. }
  14778. },
  14779. back: {
  14780. height: math.unit(6, "feet"),
  14781. weight: math.unit(269, "lb"),
  14782. name: "Back",
  14783. image: {
  14784. source: "./media/characters/danny-kapowsky/back.svg",
  14785. extra: 797 / 760,
  14786. bottom: 0.025
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Macro",
  14793. height: math.unit(150, "feet"),
  14794. default: true
  14795. },
  14796. {
  14797. name: "Macro+",
  14798. height: math.unit(200, "feet")
  14799. },
  14800. {
  14801. name: "Macro++",
  14802. height: math.unit(300, "feet")
  14803. },
  14804. {
  14805. name: "Macro+++",
  14806. height: math.unit(400, "feet")
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14812. {
  14813. side: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(170, "lb"),
  14816. name: "Side",
  14817. image: {
  14818. source: "./media/characters/finn/side.svg",
  14819. extra: 1953 / 1807,
  14820. bottom: 0.057
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Megamacro",
  14827. height: math.unit(14445, "feet"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(5 + 6 / 12, "feet"),
  14837. weight: math.unit(125, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/roy/front.svg",
  14841. extra: 1,
  14842. bottom: 0.11
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Micro",
  14849. height: math.unit(3, "inches"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "Normal",
  14854. height: math.unit(5 + 6 / 12, "feet")
  14855. },
  14856. {
  14857. name: "Lesser Macro",
  14858. height: math.unit(60, "feet")
  14859. },
  14860. {
  14861. name: "Greater Macro",
  14862. height: math.unit(120, "feet")
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(6, "feet"),
  14871. weight: math.unit(100, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/aevsivs/front.svg",
  14875. extra: 1,
  14876. bottom: 0.03
  14877. }
  14878. },
  14879. back: {
  14880. height: math.unit(6, "feet"),
  14881. weight: math.unit(100, "lb"),
  14882. name: "Back",
  14883. image: {
  14884. source: "./media/characters/aevsivs/back.svg"
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Micro",
  14891. height: math.unit(2, "inches"),
  14892. default: true
  14893. },
  14894. {
  14895. name: "Normal",
  14896. height: math.unit(5, "feet")
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(5 + 7 / 12, "feet"),
  14905. weight: math.unit(159, "lb"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/hildegard/front.svg",
  14909. extra: 289 / 269,
  14910. bottom: 7.63 / 297.8
  14911. }
  14912. },
  14913. back: {
  14914. height: math.unit(5 + 7 / 12, "feet"),
  14915. weight: math.unit(159, "lb"),
  14916. name: "Back",
  14917. image: {
  14918. source: "./media/characters/hildegard/back.svg",
  14919. extra: 280 / 260,
  14920. bottom: 2.3 / 282
  14921. }
  14922. },
  14923. },
  14924. [
  14925. {
  14926. name: "Normal",
  14927. height: math.unit(5 + 7 / 12, "feet"),
  14928. default: true
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14934. {
  14935. bernard: {
  14936. height: math.unit(2 + 7 / 12, "feet"),
  14937. weight: math.unit(66, "lb"),
  14938. name: "Bernard",
  14939. rename: true,
  14940. image: {
  14941. source: "./media/characters/bernard-wilder/bernard.svg",
  14942. extra: 192 / 128,
  14943. bottom: 0.05
  14944. }
  14945. },
  14946. wilder: {
  14947. height: math.unit(5 + 8 / 12, "feet"),
  14948. weight: math.unit(143, "lb"),
  14949. name: "Wilder",
  14950. rename: true,
  14951. image: {
  14952. source: "./media/characters/bernard-wilder/wilder.svg",
  14953. extra: 361 / 312,
  14954. bottom: 0.02
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Normal",
  14961. height: math.unit(2 + 7 / 12, "feet"),
  14962. default: true
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14968. {
  14969. anthro: {
  14970. height: math.unit(6 + 1 / 12, "feet"),
  14971. weight: math.unit(155, "lb"),
  14972. name: "Anthro",
  14973. image: {
  14974. source: "./media/characters/hearth/anthro.svg",
  14975. extra: 260 / 250,
  14976. bottom: 0.02
  14977. }
  14978. },
  14979. feral: {
  14980. height: math.unit(3.78, "feet"),
  14981. weight: math.unit(35, "kg"),
  14982. name: "Feral",
  14983. image: {
  14984. source: "./media/characters/hearth/feral.svg",
  14985. extra: 153 / 135,
  14986. bottom: 0.03
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(6 + 1 / 12, "feet"),
  14994. default: true
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15000. {
  15001. front: {
  15002. height: math.unit(6, "feet"),
  15003. weight: math.unit(182, "lb"),
  15004. name: "Front",
  15005. image: {
  15006. source: "./media/characters/ingrid/front.svg",
  15007. extra: 294 / 268,
  15008. bottom: 0.027
  15009. }
  15010. },
  15011. },
  15012. [
  15013. {
  15014. name: "Normal",
  15015. height: math.unit(6, "feet"),
  15016. default: true
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15022. {
  15023. eevee: {
  15024. height: math.unit(2 + 10 / 12, "feet"),
  15025. weight: math.unit(86, "lb"),
  15026. name: "Malgam",
  15027. image: {
  15028. source: "./media/characters/malgam/eevee.svg",
  15029. extra: 218 / 180,
  15030. bottom: 0.2
  15031. }
  15032. },
  15033. sylveon: {
  15034. height: math.unit(4, "feet"),
  15035. weight: math.unit(101, "lb"),
  15036. name: "Future Malgam",
  15037. rename: true,
  15038. image: {
  15039. source: "./media/characters/malgam/sylveon.svg",
  15040. extra: 371 / 325,
  15041. bottom: 0.015
  15042. }
  15043. },
  15044. gigantamax: {
  15045. height: math.unit(50, "feet"),
  15046. name: "Gigantamax Malgam",
  15047. rename: true,
  15048. image: {
  15049. source: "./media/characters/malgam/gigantamax.svg"
  15050. }
  15051. },
  15052. },
  15053. [
  15054. {
  15055. name: "Normal",
  15056. height: math.unit(2 + 10 / 12, "feet"),
  15057. default: true
  15058. },
  15059. ]
  15060. ))
  15061. characterMakers.push(() => makeCharacter(
  15062. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15063. {
  15064. front: {
  15065. height: math.unit(5 + 11 / 12, "feet"),
  15066. weight: math.unit(188, "lb"),
  15067. name: "Front",
  15068. image: {
  15069. source: "./media/characters/fleur/front.svg",
  15070. extra: 309 / 283,
  15071. bottom: 0.007
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Normal",
  15078. height: math.unit(5 + 11 / 12, "feet"),
  15079. default: true
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15085. {
  15086. front: {
  15087. height: math.unit(5 + 4 / 12, "feet"),
  15088. weight: math.unit(122, "lb"),
  15089. name: "Front",
  15090. image: {
  15091. source: "./media/characters/jude/front.svg",
  15092. extra: 288 / 273,
  15093. bottom: 0.03
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "Normal",
  15100. height: math.unit(5 + 4 / 12, "feet"),
  15101. default: true
  15102. },
  15103. ]
  15104. ))
  15105. characterMakers.push(() => makeCharacter(
  15106. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15107. {
  15108. front: {
  15109. height: math.unit(5 + 11 / 12, "feet"),
  15110. weight: math.unit(190, "lb"),
  15111. name: "Front",
  15112. image: {
  15113. source: "./media/characters/seara/front.svg",
  15114. extra: 1,
  15115. bottom: 0.05
  15116. }
  15117. },
  15118. },
  15119. [
  15120. {
  15121. name: "Normal",
  15122. height: math.unit(5 + 11 / 12, "feet"),
  15123. default: true
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(16 + 5 / 12, "feet"),
  15132. weight: math.unit(524, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/caspian/front.svg",
  15136. extra: 1,
  15137. bottom: 0.04
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(16 + 5 / 12, "feet"),
  15145. default: true
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15151. {
  15152. front: {
  15153. height: math.unit(5 + 7 / 12, "feet"),
  15154. weight: math.unit(170, "lb"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/mika/front.svg",
  15158. extra: 1,
  15159. bottom: 0.016
  15160. }
  15161. },
  15162. },
  15163. [
  15164. {
  15165. name: "Normal",
  15166. height: math.unit(5 + 7 / 12, "feet"),
  15167. default: true
  15168. },
  15169. ]
  15170. ))
  15171. characterMakers.push(() => makeCharacter(
  15172. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15173. {
  15174. front: {
  15175. height: math.unit(6 + 2 / 12, "feet"),
  15176. weight: math.unit(268, "lb"),
  15177. name: "Front",
  15178. image: {
  15179. source: "./media/characters/sol/front.svg",
  15180. extra: 247 / 231,
  15181. bottom: 0.05
  15182. }
  15183. },
  15184. },
  15185. [
  15186. {
  15187. name: "Normal",
  15188. height: math.unit(6 + 2 / 12, "feet"),
  15189. default: true
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15195. {
  15196. buizel: {
  15197. height: math.unit(2 + 5 / 12, "feet"),
  15198. weight: math.unit(87, "lb"),
  15199. name: "Buizel",
  15200. image: {
  15201. source: "./media/characters/umiko/buizel.svg",
  15202. extra: 172 / 157,
  15203. bottom: 0.01
  15204. }
  15205. },
  15206. floatzel: {
  15207. height: math.unit(5 + 9 / 12, "feet"),
  15208. weight: math.unit(250, "lb"),
  15209. name: "Floatzel",
  15210. image: {
  15211. source: "./media/characters/umiko/floatzel.svg",
  15212. extra: 262 / 248
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Normal",
  15219. height: math.unit(2 + 5 / 12, "feet"),
  15220. default: true
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(6 + 2 / 12, "feet"),
  15229. weight: math.unit(146, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/iliac/front.svg",
  15233. extra: 389 / 365,
  15234. bottom: 0.035
  15235. }
  15236. },
  15237. },
  15238. [
  15239. {
  15240. name: "Normal",
  15241. height: math.unit(6 + 2 / 12, "feet"),
  15242. default: true
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15248. {
  15249. front: {
  15250. height: math.unit(6, "feet"),
  15251. weight: math.unit(170, "lb"),
  15252. name: "Front",
  15253. image: {
  15254. source: "./media/characters/topaz/front.svg",
  15255. extra: 317 / 303,
  15256. bottom: 0.055
  15257. }
  15258. },
  15259. },
  15260. [
  15261. {
  15262. name: "Normal",
  15263. height: math.unit(6, "feet"),
  15264. default: true
  15265. },
  15266. ]
  15267. ))
  15268. characterMakers.push(() => makeCharacter(
  15269. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15270. {
  15271. front: {
  15272. height: math.unit(5 + 11 / 12, "feet"),
  15273. weight: math.unit(144, "lb"),
  15274. name: "Front",
  15275. image: {
  15276. source: "./media/characters/gabriel/front.svg",
  15277. extra: 285 / 262,
  15278. bottom: 0.004
  15279. }
  15280. },
  15281. },
  15282. [
  15283. {
  15284. name: "Normal",
  15285. height: math.unit(5 + 11 / 12, "feet"),
  15286. default: true
  15287. },
  15288. ]
  15289. ))
  15290. characterMakers.push(() => makeCharacter(
  15291. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15292. {
  15293. side: {
  15294. height: math.unit(6 + 5 / 12, "feet"),
  15295. weight: math.unit(300, "lb"),
  15296. name: "Side",
  15297. image: {
  15298. source: "./media/characters/tempest-suicune/side.svg",
  15299. extra: 195 / 154,
  15300. bottom: 0.04
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Normal",
  15307. height: math.unit(6 + 5 / 12, "feet"),
  15308. default: true
  15309. },
  15310. ]
  15311. ))
  15312. characterMakers.push(() => makeCharacter(
  15313. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15314. {
  15315. front: {
  15316. height: math.unit(7 + 2 / 12, "feet"),
  15317. weight: math.unit(322, "lb"),
  15318. name: "Front",
  15319. image: {
  15320. source: "./media/characters/vulcan/front.svg",
  15321. extra: 154 / 147,
  15322. bottom: 0.04
  15323. }
  15324. },
  15325. },
  15326. [
  15327. {
  15328. name: "Normal",
  15329. height: math.unit(7 + 2 / 12, "feet"),
  15330. default: true
  15331. },
  15332. ]
  15333. ))
  15334. characterMakers.push(() => makeCharacter(
  15335. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15336. {
  15337. front: {
  15338. height: math.unit(5 + 10 / 12, "feet"),
  15339. weight: math.unit(264, "lb"),
  15340. name: "Front",
  15341. image: {
  15342. source: "./media/characters/gault/front.svg",
  15343. extra: 161 / 140,
  15344. bottom: 0.028
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Normal",
  15351. height: math.unit(5 + 10 / 12, "feet"),
  15352. default: true
  15353. },
  15354. ]
  15355. ))
  15356. characterMakers.push(() => makeCharacter(
  15357. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15358. {
  15359. front: {
  15360. height: math.unit(6, "feet"),
  15361. weight: math.unit(150, "lb"),
  15362. name: "Front",
  15363. image: {
  15364. source: "./media/characters/shard/front.svg",
  15365. extra: 273 / 238,
  15366. bottom: 0.02
  15367. }
  15368. },
  15369. },
  15370. [
  15371. {
  15372. name: "Normal",
  15373. height: math.unit(3 + 6 / 12, "feet"),
  15374. default: true
  15375. },
  15376. ]
  15377. ))
  15378. characterMakers.push(() => makeCharacter(
  15379. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15380. {
  15381. front: {
  15382. height: math.unit(5 + 11 / 12, "feet"),
  15383. weight: math.unit(146, "lb"),
  15384. name: "Front",
  15385. image: {
  15386. source: "./media/characters/ashe/front.svg",
  15387. extra: 400 / 373,
  15388. bottom: 0.01
  15389. }
  15390. },
  15391. },
  15392. [
  15393. {
  15394. name: "Normal",
  15395. height: math.unit(5 + 11 / 12, "feet"),
  15396. default: true
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15402. {
  15403. front: {
  15404. height: math.unit(5 + 5 / 12, "feet"),
  15405. weight: math.unit(135, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/beatrix/front.svg",
  15409. extra: 392 / 379,
  15410. bottom: 0.01
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Normal",
  15417. height: math.unit(6, "feet"),
  15418. default: true
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(6, "feet"),
  15427. weight: math.unit(150, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/ignatius/front.svg",
  15431. extra: 245 / 222,
  15432. bottom: 0.01
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Normal",
  15439. height: math.unit(5 + 5 / 12, "feet"),
  15440. default: true
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15446. {
  15447. front: {
  15448. height: math.unit(6 + 2 / 12, "feet"),
  15449. weight: math.unit(138, "lb"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/mei-li/front.svg",
  15453. extra: 237 / 229,
  15454. bottom: 0.03
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Normal",
  15461. height: math.unit(6 + 2 / 12, "feet"),
  15462. default: true
  15463. },
  15464. ]
  15465. ))
  15466. characterMakers.push(() => makeCharacter(
  15467. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15468. {
  15469. front: {
  15470. height: math.unit(2 + 4 / 12, "feet"),
  15471. weight: math.unit(62, "lb"),
  15472. name: "Front",
  15473. image: {
  15474. source: "./media/characters/puru/front.svg",
  15475. extra: 206 / 149,
  15476. bottom: 0.06
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(2 + 4 / 12, "feet"),
  15484. default: true
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15490. {
  15491. anthro: {
  15492. height: math.unit(5 + 8/12, "feet"),
  15493. weight: math.unit(200, "lb"),
  15494. energyNeed: math.unit(2000, "kcal"),
  15495. name: "Anthro",
  15496. image: {
  15497. source: "./media/characters/kee/anthro.svg",
  15498. extra: 3251/3184,
  15499. bottom: 250/3501
  15500. }
  15501. },
  15502. taur: {
  15503. height: math.unit(11, "feet"),
  15504. weight: math.unit(500, "lb"),
  15505. energyNeed: math.unit(5000, "kcal"),
  15506. name: "Taur",
  15507. image: {
  15508. source: "./media/characters/kee/taur.svg",
  15509. extra: 1362/1320,
  15510. bottom: 83/1445
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(5 + 8/12, "feet"),
  15518. default: true
  15519. },
  15520. {
  15521. name: "Macro",
  15522. height: math.unit(35, "feet")
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15528. {
  15529. anthro: {
  15530. height: math.unit(7, "feet"),
  15531. weight: math.unit(190, "lb"),
  15532. name: "Anthro",
  15533. image: {
  15534. source: "./media/characters/cobalt-dracha/anthro.svg",
  15535. extra: 231 / 225,
  15536. bottom: 0.04
  15537. }
  15538. },
  15539. feral: {
  15540. height: math.unit(9 + 7 / 12, "feet"),
  15541. weight: math.unit(294, "lb"),
  15542. name: "Feral",
  15543. image: {
  15544. source: "./media/characters/cobalt-dracha/feral.svg",
  15545. extra: 692 / 633,
  15546. bottom: 0.05
  15547. }
  15548. },
  15549. },
  15550. [
  15551. {
  15552. name: "Normal",
  15553. height: math.unit(7, "feet"),
  15554. default: true
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15560. {
  15561. fallen: {
  15562. height: math.unit(11 + 8 / 12, "feet"),
  15563. weight: math.unit(485, "lb"),
  15564. name: "Java (Fallen)",
  15565. rename: true,
  15566. image: {
  15567. source: "./media/characters/java/fallen.svg",
  15568. extra: 226 / 208,
  15569. bottom: 0.005
  15570. }
  15571. },
  15572. godkin: {
  15573. height: math.unit(10 + 6 / 12, "feet"),
  15574. weight: math.unit(328, "lb"),
  15575. name: "Java (Godkin)",
  15576. rename: true,
  15577. image: {
  15578. source: "./media/characters/java/godkin.svg",
  15579. extra: 270 / 262,
  15580. bottom: 0.02
  15581. }
  15582. },
  15583. },
  15584. [
  15585. {
  15586. name: "Normal",
  15587. height: math.unit(11 + 8 / 12, "feet"),
  15588. default: true
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15594. {
  15595. front: {
  15596. height: math.unit(7 + 8 / 12, "feet"),
  15597. weight: math.unit(320, "lb"),
  15598. name: "Front",
  15599. image: {
  15600. source: "./media/characters/skoll/front.svg",
  15601. extra: 232 / 220,
  15602. bottom: 0.02
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Normal",
  15609. height: math.unit(7 + 8 / 12, "feet"),
  15610. default: true
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(5 + 9 / 12, "feet"),
  15619. weight: math.unit(170, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/purna/front.svg",
  15623. extra: 239 / 229,
  15624. bottom: 0.01
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Normal",
  15631. height: math.unit(5 + 9 / 12, "feet"),
  15632. default: true
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(5 + 9 / 12, "feet"),
  15641. weight: math.unit(142, "lb"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/kuva/front.svg",
  15645. extra: 281 / 271,
  15646. bottom: 0.006
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Normal",
  15653. height: math.unit(5 + 9 / 12, "feet"),
  15654. default: true
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15660. {
  15661. anthro: {
  15662. height: math.unit(9 + 2 / 12, "feet"),
  15663. weight: math.unit(270, "lb"),
  15664. name: "Anthro",
  15665. image: {
  15666. source: "./media/characters/embra/anthro.svg",
  15667. extra: 200 / 187,
  15668. bottom: 0.02
  15669. }
  15670. },
  15671. feral: {
  15672. height: math.unit(18 + 8 / 12, "feet"),
  15673. weight: math.unit(576, "lb"),
  15674. name: "Feral",
  15675. image: {
  15676. source: "./media/characters/embra/feral.svg",
  15677. extra: 152 / 137,
  15678. bottom: 0.037
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(9 + 2 / 12, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15692. {
  15693. anthro: {
  15694. height: math.unit(10 + 9 / 12, "feet"),
  15695. weight: math.unit(224, "lb"),
  15696. name: "Anthro",
  15697. image: {
  15698. source: "./media/characters/grottos/anthro.svg",
  15699. extra: 350 / 332,
  15700. bottom: 0.045
  15701. }
  15702. },
  15703. feral: {
  15704. height: math.unit(20 + 7 / 12, "feet"),
  15705. weight: math.unit(629, "lb"),
  15706. name: "Feral",
  15707. image: {
  15708. source: "./media/characters/grottos/feral.svg",
  15709. extra: 207 / 190,
  15710. bottom: 0.05
  15711. }
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(10 + 9 / 12, "feet"),
  15718. default: true
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15724. {
  15725. anthro: {
  15726. height: math.unit(9 + 6 / 12, "feet"),
  15727. weight: math.unit(298, "lb"),
  15728. name: "Anthro",
  15729. image: {
  15730. source: "./media/characters/frifna/anthro.svg",
  15731. extra: 282 / 269,
  15732. bottom: 0.015
  15733. }
  15734. },
  15735. feral: {
  15736. height: math.unit(16 + 2 / 12, "feet"),
  15737. weight: math.unit(624, "lb"),
  15738. name: "Feral",
  15739. image: {
  15740. source: "./media/characters/frifna/feral.svg"
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(9 + 6 / 12, "feet"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(6 + 2 / 12, "feet"),
  15757. weight: math.unit(168, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/elise/front.svg",
  15761. extra: 276 / 271
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Normal",
  15768. height: math.unit(6 + 2 / 12, "feet"),
  15769. default: true
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(5 + 10 / 12, "feet"),
  15778. weight: math.unit(210, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/glade/front.svg",
  15782. extra: 258 / 247,
  15783. bottom: 0.008
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Normal",
  15790. height: math.unit(5 + 10 / 12, "feet"),
  15791. default: true
  15792. },
  15793. ]
  15794. ))
  15795. characterMakers.push(() => makeCharacter(
  15796. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15797. {
  15798. front: {
  15799. height: math.unit(5 + 10 / 12, "feet"),
  15800. weight: math.unit(129, "lb"),
  15801. name: "Front",
  15802. image: {
  15803. source: "./media/characters/rina/front.svg",
  15804. extra: 266 / 255,
  15805. bottom: 0.005
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Normal",
  15812. height: math.unit(5 + 10 / 12, "feet"),
  15813. default: true
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(6 + 1 / 12, "feet"),
  15822. weight: math.unit(192, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/veronica/front.svg",
  15826. extra: 319 / 309,
  15827. bottom: 0.005
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Normal",
  15834. height: math.unit(6 + 1 / 12, "feet"),
  15835. default: true
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(9 + 3 / 12, "feet"),
  15844. weight: math.unit(1100, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/braxton/front.svg",
  15848. extra: 1057 / 984,
  15849. bottom: 0.05
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Normal",
  15856. height: math.unit(9 + 3 / 12, "feet")
  15857. },
  15858. {
  15859. name: "Giant",
  15860. height: math.unit(300, "feet"),
  15861. default: true
  15862. },
  15863. {
  15864. name: "Macro",
  15865. height: math.unit(700, "feet")
  15866. },
  15867. {
  15868. name: "Megamacro",
  15869. height: math.unit(6000, "feet")
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15875. {
  15876. front: {
  15877. height: math.unit(6 + 7 / 12, "feet"),
  15878. weight: math.unit(150, "lb"),
  15879. name: "Front",
  15880. image: {
  15881. source: "./media/characters/blue-feyonics/front.svg",
  15882. extra: 1403 / 1306,
  15883. bottom: 0.047
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Normal",
  15890. height: math.unit(6 + 7 / 12, "feet"),
  15891. default: true
  15892. },
  15893. ]
  15894. ))
  15895. characterMakers.push(() => makeCharacter(
  15896. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15897. {
  15898. front: {
  15899. height: math.unit(1.8, "meters"),
  15900. weight: math.unit(60, "kg"),
  15901. name: "Front",
  15902. image: {
  15903. source: "./media/characters/maxwell/front.svg",
  15904. extra: 2060 / 1873
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Micro",
  15911. height: math.unit(1, "mm")
  15912. },
  15913. {
  15914. name: "Normal",
  15915. height: math.unit(1.8, "meter"),
  15916. default: true
  15917. },
  15918. {
  15919. name: "Macro",
  15920. height: math.unit(30, "meters")
  15921. },
  15922. {
  15923. name: "Megamacro",
  15924. height: math.unit(10, "km")
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15930. {
  15931. front: {
  15932. height: math.unit(6, "feet"),
  15933. weight: math.unit(150, "lb"),
  15934. name: "Front",
  15935. image: {
  15936. source: "./media/characters/jack/front.svg",
  15937. extra: 1754 / 1640,
  15938. bottom: 0.01
  15939. }
  15940. },
  15941. },
  15942. [
  15943. {
  15944. name: "Normal",
  15945. height: math.unit(80000, "feet"),
  15946. default: true
  15947. },
  15948. {
  15949. name: "Max size",
  15950. height: math.unit(10, "lightyears")
  15951. },
  15952. ]
  15953. ))
  15954. characterMakers.push(() => makeCharacter(
  15955. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15956. {
  15957. urban: {
  15958. height: math.unit(5, "feet"),
  15959. weight: math.unit(240, "lb"),
  15960. name: "Urban",
  15961. image: {
  15962. source: "./media/characters/cafat/urban.svg",
  15963. extra: 1223/1126,
  15964. bottom: 205/1428
  15965. }
  15966. },
  15967. summer: {
  15968. height: math.unit(5, "feet"),
  15969. weight: math.unit(240, "lb"),
  15970. name: "Summer",
  15971. image: {
  15972. source: "./media/characters/cafat/summer.svg",
  15973. extra: 1223/1126,
  15974. bottom: 205/1428
  15975. }
  15976. },
  15977. winter: {
  15978. height: math.unit(5, "feet"),
  15979. weight: math.unit(240, "lb"),
  15980. name: "Winter",
  15981. image: {
  15982. source: "./media/characters/cafat/winter.svg",
  15983. extra: 1223/1126,
  15984. bottom: 205/1428
  15985. }
  15986. },
  15987. lingerie: {
  15988. height: math.unit(5, "feet"),
  15989. weight: math.unit(240, "lb"),
  15990. name: "Lingerie",
  15991. image: {
  15992. source: "./media/characters/cafat/lingerie.svg",
  15993. extra: 1223/1126,
  15994. bottom: 205/1428
  15995. }
  15996. },
  15997. upright: {
  15998. height: math.unit(6.3, "feet"),
  15999. weight: math.unit(240, "lb"),
  16000. name: "Upright",
  16001. image: {
  16002. source: "./media/characters/cafat/upright.svg",
  16003. bottom: 0.01
  16004. }
  16005. },
  16006. uprightFull: {
  16007. height: math.unit(6.3, "feet"),
  16008. weight: math.unit(240, "lb"),
  16009. name: "Upright (Full)",
  16010. image: {
  16011. source: "./media/characters/cafat/upright-full.svg",
  16012. bottom: 0.01
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Small",
  16019. height: math.unit(5, "feet"),
  16020. default: true
  16021. },
  16022. {
  16023. name: "Large",
  16024. height: math.unit(13, "feet")
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(6, "feet"),
  16033. weight: math.unit(150, "lb"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/verin-raharra/front.svg",
  16037. extra: 5019 / 4835,
  16038. bottom: 0.023
  16039. }
  16040. },
  16041. },
  16042. [
  16043. {
  16044. name: "Normal",
  16045. height: math.unit(7 + 5 / 12, "feet"),
  16046. default: true
  16047. },
  16048. {
  16049. name: "Upsized",
  16050. height: math.unit(20, "feet")
  16051. },
  16052. ]
  16053. ))
  16054. characterMakers.push(() => makeCharacter(
  16055. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16056. {
  16057. front: {
  16058. height: math.unit(7, "feet"),
  16059. weight: math.unit(230, "lb"),
  16060. name: "Front",
  16061. image: {
  16062. source: "./media/characters/nakata/front.svg",
  16063. extra: 1.005,
  16064. bottom: 0.01
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Normal",
  16071. height: math.unit(7, "feet"),
  16072. default: true
  16073. },
  16074. {
  16075. name: "Big",
  16076. height: math.unit(14, "feet")
  16077. },
  16078. {
  16079. name: "Macro",
  16080. height: math.unit(400, "feet")
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16086. {
  16087. front: {
  16088. height: math.unit(4.91, "feet"),
  16089. weight: math.unit(100, "lb"),
  16090. name: "Front",
  16091. image: {
  16092. source: "./media/characters/lily/front.svg",
  16093. extra: 1585 / 1415,
  16094. bottom: 0.02
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Normal",
  16101. height: math.unit(4.91, "feet"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16108. {
  16109. laying: {
  16110. height: math.unit(4 + 4 / 12, "feet"),
  16111. weight: math.unit(600, "lb"),
  16112. name: "Laying",
  16113. image: {
  16114. source: "./media/characters/sheila/laying.svg",
  16115. extra: 1333 / 1265,
  16116. bottom: 0.16
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Normal",
  16123. height: math.unit(4 + 4 / 12, "feet"),
  16124. default: true
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(6, "feet"),
  16133. weight: math.unit(190, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/sax/front.svg",
  16137. extra: 1187 / 973,
  16138. bottom: 0.042
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Micro",
  16145. height: math.unit(4, "inches"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(6, "feet"),
  16155. weight: math.unit(150, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/pandora/front.svg",
  16159. extra: 2720 / 2556,
  16160. bottom: 0.015
  16161. }
  16162. },
  16163. back: {
  16164. height: math.unit(6, "feet"),
  16165. weight: math.unit(150, "lb"),
  16166. name: "Back",
  16167. image: {
  16168. source: "./media/characters/pandora/back.svg",
  16169. extra: 2720 / 2556,
  16170. bottom: 0.01
  16171. }
  16172. },
  16173. beans: {
  16174. height: math.unit(6 / 8, "feet"),
  16175. name: "Beans",
  16176. image: {
  16177. source: "./media/characters/pandora/beans.svg"
  16178. }
  16179. },
  16180. collar: {
  16181. height: math.unit(0.31, "feet"),
  16182. name: "Collar",
  16183. image: {
  16184. source: "./media/characters/pandora/collar.svg"
  16185. }
  16186. },
  16187. skirt: {
  16188. height: math.unit(6, "feet"),
  16189. weight: math.unit(150, "lb"),
  16190. name: "Skirt",
  16191. image: {
  16192. source: "./media/characters/pandora/skirt.svg",
  16193. extra: 1622 / 1525,
  16194. bottom: 0.015
  16195. }
  16196. },
  16197. hoodie: {
  16198. height: math.unit(6, "feet"),
  16199. weight: math.unit(150, "lb"),
  16200. name: "Hoodie",
  16201. image: {
  16202. source: "./media/characters/pandora/hoodie.svg",
  16203. extra: 1622 / 1525,
  16204. bottom: 0.015
  16205. }
  16206. },
  16207. casual: {
  16208. height: math.unit(6, "feet"),
  16209. weight: math.unit(150, "lb"),
  16210. name: "Casual",
  16211. image: {
  16212. source: "./media/characters/pandora/casual.svg",
  16213. extra: 1622 / 1525,
  16214. bottom: 0.015
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Normal",
  16221. height: math.unit(6, "feet")
  16222. },
  16223. {
  16224. name: "Big Steppy",
  16225. height: math.unit(1, "km"),
  16226. default: true
  16227. },
  16228. {
  16229. name: "Galactic Steppy",
  16230. height: math.unit(2, "gigameters")
  16231. },
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16236. {
  16237. side: {
  16238. height: math.unit(10, "feet"),
  16239. weight: math.unit(800, "kg"),
  16240. name: "Side",
  16241. image: {
  16242. source: "./media/characters/venio-darcony/side.svg",
  16243. extra: 1373 / 1003,
  16244. bottom: 0.037
  16245. }
  16246. },
  16247. front: {
  16248. height: math.unit(19, "feet"),
  16249. weight: math.unit(800, "kg"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/venio-darcony/front.svg"
  16253. }
  16254. },
  16255. back: {
  16256. height: math.unit(19, "feet"),
  16257. weight: math.unit(800, "kg"),
  16258. name: "Back",
  16259. image: {
  16260. source: "./media/characters/venio-darcony/back.svg"
  16261. }
  16262. },
  16263. sideNsfw: {
  16264. height: math.unit(10, "feet"),
  16265. weight: math.unit(800, "kg"),
  16266. name: "Side (NSFW)",
  16267. image: {
  16268. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16269. extra: 1373 / 1003,
  16270. bottom: 0.037
  16271. }
  16272. },
  16273. frontNsfw: {
  16274. height: math.unit(19, "feet"),
  16275. weight: math.unit(800, "kg"),
  16276. name: "Front (NSFW)",
  16277. image: {
  16278. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16279. }
  16280. },
  16281. backNsfw: {
  16282. height: math.unit(19, "feet"),
  16283. weight: math.unit(800, "kg"),
  16284. name: "Back (NSFW)",
  16285. image: {
  16286. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16287. }
  16288. },
  16289. sideArmored: {
  16290. height: math.unit(10, "feet"),
  16291. weight: math.unit(800, "kg"),
  16292. name: "Side (Armored)",
  16293. image: {
  16294. source: "./media/characters/venio-darcony/side-armored.svg",
  16295. extra: 1373 / 1003,
  16296. bottom: 0.037
  16297. }
  16298. },
  16299. frontArmored: {
  16300. height: math.unit(19, "feet"),
  16301. weight: math.unit(900, "kg"),
  16302. name: "Front (Armored)",
  16303. image: {
  16304. source: "./media/characters/venio-darcony/front-armored.svg"
  16305. }
  16306. },
  16307. backArmored: {
  16308. height: math.unit(19, "feet"),
  16309. weight: math.unit(900, "kg"),
  16310. name: "Back (Armored)",
  16311. image: {
  16312. source: "./media/characters/venio-darcony/back-armored.svg"
  16313. }
  16314. },
  16315. sword: {
  16316. height: math.unit(10, "feet"),
  16317. weight: math.unit(50, "lb"),
  16318. name: "Sword",
  16319. image: {
  16320. source: "./media/characters/venio-darcony/sword.svg"
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(10, "feet")
  16328. },
  16329. {
  16330. name: "Macro",
  16331. height: math.unit(130, "feet"),
  16332. default: true
  16333. },
  16334. {
  16335. name: "Macro+",
  16336. height: math.unit(240, "feet")
  16337. },
  16338. ]
  16339. ))
  16340. characterMakers.push(() => makeCharacter(
  16341. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16342. {
  16343. front: {
  16344. height: math.unit(6, "feet"),
  16345. weight: math.unit(150, "lb"),
  16346. name: "Front",
  16347. image: {
  16348. source: "./media/characters/veski/front.svg",
  16349. extra: 1299 / 1225,
  16350. bottom: 0.04
  16351. }
  16352. },
  16353. back: {
  16354. height: math.unit(6, "feet"),
  16355. weight: math.unit(150, "lb"),
  16356. name: "Back",
  16357. image: {
  16358. source: "./media/characters/veski/back.svg",
  16359. extra: 1299 / 1225,
  16360. bottom: 0.008
  16361. }
  16362. },
  16363. maw: {
  16364. height: math.unit(1.5 * 1.21, "feet"),
  16365. name: "Maw",
  16366. image: {
  16367. source: "./media/characters/veski/maw.svg"
  16368. }
  16369. },
  16370. },
  16371. [
  16372. {
  16373. name: "Macro",
  16374. height: math.unit(2, "km"),
  16375. default: true
  16376. },
  16377. ]
  16378. ))
  16379. characterMakers.push(() => makeCharacter(
  16380. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16381. {
  16382. front: {
  16383. height: math.unit(5 + 7 / 12, "feet"),
  16384. name: "Front",
  16385. image: {
  16386. source: "./media/characters/isabelle/front.svg",
  16387. extra: 2130 / 1976,
  16388. bottom: 0.05
  16389. }
  16390. },
  16391. },
  16392. [
  16393. {
  16394. name: "Supermicro",
  16395. height: math.unit(10, "micrometers")
  16396. },
  16397. {
  16398. name: "Micro",
  16399. height: math.unit(1, "inch")
  16400. },
  16401. {
  16402. name: "Tiny",
  16403. height: math.unit(5, "inches")
  16404. },
  16405. {
  16406. name: "Standard",
  16407. height: math.unit(5 + 7 / 12, "inches")
  16408. },
  16409. {
  16410. name: "Macro",
  16411. height: math.unit(80, "meters"),
  16412. default: true
  16413. },
  16414. {
  16415. name: "Megamacro",
  16416. height: math.unit(250, "meters")
  16417. },
  16418. {
  16419. name: "Gigamacro",
  16420. height: math.unit(5, "km")
  16421. },
  16422. {
  16423. name: "Cosmic",
  16424. height: math.unit(2.5e6, "miles")
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(6, "feet"),
  16433. weight: math.unit(150, "lb"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/hanzo/front.svg",
  16437. extra: 374 / 344,
  16438. bottom: 0.02
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(8, "feet"),
  16446. default: true
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16452. {
  16453. front: {
  16454. height: math.unit(7, "feet"),
  16455. weight: math.unit(130, "lb"),
  16456. name: "Front",
  16457. image: {
  16458. source: "./media/characters/anna/front.svg",
  16459. extra: 169 / 145,
  16460. bottom: 0.06
  16461. }
  16462. },
  16463. full: {
  16464. height: math.unit(4.96, "feet"),
  16465. weight: math.unit(220, "lb"),
  16466. name: "Full",
  16467. image: {
  16468. source: "./media/characters/anna/full.svg",
  16469. extra: 138 / 114,
  16470. bottom: 0.15
  16471. }
  16472. },
  16473. tongue: {
  16474. height: math.unit(2.53, "feet"),
  16475. name: "Tongue",
  16476. image: {
  16477. source: "./media/characters/anna/tongue.svg"
  16478. }
  16479. },
  16480. },
  16481. [
  16482. {
  16483. name: "Normal",
  16484. height: math.unit(7, "feet"),
  16485. default: true
  16486. },
  16487. ]
  16488. ))
  16489. characterMakers.push(() => makeCharacter(
  16490. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16491. {
  16492. front: {
  16493. height: math.unit(7, "feet"),
  16494. weight: math.unit(150, "lb"),
  16495. name: "Front",
  16496. image: {
  16497. source: "./media/characters/ian-corvid/front.svg",
  16498. extra: 150 / 142,
  16499. bottom: 0.02
  16500. }
  16501. },
  16502. back: {
  16503. height: math.unit(7, "feet"),
  16504. weight: math.unit(150, "lb"),
  16505. name: "Back",
  16506. image: {
  16507. source: "./media/characters/ian-corvid/back.svg",
  16508. extra: 150 / 143,
  16509. bottom: 0.01
  16510. }
  16511. },
  16512. stomping: {
  16513. height: math.unit(7, "feet"),
  16514. weight: math.unit(150, "lb"),
  16515. name: "Stomping",
  16516. image: {
  16517. source: "./media/characters/ian-corvid/stomping.svg",
  16518. extra: 76 / 72
  16519. }
  16520. },
  16521. sitting: {
  16522. height: math.unit(7 / 1.8, "feet"),
  16523. weight: math.unit(150, "lb"),
  16524. name: "Sitting",
  16525. image: {
  16526. source: "./media/characters/ian-corvid/sitting.svg",
  16527. extra: 1400 / 1269,
  16528. bottom: 0.15
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Tiny Microw",
  16535. height: math.unit(1, "inch")
  16536. },
  16537. {
  16538. name: "Microw",
  16539. height: math.unit(6, "inches")
  16540. },
  16541. {
  16542. name: "Crow",
  16543. height: math.unit(7 + 1 / 12, "feet"),
  16544. default: true
  16545. },
  16546. {
  16547. name: "Macrow",
  16548. height: math.unit(176, "feet")
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16554. {
  16555. front: {
  16556. height: math.unit(5 + 7 / 12, "feet"),
  16557. weight: math.unit(147, "lb"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/natalie-kellon/front.svg",
  16561. extra: 1214 / 1141,
  16562. bottom: 0.02
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Micro",
  16569. height: math.unit(1 / 16, "inch")
  16570. },
  16571. {
  16572. name: "Tiny",
  16573. height: math.unit(4, "inches")
  16574. },
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(5 + 7 / 12, "feet"),
  16578. default: true
  16579. },
  16580. {
  16581. name: "Amazon",
  16582. height: math.unit(12, "feet")
  16583. },
  16584. {
  16585. name: "Giantess",
  16586. height: math.unit(160, "meters")
  16587. },
  16588. {
  16589. name: "Titaness",
  16590. height: math.unit(800, "meters")
  16591. },
  16592. ]
  16593. ))
  16594. characterMakers.push(() => makeCharacter(
  16595. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16596. {
  16597. front: {
  16598. height: math.unit(6, "feet"),
  16599. weight: math.unit(150, "lb"),
  16600. name: "Front",
  16601. image: {
  16602. source: "./media/characters/alluria/front.svg",
  16603. extra: 806 / 738,
  16604. bottom: 0.01
  16605. }
  16606. },
  16607. side: {
  16608. height: math.unit(6, "feet"),
  16609. weight: math.unit(150, "lb"),
  16610. name: "Side",
  16611. image: {
  16612. source: "./media/characters/alluria/side.svg",
  16613. extra: 800 / 750,
  16614. }
  16615. },
  16616. back: {
  16617. height: math.unit(6, "feet"),
  16618. weight: math.unit(150, "lb"),
  16619. name: "Back",
  16620. image: {
  16621. source: "./media/characters/alluria/back.svg",
  16622. extra: 806 / 738,
  16623. }
  16624. },
  16625. frontMaid: {
  16626. height: math.unit(6, "feet"),
  16627. weight: math.unit(150, "lb"),
  16628. name: "Front (Maid)",
  16629. image: {
  16630. source: "./media/characters/alluria/front-maid.svg",
  16631. extra: 806 / 738,
  16632. bottom: 0.01
  16633. }
  16634. },
  16635. sideMaid: {
  16636. height: math.unit(6, "feet"),
  16637. weight: math.unit(150, "lb"),
  16638. name: "Side (Maid)",
  16639. image: {
  16640. source: "./media/characters/alluria/side-maid.svg",
  16641. extra: 800 / 750,
  16642. bottom: 0.005
  16643. }
  16644. },
  16645. backMaid: {
  16646. height: math.unit(6, "feet"),
  16647. weight: math.unit(150, "lb"),
  16648. name: "Back (Maid)",
  16649. image: {
  16650. source: "./media/characters/alluria/back-maid.svg",
  16651. extra: 806 / 738,
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Micro",
  16658. height: math.unit(6, "inches"),
  16659. default: true
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16665. {
  16666. front: {
  16667. height: math.unit(6, "feet"),
  16668. weight: math.unit(150, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/kyle/front.svg",
  16672. extra: 1069 / 962,
  16673. bottom: 77.228 / 1727.45
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Macro",
  16680. height: math.unit(150, "feet"),
  16681. default: true
  16682. },
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16687. {
  16688. front: {
  16689. height: math.unit(6, "feet"),
  16690. weight: math.unit(300, "lb"),
  16691. name: "Front",
  16692. image: {
  16693. source: "./media/characters/duncan/front.svg",
  16694. extra: 1650 / 1482,
  16695. bottom: 0.05
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Macro",
  16702. height: math.unit(100, "feet"),
  16703. default: true
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16709. {
  16710. front: {
  16711. height: math.unit(5 + 4 / 12, "feet"),
  16712. weight: math.unit(220, "lb"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/memory/front.svg",
  16716. extra: 3641 / 3545,
  16717. bottom: 0.03
  16718. }
  16719. },
  16720. back: {
  16721. height: math.unit(5 + 4 / 12, "feet"),
  16722. weight: math.unit(220, "lb"),
  16723. name: "Back",
  16724. image: {
  16725. source: "./media/characters/memory/back.svg",
  16726. extra: 3641 / 3545,
  16727. bottom: 0.025
  16728. }
  16729. },
  16730. frontSkirt: {
  16731. height: math.unit(5 + 4 / 12, "feet"),
  16732. weight: math.unit(220, "lb"),
  16733. name: "Front (Skirt)",
  16734. image: {
  16735. source: "./media/characters/memory/front-skirt.svg",
  16736. extra: 3641 / 3545,
  16737. bottom: 0.03
  16738. }
  16739. },
  16740. frontDress: {
  16741. height: math.unit(5 + 4 / 12, "feet"),
  16742. weight: math.unit(220, "lb"),
  16743. name: "Front (Dress)",
  16744. image: {
  16745. source: "./media/characters/memory/front-dress.svg",
  16746. extra: 3641 / 3545,
  16747. bottom: 0.03
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Micro",
  16754. height: math.unit(6, "inches"),
  16755. default: true
  16756. },
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(5 + 4 / 12, "feet")
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(4 + 11 / 12, "feet"),
  16768. weight: math.unit(100, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/luno/front.svg",
  16772. extra: 1535 / 1487,
  16773. bottom: 0.03
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Micro",
  16780. height: math.unit(3, "inches")
  16781. },
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(4 + 11 / 12, "feet"),
  16785. default: true
  16786. },
  16787. {
  16788. name: "Macro",
  16789. height: math.unit(300, "feet")
  16790. },
  16791. {
  16792. name: "Megamacro",
  16793. height: math.unit(700, "miles")
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(6 + 2 / 12, "feet"),
  16802. weight: math.unit(170, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/jamesy/front.svg",
  16806. extra: 440 / 382,
  16807. bottom: 0.005
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Micro",
  16814. height: math.unit(3, "inches")
  16815. },
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(6 + 2 / 12, "feet"),
  16819. default: true
  16820. },
  16821. {
  16822. name: "Macro",
  16823. height: math.unit(300, "feet")
  16824. },
  16825. {
  16826. name: "Megamacro",
  16827. height: math.unit(700, "miles")
  16828. },
  16829. ]
  16830. ))
  16831. characterMakers.push(() => makeCharacter(
  16832. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16833. {
  16834. front: {
  16835. height: math.unit(6, "feet"),
  16836. weight: math.unit(160, "lb"),
  16837. name: "Front",
  16838. image: {
  16839. source: "./media/characters/mark/front.svg",
  16840. extra: 3300 / 3100,
  16841. bottom: 136.42 / 3440.47
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Macro",
  16848. height: math.unit(120, "meters")
  16849. },
  16850. {
  16851. name: "Bigger Macro",
  16852. height: math.unit(350, "meters")
  16853. },
  16854. {
  16855. name: "Megamacro",
  16856. height: math.unit(8, "km"),
  16857. default: true
  16858. },
  16859. {
  16860. name: "Continental",
  16861. height: math.unit(4550, "km")
  16862. },
  16863. {
  16864. name: "Planetary",
  16865. height: math.unit(65000, "km")
  16866. },
  16867. ]
  16868. ))
  16869. characterMakers.push(() => makeCharacter(
  16870. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16871. {
  16872. front: {
  16873. height: math.unit(6, "feet"),
  16874. weight: math.unit(400, "lb"),
  16875. name: "Front",
  16876. image: {
  16877. source: "./media/characters/mac/front.svg",
  16878. extra: 1048 / 987.7,
  16879. bottom: 60 / 1107.6,
  16880. }
  16881. },
  16882. },
  16883. [
  16884. {
  16885. name: "Macro",
  16886. height: math.unit(500, "feet"),
  16887. default: true
  16888. },
  16889. ]
  16890. ))
  16891. characterMakers.push(() => makeCharacter(
  16892. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16893. {
  16894. front: {
  16895. height: math.unit(5 + 2 / 12, "feet"),
  16896. weight: math.unit(190, "lb"),
  16897. name: "Front",
  16898. image: {
  16899. source: "./media/characters/bari/front.svg",
  16900. extra: 3156 / 2880,
  16901. bottom: 0.03
  16902. }
  16903. },
  16904. back: {
  16905. height: math.unit(5 + 2 / 12, "feet"),
  16906. weight: math.unit(190, "lb"),
  16907. name: "Back",
  16908. image: {
  16909. source: "./media/characters/bari/back.svg",
  16910. extra: 3260 / 2834,
  16911. bottom: 0.025
  16912. }
  16913. },
  16914. frontPlush: {
  16915. height: math.unit(5 + 2 / 12, "feet"),
  16916. weight: math.unit(190, "lb"),
  16917. name: "Front (Plush)",
  16918. image: {
  16919. source: "./media/characters/bari/front-plush.svg",
  16920. extra: 1112 / 1061,
  16921. bottom: 0.002
  16922. }
  16923. },
  16924. },
  16925. [
  16926. {
  16927. name: "Micro",
  16928. height: math.unit(3, "inches")
  16929. },
  16930. {
  16931. name: "Normal",
  16932. height: math.unit(5 + 2 / 12, "feet"),
  16933. default: true
  16934. },
  16935. {
  16936. name: "Macro",
  16937. height: math.unit(20, "feet")
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16943. {
  16944. front: {
  16945. height: math.unit(6 + 1 / 12, "feet"),
  16946. weight: math.unit(275, "lb"),
  16947. name: "Front",
  16948. image: {
  16949. source: "./media/characters/hunter-misha-raven/front.svg"
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Mortal",
  16956. height: math.unit(6 + 1 / 12, "feet")
  16957. },
  16958. {
  16959. name: "Divine",
  16960. height: math.unit(1.12134e34, "parsecs"),
  16961. default: true
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(6 + 3 / 12, "feet"),
  16970. weight: math.unit(220, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/max-calore/front.svg",
  16974. extra: 1700 / 1648,
  16975. bottom: 0.01
  16976. }
  16977. },
  16978. back: {
  16979. height: math.unit(6 + 3 / 12, "feet"),
  16980. weight: math.unit(220, "lb"),
  16981. name: "Back",
  16982. image: {
  16983. source: "./media/characters/max-calore/back.svg",
  16984. extra: 1700 / 1648,
  16985. bottom: 0.01
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(6 + 3 / 12, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16999. {
  17000. side: {
  17001. height: math.unit(2 + 8 / 12, "feet"),
  17002. weight: math.unit(99, "lb"),
  17003. name: "Side",
  17004. image: {
  17005. source: "./media/characters/aspen/side.svg",
  17006. extra: 152 / 138,
  17007. bottom: 0.032
  17008. }
  17009. },
  17010. },
  17011. [
  17012. {
  17013. name: "Normal",
  17014. height: math.unit(2 + 8 / 12, "feet"),
  17015. default: true
  17016. },
  17017. ]
  17018. ))
  17019. characterMakers.push(() => makeCharacter(
  17020. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17021. {
  17022. side: {
  17023. height: math.unit(3 + 2 / 12, "feet"),
  17024. weight: math.unit(224, "lb"),
  17025. name: "Side",
  17026. image: {
  17027. source: "./media/characters/sheila-feral-wolf/side.svg",
  17028. extra: 179 / 166,
  17029. bottom: 0.03
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(3 + 2 / 12, "feet"),
  17037. default: true
  17038. },
  17039. ]
  17040. ))
  17041. characterMakers.push(() => makeCharacter(
  17042. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17043. {
  17044. side: {
  17045. height: math.unit(1 + 9 / 12, "feet"),
  17046. weight: math.unit(38, "lb"),
  17047. name: "Side",
  17048. image: {
  17049. source: "./media/characters/michelle/side.svg",
  17050. extra: 147 / 136.7,
  17051. bottom: 0.03
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Normal",
  17058. height: math.unit(1 + 9 / 12, "feet"),
  17059. default: true
  17060. },
  17061. ]
  17062. ))
  17063. characterMakers.push(() => makeCharacter(
  17064. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17065. {
  17066. front: {
  17067. height: math.unit(1 + 1 / 12, "feet"),
  17068. weight: math.unit(18, "lb"),
  17069. name: "Front",
  17070. image: {
  17071. source: "./media/characters/nino/front.svg"
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(1 + 1 / 12, "feet"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17085. {
  17086. front: {
  17087. height: math.unit(1, "feet"),
  17088. weight: math.unit(16, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/viola/front.svg"
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(1, "feet"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(6 + 5 / 12, "feet"),
  17108. weight: math.unit(580, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/atlas/front.svg",
  17112. extra: 298.5 / 290,
  17113. bottom: 0.015
  17114. }
  17115. },
  17116. },
  17117. [
  17118. {
  17119. name: "Normal",
  17120. height: math.unit(6 + 5 / 12, "feet"),
  17121. default: true
  17122. },
  17123. ]
  17124. ))
  17125. characterMakers.push(() => makeCharacter(
  17126. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17127. {
  17128. side: {
  17129. height: math.unit(1 + 10 / 12, "feet"),
  17130. weight: math.unit(25, "lb"),
  17131. name: "Side",
  17132. image: {
  17133. source: "./media/characters/davy/side.svg",
  17134. extra: 200 / 170,
  17135. bottom: 0.01
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Normal",
  17142. height: math.unit(1 + 10 / 12, "feet"),
  17143. default: true
  17144. },
  17145. ]
  17146. ))
  17147. characterMakers.push(() => makeCharacter(
  17148. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17149. {
  17150. side: {
  17151. height: math.unit(4 + 8 / 12, "feet"),
  17152. weight: math.unit(166, "lb"),
  17153. name: "Side",
  17154. image: {
  17155. source: "./media/characters/fiona/side.svg",
  17156. extra: 232 / 220,
  17157. bottom: 0.03
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Normal",
  17164. height: math.unit(4 + 8 / 12, "feet"),
  17165. default: true
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17171. {
  17172. front: {
  17173. height: math.unit(2, "feet"),
  17174. weight: math.unit(62, "lb"),
  17175. name: "Front",
  17176. image: {
  17177. source: "./media/characters/lyla/front.svg",
  17178. bottom: 0.1
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(2, "feet"),
  17186. default: true
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17192. {
  17193. side: {
  17194. height: math.unit(1.8, "feet"),
  17195. weight: math.unit(44, "lb"),
  17196. name: "Side",
  17197. image: {
  17198. source: "./media/characters/perseus/side.svg",
  17199. bottom: 0.21
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(1.8, "feet"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17213. {
  17214. side: {
  17215. height: math.unit(4 + 2 / 12, "feet"),
  17216. weight: math.unit(20, "lb"),
  17217. name: "Side",
  17218. image: {
  17219. source: "./media/characters/remus/side.svg"
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(4 + 2 / 12, "feet"),
  17227. default: true
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17233. {
  17234. front: {
  17235. height: math.unit(4 + 11 / 12, "feet"),
  17236. weight: math.unit(114, "lb"),
  17237. name: "Front",
  17238. image: {
  17239. source: "./media/characters/raf/front.svg",
  17240. extra: 1504/1339,
  17241. bottom: 26/1530
  17242. }
  17243. },
  17244. side: {
  17245. height: math.unit(4 + 11 / 12, "feet"),
  17246. weight: math.unit(114, "lb"),
  17247. name: "Side",
  17248. image: {
  17249. source: "./media/characters/raf/side.svg",
  17250. extra: 1466/1316,
  17251. bottom: 29/1495
  17252. }
  17253. },
  17254. },
  17255. [
  17256. {
  17257. name: "Micro",
  17258. height: math.unit(2, "inches")
  17259. },
  17260. {
  17261. name: "Normal",
  17262. height: math.unit(4 + 11 / 12, "feet"),
  17263. default: true
  17264. },
  17265. {
  17266. name: "Macro",
  17267. height: math.unit(70, "feet")
  17268. },
  17269. ]
  17270. ))
  17271. characterMakers.push(() => makeCharacter(
  17272. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17273. {
  17274. front: {
  17275. height: math.unit(1.5, "meters"),
  17276. weight: math.unit(68, "kg"),
  17277. name: "Front",
  17278. image: {
  17279. source: "./media/characters/liam-einarr/front.svg",
  17280. extra: 2822 / 2666
  17281. }
  17282. },
  17283. back: {
  17284. height: math.unit(1.5, "meters"),
  17285. weight: math.unit(68, "kg"),
  17286. name: "Back",
  17287. image: {
  17288. source: "./media/characters/liam-einarr/back.svg",
  17289. extra: 2822 / 2666,
  17290. bottom: 0.015
  17291. }
  17292. },
  17293. },
  17294. [
  17295. {
  17296. name: "Normal",
  17297. height: math.unit(1.5, "meters"),
  17298. default: true
  17299. },
  17300. {
  17301. name: "Macro",
  17302. height: math.unit(150, "meters")
  17303. },
  17304. {
  17305. name: "Megamacro",
  17306. height: math.unit(35, "km")
  17307. },
  17308. ]
  17309. ))
  17310. characterMakers.push(() => makeCharacter(
  17311. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17312. {
  17313. front: {
  17314. height: math.unit(6, "feet"),
  17315. weight: math.unit(75, "kg"),
  17316. name: "Front",
  17317. image: {
  17318. source: "./media/characters/linda/front.svg",
  17319. extra: 930 / 874,
  17320. bottom: 0.004
  17321. }
  17322. },
  17323. },
  17324. [
  17325. {
  17326. name: "Normal",
  17327. height: math.unit(6, "feet"),
  17328. default: true
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17334. {
  17335. front: {
  17336. height: math.unit(6 + 8 / 12, "feet"),
  17337. weight: math.unit(220, "lb"),
  17338. name: "Front",
  17339. image: {
  17340. source: "./media/characters/caylex/front.svg",
  17341. extra: 821 / 772,
  17342. bottom: 0.07
  17343. }
  17344. },
  17345. back: {
  17346. height: math.unit(6 + 8 / 12, "feet"),
  17347. weight: math.unit(220, "lb"),
  17348. name: "Back",
  17349. image: {
  17350. source: "./media/characters/caylex/back.svg",
  17351. extra: 821 / 772,
  17352. bottom: 0.022
  17353. }
  17354. },
  17355. hand: {
  17356. height: math.unit(1.25, "feet"),
  17357. name: "Hand",
  17358. image: {
  17359. source: "./media/characters/caylex/hand.svg"
  17360. }
  17361. },
  17362. foot: {
  17363. height: math.unit(1.6, "feet"),
  17364. name: "Foot",
  17365. image: {
  17366. source: "./media/characters/caylex/foot.svg"
  17367. }
  17368. },
  17369. armored: {
  17370. height: math.unit(6 + 8 / 12, "feet"),
  17371. weight: math.unit(250, "lb"),
  17372. name: "Armored",
  17373. image: {
  17374. source: "./media/characters/caylex/armored.svg",
  17375. extra: 1420 / 1310,
  17376. bottom: 0.045
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(6 + 8 / 12, "feet"),
  17384. default: true
  17385. },
  17386. {
  17387. name: "Normal+",
  17388. height: math.unit(12, "feet")
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17394. {
  17395. front: {
  17396. height: math.unit(7 + 6 / 12, "feet"),
  17397. weight: math.unit(288, "lb"),
  17398. name: "Front",
  17399. image: {
  17400. source: "./media/characters/alana/front.svg",
  17401. extra: 679 / 653,
  17402. bottom: 22.5 / 701
  17403. }
  17404. },
  17405. },
  17406. [
  17407. {
  17408. name: "Normal",
  17409. height: math.unit(7 + 6 / 12, "feet")
  17410. },
  17411. {
  17412. name: "Large",
  17413. height: math.unit(50, "feet")
  17414. },
  17415. {
  17416. name: "Macro",
  17417. height: math.unit(100, "feet"),
  17418. default: true
  17419. },
  17420. {
  17421. name: "Macro+",
  17422. height: math.unit(200, "feet")
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17428. {
  17429. front: {
  17430. height: math.unit(6 + 1 / 12, "feet"),
  17431. weight: math.unit(210, "lb"),
  17432. name: "Front",
  17433. image: {
  17434. source: "./media/characters/hasani/front.svg",
  17435. extra: 244 / 232,
  17436. bottom: 0.01
  17437. }
  17438. },
  17439. back: {
  17440. height: math.unit(6 + 1 / 12, "feet"),
  17441. weight: math.unit(210, "lb"),
  17442. name: "Back",
  17443. image: {
  17444. source: "./media/characters/hasani/back.svg",
  17445. extra: 244 / 232,
  17446. bottom: 0.01
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(6 + 1 / 12, "feet")
  17454. },
  17455. {
  17456. name: "Macro",
  17457. height: math.unit(175, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(1.82, "meters"),
  17467. weight: math.unit(140, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/nita/front.svg",
  17471. extra: 2473 / 2363,
  17472. bottom: 0.01
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Normal",
  17479. height: math.unit(1.82, "m")
  17480. },
  17481. {
  17482. name: "Macro",
  17483. height: math.unit(300, "m")
  17484. },
  17485. {
  17486. name: "Mistake Canon",
  17487. height: math.unit(0.5, "miles"),
  17488. default: true
  17489. },
  17490. {
  17491. name: "Big Mistake",
  17492. height: math.unit(13, "miles")
  17493. },
  17494. {
  17495. name: "Playing God",
  17496. height: math.unit(2450, "miles")
  17497. },
  17498. ]
  17499. ))
  17500. characterMakers.push(() => makeCharacter(
  17501. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17502. {
  17503. front: {
  17504. height: math.unit(4, "feet"),
  17505. weight: math.unit(120, "lb"),
  17506. name: "Front",
  17507. image: {
  17508. source: "./media/characters/shiriko/front.svg",
  17509. extra: 970/934,
  17510. bottom: 5/975
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(4, "feet"),
  17518. default: true
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(6, "feet"),
  17527. name: "front",
  17528. image: {
  17529. source: "./media/characters/deja/front.svg",
  17530. extra: 926 / 840,
  17531. bottom: 0.07
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Planck Length",
  17538. height: math.unit(1.6e-35, "meters")
  17539. },
  17540. {
  17541. name: "Normal",
  17542. height: math.unit(30.48, "meters"),
  17543. default: true
  17544. },
  17545. {
  17546. name: "Universal",
  17547. height: math.unit(8.8e26, "meters")
  17548. },
  17549. ]
  17550. ))
  17551. characterMakers.push(() => makeCharacter(
  17552. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17553. {
  17554. side: {
  17555. height: math.unit(8, "feet"),
  17556. weight: math.unit(6300, "lb"),
  17557. name: "Side",
  17558. image: {
  17559. source: "./media/characters/anima/side.svg",
  17560. bottom: 0.035
  17561. }
  17562. },
  17563. },
  17564. [
  17565. {
  17566. name: "Normal",
  17567. height: math.unit(8, "feet"),
  17568. default: true
  17569. },
  17570. ]
  17571. ))
  17572. characterMakers.push(() => makeCharacter(
  17573. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17574. {
  17575. front: {
  17576. height: math.unit(8, "feet"),
  17577. weight: math.unit(350, "lb"),
  17578. name: "Front",
  17579. image: {
  17580. source: "./media/characters/bianca/front.svg",
  17581. extra: 234 / 225,
  17582. bottom: 0.03
  17583. }
  17584. },
  17585. },
  17586. [
  17587. {
  17588. name: "Normal",
  17589. height: math.unit(8, "feet"),
  17590. default: true
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17596. {
  17597. front: {
  17598. height: math.unit(6, "feet"),
  17599. weight: math.unit(150, "lb"),
  17600. name: "Front",
  17601. image: {
  17602. source: "./media/characters/adinia/front.svg",
  17603. extra: 1845 / 1672,
  17604. bottom: 0.02
  17605. }
  17606. },
  17607. back: {
  17608. height: math.unit(6, "feet"),
  17609. weight: math.unit(150, "lb"),
  17610. name: "Back",
  17611. image: {
  17612. source: "./media/characters/adinia/back.svg",
  17613. extra: 1845 / 1672,
  17614. bottom: 0.002
  17615. }
  17616. },
  17617. },
  17618. [
  17619. {
  17620. name: "Normal",
  17621. height: math.unit(11 + 5 / 12, "feet"),
  17622. default: true
  17623. },
  17624. ]
  17625. ))
  17626. characterMakers.push(() => makeCharacter(
  17627. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17628. {
  17629. front: {
  17630. height: math.unit(3, "meters"),
  17631. weight: math.unit(200, "kg"),
  17632. name: "Front",
  17633. image: {
  17634. source: "./media/characters/lykasa/front.svg",
  17635. extra: 1076 / 976,
  17636. bottom: 0.06
  17637. }
  17638. },
  17639. },
  17640. [
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(3, "meters")
  17644. },
  17645. {
  17646. name: "Kaiju",
  17647. height: math.unit(120, "meters"),
  17648. default: true
  17649. },
  17650. {
  17651. name: "Mega Kaiju",
  17652. height: math.unit(240, "km")
  17653. },
  17654. {
  17655. name: "Giga Kaiju",
  17656. height: math.unit(400, "megameters")
  17657. },
  17658. {
  17659. name: "Tera Kaiju",
  17660. height: math.unit(800, "gigameters")
  17661. },
  17662. {
  17663. name: "Kaiju Dragon Goddess",
  17664. height: math.unit(26, "zettaparsecs")
  17665. },
  17666. ]
  17667. ))
  17668. characterMakers.push(() => makeCharacter(
  17669. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17670. {
  17671. side: {
  17672. height: math.unit(283 / 124 * 6, "feet"),
  17673. weight: math.unit(35000, "lb"),
  17674. name: "Side",
  17675. image: {
  17676. source: "./media/characters/malfaren/side.svg",
  17677. extra: 2500 / 1010,
  17678. bottom: 0.01
  17679. }
  17680. },
  17681. front: {
  17682. height: math.unit(22.36, "feet"),
  17683. weight: math.unit(35000, "lb"),
  17684. name: "Front",
  17685. image: {
  17686. source: "./media/characters/malfaren/front.svg",
  17687. extra: 1631 / 1476,
  17688. bottom: 0.01
  17689. }
  17690. },
  17691. maw: {
  17692. height: math.unit(6.9, "feet"),
  17693. name: "Maw",
  17694. image: {
  17695. source: "./media/characters/malfaren/maw.svg"
  17696. }
  17697. },
  17698. },
  17699. [
  17700. {
  17701. name: "Big",
  17702. height: math.unit(283 / 162 * 6, "feet"),
  17703. },
  17704. {
  17705. name: "Bigger",
  17706. height: math.unit(283 / 124 * 6, "feet")
  17707. },
  17708. {
  17709. name: "Massive",
  17710. height: math.unit(283 / 92 * 6, "feet"),
  17711. default: true
  17712. },
  17713. {
  17714. name: "👀💦",
  17715. height: math.unit(283 / 73 * 6, "feet"),
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17721. {
  17722. front: {
  17723. height: math.unit(1.7, "m"),
  17724. weight: math.unit(70, "kg"),
  17725. name: "Front",
  17726. image: {
  17727. source: "./media/characters/kernel/front.svg",
  17728. extra: 222 / 210,
  17729. bottom: 0.007
  17730. }
  17731. },
  17732. },
  17733. [
  17734. {
  17735. name: "Nano",
  17736. height: math.unit(17, "micrometers")
  17737. },
  17738. {
  17739. name: "Micro",
  17740. height: math.unit(1.7, "mm")
  17741. },
  17742. {
  17743. name: "Small",
  17744. height: math.unit(1.7, "cm")
  17745. },
  17746. {
  17747. name: "Normal",
  17748. height: math.unit(1.7, "m"),
  17749. default: true
  17750. },
  17751. ]
  17752. ))
  17753. characterMakers.push(() => makeCharacter(
  17754. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17755. {
  17756. front: {
  17757. height: math.unit(1.75, "meters"),
  17758. weight: math.unit(65, "kg"),
  17759. name: "Front",
  17760. image: {
  17761. source: "./media/characters/jayne-folest/front.svg",
  17762. extra: 2115 / 2007,
  17763. bottom: 0.02
  17764. }
  17765. },
  17766. back: {
  17767. height: math.unit(1.75, "meters"),
  17768. weight: math.unit(65, "kg"),
  17769. name: "Back",
  17770. image: {
  17771. source: "./media/characters/jayne-folest/back.svg",
  17772. extra: 2115 / 2007,
  17773. bottom: 0.005
  17774. }
  17775. },
  17776. frontClothed: {
  17777. height: math.unit(1.75, "meters"),
  17778. weight: math.unit(65, "kg"),
  17779. name: "Front (Clothed)",
  17780. image: {
  17781. source: "./media/characters/jayne-folest/front-clothed.svg",
  17782. extra: 2115 / 2007,
  17783. bottom: 0.035
  17784. }
  17785. },
  17786. hand: {
  17787. height: math.unit(1 / 1.260, "feet"),
  17788. name: "Hand",
  17789. image: {
  17790. source: "./media/characters/jayne-folest/hand.svg"
  17791. }
  17792. },
  17793. foot: {
  17794. height: math.unit(1 / 0.918, "feet"),
  17795. name: "Foot",
  17796. image: {
  17797. source: "./media/characters/jayne-folest/foot.svg"
  17798. }
  17799. },
  17800. },
  17801. [
  17802. {
  17803. name: "Micro",
  17804. height: math.unit(4, "cm")
  17805. },
  17806. {
  17807. name: "Normal",
  17808. height: math.unit(1.75, "meters")
  17809. },
  17810. {
  17811. name: "Macro",
  17812. height: math.unit(47.5, "meters"),
  17813. default: true
  17814. },
  17815. ]
  17816. ))
  17817. characterMakers.push(() => makeCharacter(
  17818. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17819. {
  17820. front: {
  17821. height: math.unit(180, "cm"),
  17822. weight: math.unit(70, "kg"),
  17823. name: "Front",
  17824. image: {
  17825. source: "./media/characters/algier/front.svg",
  17826. extra: 596 / 572,
  17827. bottom: 0.04
  17828. }
  17829. },
  17830. back: {
  17831. height: math.unit(180, "cm"),
  17832. weight: math.unit(70, "kg"),
  17833. name: "Back",
  17834. image: {
  17835. source: "./media/characters/algier/back.svg",
  17836. extra: 596 / 572,
  17837. bottom: 0.025
  17838. }
  17839. },
  17840. frontdressed: {
  17841. height: math.unit(180, "cm"),
  17842. weight: math.unit(150, "kg"),
  17843. name: "Front-dressed",
  17844. image: {
  17845. source: "./media/characters/algier/front-dressed.svg",
  17846. extra: 596 / 572,
  17847. bottom: 0.038
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Micro",
  17854. height: math.unit(5, "cm")
  17855. },
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(180, "cm"),
  17859. default: true
  17860. },
  17861. {
  17862. name: "Macro",
  17863. height: math.unit(64, "m")
  17864. },
  17865. ]
  17866. ))
  17867. characterMakers.push(() => makeCharacter(
  17868. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17869. {
  17870. upright: {
  17871. height: math.unit(7, "feet"),
  17872. weight: math.unit(300, "lb"),
  17873. name: "Upright",
  17874. image: {
  17875. source: "./media/characters/pretzel/upright.svg",
  17876. extra: 534 / 522,
  17877. bottom: 0.065
  17878. }
  17879. },
  17880. sprawling: {
  17881. height: math.unit(3.75, "feet"),
  17882. weight: math.unit(300, "lb"),
  17883. name: "Sprawling",
  17884. image: {
  17885. source: "./media/characters/pretzel/sprawling.svg",
  17886. extra: 314 / 281,
  17887. bottom: 0.1
  17888. }
  17889. },
  17890. tongue: {
  17891. height: math.unit(2, "feet"),
  17892. name: "Tongue",
  17893. image: {
  17894. source: "./media/characters/pretzel/tongue.svg"
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(7, "feet"),
  17902. default: true
  17903. },
  17904. {
  17905. name: "Oversized",
  17906. height: math.unit(15, "feet")
  17907. },
  17908. {
  17909. name: "Huge",
  17910. height: math.unit(30, "feet")
  17911. },
  17912. {
  17913. name: "Macro",
  17914. height: math.unit(250, "feet")
  17915. },
  17916. ]
  17917. ))
  17918. characterMakers.push(() => makeCharacter(
  17919. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17920. {
  17921. sideFront: {
  17922. height: math.unit(5 + 2 / 12, "feet"),
  17923. weight: math.unit(120, "lb"),
  17924. name: "Front Side",
  17925. image: {
  17926. source: "./media/characters/roxi/side-front.svg",
  17927. extra: 2924 / 2717,
  17928. bottom: 0.08
  17929. }
  17930. },
  17931. sideBack: {
  17932. height: math.unit(5 + 2 / 12, "feet"),
  17933. weight: math.unit(120, "lb"),
  17934. name: "Back Side",
  17935. image: {
  17936. source: "./media/characters/roxi/side-back.svg",
  17937. extra: 2904 / 2693,
  17938. bottom: 0.06
  17939. }
  17940. },
  17941. front: {
  17942. height: math.unit(5 + 2 / 12, "feet"),
  17943. weight: math.unit(120, "lb"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/roxi/front.svg",
  17947. extra: 2028 / 1907,
  17948. bottom: 0.01
  17949. }
  17950. },
  17951. frontAlt: {
  17952. height: math.unit(5 + 2 / 12, "feet"),
  17953. weight: math.unit(120, "lb"),
  17954. name: "Front (Alt)",
  17955. image: {
  17956. source: "./media/characters/roxi/front-alt.svg",
  17957. extra: 1828 / 1798,
  17958. bottom: 0.01
  17959. }
  17960. },
  17961. sitting: {
  17962. height: math.unit(2.8, "feet"),
  17963. weight: math.unit(120, "lb"),
  17964. name: "Sitting",
  17965. image: {
  17966. source: "./media/characters/roxi/sitting.svg",
  17967. extra: 2660 / 2462,
  17968. bottom: 0.1
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(5 + 2 / 12, "feet"),
  17976. default: true
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17982. {
  17983. side: {
  17984. height: math.unit(55, "feet"),
  17985. weight: math.unit(153, "tons"),
  17986. name: "Side",
  17987. image: {
  17988. source: "./media/characters/shadow/side.svg",
  17989. extra: 701 / 628,
  17990. bottom: 0.02
  17991. }
  17992. },
  17993. flying: {
  17994. height: math.unit(145, "feet"),
  17995. weight: math.unit(153, "tons"),
  17996. name: "Flying",
  17997. image: {
  17998. source: "./media/characters/shadow/flying.svg"
  17999. }
  18000. },
  18001. },
  18002. [
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(55, "feet"),
  18006. default: true
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18012. {
  18013. front: {
  18014. height: math.unit(6, "feet"),
  18015. weight: math.unit(200, "lb"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/marcie/front.svg",
  18019. extra: 960 / 876,
  18020. bottom: 58 / 1017.87
  18021. }
  18022. },
  18023. },
  18024. [
  18025. {
  18026. name: "Macro",
  18027. height: math.unit(1, "mile"),
  18028. default: true
  18029. },
  18030. ]
  18031. ))
  18032. characterMakers.push(() => makeCharacter(
  18033. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18034. {
  18035. front: {
  18036. height: math.unit(7, "feet"),
  18037. weight: math.unit(200, "lb"),
  18038. name: "Front",
  18039. image: {
  18040. source: "./media/characters/kachina/front.svg",
  18041. extra: 1290.68 / 1119,
  18042. bottom: 36.5 / 1327.18
  18043. }
  18044. },
  18045. },
  18046. [
  18047. {
  18048. name: "Normal",
  18049. height: math.unit(7, "feet"),
  18050. default: true
  18051. },
  18052. ]
  18053. ))
  18054. characterMakers.push(() => makeCharacter(
  18055. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18056. {
  18057. looking: {
  18058. height: math.unit(2, "meters"),
  18059. weight: math.unit(300, "kg"),
  18060. name: "Looking",
  18061. image: {
  18062. source: "./media/characters/kash/looking.svg",
  18063. extra: 474 / 344,
  18064. bottom: 0.03
  18065. }
  18066. },
  18067. side: {
  18068. height: math.unit(2, "meters"),
  18069. weight: math.unit(300, "kg"),
  18070. name: "Side",
  18071. image: {
  18072. source: "./media/characters/kash/side.svg",
  18073. extra: 302 / 251,
  18074. bottom: 0.03
  18075. }
  18076. },
  18077. front: {
  18078. height: math.unit(2, "meters"),
  18079. weight: math.unit(300, "kg"),
  18080. name: "Front",
  18081. image: {
  18082. source: "./media/characters/kash/front.svg",
  18083. extra: 495 / 360,
  18084. bottom: 0.015
  18085. }
  18086. },
  18087. },
  18088. [
  18089. {
  18090. name: "Normal",
  18091. height: math.unit(2, "meters"),
  18092. default: true
  18093. },
  18094. {
  18095. name: "Big",
  18096. height: math.unit(3, "meters")
  18097. },
  18098. {
  18099. name: "Large",
  18100. height: math.unit(5, "meters")
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18106. {
  18107. feeding: {
  18108. height: math.unit(6.7, "feet"),
  18109. weight: math.unit(350, "lb"),
  18110. name: "Feeding",
  18111. image: {
  18112. source: "./media/characters/lalim/feeding.svg",
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(6.7, "feet"),
  18120. default: true
  18121. },
  18122. ]
  18123. ))
  18124. characterMakers.push(() => makeCharacter(
  18125. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18126. {
  18127. front: {
  18128. height: math.unit(9.5, "feet"),
  18129. weight: math.unit(600, "lb"),
  18130. name: "Front",
  18131. image: {
  18132. source: "./media/characters/de'vout/front.svg",
  18133. extra: 1443 / 1328,
  18134. bottom: 0.025
  18135. }
  18136. },
  18137. back: {
  18138. height: math.unit(9.5, "feet"),
  18139. weight: math.unit(600, "lb"),
  18140. name: "Back",
  18141. image: {
  18142. source: "./media/characters/de'vout/back.svg",
  18143. extra: 1443 / 1328
  18144. }
  18145. },
  18146. frontDressed: {
  18147. height: math.unit(9.5, "feet"),
  18148. weight: math.unit(600, "lb"),
  18149. name: "Front (Dressed",
  18150. image: {
  18151. source: "./media/characters/de'vout/front-dressed.svg",
  18152. extra: 1443 / 1328,
  18153. bottom: 0.025
  18154. }
  18155. },
  18156. backDressed: {
  18157. height: math.unit(9.5, "feet"),
  18158. weight: math.unit(600, "lb"),
  18159. name: "Back (Dressed",
  18160. image: {
  18161. source: "./media/characters/de'vout/back-dressed.svg",
  18162. extra: 1443 / 1328
  18163. }
  18164. },
  18165. },
  18166. [
  18167. {
  18168. name: "Normal",
  18169. height: math.unit(9.5, "feet"),
  18170. default: true
  18171. },
  18172. ]
  18173. ))
  18174. characterMakers.push(() => makeCharacter(
  18175. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18176. {
  18177. front: {
  18178. height: math.unit(8, "feet"),
  18179. weight: math.unit(225, "lb"),
  18180. name: "Front",
  18181. image: {
  18182. source: "./media/characters/talana/front.svg",
  18183. extra: 1410 / 1300,
  18184. bottom: 0.015
  18185. }
  18186. },
  18187. frontDressed: {
  18188. height: math.unit(8, "feet"),
  18189. weight: math.unit(225, "lb"),
  18190. name: "Front (Dressed",
  18191. image: {
  18192. source: "./media/characters/talana/front-dressed.svg",
  18193. extra: 1410 / 1300,
  18194. bottom: 0.015
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(8, "feet"),
  18202. default: true
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18208. {
  18209. side: {
  18210. height: math.unit(7.2, "feet"),
  18211. weight: math.unit(150, "lb"),
  18212. name: "Side",
  18213. image: {
  18214. source: "./media/characters/xeauvok/side.svg",
  18215. extra: 1975 / 1523,
  18216. bottom: 0.07
  18217. }
  18218. },
  18219. },
  18220. [
  18221. {
  18222. name: "Normal",
  18223. height: math.unit(7.2, "feet"),
  18224. default: true
  18225. },
  18226. ]
  18227. ))
  18228. characterMakers.push(() => makeCharacter(
  18229. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18230. {
  18231. side: {
  18232. height: math.unit(10, "feet"),
  18233. weight: math.unit(900, "kg"),
  18234. name: "Side",
  18235. image: {
  18236. source: "./media/characters/zara/side.svg",
  18237. extra: 504 / 498
  18238. }
  18239. },
  18240. },
  18241. [
  18242. {
  18243. name: "Normal",
  18244. height: math.unit(10, "feet"),
  18245. default: true
  18246. },
  18247. ]
  18248. ))
  18249. characterMakers.push(() => makeCharacter(
  18250. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18251. {
  18252. side: {
  18253. height: math.unit(6, "feet"),
  18254. weight: math.unit(150, "lb"),
  18255. name: "Side",
  18256. image: {
  18257. source: "./media/characters/richard-dragon/side.svg",
  18258. extra: 845 / 340,
  18259. bottom: 0.017
  18260. }
  18261. },
  18262. maw: {
  18263. height: math.unit(2.97, "feet"),
  18264. name: "Maw",
  18265. image: {
  18266. source: "./media/characters/richard-dragon/maw.svg"
  18267. }
  18268. },
  18269. },
  18270. [
  18271. ]
  18272. ))
  18273. characterMakers.push(() => makeCharacter(
  18274. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18275. {
  18276. front: {
  18277. height: math.unit(4, "feet"),
  18278. weight: math.unit(100, "lb"),
  18279. name: "Front",
  18280. image: {
  18281. source: "./media/characters/richard-smeargle/front.svg",
  18282. extra: 2952 / 2820,
  18283. bottom: 0.028
  18284. }
  18285. },
  18286. },
  18287. [
  18288. {
  18289. name: "Normal",
  18290. height: math.unit(4, "feet"),
  18291. default: true
  18292. },
  18293. {
  18294. name: "Dynamax",
  18295. height: math.unit(20, "meters")
  18296. },
  18297. ]
  18298. ))
  18299. characterMakers.push(() => makeCharacter(
  18300. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18301. {
  18302. front: {
  18303. height: math.unit(6, "feet"),
  18304. weight: math.unit(110, "lb"),
  18305. name: "Front",
  18306. image: {
  18307. source: "./media/characters/klay/front.svg",
  18308. extra: 962 / 883,
  18309. bottom: 0.04
  18310. }
  18311. },
  18312. back: {
  18313. height: math.unit(6, "feet"),
  18314. weight: math.unit(110, "lb"),
  18315. name: "Back",
  18316. image: {
  18317. source: "./media/characters/klay/back.svg",
  18318. extra: 962 / 883
  18319. }
  18320. },
  18321. beans: {
  18322. height: math.unit(1.15, "feet"),
  18323. name: "Beans",
  18324. image: {
  18325. source: "./media/characters/klay/beans.svg"
  18326. }
  18327. },
  18328. },
  18329. [
  18330. {
  18331. name: "Micro",
  18332. height: math.unit(6, "inches")
  18333. },
  18334. {
  18335. name: "Mini",
  18336. height: math.unit(3, "feet")
  18337. },
  18338. {
  18339. name: "Normal",
  18340. height: math.unit(6, "feet"),
  18341. default: true
  18342. },
  18343. {
  18344. name: "Big",
  18345. height: math.unit(25, "feet")
  18346. },
  18347. {
  18348. name: "Macro",
  18349. height: math.unit(100, "feet")
  18350. },
  18351. {
  18352. name: "Megamacro",
  18353. height: math.unit(400, "feet")
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18359. {
  18360. front: {
  18361. height: math.unit(6, "feet"),
  18362. weight: math.unit(160, "lb"),
  18363. name: "Front",
  18364. image: {
  18365. source: "./media/characters/marcus/front.svg",
  18366. extra: 734 / 676,
  18367. bottom: 0.03
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Little",
  18374. height: math.unit(6, "feet")
  18375. },
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(110, "feet"),
  18379. default: true
  18380. },
  18381. {
  18382. name: "Macro",
  18383. height: math.unit(250, "feet")
  18384. },
  18385. {
  18386. name: "Megamacro",
  18387. height: math.unit(1000, "feet")
  18388. },
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18393. {
  18394. front: {
  18395. height: math.unit(7, "feet"),
  18396. weight: math.unit(275, "lb"),
  18397. name: "Front",
  18398. image: {
  18399. source: "./media/characters/claude-delroute/front.svg",
  18400. extra: 230 / 214,
  18401. bottom: 0.007
  18402. }
  18403. },
  18404. side: {
  18405. height: math.unit(7, "feet"),
  18406. weight: math.unit(275, "lb"),
  18407. name: "Side",
  18408. image: {
  18409. source: "./media/characters/claude-delroute/side.svg",
  18410. extra: 222 / 214,
  18411. bottom: 0.01
  18412. }
  18413. },
  18414. back: {
  18415. height: math.unit(7, "feet"),
  18416. weight: math.unit(275, "lb"),
  18417. name: "Back",
  18418. image: {
  18419. source: "./media/characters/claude-delroute/back.svg",
  18420. extra: 230 / 214,
  18421. bottom: 0.015
  18422. }
  18423. },
  18424. maw: {
  18425. height: math.unit(0.6407, "meters"),
  18426. name: "Maw",
  18427. image: {
  18428. source: "./media/characters/claude-delroute/maw.svg"
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Normal",
  18435. height: math.unit(7, "feet"),
  18436. default: true
  18437. },
  18438. {
  18439. name: "Lorge",
  18440. height: math.unit(20, "feet")
  18441. },
  18442. ]
  18443. ))
  18444. characterMakers.push(() => makeCharacter(
  18445. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18446. {
  18447. front: {
  18448. height: math.unit(8 + 4 / 12, "feet"),
  18449. weight: math.unit(600, "lb"),
  18450. name: "Front",
  18451. image: {
  18452. source: "./media/characters/dragonien/front.svg",
  18453. extra: 100 / 94,
  18454. bottom: 3.3 / 103.3445
  18455. }
  18456. },
  18457. back: {
  18458. height: math.unit(8 + 4 / 12, "feet"),
  18459. weight: math.unit(600, "lb"),
  18460. name: "Back",
  18461. image: {
  18462. source: "./media/characters/dragonien/back.svg",
  18463. extra: 776 / 746,
  18464. bottom: 6.4 / 782.0616
  18465. }
  18466. },
  18467. foot: {
  18468. height: math.unit(1.54, "feet"),
  18469. name: "Foot",
  18470. image: {
  18471. source: "./media/characters/dragonien/foot.svg",
  18472. }
  18473. },
  18474. },
  18475. [
  18476. {
  18477. name: "Normal",
  18478. height: math.unit(8 + 4 / 12, "feet"),
  18479. default: true
  18480. },
  18481. {
  18482. name: "Macro",
  18483. height: math.unit(200, "feet")
  18484. },
  18485. {
  18486. name: "Megamacro",
  18487. height: math.unit(1, "mile")
  18488. },
  18489. {
  18490. name: "Gigamacro",
  18491. height: math.unit(1000, "miles")
  18492. },
  18493. ]
  18494. ))
  18495. characterMakers.push(() => makeCharacter(
  18496. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18497. {
  18498. front: {
  18499. height: math.unit(5 + 2 / 12, "feet"),
  18500. weight: math.unit(110, "lb"),
  18501. name: "Front",
  18502. image: {
  18503. source: "./media/characters/desta/front.svg",
  18504. extra: 767 / 726,
  18505. bottom: 11.7 / 779
  18506. }
  18507. },
  18508. back: {
  18509. height: math.unit(5 + 2 / 12, "feet"),
  18510. weight: math.unit(110, "lb"),
  18511. name: "Back",
  18512. image: {
  18513. source: "./media/characters/desta/back.svg",
  18514. extra: 777 / 728,
  18515. bottom: 6 / 784
  18516. }
  18517. },
  18518. frontAlt: {
  18519. height: math.unit(5 + 2 / 12, "feet"),
  18520. weight: math.unit(110, "lb"),
  18521. name: "Front",
  18522. image: {
  18523. source: "./media/characters/desta/front-alt.svg",
  18524. extra: 1482 / 1417
  18525. }
  18526. },
  18527. side: {
  18528. height: math.unit(5 + 2 / 12, "feet"),
  18529. weight: math.unit(110, "lb"),
  18530. name: "Side",
  18531. image: {
  18532. source: "./media/characters/desta/side.svg",
  18533. extra: 2579 / 2491,
  18534. bottom: 0.053
  18535. }
  18536. },
  18537. },
  18538. [
  18539. {
  18540. name: "Micro",
  18541. height: math.unit(6, "inches")
  18542. },
  18543. {
  18544. name: "Normal",
  18545. height: math.unit(5 + 2 / 12, "feet"),
  18546. default: true
  18547. },
  18548. {
  18549. name: "Macro",
  18550. height: math.unit(62, "feet")
  18551. },
  18552. {
  18553. name: "Megamacro",
  18554. height: math.unit(1800, "feet")
  18555. },
  18556. ]
  18557. ))
  18558. characterMakers.push(() => makeCharacter(
  18559. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18560. {
  18561. front: {
  18562. height: math.unit(10, "feet"),
  18563. weight: math.unit(700, "lb"),
  18564. name: "Front",
  18565. image: {
  18566. source: "./media/characters/storm-alystar/front.svg",
  18567. extra: 2112 / 1898,
  18568. bottom: 0.034
  18569. }
  18570. },
  18571. },
  18572. [
  18573. {
  18574. name: "Micro",
  18575. height: math.unit(3.5, "inches")
  18576. },
  18577. {
  18578. name: "Normal",
  18579. height: math.unit(10, "feet"),
  18580. default: true
  18581. },
  18582. {
  18583. name: "Macro",
  18584. height: math.unit(400, "feet")
  18585. },
  18586. {
  18587. name: "Deific",
  18588. height: math.unit(60, "miles")
  18589. },
  18590. ]
  18591. ))
  18592. characterMakers.push(() => makeCharacter(
  18593. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18594. {
  18595. front: {
  18596. height: math.unit(2.35, "meters"),
  18597. weight: math.unit(119, "kg"),
  18598. name: "Front",
  18599. image: {
  18600. source: "./media/characters/ilia/front.svg",
  18601. extra: 1285 / 1255,
  18602. bottom: 0.06
  18603. }
  18604. },
  18605. },
  18606. [
  18607. {
  18608. name: "Normal",
  18609. height: math.unit(2.35, "meters")
  18610. },
  18611. {
  18612. name: "Macro",
  18613. height: math.unit(140, "meters"),
  18614. default: true
  18615. },
  18616. {
  18617. name: "Megamacro",
  18618. height: math.unit(100, "miles")
  18619. },
  18620. ]
  18621. ))
  18622. characterMakers.push(() => makeCharacter(
  18623. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18624. {
  18625. front: {
  18626. height: math.unit(6 + 5 / 12, "feet"),
  18627. weight: math.unit(190, "lb"),
  18628. name: "Front",
  18629. image: {
  18630. source: "./media/characters/kingdead/front.svg",
  18631. extra: 1228 / 1177
  18632. }
  18633. },
  18634. },
  18635. [
  18636. {
  18637. name: "Micro",
  18638. height: math.unit(7, "inches")
  18639. },
  18640. {
  18641. name: "Normal",
  18642. height: math.unit(6 + 5 / 12, "feet")
  18643. },
  18644. {
  18645. name: "Macro",
  18646. height: math.unit(150, "feet"),
  18647. default: true
  18648. },
  18649. {
  18650. name: "Megamacro",
  18651. height: math.unit(200, "miles")
  18652. },
  18653. ]
  18654. ))
  18655. characterMakers.push(() => makeCharacter(
  18656. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18657. {
  18658. front: {
  18659. height: math.unit(8, "feet"),
  18660. weight: math.unit(600, "lb"),
  18661. name: "Front",
  18662. image: {
  18663. source: "./media/characters/kyrehx/front.svg",
  18664. extra: 1195 / 1095,
  18665. bottom: 0.034
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Micro",
  18672. height: math.unit(2, "inches")
  18673. },
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(8, "feet"),
  18677. default: true
  18678. },
  18679. {
  18680. name: "Macro",
  18681. height: math.unit(255, "feet")
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18687. {
  18688. front: {
  18689. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18690. weight: math.unit(184, "lb"),
  18691. name: "Front",
  18692. image: {
  18693. source: "./media/characters/xang/front.svg",
  18694. extra: 845 / 755
  18695. }
  18696. },
  18697. },
  18698. [
  18699. {
  18700. name: "Normal",
  18701. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18702. default: true
  18703. },
  18704. {
  18705. name: "Macro",
  18706. height: math.unit(0.935 * 146, "feet")
  18707. },
  18708. {
  18709. name: "Megamacro",
  18710. height: math.unit(0.935 * 3, "miles")
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18716. {
  18717. frontDressed: {
  18718. height: math.unit(5 + 7 / 12, "feet"),
  18719. weight: math.unit(140, "lb"),
  18720. name: "Front (Dressed)",
  18721. image: {
  18722. source: "./media/characters/doc-weardno/front-dressed.svg",
  18723. extra: 263 / 234
  18724. }
  18725. },
  18726. backDressed: {
  18727. height: math.unit(5 + 7 / 12, "feet"),
  18728. weight: math.unit(140, "lb"),
  18729. name: "Back (Dressed)",
  18730. image: {
  18731. source: "./media/characters/doc-weardno/back-dressed.svg",
  18732. extra: 266 / 238
  18733. }
  18734. },
  18735. front: {
  18736. height: math.unit(5 + 7 / 12, "feet"),
  18737. weight: math.unit(140, "lb"),
  18738. name: "Front",
  18739. image: {
  18740. source: "./media/characters/doc-weardno/front.svg",
  18741. extra: 254 / 233
  18742. }
  18743. },
  18744. },
  18745. [
  18746. {
  18747. name: "Micro",
  18748. height: math.unit(3, "inches")
  18749. },
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(5 + 7 / 12, "feet"),
  18753. default: true
  18754. },
  18755. {
  18756. name: "Macro",
  18757. height: math.unit(25, "feet")
  18758. },
  18759. {
  18760. name: "Megamacro",
  18761. height: math.unit(2, "miles")
  18762. },
  18763. ]
  18764. ))
  18765. characterMakers.push(() => makeCharacter(
  18766. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18767. {
  18768. front: {
  18769. height: math.unit(6 + 2 / 12, "feet"),
  18770. weight: math.unit(153, "lb"),
  18771. name: "Front",
  18772. image: {
  18773. source: "./media/characters/seth-whilst/front.svg",
  18774. bottom: 0.07
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Micro",
  18781. height: math.unit(5, "inches")
  18782. },
  18783. {
  18784. name: "Normal",
  18785. height: math.unit(6 + 2 / 12, "feet"),
  18786. default: true
  18787. },
  18788. ]
  18789. ))
  18790. characterMakers.push(() => makeCharacter(
  18791. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18792. {
  18793. front: {
  18794. height: math.unit(3, "inches"),
  18795. weight: math.unit(8, "grams"),
  18796. name: "Front",
  18797. image: {
  18798. source: "./media/characters/pocket-jabari/front.svg",
  18799. extra: 1024 / 974,
  18800. bottom: 0.039
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Minimicro",
  18807. height: math.unit(8, "mm")
  18808. },
  18809. {
  18810. name: "Micro",
  18811. height: math.unit(3, "inches"),
  18812. default: true
  18813. },
  18814. {
  18815. name: "Normal",
  18816. height: math.unit(3, "feet")
  18817. },
  18818. ]
  18819. ))
  18820. characterMakers.push(() => makeCharacter(
  18821. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18822. {
  18823. front: {
  18824. height: math.unit(15, "feet"),
  18825. weight: math.unit(3280, "lb"),
  18826. name: "Front",
  18827. image: {
  18828. source: "./media/characters/sapphy/front.svg",
  18829. extra: 671 / 577,
  18830. bottom: 0.085
  18831. }
  18832. },
  18833. back: {
  18834. height: math.unit(15, "feet"),
  18835. weight: math.unit(3280, "lb"),
  18836. name: "Back",
  18837. image: {
  18838. source: "./media/characters/sapphy/back.svg",
  18839. extra: 631 / 607,
  18840. bottom: 0.045
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Normal",
  18847. height: math.unit(15, "feet")
  18848. },
  18849. {
  18850. name: "Casual Macro",
  18851. height: math.unit(120, "feet")
  18852. },
  18853. {
  18854. name: "Macro",
  18855. height: math.unit(2150, "feet"),
  18856. default: true
  18857. },
  18858. {
  18859. name: "Megamacro",
  18860. height: math.unit(8, "miles")
  18861. },
  18862. {
  18863. name: "Galaxy Mom",
  18864. height: math.unit(6, "megalightyears")
  18865. },
  18866. ]
  18867. ))
  18868. characterMakers.push(() => makeCharacter(
  18869. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18870. {
  18871. front: {
  18872. height: math.unit(6, "feet"),
  18873. weight: math.unit(170, "lb"),
  18874. name: "Front",
  18875. image: {
  18876. source: "./media/characters/kiro/front.svg",
  18877. extra: 1064 / 1012,
  18878. bottom: 0.052
  18879. }
  18880. },
  18881. },
  18882. [
  18883. {
  18884. name: "Micro",
  18885. height: math.unit(6, "inches")
  18886. },
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(6, "feet"),
  18890. default: true
  18891. },
  18892. {
  18893. name: "Macro",
  18894. height: math.unit(72, "feet")
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(5 + 9 / 12, "feet"),
  18903. weight: math.unit(175, "lb"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/irishfox/front.svg",
  18907. extra: 1912 / 1680,
  18908. bottom: 0.02
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Nano",
  18915. height: math.unit(1, "mm")
  18916. },
  18917. {
  18918. name: "Micro",
  18919. height: math.unit(2, "inches")
  18920. },
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(5 + 9 / 12, "feet"),
  18924. default: true
  18925. },
  18926. {
  18927. name: "Macro",
  18928. height: math.unit(45, "feet")
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18934. {
  18935. front: {
  18936. height: math.unit(6 + 1 / 12, "feet"),
  18937. weight: math.unit(75, "lb"),
  18938. name: "Front",
  18939. image: {
  18940. source: "./media/characters/aronai-sieyes/front.svg",
  18941. extra: 1556 / 1480,
  18942. bottom: 0.015
  18943. }
  18944. },
  18945. side: {
  18946. height: math.unit(6 + 1 / 12, "feet"),
  18947. weight: math.unit(75, "lb"),
  18948. name: "Side",
  18949. image: {
  18950. source: "./media/characters/aronai-sieyes/side.svg",
  18951. extra: 1433 / 1390,
  18952. bottom: 0.0393
  18953. }
  18954. },
  18955. back: {
  18956. height: math.unit(6 + 1 / 12, "feet"),
  18957. weight: math.unit(75, "lb"),
  18958. name: "Back",
  18959. image: {
  18960. source: "./media/characters/aronai-sieyes/back.svg",
  18961. extra: 1544 / 1494,
  18962. bottom: 0.02
  18963. }
  18964. },
  18965. frontClothed: {
  18966. height: math.unit(6 + 1 / 12, "feet"),
  18967. weight: math.unit(75, "lb"),
  18968. name: "Front (Clothed)",
  18969. image: {
  18970. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18971. extra: 1582 / 1527
  18972. }
  18973. },
  18974. feral: {
  18975. height: math.unit(18, "feet"),
  18976. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18977. name: "Feral",
  18978. image: {
  18979. source: "./media/characters/aronai-sieyes/feral.svg",
  18980. extra: 1530 / 1240,
  18981. bottom: 0.035
  18982. }
  18983. },
  18984. },
  18985. [
  18986. {
  18987. name: "Micro",
  18988. height: math.unit(2, "inches")
  18989. },
  18990. {
  18991. name: "Normal",
  18992. height: math.unit(6 + 1 / 12, "feet"),
  18993. default: true
  18994. }
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18999. {
  19000. front: {
  19001. height: math.unit(12, "feet"),
  19002. weight: math.unit(410, "kg"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/xuna/front.svg",
  19006. extra: 2184 / 1980
  19007. }
  19008. },
  19009. side: {
  19010. height: math.unit(12, "feet"),
  19011. weight: math.unit(410, "kg"),
  19012. name: "Side",
  19013. image: {
  19014. source: "./media/characters/xuna/side.svg",
  19015. extra: 2184 / 1980
  19016. }
  19017. },
  19018. back: {
  19019. height: math.unit(12, "feet"),
  19020. weight: math.unit(410, "kg"),
  19021. name: "Back",
  19022. image: {
  19023. source: "./media/characters/xuna/back.svg",
  19024. extra: 2184 / 1980
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Nano glow",
  19031. height: math.unit(10, "nm")
  19032. },
  19033. {
  19034. name: "Micro floof",
  19035. height: math.unit(0.3, "m")
  19036. },
  19037. {
  19038. name: "Huggable softy boi",
  19039. height: math.unit(3.6576, "m"),
  19040. default: true
  19041. },
  19042. {
  19043. name: "Admirable floof",
  19044. height: math.unit(80, "meters")
  19045. },
  19046. {
  19047. name: "Gentle macro",
  19048. height: math.unit(300, "meters")
  19049. },
  19050. {
  19051. name: "Very careful floof",
  19052. height: math.unit(3200, "meters")
  19053. },
  19054. {
  19055. name: "The mega floof",
  19056. height: math.unit(36000, "meters")
  19057. },
  19058. {
  19059. name: "Giga-fur-Wicker",
  19060. height: math.unit(4800000, "meters")
  19061. },
  19062. {
  19063. name: "Licky world",
  19064. height: math.unit(20000000, "meters")
  19065. },
  19066. {
  19067. name: "Floofy cyan sun",
  19068. height: math.unit(1500000000, "meters")
  19069. },
  19070. {
  19071. name: "Milky Wicker",
  19072. height: math.unit(1000000000000000000000, "meters")
  19073. },
  19074. {
  19075. name: "The observing Wicker",
  19076. height: math.unit(999999999999999999999999999, "meters")
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19082. {
  19083. front: {
  19084. height: math.unit(5 + 9 / 12, "feet"),
  19085. weight: math.unit(150, "lb"),
  19086. name: "Front",
  19087. image: {
  19088. source: "./media/characters/arokha-sieyes/front.svg",
  19089. extra: 1425 / 1284,
  19090. bottom: 0.05
  19091. }
  19092. },
  19093. },
  19094. [
  19095. {
  19096. name: "Normal",
  19097. height: math.unit(5 + 9 / 12, "feet")
  19098. },
  19099. {
  19100. name: "Macro",
  19101. height: math.unit(30, "meters"),
  19102. default: true
  19103. },
  19104. ]
  19105. ))
  19106. characterMakers.push(() => makeCharacter(
  19107. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19108. {
  19109. front: {
  19110. height: math.unit(6, "feet"),
  19111. weight: math.unit(180, "lb"),
  19112. name: "Front",
  19113. image: {
  19114. source: "./media/characters/arokh-sieyes/front.svg",
  19115. extra: 1830 / 1769,
  19116. bottom: 0.01
  19117. }
  19118. },
  19119. },
  19120. [
  19121. {
  19122. name: "Normal",
  19123. height: math.unit(6, "feet")
  19124. },
  19125. {
  19126. name: "Macro",
  19127. height: math.unit(30, "meters"),
  19128. default: true
  19129. },
  19130. ]
  19131. ))
  19132. characterMakers.push(() => makeCharacter(
  19133. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19134. {
  19135. side: {
  19136. height: math.unit(13 + 1 / 12, "feet"),
  19137. weight: math.unit(8.5, "tonnes"),
  19138. name: "Side",
  19139. image: {
  19140. source: "./media/characters/goldeneye/side.svg",
  19141. extra: 1182 / 778,
  19142. bottom: 0.067
  19143. }
  19144. },
  19145. paw: {
  19146. height: math.unit(3.4, "feet"),
  19147. name: "Paw",
  19148. image: {
  19149. source: "./media/characters/goldeneye/paw.svg"
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(13 + 1 / 12, "feet"),
  19157. default: true
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19163. {
  19164. front: {
  19165. height: math.unit(6 + 1 / 12, "feet"),
  19166. weight: math.unit(210, "lb"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/leonardo-lycheborne/front.svg",
  19170. extra: 776/723,
  19171. bottom: 34/810
  19172. }
  19173. },
  19174. side: {
  19175. height: math.unit(6 + 1 / 12, "feet"),
  19176. weight: math.unit(210, "lb"),
  19177. name: "Side",
  19178. image: {
  19179. source: "./media/characters/leonardo-lycheborne/side.svg",
  19180. extra: 780/728,
  19181. bottom: 12/792
  19182. }
  19183. },
  19184. back: {
  19185. height: math.unit(6 + 1 / 12, "feet"),
  19186. weight: math.unit(210, "lb"),
  19187. name: "Back",
  19188. image: {
  19189. source: "./media/characters/leonardo-lycheborne/back.svg",
  19190. extra: 775/721,
  19191. bottom: 17/792
  19192. }
  19193. },
  19194. hand: {
  19195. height: math.unit(1.08, "feet"),
  19196. name: "Hand",
  19197. image: {
  19198. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19199. }
  19200. },
  19201. foot: {
  19202. height: math.unit(1.32, "feet"),
  19203. name: "Foot",
  19204. image: {
  19205. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19206. }
  19207. },
  19208. maw: {
  19209. height: math.unit(1, "feet"),
  19210. name: "Maw",
  19211. image: {
  19212. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19213. }
  19214. },
  19215. were: {
  19216. height: math.unit(20, "feet"),
  19217. weight: math.unit(7800, "lb"),
  19218. name: "Were",
  19219. image: {
  19220. source: "./media/characters/leonardo-lycheborne/were.svg",
  19221. extra: 1224/1165,
  19222. bottom: 72/1296
  19223. }
  19224. },
  19225. feral: {
  19226. height: math.unit(7.5, "feet"),
  19227. weight: math.unit(600, "lb"),
  19228. name: "Feral",
  19229. image: {
  19230. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19231. extra: 797/702,
  19232. bottom: 139/936
  19233. }
  19234. },
  19235. taur: {
  19236. height: math.unit(11, "feet"),
  19237. weight: math.unit(3300, "lb"),
  19238. name: "Taur",
  19239. image: {
  19240. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19241. extra: 1271/1197,
  19242. bottom: 47/1318
  19243. }
  19244. },
  19245. barghest: {
  19246. height: math.unit(11, "feet"),
  19247. weight: math.unit(1300, "lb"),
  19248. name: "Barghest",
  19249. image: {
  19250. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19251. extra: 1291/1204,
  19252. bottom: 37/1328
  19253. }
  19254. },
  19255. dick: {
  19256. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19257. name: "Dick",
  19258. image: {
  19259. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19260. }
  19261. },
  19262. dickWere: {
  19263. height: math.unit((20) / 3.8, "feet"),
  19264. name: "Dick (Were)",
  19265. image: {
  19266. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(6 + 1 / 12, "feet"),
  19274. default: true
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19280. {
  19281. front: {
  19282. height: math.unit(10, "feet"),
  19283. weight: math.unit(350, "lb"),
  19284. name: "Front",
  19285. image: {
  19286. source: "./media/characters/jet/front.svg",
  19287. extra: 2050 / 1980,
  19288. bottom: 0.013
  19289. }
  19290. },
  19291. back: {
  19292. height: math.unit(10, "feet"),
  19293. weight: math.unit(350, "lb"),
  19294. name: "Back",
  19295. image: {
  19296. source: "./media/characters/jet/back.svg",
  19297. extra: 2050 / 1980,
  19298. bottom: 0.013
  19299. }
  19300. },
  19301. },
  19302. [
  19303. {
  19304. name: "Micro",
  19305. height: math.unit(6, "inches")
  19306. },
  19307. {
  19308. name: "Normal",
  19309. height: math.unit(10, "feet"),
  19310. default: true
  19311. },
  19312. {
  19313. name: "Macro",
  19314. height: math.unit(100, "feet")
  19315. },
  19316. ]
  19317. ))
  19318. characterMakers.push(() => makeCharacter(
  19319. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19320. {
  19321. front: {
  19322. height: math.unit(15, "feet"),
  19323. weight: math.unit(2800, "lb"),
  19324. name: "Front",
  19325. image: {
  19326. source: "./media/characters/tanarath/front.svg",
  19327. extra: 2392 / 2220,
  19328. bottom: 0.03
  19329. }
  19330. },
  19331. back: {
  19332. height: math.unit(15, "feet"),
  19333. weight: math.unit(2800, "lb"),
  19334. name: "Back",
  19335. image: {
  19336. source: "./media/characters/tanarath/back.svg",
  19337. extra: 2392 / 2220,
  19338. bottom: 0.03
  19339. }
  19340. },
  19341. },
  19342. [
  19343. {
  19344. name: "Normal",
  19345. height: math.unit(15, "feet"),
  19346. default: true
  19347. },
  19348. ]
  19349. ))
  19350. characterMakers.push(() => makeCharacter(
  19351. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19352. {
  19353. front: {
  19354. height: math.unit(7 + 1 / 12, "feet"),
  19355. weight: math.unit(175, "lb"),
  19356. name: "Front",
  19357. image: {
  19358. source: "./media/characters/patty-cattybatty/front.svg",
  19359. extra: 908 / 874,
  19360. bottom: 0.025
  19361. }
  19362. },
  19363. },
  19364. [
  19365. {
  19366. name: "Micro",
  19367. height: math.unit(1, "inch")
  19368. },
  19369. {
  19370. name: "Normal",
  19371. height: math.unit(7 + 1 / 12, "feet")
  19372. },
  19373. {
  19374. name: "Mini Macro",
  19375. height: math.unit(155, "feet")
  19376. },
  19377. {
  19378. name: "Macro",
  19379. height: math.unit(1077, "feet")
  19380. },
  19381. {
  19382. name: "Mega Macro",
  19383. height: math.unit(47650, "feet"),
  19384. default: true
  19385. },
  19386. {
  19387. name: "Giga Macro",
  19388. height: math.unit(440, "miles")
  19389. },
  19390. {
  19391. name: "Tera Macro",
  19392. height: math.unit(8700, "miles")
  19393. },
  19394. {
  19395. name: "Planetary Macro",
  19396. height: math.unit(32700, "miles")
  19397. },
  19398. {
  19399. name: "Solar Macro",
  19400. height: math.unit(550000, "miles")
  19401. },
  19402. {
  19403. name: "Celestial Macro",
  19404. height: math.unit(2.5, "AU")
  19405. },
  19406. ]
  19407. ))
  19408. characterMakers.push(() => makeCharacter(
  19409. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19410. {
  19411. front: {
  19412. height: math.unit(4 + 5 / 12, "feet"),
  19413. weight: math.unit(90, "lb"),
  19414. name: "Front",
  19415. image: {
  19416. source: "./media/characters/cappu/front.svg",
  19417. extra: 1247 / 1152,
  19418. bottom: 0.012
  19419. }
  19420. },
  19421. },
  19422. [
  19423. {
  19424. name: "Normal",
  19425. height: math.unit(4 + 5 / 12, "feet"),
  19426. default: true
  19427. },
  19428. ]
  19429. ))
  19430. characterMakers.push(() => makeCharacter(
  19431. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19432. {
  19433. frontDressed: {
  19434. height: math.unit(70, "cm"),
  19435. weight: math.unit(6, "kg"),
  19436. name: "Front (Dressed)",
  19437. image: {
  19438. source: "./media/characters/sebi/front-dressed.svg",
  19439. extra: 713.5 / 686.5,
  19440. bottom: 0.003
  19441. }
  19442. },
  19443. front: {
  19444. height: math.unit(70, "cm"),
  19445. weight: math.unit(5, "kg"),
  19446. name: "Front",
  19447. image: {
  19448. source: "./media/characters/sebi/front.svg",
  19449. extra: 713.5 / 686.5,
  19450. bottom: 0.003
  19451. }
  19452. }
  19453. },
  19454. [
  19455. {
  19456. name: "Normal",
  19457. height: math.unit(70, "cm"),
  19458. default: true
  19459. },
  19460. {
  19461. name: "Macro",
  19462. height: math.unit(8, "meters")
  19463. },
  19464. ]
  19465. ))
  19466. characterMakers.push(() => makeCharacter(
  19467. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19468. {
  19469. front: {
  19470. height: math.unit(6, "feet"),
  19471. weight: math.unit(150, "lb"),
  19472. name: "Front",
  19473. image: {
  19474. source: "./media/characters/typhek/front.svg",
  19475. extra: 1948 / 1929,
  19476. bottom: 0.025
  19477. }
  19478. },
  19479. side: {
  19480. height: math.unit(6, "feet"),
  19481. weight: math.unit(150, "lb"),
  19482. name: "Side",
  19483. image: {
  19484. source: "./media/characters/typhek/side.svg",
  19485. extra: 2034 / 2010,
  19486. bottom: 0.003
  19487. }
  19488. },
  19489. back: {
  19490. height: math.unit(6, "feet"),
  19491. weight: math.unit(150, "lb"),
  19492. name: "Back",
  19493. image: {
  19494. source: "./media/characters/typhek/back.svg",
  19495. extra: 2005 / 1978,
  19496. bottom: 0.004
  19497. }
  19498. },
  19499. palm: {
  19500. height: math.unit(1.2, "feet"),
  19501. name: "Palm",
  19502. image: {
  19503. source: "./media/characters/typhek/palm.svg"
  19504. }
  19505. },
  19506. fist: {
  19507. height: math.unit(1.1, "feet"),
  19508. name: "Fist",
  19509. image: {
  19510. source: "./media/characters/typhek/fist.svg"
  19511. }
  19512. },
  19513. foot: {
  19514. height: math.unit(1.57, "feet"),
  19515. name: "Foot",
  19516. image: {
  19517. source: "./media/characters/typhek/foot.svg"
  19518. }
  19519. },
  19520. sole: {
  19521. height: math.unit(2.05, "feet"),
  19522. name: "Sole",
  19523. image: {
  19524. source: "./media/characters/typhek/sole.svg"
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Macro",
  19531. height: math.unit(40, "stories"),
  19532. default: true
  19533. },
  19534. {
  19535. name: "Megamacro",
  19536. height: math.unit(1, "mile")
  19537. },
  19538. {
  19539. name: "Gigamacro",
  19540. height: math.unit(4000, "solarradii")
  19541. },
  19542. {
  19543. name: "Universal",
  19544. height: math.unit(1.1, "universes")
  19545. }
  19546. ]
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19550. {
  19551. side: {
  19552. height: math.unit(5 + 7 / 12, "feet"),
  19553. weight: math.unit(150, "lb"),
  19554. name: "Side",
  19555. image: {
  19556. source: "./media/characters/kassy/side.svg",
  19557. extra: 1280 / 1225,
  19558. bottom: 0.002
  19559. }
  19560. },
  19561. front: {
  19562. height: math.unit(5 + 7 / 12, "feet"),
  19563. weight: math.unit(150, "lb"),
  19564. name: "Front",
  19565. image: {
  19566. source: "./media/characters/kassy/front.svg",
  19567. extra: 1280 / 1225,
  19568. bottom: 0.025
  19569. }
  19570. },
  19571. back: {
  19572. height: math.unit(5 + 7 / 12, "feet"),
  19573. weight: math.unit(150, "lb"),
  19574. name: "Back",
  19575. image: {
  19576. source: "./media/characters/kassy/back.svg",
  19577. extra: 1280 / 1225,
  19578. bottom: 0.002
  19579. }
  19580. },
  19581. foot: {
  19582. height: math.unit(1.266, "feet"),
  19583. name: "Foot",
  19584. image: {
  19585. source: "./media/characters/kassy/foot.svg"
  19586. }
  19587. },
  19588. },
  19589. [
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(5 + 7 / 12, "feet")
  19593. },
  19594. {
  19595. name: "Macro",
  19596. height: math.unit(137, "feet"),
  19597. default: true
  19598. },
  19599. {
  19600. name: "Megamacro",
  19601. height: math.unit(1, "mile")
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(6 + 1 / 12, "feet"),
  19610. weight: math.unit(200, "lb"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/neil/front.svg",
  19614. extra: 1326 / 1250,
  19615. bottom: 0.023
  19616. }
  19617. },
  19618. },
  19619. [
  19620. {
  19621. name: "Normal",
  19622. height: math.unit(6 + 1 / 12, "feet"),
  19623. default: true
  19624. },
  19625. {
  19626. name: "Macro",
  19627. height: math.unit(200, "feet")
  19628. },
  19629. ]
  19630. ))
  19631. characterMakers.push(() => makeCharacter(
  19632. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19633. {
  19634. front: {
  19635. height: math.unit(5 + 9 / 12, "feet"),
  19636. weight: math.unit(190, "lb"),
  19637. name: "Front",
  19638. image: {
  19639. source: "./media/characters/atticus/front.svg",
  19640. extra: 2934 / 2785,
  19641. bottom: 0.025
  19642. }
  19643. },
  19644. },
  19645. [
  19646. {
  19647. name: "Normal",
  19648. height: math.unit(5 + 9 / 12, "feet"),
  19649. default: true
  19650. },
  19651. {
  19652. name: "Macro",
  19653. height: math.unit(180, "feet")
  19654. },
  19655. ]
  19656. ))
  19657. characterMakers.push(() => makeCharacter(
  19658. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19659. {
  19660. side: {
  19661. height: math.unit(9, "feet"),
  19662. weight: math.unit(650, "lb"),
  19663. name: "Side",
  19664. image: {
  19665. source: "./media/characters/milo/side.svg",
  19666. extra: 2644 / 2310,
  19667. bottom: 0.032
  19668. }
  19669. },
  19670. },
  19671. [
  19672. {
  19673. name: "Normal",
  19674. height: math.unit(9, "feet"),
  19675. default: true
  19676. },
  19677. {
  19678. name: "Macro",
  19679. height: math.unit(300, "feet")
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19685. {
  19686. side: {
  19687. height: math.unit(8, "meters"),
  19688. weight: math.unit(90000, "kg"),
  19689. name: "Side",
  19690. image: {
  19691. source: "./media/characters/ijzer/side.svg",
  19692. extra: 2756 / 1600,
  19693. bottom: 0.01
  19694. }
  19695. },
  19696. },
  19697. [
  19698. {
  19699. name: "Small",
  19700. height: math.unit(3, "meters")
  19701. },
  19702. {
  19703. name: "Normal",
  19704. height: math.unit(8, "meters"),
  19705. default: true
  19706. },
  19707. {
  19708. name: "Normal+",
  19709. height: math.unit(10, "meters")
  19710. },
  19711. {
  19712. name: "Bigger",
  19713. height: math.unit(24, "meters")
  19714. },
  19715. {
  19716. name: "Huge",
  19717. height: math.unit(80, "meters")
  19718. },
  19719. ]
  19720. ))
  19721. characterMakers.push(() => makeCharacter(
  19722. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19723. {
  19724. front: {
  19725. height: math.unit(6 + 2 / 12, "feet"),
  19726. weight: math.unit(153, "lb"),
  19727. name: "Front",
  19728. image: {
  19729. source: "./media/characters/luca-cervicum/front.svg",
  19730. extra: 370 / 327,
  19731. bottom: 0.015
  19732. }
  19733. },
  19734. back: {
  19735. height: math.unit(6 + 2 / 12, "feet"),
  19736. weight: math.unit(153, "lb"),
  19737. name: "Back",
  19738. image: {
  19739. source: "./media/characters/luca-cervicum/back.svg",
  19740. extra: 367 / 333,
  19741. bottom: 0.005
  19742. }
  19743. },
  19744. frontGear: {
  19745. height: math.unit(6 + 2 / 12, "feet"),
  19746. weight: math.unit(173, "lb"),
  19747. name: "Front (Gear)",
  19748. image: {
  19749. source: "./media/characters/luca-cervicum/front-gear.svg",
  19750. extra: 377 / 333,
  19751. bottom: 0.006
  19752. }
  19753. },
  19754. },
  19755. [
  19756. {
  19757. name: "Normal",
  19758. height: math.unit(6 + 2 / 12, "feet"),
  19759. default: true
  19760. },
  19761. ]
  19762. ))
  19763. characterMakers.push(() => makeCharacter(
  19764. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19765. {
  19766. front: {
  19767. height: math.unit(6 + 1 / 12, "feet"),
  19768. weight: math.unit(304, "lb"),
  19769. name: "Front",
  19770. image: {
  19771. source: "./media/characters/oliver/front.svg",
  19772. extra: 157 / 143,
  19773. bottom: 0.08
  19774. }
  19775. },
  19776. },
  19777. [
  19778. {
  19779. name: "Normal",
  19780. height: math.unit(6 + 1 / 12, "feet"),
  19781. default: true
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19787. {
  19788. front: {
  19789. height: math.unit(5 + 7 / 12, "feet"),
  19790. weight: math.unit(140, "lb"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/shane/front.svg",
  19794. extra: 304 / 289,
  19795. bottom: 0.005
  19796. }
  19797. },
  19798. },
  19799. [
  19800. {
  19801. name: "Normal",
  19802. height: math.unit(5 + 7 / 12, "feet"),
  19803. default: true
  19804. },
  19805. ]
  19806. ))
  19807. characterMakers.push(() => makeCharacter(
  19808. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19809. {
  19810. front: {
  19811. height: math.unit(5 + 9 / 12, "feet"),
  19812. weight: math.unit(178, "lb"),
  19813. name: "Front",
  19814. image: {
  19815. source: "./media/characters/shin/front.svg",
  19816. extra: 159 / 151,
  19817. bottom: 0.015
  19818. }
  19819. },
  19820. },
  19821. [
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(5 + 9 / 12, "feet"),
  19825. default: true
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19831. {
  19832. front: {
  19833. height: math.unit(5 + 10 / 12, "feet"),
  19834. weight: math.unit(168, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/xerxes/front.svg",
  19838. extra: 282 / 260,
  19839. bottom: 0.045
  19840. }
  19841. },
  19842. },
  19843. [
  19844. {
  19845. name: "Normal",
  19846. height: math.unit(5 + 10 / 12, "feet"),
  19847. default: true
  19848. },
  19849. ]
  19850. ))
  19851. characterMakers.push(() => makeCharacter(
  19852. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19853. {
  19854. front: {
  19855. height: math.unit(6 + 7 / 12, "feet"),
  19856. weight: math.unit(208, "lb"),
  19857. name: "Front",
  19858. image: {
  19859. source: "./media/characters/chaska/front.svg",
  19860. extra: 332 / 319,
  19861. bottom: 0.015
  19862. }
  19863. },
  19864. },
  19865. [
  19866. {
  19867. name: "Normal",
  19868. height: math.unit(6 + 7 / 12, "feet"),
  19869. default: true
  19870. },
  19871. ]
  19872. ))
  19873. characterMakers.push(() => makeCharacter(
  19874. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19875. {
  19876. front: {
  19877. height: math.unit(5 + 8 / 12, "feet"),
  19878. weight: math.unit(208, "lb"),
  19879. name: "Front",
  19880. image: {
  19881. source: "./media/characters/enuk/front.svg",
  19882. extra: 437 / 406,
  19883. bottom: 0.02
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(5 + 8 / 12, "feet"),
  19891. default: true
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19897. {
  19898. front: {
  19899. height: math.unit(5 + 10 / 12, "feet"),
  19900. weight: math.unit(252, "lb"),
  19901. name: "Front",
  19902. image: {
  19903. source: "./media/characters/bruun/front.svg",
  19904. extra: 197 / 187,
  19905. bottom: 0.012
  19906. }
  19907. },
  19908. },
  19909. [
  19910. {
  19911. name: "Normal",
  19912. height: math.unit(5 + 10 / 12, "feet"),
  19913. default: true
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19919. {
  19920. front: {
  19921. height: math.unit(6 + 10 / 12, "feet"),
  19922. weight: math.unit(255, "lb"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/alexeev/front.svg",
  19926. extra: 213 / 200,
  19927. bottom: 0.05
  19928. }
  19929. },
  19930. },
  19931. [
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(6 + 10 / 12, "feet"),
  19935. default: true
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19941. {
  19942. front: {
  19943. height: math.unit(2 + 8 / 12, "feet"),
  19944. weight: math.unit(22, "lb"),
  19945. name: "Front",
  19946. image: {
  19947. source: "./media/characters/evelyn/front.svg",
  19948. extra: 208 / 180
  19949. }
  19950. },
  19951. },
  19952. [
  19953. {
  19954. name: "Normal",
  19955. height: math.unit(2 + 8 / 12, "feet"),
  19956. default: true
  19957. },
  19958. ]
  19959. ))
  19960. characterMakers.push(() => makeCharacter(
  19961. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19962. {
  19963. front: {
  19964. height: math.unit(5 + 9 / 12, "feet"),
  19965. weight: math.unit(139, "lb"),
  19966. name: "Front",
  19967. image: {
  19968. source: "./media/characters/inca/front.svg",
  19969. extra: 294 / 291,
  19970. bottom: 0.03
  19971. }
  19972. },
  19973. },
  19974. [
  19975. {
  19976. name: "Normal",
  19977. height: math.unit(5 + 9 / 12, "feet"),
  19978. default: true
  19979. },
  19980. ]
  19981. ))
  19982. characterMakers.push(() => makeCharacter(
  19983. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19984. {
  19985. front: {
  19986. height: math.unit(5 + 1 / 12, "feet"),
  19987. weight: math.unit(84, "lb"),
  19988. name: "Front",
  19989. image: {
  19990. source: "./media/characters/magdalene/front.svg",
  19991. extra: 293 / 273
  19992. }
  19993. },
  19994. },
  19995. [
  19996. {
  19997. name: "Normal",
  19998. height: math.unit(5 + 1 / 12, "feet"),
  19999. default: true
  20000. },
  20001. ]
  20002. ))
  20003. characterMakers.push(() => makeCharacter(
  20004. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20005. {
  20006. front: {
  20007. height: math.unit(6 + 3 / 12, "feet"),
  20008. weight: math.unit(185, "lb"),
  20009. name: "Front",
  20010. image: {
  20011. source: "./media/characters/mera/front.svg",
  20012. extra: 291 / 277,
  20013. bottom: 0.03
  20014. }
  20015. },
  20016. },
  20017. [
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(6 + 3 / 12, "feet"),
  20021. default: true
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20027. {
  20028. front: {
  20029. height: math.unit(6 + 7 / 12, "feet"),
  20030. weight: math.unit(160, "lb"),
  20031. name: "Front",
  20032. image: {
  20033. source: "./media/characters/ceres/front.svg",
  20034. extra: 1023 / 950,
  20035. bottom: 0.027
  20036. }
  20037. },
  20038. back: {
  20039. height: math.unit(6 + 7 / 12, "feet"),
  20040. weight: math.unit(160, "lb"),
  20041. name: "Back",
  20042. image: {
  20043. source: "./media/characters/ceres/back.svg",
  20044. extra: 1023 / 950
  20045. }
  20046. },
  20047. },
  20048. [
  20049. {
  20050. name: "Normal",
  20051. height: math.unit(6 + 7 / 12, "feet"),
  20052. default: true
  20053. },
  20054. ]
  20055. ))
  20056. characterMakers.push(() => makeCharacter(
  20057. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20058. {
  20059. front: {
  20060. height: math.unit(5 + 10 / 12, "feet"),
  20061. weight: math.unit(150, "lb"),
  20062. name: "Front",
  20063. image: {
  20064. source: "./media/characters/kris/front.svg",
  20065. extra: 885 / 803,
  20066. bottom: 0.03
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Normal",
  20073. height: math.unit(5 + 10 / 12, "feet"),
  20074. default: true
  20075. },
  20076. ]
  20077. ))
  20078. characterMakers.push(() => makeCharacter(
  20079. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20080. {
  20081. front: {
  20082. height: math.unit(7, "feet"),
  20083. weight: math.unit(120, "kg"),
  20084. name: "Front",
  20085. image: {
  20086. source: "./media/characters/taluthus/front.svg",
  20087. extra: 903 / 833,
  20088. bottom: 0.015
  20089. }
  20090. },
  20091. },
  20092. [
  20093. {
  20094. name: "Normal",
  20095. height: math.unit(7, "feet"),
  20096. default: true
  20097. },
  20098. {
  20099. name: "Macro",
  20100. height: math.unit(300, "feet")
  20101. },
  20102. ]
  20103. ))
  20104. characterMakers.push(() => makeCharacter(
  20105. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20106. {
  20107. front: {
  20108. height: math.unit(5 + 9 / 12, "feet"),
  20109. weight: math.unit(145, "lb"),
  20110. name: "Front",
  20111. image: {
  20112. source: "./media/characters/dawn/front.svg",
  20113. extra: 2094 / 2016,
  20114. bottom: 0.025
  20115. }
  20116. },
  20117. back: {
  20118. height: math.unit(5 + 9 / 12, "feet"),
  20119. weight: math.unit(160, "lb"),
  20120. name: "Back",
  20121. image: {
  20122. source: "./media/characters/dawn/back.svg",
  20123. extra: 2112 / 2080,
  20124. bottom: 0.005
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(6 + 7 / 12, "feet"),
  20132. default: true
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20138. {
  20139. anthro: {
  20140. height: math.unit(8 + 3 / 12, "feet"),
  20141. weight: math.unit(450, "lb"),
  20142. name: "Anthro",
  20143. image: {
  20144. source: "./media/characters/arador/anthro.svg",
  20145. extra: 1835 / 1718,
  20146. bottom: 0.025
  20147. }
  20148. },
  20149. feral: {
  20150. height: math.unit(4, "feet"),
  20151. weight: math.unit(200, "lb"),
  20152. name: "Feral",
  20153. image: {
  20154. source: "./media/characters/arador/feral.svg",
  20155. extra: 1683 / 1514,
  20156. bottom: 0.07
  20157. }
  20158. },
  20159. },
  20160. [
  20161. {
  20162. name: "Normal",
  20163. height: math.unit(8 + 3 / 12, "feet")
  20164. },
  20165. {
  20166. name: "Macro",
  20167. height: math.unit(82.5, "feet"),
  20168. default: true
  20169. },
  20170. ]
  20171. ))
  20172. characterMakers.push(() => makeCharacter(
  20173. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20174. {
  20175. front: {
  20176. height: math.unit(5 + 10 / 12, "feet"),
  20177. weight: math.unit(125, "lb"),
  20178. name: "Front",
  20179. image: {
  20180. source: "./media/characters/dharsi/front.svg",
  20181. extra: 716 / 630,
  20182. bottom: 0.035
  20183. }
  20184. },
  20185. },
  20186. [
  20187. {
  20188. name: "Nano",
  20189. height: math.unit(100, "nm")
  20190. },
  20191. {
  20192. name: "Micro",
  20193. height: math.unit(2, "inches")
  20194. },
  20195. {
  20196. name: "Normal",
  20197. height: math.unit(5 + 10 / 12, "feet"),
  20198. default: true
  20199. },
  20200. {
  20201. name: "Macro",
  20202. height: math.unit(1000, "feet")
  20203. },
  20204. {
  20205. name: "Megamacro",
  20206. height: math.unit(10, "miles")
  20207. },
  20208. {
  20209. name: "Gigamacro",
  20210. height: math.unit(3000, "miles")
  20211. },
  20212. {
  20213. name: "Teramacro",
  20214. height: math.unit(500000, "miles")
  20215. },
  20216. {
  20217. name: "Teramacro+",
  20218. height: math.unit(30, "galaxies")
  20219. },
  20220. ]
  20221. ))
  20222. characterMakers.push(() => makeCharacter(
  20223. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20224. {
  20225. front: {
  20226. height: math.unit(6, "feet"),
  20227. weight: math.unit(150, "lb"),
  20228. name: "Front",
  20229. image: {
  20230. source: "./media/characters/deathy/front.svg",
  20231. extra: 1552 / 1463,
  20232. bottom: 0.025
  20233. }
  20234. },
  20235. side: {
  20236. height: math.unit(6, "feet"),
  20237. weight: math.unit(150, "lb"),
  20238. name: "Side",
  20239. image: {
  20240. source: "./media/characters/deathy/side.svg",
  20241. extra: 1604 / 1455,
  20242. bottom: 0.025
  20243. }
  20244. },
  20245. back: {
  20246. height: math.unit(6, "feet"),
  20247. weight: math.unit(150, "lb"),
  20248. name: "Back",
  20249. image: {
  20250. source: "./media/characters/deathy/back.svg",
  20251. extra: 1580 / 1463,
  20252. bottom: 0.005
  20253. }
  20254. },
  20255. },
  20256. [
  20257. {
  20258. name: "Micro",
  20259. height: math.unit(5, "millimeters")
  20260. },
  20261. {
  20262. name: "Normal",
  20263. height: math.unit(6 + 5 / 12, "feet"),
  20264. default: true
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20270. {
  20271. front: {
  20272. height: math.unit(16, "feet"),
  20273. weight: math.unit(4000, "lb"),
  20274. name: "Front",
  20275. image: {
  20276. source: "./media/characters/juniper/front.svg",
  20277. bottom: 0.04
  20278. }
  20279. },
  20280. },
  20281. [
  20282. {
  20283. name: "Normal",
  20284. height: math.unit(16, "feet"),
  20285. default: true
  20286. },
  20287. ]
  20288. ))
  20289. characterMakers.push(() => makeCharacter(
  20290. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20291. {
  20292. front: {
  20293. height: math.unit(6, "feet"),
  20294. weight: math.unit(150, "lb"),
  20295. name: "Front",
  20296. image: {
  20297. source: "./media/characters/hipster/front.svg",
  20298. extra: 1312 / 1209,
  20299. bottom: 0.025
  20300. }
  20301. },
  20302. back: {
  20303. height: math.unit(6, "feet"),
  20304. weight: math.unit(150, "lb"),
  20305. name: "Back",
  20306. image: {
  20307. source: "./media/characters/hipster/back.svg",
  20308. extra: 1281 / 1196,
  20309. bottom: 0.01
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Micro",
  20316. height: math.unit(1, "mm")
  20317. },
  20318. {
  20319. name: "Normal",
  20320. height: math.unit(4, "inches"),
  20321. default: true
  20322. },
  20323. {
  20324. name: "Macro",
  20325. height: math.unit(500, "feet")
  20326. },
  20327. {
  20328. name: "Megamacro",
  20329. height: math.unit(1000, "miles")
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20335. {
  20336. front: {
  20337. height: math.unit(6, "feet"),
  20338. weight: math.unit(150, "lb"),
  20339. name: "Front",
  20340. image: {
  20341. source: "./media/characters/tendirmuldr/front.svg",
  20342. extra: 1878 / 1772,
  20343. bottom: 0.015
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Megamacro",
  20350. height: math.unit(1500, "miles"),
  20351. default: true
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20357. {
  20358. front: {
  20359. height: math.unit(14, "feet"),
  20360. weight: math.unit(12000, "lb"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/mort/front.svg",
  20364. extra: 365 / 318,
  20365. bottom: 0.01
  20366. }
  20367. },
  20368. side: {
  20369. height: math.unit(14, "feet"),
  20370. weight: math.unit(12000, "lb"),
  20371. name: "Side",
  20372. image: {
  20373. source: "./media/characters/mort/side.svg",
  20374. extra: 365 / 318,
  20375. bottom: 0.052
  20376. },
  20377. default: true
  20378. },
  20379. back: {
  20380. height: math.unit(14, "feet"),
  20381. weight: math.unit(12000, "lb"),
  20382. name: "Back",
  20383. image: {
  20384. source: "./media/characters/mort/back.svg",
  20385. extra: 371 / 332,
  20386. bottom: 0.18
  20387. }
  20388. },
  20389. },
  20390. [
  20391. {
  20392. name: "Normal",
  20393. height: math.unit(14, "feet"),
  20394. default: true
  20395. },
  20396. ]
  20397. ))
  20398. characterMakers.push(() => makeCharacter(
  20399. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20400. {
  20401. front: {
  20402. height: math.unit(8, "feet"),
  20403. weight: math.unit(1, "ton"),
  20404. name: "Front",
  20405. image: {
  20406. source: "./media/characters/lycoa/front.svg",
  20407. extra: 1875 / 1789,
  20408. bottom: 0.022
  20409. }
  20410. },
  20411. back: {
  20412. height: math.unit(8, "feet"),
  20413. weight: math.unit(1, "ton"),
  20414. name: "Back",
  20415. image: {
  20416. source: "./media/characters/lycoa/back.svg",
  20417. extra: 1835 / 1781,
  20418. bottom: 0.03
  20419. }
  20420. },
  20421. head: {
  20422. height: math.unit(2.1, "feet"),
  20423. name: "Head",
  20424. image: {
  20425. source: "./media/characters/lycoa/head.svg"
  20426. }
  20427. },
  20428. tailmaw: {
  20429. height: math.unit(1.9, "feet"),
  20430. name: "Tailmaw",
  20431. image: {
  20432. source: "./media/characters/lycoa/tailmaw.svg"
  20433. }
  20434. },
  20435. tentacles: {
  20436. height: math.unit(2.1, "feet"),
  20437. name: "Tentacles",
  20438. image: {
  20439. source: "./media/characters/lycoa/tentacles.svg"
  20440. }
  20441. },
  20442. dick: {
  20443. height: math.unit(1.73, "feet"),
  20444. name: "Dick",
  20445. image: {
  20446. source: "./media/characters/lycoa/dick.svg"
  20447. }
  20448. },
  20449. },
  20450. [
  20451. {
  20452. name: "Normal",
  20453. height: math.unit(8, "feet"),
  20454. default: true
  20455. },
  20456. {
  20457. name: "Macro",
  20458. height: math.unit(30, "feet")
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20464. {
  20465. front: {
  20466. height: math.unit(4 + 2 / 12, "feet"),
  20467. weight: math.unit(70, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/naldara/front.svg",
  20471. extra: 841 / 720,
  20472. bottom: 0.04
  20473. }
  20474. },
  20475. naga: {
  20476. height: math.unit(23, "feet"),
  20477. weight: math.unit(15000, "kg"),
  20478. name: "Naga",
  20479. image: {
  20480. source: "./media/characters/naldara/naga.svg",
  20481. extra: 3290 / 2959,
  20482. bottom: 124 / 3432
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(4 + 2 / 12, "feet"),
  20490. default: true
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20496. {
  20497. front: {
  20498. height: math.unit(13 + 7 / 12, "feet"),
  20499. weight: math.unit(1500, "lb"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/briar/front.svg",
  20503. extra: 626 / 596,
  20504. bottom: 0.08
  20505. }
  20506. },
  20507. },
  20508. [
  20509. {
  20510. name: "Normal",
  20511. height: math.unit(13 + 7 / 12, "feet"),
  20512. default: true
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20518. {
  20519. side: {
  20520. height: math.unit(10, "feet"),
  20521. weight: math.unit(500, "lb"),
  20522. name: "Side",
  20523. image: {
  20524. source: "./media/characters/vanguard/side.svg",
  20525. extra: 502 / 425,
  20526. bottom: 0.087
  20527. }
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Normal",
  20533. height: math.unit(10, "feet"),
  20534. default: true
  20535. },
  20536. ]
  20537. ))
  20538. characterMakers.push(() => makeCharacter(
  20539. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20540. {
  20541. front: {
  20542. height: math.unit(7.5, "feet"),
  20543. weight: math.unit(2, "lb"),
  20544. name: "Front",
  20545. image: {
  20546. source: "./media/characters/artemis/front.svg",
  20547. extra: 1192 / 1075,
  20548. bottom: 0.07
  20549. }
  20550. },
  20551. frontNsfw: {
  20552. height: math.unit(7.5, "feet"),
  20553. weight: math.unit(2, "lb"),
  20554. name: "Front (NSFW)",
  20555. image: {
  20556. source: "./media/characters/artemis/front-nsfw.svg",
  20557. extra: 1192 / 1075,
  20558. bottom: 0.07
  20559. }
  20560. },
  20561. frontNsfwer: {
  20562. height: math.unit(7.5, "feet"),
  20563. weight: math.unit(2, "lb"),
  20564. name: "Front (NSFW-er)",
  20565. image: {
  20566. source: "./media/characters/artemis/front-nsfwer.svg",
  20567. extra: 1192 / 1075,
  20568. bottom: 0.07
  20569. }
  20570. },
  20571. side: {
  20572. height: math.unit(7.5, "feet"),
  20573. weight: math.unit(2, "lb"),
  20574. name: "Side",
  20575. image: {
  20576. source: "./media/characters/artemis/side.svg",
  20577. extra: 1192 / 1075,
  20578. bottom: 0.07
  20579. }
  20580. },
  20581. sideNsfw: {
  20582. height: math.unit(7.5, "feet"),
  20583. weight: math.unit(2, "lb"),
  20584. name: "Side (NSFW)",
  20585. image: {
  20586. source: "./media/characters/artemis/side-nsfw.svg",
  20587. extra: 1192 / 1075,
  20588. bottom: 0.07
  20589. }
  20590. },
  20591. sideNsfwer: {
  20592. height: math.unit(7.5, "feet"),
  20593. weight: math.unit(2, "lb"),
  20594. name: "Side (NSFW-er)",
  20595. image: {
  20596. source: "./media/characters/artemis/side-nsfwer.svg",
  20597. extra: 1192 / 1075,
  20598. bottom: 0.07
  20599. }
  20600. },
  20601. maw: {
  20602. height: math.unit(1.1, "feet"),
  20603. name: "Maw",
  20604. image: {
  20605. source: "./media/characters/artemis/maw.svg"
  20606. }
  20607. },
  20608. stomach: {
  20609. height: math.unit(0.95, "feet"),
  20610. name: "Stomach",
  20611. image: {
  20612. source: "./media/characters/artemis/stomach.svg"
  20613. }
  20614. },
  20615. dickCanine: {
  20616. height: math.unit(1, "feet"),
  20617. name: "Dick (Canine)",
  20618. image: {
  20619. source: "./media/characters/artemis/dick-canine.svg"
  20620. }
  20621. },
  20622. dickEquine: {
  20623. height: math.unit(0.85, "feet"),
  20624. name: "Dick (Equine)",
  20625. image: {
  20626. source: "./media/characters/artemis/dick-equine.svg"
  20627. }
  20628. },
  20629. dickExotic: {
  20630. height: math.unit(0.85, "feet"),
  20631. name: "Dick (Exotic)",
  20632. image: {
  20633. source: "./media/characters/artemis/dick-exotic.svg"
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(7.5, "feet"),
  20641. default: true
  20642. },
  20643. {
  20644. name: "Enlarged",
  20645. height: math.unit(12, "feet")
  20646. },
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20651. {
  20652. front: {
  20653. height: math.unit(5 + 3 / 12, "feet"),
  20654. weight: math.unit(160, "lb"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/kira/front.svg",
  20658. extra: 906 / 786,
  20659. bottom: 0.01
  20660. }
  20661. },
  20662. back: {
  20663. height: math.unit(5 + 3 / 12, "feet"),
  20664. weight: math.unit(160, "lb"),
  20665. name: "Back",
  20666. image: {
  20667. source: "./media/characters/kira/back.svg",
  20668. extra: 882 / 757,
  20669. bottom: 0.005
  20670. }
  20671. },
  20672. frontDressed: {
  20673. height: math.unit(5 + 3 / 12, "feet"),
  20674. weight: math.unit(160, "lb"),
  20675. name: "Front (Dressed)",
  20676. image: {
  20677. source: "./media/characters/kira/front-dressed.svg",
  20678. extra: 906 / 786,
  20679. bottom: 0.01
  20680. }
  20681. },
  20682. beans: {
  20683. height: math.unit(0.92, "feet"),
  20684. name: "Beans",
  20685. image: {
  20686. source: "./media/characters/kira/beans.svg"
  20687. }
  20688. },
  20689. },
  20690. [
  20691. {
  20692. name: "Normal",
  20693. height: math.unit(5 + 3 / 12, "feet"),
  20694. default: true
  20695. },
  20696. ]
  20697. ))
  20698. characterMakers.push(() => makeCharacter(
  20699. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20700. {
  20701. front: {
  20702. height: math.unit(5 + 4 / 12, "feet"),
  20703. weight: math.unit(145, "lb"),
  20704. name: "Front",
  20705. image: {
  20706. source: "./media/characters/scramble/front.svg",
  20707. extra: 763 / 727,
  20708. bottom: 0.05
  20709. }
  20710. },
  20711. back: {
  20712. height: math.unit(5 + 4 / 12, "feet"),
  20713. weight: math.unit(145, "lb"),
  20714. name: "Back",
  20715. image: {
  20716. source: "./media/characters/scramble/back.svg",
  20717. extra: 826 / 737,
  20718. bottom: 0.002
  20719. }
  20720. },
  20721. },
  20722. [
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(5 + 4 / 12, "feet"),
  20726. default: true
  20727. },
  20728. ]
  20729. ))
  20730. characterMakers.push(() => makeCharacter(
  20731. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20732. {
  20733. side: {
  20734. height: math.unit(6 + 2 / 12, "feet"),
  20735. weight: math.unit(190, "lb"),
  20736. name: "Side",
  20737. image: {
  20738. source: "./media/characters/biscuit/side.svg",
  20739. extra: 858 / 791,
  20740. bottom: 0.044
  20741. }
  20742. },
  20743. },
  20744. [
  20745. {
  20746. name: "Normal",
  20747. height: math.unit(6 + 2 / 12, "feet"),
  20748. default: true
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20754. {
  20755. front: {
  20756. height: math.unit(5 + 2 / 12, "feet"),
  20757. weight: math.unit(120, "lb"),
  20758. name: "Front",
  20759. image: {
  20760. source: "./media/characters/poffin/front.svg",
  20761. extra: 786 / 680,
  20762. bottom: 0.005
  20763. }
  20764. },
  20765. },
  20766. [
  20767. {
  20768. name: "Normal",
  20769. height: math.unit(5 + 2 / 12, "feet"),
  20770. default: true
  20771. },
  20772. ]
  20773. ))
  20774. characterMakers.push(() => makeCharacter(
  20775. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20776. {
  20777. front: {
  20778. height: math.unit(6 + 3 / 12, "feet"),
  20779. weight: math.unit(519, "lb"),
  20780. name: "Front",
  20781. image: {
  20782. source: "./media/characters/dhari/front.svg",
  20783. extra: 1048 / 946,
  20784. bottom: 0.015
  20785. }
  20786. },
  20787. back: {
  20788. height: math.unit(6 + 3 / 12, "feet"),
  20789. weight: math.unit(519, "lb"),
  20790. name: "Back",
  20791. image: {
  20792. source: "./media/characters/dhari/back.svg",
  20793. extra: 1048 / 931,
  20794. bottom: 0.005
  20795. }
  20796. },
  20797. frontDressed: {
  20798. height: math.unit(6 + 3 / 12, "feet"),
  20799. weight: math.unit(519, "lb"),
  20800. name: "Front (Dressed)",
  20801. image: {
  20802. source: "./media/characters/dhari/front-dressed.svg",
  20803. extra: 1713 / 1546,
  20804. bottom: 0.02
  20805. }
  20806. },
  20807. backDressed: {
  20808. height: math.unit(6 + 3 / 12, "feet"),
  20809. weight: math.unit(519, "lb"),
  20810. name: "Back (Dressed)",
  20811. image: {
  20812. source: "./media/characters/dhari/back-dressed.svg",
  20813. extra: 1699 / 1537,
  20814. bottom: 0.01
  20815. }
  20816. },
  20817. maw: {
  20818. height: math.unit(0.95, "feet"),
  20819. name: "Maw",
  20820. image: {
  20821. source: "./media/characters/dhari/maw.svg"
  20822. }
  20823. },
  20824. wereFront: {
  20825. height: math.unit(12 + 8 / 12, "feet"),
  20826. weight: math.unit(4000, "lb"),
  20827. name: "Front (Were)",
  20828. image: {
  20829. source: "./media/characters/dhari/were-front.svg",
  20830. extra: 1065 / 969,
  20831. bottom: 0.015
  20832. }
  20833. },
  20834. wereBack: {
  20835. height: math.unit(12 + 8 / 12, "feet"),
  20836. weight: math.unit(4000, "lb"),
  20837. name: "Back (Were)",
  20838. image: {
  20839. source: "./media/characters/dhari/were-back.svg",
  20840. extra: 1065 / 969,
  20841. bottom: 0.012
  20842. }
  20843. },
  20844. wereMaw: {
  20845. height: math.unit(0.625, "meters"),
  20846. name: "Maw (Were)",
  20847. image: {
  20848. source: "./media/characters/dhari/were-maw.svg"
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(6 + 3 / 12, "feet"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20862. {
  20863. anthro: {
  20864. height: math.unit(5 + 7 / 12, "feet"),
  20865. weight: math.unit(175, "lb"),
  20866. name: "Anthro",
  20867. image: {
  20868. source: "./media/characters/rena-dyne/anthro.svg",
  20869. extra: 1849 / 1785,
  20870. bottom: 0.005
  20871. }
  20872. },
  20873. taur: {
  20874. height: math.unit(15 + 6 / 12, "feet"),
  20875. weight: math.unit(8000, "lb"),
  20876. name: "Taur",
  20877. image: {
  20878. source: "./media/characters/rena-dyne/taur.svg",
  20879. extra: 2315 / 2234,
  20880. bottom: 0.033
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(5 + 7 / 12, "feet"),
  20888. default: true
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20894. {
  20895. front: {
  20896. height: math.unit(8, "feet"),
  20897. weight: math.unit(600, "lb"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/weremeep/front.svg",
  20901. extra: 967 / 862,
  20902. bottom: 0.01
  20903. }
  20904. },
  20905. },
  20906. [
  20907. {
  20908. name: "Normal",
  20909. height: math.unit(8, "feet"),
  20910. default: true
  20911. },
  20912. {
  20913. name: "Lorg",
  20914. height: math.unit(12, "feet")
  20915. },
  20916. {
  20917. name: "Oh Lawd She Comin'",
  20918. height: math.unit(20, "feet")
  20919. },
  20920. ]
  20921. ))
  20922. characterMakers.push(() => makeCharacter(
  20923. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20924. {
  20925. front: {
  20926. height: math.unit(4, "feet"),
  20927. weight: math.unit(90, "lb"),
  20928. name: "Front",
  20929. image: {
  20930. source: "./media/characters/reza/front.svg",
  20931. extra: 1183 / 1111,
  20932. bottom: 0.017
  20933. }
  20934. },
  20935. back: {
  20936. height: math.unit(4, "feet"),
  20937. weight: math.unit(90, "lb"),
  20938. name: "Back",
  20939. image: {
  20940. source: "./media/characters/reza/back.svg",
  20941. extra: 1183 / 1111,
  20942. bottom: 0.01
  20943. }
  20944. },
  20945. drake: {
  20946. height: math.unit(30, "feet"),
  20947. weight: math.unit(246960, "lb"),
  20948. name: "Drake",
  20949. image: {
  20950. source: "./media/characters/reza/drake.svg",
  20951. extra: 2350 / 2024,
  20952. bottom: 60.7 / 2403
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(4, "feet"),
  20960. default: true
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20966. {
  20967. side: {
  20968. height: math.unit(15, "feet"),
  20969. weight: math.unit(14, "tons"),
  20970. name: "Side",
  20971. image: {
  20972. source: "./media/characters/athea/side.svg",
  20973. extra: 960 / 540,
  20974. bottom: 0.003
  20975. }
  20976. },
  20977. sitting: {
  20978. height: math.unit(6 * 2.85, "feet"),
  20979. weight: math.unit(14, "tons"),
  20980. name: "Sitting",
  20981. image: {
  20982. source: "./media/characters/athea/sitting.svg",
  20983. extra: 621 / 581,
  20984. bottom: 0.075
  20985. }
  20986. },
  20987. maw: {
  20988. height: math.unit(7.59498031496063, "feet"),
  20989. name: "Maw",
  20990. image: {
  20991. source: "./media/characters/athea/maw.svg"
  20992. }
  20993. },
  20994. },
  20995. [
  20996. {
  20997. name: "Lap Cat",
  20998. height: math.unit(2.5, "feet")
  20999. },
  21000. {
  21001. name: "Minimacro",
  21002. height: math.unit(15, "feet"),
  21003. default: true
  21004. },
  21005. {
  21006. name: "Macro",
  21007. height: math.unit(120, "feet")
  21008. },
  21009. {
  21010. name: "Macro+",
  21011. height: math.unit(640, "feet")
  21012. },
  21013. {
  21014. name: "Colossus",
  21015. height: math.unit(2.2, "miles")
  21016. },
  21017. ]
  21018. ))
  21019. characterMakers.push(() => makeCharacter(
  21020. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21021. {
  21022. front: {
  21023. height: math.unit(8 + 8 / 12, "feet"),
  21024. weight: math.unit(130, "kg"),
  21025. name: "Front",
  21026. image: {
  21027. source: "./media/characters/seroko/front.svg",
  21028. extra: 1385 / 1280,
  21029. bottom: 0.025
  21030. }
  21031. },
  21032. back: {
  21033. height: math.unit(8 + 8 / 12, "feet"),
  21034. weight: math.unit(130, "kg"),
  21035. name: "Back",
  21036. image: {
  21037. source: "./media/characters/seroko/back.svg",
  21038. extra: 1369 / 1238,
  21039. bottom: 0.018
  21040. }
  21041. },
  21042. frontDressed: {
  21043. height: math.unit(8 + 8 / 12, "feet"),
  21044. weight: math.unit(130, "kg"),
  21045. name: "Front (Dressed)",
  21046. image: {
  21047. source: "./media/characters/seroko/front-dressed.svg",
  21048. extra: 1366 / 1275,
  21049. bottom: 0.03
  21050. }
  21051. },
  21052. },
  21053. [
  21054. {
  21055. name: "Normal",
  21056. height: math.unit(8 + 8 / 12, "feet"),
  21057. default: true
  21058. },
  21059. ]
  21060. ))
  21061. characterMakers.push(() => makeCharacter(
  21062. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21063. {
  21064. front: {
  21065. height: math.unit(5.5, "feet"),
  21066. weight: math.unit(160, "lb"),
  21067. name: "Front",
  21068. image: {
  21069. source: "./media/characters/quatzi/front.svg",
  21070. extra: 2346 / 2242,
  21071. bottom: 0.015
  21072. }
  21073. },
  21074. },
  21075. [
  21076. {
  21077. name: "Normal",
  21078. height: math.unit(5.5, "feet"),
  21079. default: true
  21080. },
  21081. {
  21082. name: "Big",
  21083. height: math.unit(7.7, "feet")
  21084. },
  21085. ]
  21086. ))
  21087. characterMakers.push(() => makeCharacter(
  21088. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21089. {
  21090. front: {
  21091. height: math.unit(5 + 11 / 12, "feet"),
  21092. weight: math.unit(180, "lb"),
  21093. name: "Front",
  21094. image: {
  21095. source: "./media/characters/sen/front.svg",
  21096. extra: 1321 / 1254,
  21097. bottom: 0.015
  21098. }
  21099. },
  21100. side: {
  21101. height: math.unit(5 + 11 / 12, "feet"),
  21102. weight: math.unit(180, "lb"),
  21103. name: "Side",
  21104. image: {
  21105. source: "./media/characters/sen/side.svg",
  21106. extra: 1321 / 1254,
  21107. bottom: 0.007
  21108. }
  21109. },
  21110. back: {
  21111. height: math.unit(5 + 11 / 12, "feet"),
  21112. weight: math.unit(180, "lb"),
  21113. name: "Back",
  21114. image: {
  21115. source: "./media/characters/sen/back.svg",
  21116. extra: 1321 / 1254
  21117. }
  21118. },
  21119. },
  21120. [
  21121. {
  21122. name: "Normal",
  21123. height: math.unit(5 + 11 / 12, "feet"),
  21124. default: true
  21125. },
  21126. ]
  21127. ))
  21128. characterMakers.push(() => makeCharacter(
  21129. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21130. {
  21131. front: {
  21132. height: math.unit(166.6, "cm"),
  21133. weight: math.unit(66.6, "kg"),
  21134. name: "Front",
  21135. image: {
  21136. source: "./media/characters/fruity/front.svg",
  21137. extra: 1510 / 1386,
  21138. bottom: 0.04
  21139. }
  21140. },
  21141. back: {
  21142. height: math.unit(166.6, "cm"),
  21143. weight: math.unit(66.6, "lb"),
  21144. name: "Back",
  21145. image: {
  21146. source: "./media/characters/fruity/back.svg",
  21147. extra: 1563 / 1435,
  21148. bottom: 0.005
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(166.6, "cm"),
  21156. default: true
  21157. },
  21158. {
  21159. name: "Demonic",
  21160. height: math.unit(166.6, "feet")
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21166. {
  21167. side: {
  21168. height: math.unit(10, "feet"),
  21169. weight: math.unit(500, "lb"),
  21170. name: "Side",
  21171. image: {
  21172. source: "./media/characters/zost/side.svg",
  21173. extra: 966 / 880,
  21174. bottom: 0.075
  21175. }
  21176. },
  21177. mawFront: {
  21178. height: math.unit(1.08, "meters"),
  21179. name: "Maw (Front)",
  21180. image: {
  21181. source: "./media/characters/zost/maw-front.svg"
  21182. }
  21183. },
  21184. mawSide: {
  21185. height: math.unit(2.66, "feet"),
  21186. name: "Maw (Side)",
  21187. image: {
  21188. source: "./media/characters/zost/maw-side.svg"
  21189. }
  21190. },
  21191. },
  21192. [
  21193. {
  21194. name: "Normal",
  21195. height: math.unit(10, "feet"),
  21196. default: true
  21197. },
  21198. ]
  21199. ))
  21200. characterMakers.push(() => makeCharacter(
  21201. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21202. {
  21203. front: {
  21204. height: math.unit(5 + 4 / 12, "feet"),
  21205. weight: math.unit(120, "lb"),
  21206. name: "Front",
  21207. image: {
  21208. source: "./media/characters/luci/front.svg",
  21209. extra: 1985 / 1884,
  21210. bottom: 0.04
  21211. }
  21212. },
  21213. back: {
  21214. height: math.unit(5 + 4 / 12, "feet"),
  21215. weight: math.unit(120, "lb"),
  21216. name: "Back",
  21217. image: {
  21218. source: "./media/characters/luci/back.svg",
  21219. extra: 1892 / 1791,
  21220. bottom: 0.002
  21221. }
  21222. },
  21223. },
  21224. [
  21225. {
  21226. name: "Normal",
  21227. height: math.unit(5 + 4 / 12, "feet"),
  21228. default: true
  21229. },
  21230. ]
  21231. ))
  21232. characterMakers.push(() => makeCharacter(
  21233. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21234. {
  21235. front: {
  21236. height: math.unit(1500, "feet"),
  21237. weight: math.unit(3.8e6, "tons"),
  21238. name: "Front",
  21239. image: {
  21240. source: "./media/characters/2th/front.svg",
  21241. extra: 3489 / 3350,
  21242. bottom: 0.1
  21243. }
  21244. },
  21245. foot: {
  21246. height: math.unit(461, "feet"),
  21247. name: "Foot",
  21248. image: {
  21249. source: "./media/characters/2th/foot.svg"
  21250. }
  21251. },
  21252. },
  21253. [
  21254. {
  21255. name: "\"Micro\"",
  21256. height: math.unit(15 + 7 / 12, "feet")
  21257. },
  21258. {
  21259. name: "Normal",
  21260. height: math.unit(1500, "feet"),
  21261. default: true
  21262. },
  21263. {
  21264. name: "Macro",
  21265. height: math.unit(5000, "feet")
  21266. },
  21267. {
  21268. name: "Megamacro",
  21269. height: math.unit(15, "miles")
  21270. },
  21271. {
  21272. name: "Gigamacro",
  21273. height: math.unit(4000, "miles")
  21274. },
  21275. {
  21276. name: "Galactic",
  21277. height: math.unit(50, "AU")
  21278. },
  21279. ]
  21280. ))
  21281. characterMakers.push(() => makeCharacter(
  21282. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21283. {
  21284. front: {
  21285. height: math.unit(5 + 6 / 12, "feet"),
  21286. weight: math.unit(220, "lb"),
  21287. name: "Front",
  21288. image: {
  21289. source: "./media/characters/amethyst/front.svg",
  21290. extra: 2078 / 2040,
  21291. bottom: 0.045
  21292. }
  21293. },
  21294. back: {
  21295. height: math.unit(5 + 6 / 12, "feet"),
  21296. weight: math.unit(220, "lb"),
  21297. name: "Back",
  21298. image: {
  21299. source: "./media/characters/amethyst/back.svg",
  21300. extra: 2021 / 1989,
  21301. bottom: 0.02
  21302. }
  21303. },
  21304. },
  21305. [
  21306. {
  21307. name: "Normal",
  21308. height: math.unit(5 + 6 / 12, "feet"),
  21309. default: true
  21310. },
  21311. ]
  21312. ))
  21313. characterMakers.push(() => makeCharacter(
  21314. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21315. {
  21316. front: {
  21317. height: math.unit(4 + 11 / 12, "feet"),
  21318. weight: math.unit(120, "lb"),
  21319. name: "Front",
  21320. image: {
  21321. source: "./media/characters/yumi-akiyama/front.svg",
  21322. extra: 1327 / 1235,
  21323. bottom: 0.02
  21324. }
  21325. },
  21326. back: {
  21327. height: math.unit(4 + 11 / 12, "feet"),
  21328. weight: math.unit(120, "lb"),
  21329. name: "Back",
  21330. image: {
  21331. source: "./media/characters/yumi-akiyama/back.svg",
  21332. extra: 1287 / 1245,
  21333. bottom: 0.002
  21334. }
  21335. },
  21336. },
  21337. [
  21338. {
  21339. name: "Galactic",
  21340. height: math.unit(50, "galaxies"),
  21341. default: true
  21342. },
  21343. {
  21344. name: "Universal",
  21345. height: math.unit(100, "universes")
  21346. },
  21347. ]
  21348. ))
  21349. characterMakers.push(() => makeCharacter(
  21350. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21351. {
  21352. front: {
  21353. height: math.unit(8, "feet"),
  21354. weight: math.unit(500, "lb"),
  21355. name: "Front",
  21356. image: {
  21357. source: "./media/characters/rifter-yrmori/front.svg",
  21358. extra: 1180 / 1125,
  21359. bottom: 0.02
  21360. }
  21361. },
  21362. back: {
  21363. height: math.unit(8, "feet"),
  21364. weight: math.unit(500, "lb"),
  21365. name: "Back",
  21366. image: {
  21367. source: "./media/characters/rifter-yrmori/back.svg",
  21368. extra: 1190 / 1145,
  21369. bottom: 0.001
  21370. }
  21371. },
  21372. wings: {
  21373. height: math.unit(7.75, "feet"),
  21374. weight: math.unit(500, "lb"),
  21375. name: "Wings",
  21376. image: {
  21377. source: "./media/characters/rifter-yrmori/wings.svg",
  21378. extra: 1357 / 1285
  21379. }
  21380. },
  21381. maw: {
  21382. height: math.unit(0.8, "feet"),
  21383. name: "Maw",
  21384. image: {
  21385. source: "./media/characters/rifter-yrmori/maw.svg"
  21386. }
  21387. },
  21388. mawfront: {
  21389. height: math.unit(1.45, "feet"),
  21390. name: "Maw (Front)",
  21391. image: {
  21392. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21393. }
  21394. },
  21395. },
  21396. [
  21397. {
  21398. name: "Normal",
  21399. height: math.unit(8, "feet"),
  21400. default: true
  21401. },
  21402. {
  21403. name: "Macro",
  21404. height: math.unit(42, "meters")
  21405. },
  21406. ]
  21407. ))
  21408. characterMakers.push(() => makeCharacter(
  21409. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21410. {
  21411. were: {
  21412. height: math.unit(25 + 6 / 12, "feet"),
  21413. weight: math.unit(10000, "lb"),
  21414. name: "Were",
  21415. image: {
  21416. source: "./media/characters/tahajin/were.svg",
  21417. extra: 801 / 770,
  21418. bottom: 0.042
  21419. }
  21420. },
  21421. aquatic: {
  21422. height: math.unit(6 + 4 / 12, "feet"),
  21423. weight: math.unit(160, "lb"),
  21424. name: "Aquatic",
  21425. image: {
  21426. source: "./media/characters/tahajin/aquatic.svg",
  21427. extra: 572 / 542,
  21428. bottom: 0.04
  21429. }
  21430. },
  21431. chow: {
  21432. height: math.unit(8 + 11 / 12, "feet"),
  21433. weight: math.unit(450, "lb"),
  21434. name: "Chow",
  21435. image: {
  21436. source: "./media/characters/tahajin/chow.svg",
  21437. extra: 660 / 640,
  21438. bottom: 0.015
  21439. }
  21440. },
  21441. demiNaga: {
  21442. height: math.unit(6 + 8 / 12, "feet"),
  21443. weight: math.unit(300, "lb"),
  21444. name: "Demi Naga",
  21445. image: {
  21446. source: "./media/characters/tahajin/demi-naga.svg",
  21447. extra: 643 / 615,
  21448. bottom: 0.1
  21449. }
  21450. },
  21451. data: {
  21452. height: math.unit(5, "inches"),
  21453. weight: math.unit(0.1, "lb"),
  21454. name: "Data",
  21455. image: {
  21456. source: "./media/characters/tahajin/data.svg"
  21457. }
  21458. },
  21459. fluu: {
  21460. height: math.unit(5 + 7 / 12, "feet"),
  21461. weight: math.unit(140, "lb"),
  21462. name: "Fluu",
  21463. image: {
  21464. source: "./media/characters/tahajin/fluu.svg",
  21465. extra: 628 / 592,
  21466. bottom: 0.02
  21467. }
  21468. },
  21469. starWarrior: {
  21470. height: math.unit(4 + 5 / 12, "feet"),
  21471. weight: math.unit(50, "lb"),
  21472. name: "Star Warrior",
  21473. image: {
  21474. source: "./media/characters/tahajin/star-warrior.svg"
  21475. }
  21476. },
  21477. },
  21478. [
  21479. {
  21480. name: "Normal",
  21481. height: math.unit(25 + 6 / 12, "feet"),
  21482. default: true
  21483. },
  21484. ]
  21485. ))
  21486. characterMakers.push(() => makeCharacter(
  21487. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21488. {
  21489. front: {
  21490. height: math.unit(8, "feet"),
  21491. weight: math.unit(350, "lb"),
  21492. name: "Front",
  21493. image: {
  21494. source: "./media/characters/gabira/front.svg",
  21495. extra: 608 / 580,
  21496. bottom: 0.03
  21497. }
  21498. },
  21499. back: {
  21500. height: math.unit(8, "feet"),
  21501. weight: math.unit(350, "lb"),
  21502. name: "Back",
  21503. image: {
  21504. source: "./media/characters/gabira/back.svg",
  21505. extra: 608 / 580,
  21506. bottom: 0.03
  21507. }
  21508. },
  21509. },
  21510. [
  21511. {
  21512. name: "Normal",
  21513. height: math.unit(8, "feet"),
  21514. default: true
  21515. },
  21516. ]
  21517. ))
  21518. characterMakers.push(() => makeCharacter(
  21519. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21520. {
  21521. front: {
  21522. height: math.unit(5 + 3 / 12, "feet"),
  21523. weight: math.unit(137, "lb"),
  21524. name: "Front",
  21525. image: {
  21526. source: "./media/characters/sasha-katraine/front.svg",
  21527. bottom: 0.045
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Micro",
  21534. height: math.unit(5, "inches")
  21535. },
  21536. {
  21537. name: "Normal",
  21538. height: math.unit(5 + 3 / 12, "feet"),
  21539. default: true
  21540. },
  21541. ]
  21542. ))
  21543. characterMakers.push(() => makeCharacter(
  21544. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21545. {
  21546. side: {
  21547. height: math.unit(4, "inches"),
  21548. weight: math.unit(200, "grams"),
  21549. name: "Side",
  21550. image: {
  21551. source: "./media/characters/der/side.svg",
  21552. extra: 719 / 400,
  21553. bottom: 30.6 / 749.9187
  21554. }
  21555. },
  21556. },
  21557. [
  21558. {
  21559. name: "Micro",
  21560. height: math.unit(4, "inches"),
  21561. default: true
  21562. },
  21563. ]
  21564. ))
  21565. characterMakers.push(() => makeCharacter(
  21566. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21567. {
  21568. side: {
  21569. height: math.unit(30, "meters"),
  21570. weight: math.unit(700, "tonnes"),
  21571. name: "Side",
  21572. image: {
  21573. source: "./media/characters/fixerdragon/side.svg",
  21574. extra: (1293.0514 - 116.03) / 1106.86,
  21575. bottom: 116.03 / 1293.0514
  21576. }
  21577. },
  21578. },
  21579. [
  21580. {
  21581. name: "Planck",
  21582. height: math.unit(1.6e-35, "meters")
  21583. },
  21584. {
  21585. name: "Micro",
  21586. height: math.unit(0.4, "meters")
  21587. },
  21588. {
  21589. name: "Normal",
  21590. height: math.unit(30, "meters"),
  21591. default: true
  21592. },
  21593. {
  21594. name: "Megamacro",
  21595. height: math.unit(1.2, "megameters")
  21596. },
  21597. {
  21598. name: "Teramacro",
  21599. height: math.unit(130, "terameters")
  21600. },
  21601. {
  21602. name: "Yottamacro",
  21603. height: math.unit(6200, "yottameters")
  21604. },
  21605. ]
  21606. ));
  21607. characterMakers.push(() => makeCharacter(
  21608. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21609. {
  21610. front: {
  21611. height: math.unit(8, "feet"),
  21612. weight: math.unit(250, "lb"),
  21613. name: "Front",
  21614. image: {
  21615. source: "./media/characters/kite/front.svg",
  21616. extra: 2796 / 2659,
  21617. bottom: 0.002
  21618. }
  21619. },
  21620. },
  21621. [
  21622. {
  21623. name: "Normal",
  21624. height: math.unit(8, "feet"),
  21625. default: true
  21626. },
  21627. {
  21628. name: "Macro",
  21629. height: math.unit(360, "feet")
  21630. },
  21631. {
  21632. name: "Megamacro",
  21633. height: math.unit(1500, "feet")
  21634. },
  21635. ]
  21636. ))
  21637. characterMakers.push(() => makeCharacter(
  21638. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21639. {
  21640. front: {
  21641. height: math.unit(5 + 11/12, "feet"),
  21642. weight: math.unit(170, "lb"),
  21643. name: "Front",
  21644. image: {
  21645. source: "./media/characters/poojawa-vynar/front.svg",
  21646. extra: 1735/1585,
  21647. bottom: 96/1831
  21648. }
  21649. },
  21650. back: {
  21651. height: math.unit(5 + 11/12, "feet"),
  21652. weight: math.unit(170, "lb"),
  21653. name: "Back",
  21654. image: {
  21655. source: "./media/characters/poojawa-vynar/back.svg",
  21656. extra: 1749/1607,
  21657. bottom: 28/1777
  21658. }
  21659. },
  21660. male: {
  21661. height: math.unit(5 + 11/12, "feet"),
  21662. weight: math.unit(170, "lb"),
  21663. name: "Male",
  21664. image: {
  21665. source: "./media/characters/poojawa-vynar/male.svg",
  21666. extra: 1855/1713,
  21667. bottom: 63/1918
  21668. }
  21669. },
  21670. taur: {
  21671. height: math.unit(5 + 11/12, "feet"),
  21672. weight: math.unit(170, "lb"),
  21673. name: "Taur",
  21674. image: {
  21675. source: "./media/characters/poojawa-vynar/taur.svg",
  21676. extra: 1151/1059,
  21677. bottom: 356/1507
  21678. }
  21679. },
  21680. frontDressed: {
  21681. height: math.unit(5 + 11/12, "feet"),
  21682. weight: math.unit(170, "lb"),
  21683. name: "Front (Dressed)",
  21684. image: {
  21685. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21686. extra: 1735/1585,
  21687. bottom: 96/1831
  21688. }
  21689. },
  21690. backDressed: {
  21691. height: math.unit(5 + 11/12, "feet"),
  21692. weight: math.unit(170, "lb"),
  21693. name: "Back (Dressed)",
  21694. image: {
  21695. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21696. extra: 1749/1607,
  21697. bottom: 28/1777
  21698. }
  21699. },
  21700. maleDressed: {
  21701. height: math.unit(5 + 11/12, "feet"),
  21702. weight: math.unit(170, "lb"),
  21703. name: "Male (Dressed)",
  21704. image: {
  21705. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21706. extra: 1855/1713,
  21707. bottom: 63/1918
  21708. }
  21709. },
  21710. taurDressed: {
  21711. height: math.unit(5 + 11/12, "feet"),
  21712. weight: math.unit(170, "lb"),
  21713. name: "Taur (Dressed)",
  21714. image: {
  21715. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21716. extra: 1151/1059,
  21717. bottom: 356/1507
  21718. }
  21719. },
  21720. maw: {
  21721. height: math.unit(1.46, "feet"),
  21722. name: "Maw",
  21723. image: {
  21724. source: "./media/characters/poojawa-vynar/maw.svg"
  21725. }
  21726. },
  21727. head: {
  21728. height: math.unit(2.34, "feet"),
  21729. name: "Head",
  21730. image: {
  21731. source: "./media/characters/poojawa-vynar/head.svg"
  21732. }
  21733. },
  21734. paw: {
  21735. height: math.unit(1.61, "feet"),
  21736. name: "Paw",
  21737. image: {
  21738. source: "./media/characters/poojawa-vynar/paw.svg"
  21739. }
  21740. },
  21741. pawToering: {
  21742. height: math.unit(1.72, "feet"),
  21743. name: "Paw (Toering)",
  21744. image: {
  21745. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21746. }
  21747. },
  21748. toering: {
  21749. height: math.unit(2.9, "inches"),
  21750. name: "Toering",
  21751. image: {
  21752. source: "./media/characters/poojawa-vynar/toering.svg"
  21753. }
  21754. },
  21755. shaft: {
  21756. height: math.unit(0.625, "feet"),
  21757. name: "Shaft",
  21758. image: {
  21759. source: "./media/characters/poojawa-vynar/shaft.svg"
  21760. }
  21761. },
  21762. spade: {
  21763. height: math.unit(0.42, "feet"),
  21764. name: "Spade",
  21765. image: {
  21766. source: "./media/characters/poojawa-vynar/spade.svg"
  21767. }
  21768. },
  21769. },
  21770. [
  21771. {
  21772. name: "Shortstack",
  21773. height: math.unit(4, "feet")
  21774. },
  21775. {
  21776. name: "Normal",
  21777. height: math.unit(5 + 11 / 12, "feet"),
  21778. default: true
  21779. },
  21780. {
  21781. name: "Tauric",
  21782. height: math.unit(4, "meters")
  21783. },
  21784. ]
  21785. ))
  21786. characterMakers.push(() => makeCharacter(
  21787. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21788. {
  21789. front: {
  21790. height: math.unit(293, "meters"),
  21791. weight: math.unit(70400, "tons"),
  21792. name: "Front",
  21793. image: {
  21794. source: "./media/characters/violette/front.svg",
  21795. extra: 1227 / 1180,
  21796. bottom: 0.005
  21797. }
  21798. },
  21799. back: {
  21800. height: math.unit(293, "meters"),
  21801. weight: math.unit(70400, "tons"),
  21802. name: "Back",
  21803. image: {
  21804. source: "./media/characters/violette/back.svg",
  21805. extra: 1227 / 1180,
  21806. bottom: 0.005
  21807. }
  21808. },
  21809. },
  21810. [
  21811. {
  21812. name: "Macro",
  21813. height: math.unit(293, "meters"),
  21814. default: true
  21815. },
  21816. ]
  21817. ))
  21818. characterMakers.push(() => makeCharacter(
  21819. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21820. {
  21821. front: {
  21822. height: math.unit(1050, "feet"),
  21823. weight: math.unit(200000, "tons"),
  21824. name: "Front",
  21825. image: {
  21826. source: "./media/characters/alessandra/front.svg",
  21827. extra: 960 / 912,
  21828. bottom: 0.06
  21829. }
  21830. },
  21831. },
  21832. [
  21833. {
  21834. name: "Macro",
  21835. height: math.unit(1050, "feet")
  21836. },
  21837. {
  21838. name: "Macro+",
  21839. height: math.unit(900, "meters"),
  21840. default: true
  21841. },
  21842. ]
  21843. ))
  21844. characterMakers.push(() => makeCharacter(
  21845. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21846. {
  21847. front: {
  21848. height: math.unit(5, "feet"),
  21849. weight: math.unit(187, "lb"),
  21850. name: "Front",
  21851. image: {
  21852. source: "./media/characters/person/front.svg",
  21853. extra: 3087 / 2945,
  21854. bottom: 91 / 3181
  21855. }
  21856. },
  21857. },
  21858. [
  21859. {
  21860. name: "Micro",
  21861. height: math.unit(3, "inches")
  21862. },
  21863. {
  21864. name: "Normal",
  21865. height: math.unit(5, "feet"),
  21866. default: true
  21867. },
  21868. {
  21869. name: "Macro",
  21870. height: math.unit(90, "feet")
  21871. },
  21872. {
  21873. name: "Max Size",
  21874. height: math.unit(280, "feet")
  21875. },
  21876. ]
  21877. ))
  21878. characterMakers.push(() => makeCharacter(
  21879. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21880. {
  21881. front: {
  21882. height: math.unit(4.5, "meters"),
  21883. weight: math.unit(3200, "lb"),
  21884. name: "Front",
  21885. image: {
  21886. source: "./media/characters/ty/front.svg",
  21887. extra: 1038 / 960,
  21888. bottom: 31.156 / 1068
  21889. }
  21890. },
  21891. back: {
  21892. height: math.unit(4.5, "meters"),
  21893. weight: math.unit(3200, "lb"),
  21894. name: "Back",
  21895. image: {
  21896. source: "./media/characters/ty/back.svg",
  21897. extra: 1044 / 966,
  21898. bottom: 7.48 / 1049
  21899. }
  21900. },
  21901. },
  21902. [
  21903. {
  21904. name: "Normal",
  21905. height: math.unit(4.5, "meters"),
  21906. default: true
  21907. },
  21908. ]
  21909. ))
  21910. characterMakers.push(() => makeCharacter(
  21911. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21912. {
  21913. front: {
  21914. height: math.unit(5 + 4 / 12, "feet"),
  21915. weight: math.unit(115, "lb"),
  21916. name: "Front",
  21917. image: {
  21918. source: "./media/characters/rocky/front.svg",
  21919. extra: 1012 / 975,
  21920. bottom: 54 / 1066
  21921. }
  21922. },
  21923. },
  21924. [
  21925. {
  21926. name: "Normal",
  21927. height: math.unit(5 + 4 / 12, "feet"),
  21928. default: true
  21929. },
  21930. ]
  21931. ))
  21932. characterMakers.push(() => makeCharacter(
  21933. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21934. {
  21935. upright: {
  21936. height: math.unit(6, "meters"),
  21937. weight: math.unit(4000, "kg"),
  21938. name: "Upright",
  21939. image: {
  21940. source: "./media/characters/ruin/upright.svg",
  21941. extra: 668 / 661,
  21942. bottom: 42 / 799.8396
  21943. }
  21944. },
  21945. },
  21946. [
  21947. {
  21948. name: "Normal",
  21949. height: math.unit(6, "meters"),
  21950. default: true
  21951. },
  21952. ]
  21953. ))
  21954. characterMakers.push(() => makeCharacter(
  21955. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21956. {
  21957. front: {
  21958. height: math.unit(5, "feet"),
  21959. weight: math.unit(106, "lb"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/robin/front.svg",
  21963. extra: 862 / 799,
  21964. bottom: 42.4 / 914.8856
  21965. }
  21966. },
  21967. },
  21968. [
  21969. {
  21970. name: "Normal",
  21971. height: math.unit(5, "feet"),
  21972. default: true
  21973. },
  21974. ]
  21975. ))
  21976. characterMakers.push(() => makeCharacter(
  21977. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21978. {
  21979. side: {
  21980. height: math.unit(3, "feet"),
  21981. weight: math.unit(225, "lb"),
  21982. name: "Side",
  21983. image: {
  21984. source: "./media/characters/saian/side.svg",
  21985. extra: 566 / 356,
  21986. bottom: 79.7 / 643
  21987. }
  21988. },
  21989. maw: {
  21990. height: math.unit(2.85, "feet"),
  21991. name: "Maw",
  21992. image: {
  21993. source: "./media/characters/saian/maw.svg"
  21994. }
  21995. },
  21996. },
  21997. [
  21998. {
  21999. name: "Normal",
  22000. height: math.unit(3, "feet"),
  22001. default: true
  22002. },
  22003. ]
  22004. ))
  22005. characterMakers.push(() => makeCharacter(
  22006. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22007. {
  22008. side: {
  22009. height: math.unit(8, "feet"),
  22010. weight: math.unit(300, "lb"),
  22011. name: "Side",
  22012. image: {
  22013. source: "./media/characters/equus-silvermane/side.svg",
  22014. extra: 2176 / 2050,
  22015. bottom: 65.7 / 2245
  22016. }
  22017. },
  22018. front: {
  22019. height: math.unit(8, "feet"),
  22020. weight: math.unit(300, "lb"),
  22021. name: "Front",
  22022. image: {
  22023. source: "./media/characters/equus-silvermane/front.svg",
  22024. extra: 4633 / 4400,
  22025. bottom: 71.3 / 4706.915
  22026. }
  22027. },
  22028. sideStepping: {
  22029. height: math.unit(8, "feet"),
  22030. weight: math.unit(300, "lb"),
  22031. name: "Side (Stepping)",
  22032. image: {
  22033. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22034. extra: 1968 / 1860,
  22035. bottom: 16.4 / 1989
  22036. }
  22037. },
  22038. },
  22039. [
  22040. {
  22041. name: "Normal",
  22042. height: math.unit(8, "feet")
  22043. },
  22044. {
  22045. name: "Minimacro",
  22046. height: math.unit(75, "feet"),
  22047. default: true
  22048. },
  22049. {
  22050. name: "Macro",
  22051. height: math.unit(150, "feet")
  22052. },
  22053. {
  22054. name: "Macro+",
  22055. height: math.unit(1000, "feet")
  22056. },
  22057. {
  22058. name: "Megamacro",
  22059. height: math.unit(1, "mile")
  22060. },
  22061. ]
  22062. ))
  22063. characterMakers.push(() => makeCharacter(
  22064. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22065. {
  22066. side: {
  22067. height: math.unit(20, "feet"),
  22068. weight: math.unit(30000, "kg"),
  22069. name: "Side",
  22070. image: {
  22071. source: "./media/characters/windar/side.svg",
  22072. extra: 1491 / 1248,
  22073. bottom: 82.56 / 1568
  22074. }
  22075. },
  22076. },
  22077. [
  22078. {
  22079. name: "Normal",
  22080. height: math.unit(20, "feet"),
  22081. default: true
  22082. },
  22083. ]
  22084. ))
  22085. characterMakers.push(() => makeCharacter(
  22086. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22087. {
  22088. side: {
  22089. height: math.unit(15.66, "feet"),
  22090. weight: math.unit(150, "lb"),
  22091. name: "Side",
  22092. image: {
  22093. source: "./media/characters/melody/side.svg",
  22094. extra: 1097 / 944,
  22095. bottom: 11.8 / 1109
  22096. }
  22097. },
  22098. sideOutfit: {
  22099. height: math.unit(15.66, "feet"),
  22100. weight: math.unit(150, "lb"),
  22101. name: "Side (Outfit)",
  22102. image: {
  22103. source: "./media/characters/melody/side-outfit.svg",
  22104. extra: 1097 / 944,
  22105. bottom: 11.8 / 1109
  22106. }
  22107. },
  22108. },
  22109. [
  22110. {
  22111. name: "Normal",
  22112. height: math.unit(15.66, "feet"),
  22113. default: true
  22114. },
  22115. ]
  22116. ))
  22117. characterMakers.push(() => makeCharacter(
  22118. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22119. {
  22120. front: {
  22121. height: math.unit(8, "feet"),
  22122. weight: math.unit(325, "lb"),
  22123. name: "Front",
  22124. image: {
  22125. source: "./media/characters/windera/front.svg",
  22126. extra: 3180 / 2845,
  22127. bottom: 178 / 3365
  22128. }
  22129. },
  22130. },
  22131. [
  22132. {
  22133. name: "Normal",
  22134. height: math.unit(8, "feet"),
  22135. default: true
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22141. {
  22142. front: {
  22143. height: math.unit(28.75, "feet"),
  22144. weight: math.unit(2000, "kg"),
  22145. name: "Front",
  22146. image: {
  22147. source: "./media/characters/sonear/front.svg",
  22148. extra: 1041.1 / 964.9,
  22149. bottom: 53.7 / 1096.6
  22150. }
  22151. },
  22152. },
  22153. [
  22154. {
  22155. name: "Normal",
  22156. height: math.unit(28.75, "feet"),
  22157. default: true
  22158. },
  22159. ]
  22160. ))
  22161. characterMakers.push(() => makeCharacter(
  22162. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22163. {
  22164. side: {
  22165. height: math.unit(25.5, "feet"),
  22166. weight: math.unit(23000, "kg"),
  22167. name: "Side",
  22168. image: {
  22169. source: "./media/characters/kanara/side.svg"
  22170. }
  22171. },
  22172. },
  22173. [
  22174. {
  22175. name: "Normal",
  22176. height: math.unit(25.5, "feet"),
  22177. default: true
  22178. },
  22179. ]
  22180. ))
  22181. characterMakers.push(() => makeCharacter(
  22182. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22183. {
  22184. side: {
  22185. height: math.unit(10, "feet"),
  22186. weight: math.unit(1000, "kg"),
  22187. name: "Side",
  22188. image: {
  22189. source: "./media/characters/ereus/side.svg",
  22190. extra: 1157 / 959,
  22191. bottom: 153 / 1312.5
  22192. }
  22193. },
  22194. },
  22195. [
  22196. {
  22197. name: "Normal",
  22198. height: math.unit(10, "feet"),
  22199. default: true
  22200. },
  22201. ]
  22202. ))
  22203. characterMakers.push(() => makeCharacter(
  22204. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22205. {
  22206. side: {
  22207. height: math.unit(4.5, "feet"),
  22208. weight: math.unit(500, "lb"),
  22209. name: "Side",
  22210. image: {
  22211. source: "./media/characters/e-ter/side.svg",
  22212. extra: 1550 / 1248,
  22213. bottom: 146 / 1694
  22214. }
  22215. },
  22216. },
  22217. [
  22218. {
  22219. name: "Normal",
  22220. height: math.unit(4.5, "feet"),
  22221. default: true
  22222. },
  22223. ]
  22224. ))
  22225. characterMakers.push(() => makeCharacter(
  22226. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22227. {
  22228. side: {
  22229. height: math.unit(9.7, "feet"),
  22230. weight: math.unit(4000, "kg"),
  22231. name: "Side",
  22232. image: {
  22233. source: "./media/characters/yamie/side.svg"
  22234. }
  22235. },
  22236. },
  22237. [
  22238. {
  22239. name: "Normal",
  22240. height: math.unit(9.7, "feet"),
  22241. default: true
  22242. },
  22243. ]
  22244. ))
  22245. characterMakers.push(() => makeCharacter(
  22246. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22247. {
  22248. front: {
  22249. height: math.unit(50, "feet"),
  22250. weight: math.unit(50000, "kg"),
  22251. name: "Front",
  22252. image: {
  22253. source: "./media/characters/anders/front.svg",
  22254. extra: 570 / 539,
  22255. bottom: 14.7 / 586.7
  22256. }
  22257. },
  22258. },
  22259. [
  22260. {
  22261. name: "Large",
  22262. height: math.unit(50, "feet")
  22263. },
  22264. {
  22265. name: "Macro",
  22266. height: math.unit(2000, "feet"),
  22267. default: true
  22268. },
  22269. {
  22270. name: "Megamacro",
  22271. height: math.unit(12, "miles")
  22272. },
  22273. ]
  22274. ))
  22275. characterMakers.push(() => makeCharacter(
  22276. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22277. {
  22278. front: {
  22279. height: math.unit(7 + 2 / 12, "feet"),
  22280. weight: math.unit(300, "lb"),
  22281. name: "Front",
  22282. image: {
  22283. source: "./media/characters/reban/front.svg",
  22284. extra: 516 / 487,
  22285. bottom: 42.82 / 558.356
  22286. }
  22287. },
  22288. dick: {
  22289. height: math.unit(7 / 5, "feet"),
  22290. name: "Dick",
  22291. image: {
  22292. source: "./media/characters/reban/dick.svg"
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Natural Height",
  22299. height: math.unit(7 + 2 / 12, "feet")
  22300. },
  22301. {
  22302. name: "Macro",
  22303. height: math.unit(500, "feet"),
  22304. default: true
  22305. },
  22306. {
  22307. name: "Canon Height",
  22308. height: math.unit(50, "AU")
  22309. },
  22310. ]
  22311. ))
  22312. characterMakers.push(() => makeCharacter(
  22313. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22314. {
  22315. front: {
  22316. height: math.unit(6, "feet"),
  22317. weight: math.unit(150, "lb"),
  22318. name: "Front",
  22319. image: {
  22320. source: "./media/characters/terrance-keayes/front.svg",
  22321. extra: 1.005,
  22322. bottom: 151 / 1615
  22323. }
  22324. },
  22325. side: {
  22326. height: math.unit(6, "feet"),
  22327. weight: math.unit(150, "lb"),
  22328. name: "Side",
  22329. image: {
  22330. source: "./media/characters/terrance-keayes/side.svg",
  22331. extra: 1.005,
  22332. bottom: 129.4 / 1544
  22333. }
  22334. },
  22335. back: {
  22336. height: math.unit(6, "feet"),
  22337. weight: math.unit(150, "lb"),
  22338. name: "Back",
  22339. image: {
  22340. source: "./media/characters/terrance-keayes/back.svg",
  22341. extra: 1.005,
  22342. bottom: 58.4 / 1557.3
  22343. }
  22344. },
  22345. dick: {
  22346. height: math.unit(6 * 0.208, "feet"),
  22347. name: "Dick",
  22348. image: {
  22349. source: "./media/characters/terrance-keayes/dick.svg"
  22350. }
  22351. },
  22352. },
  22353. [
  22354. {
  22355. name: "Canon Height",
  22356. height: math.unit(35, "miles"),
  22357. default: true
  22358. },
  22359. ]
  22360. ))
  22361. characterMakers.push(() => makeCharacter(
  22362. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22363. {
  22364. front: {
  22365. height: math.unit(6, "feet"),
  22366. weight: math.unit(150, "lb"),
  22367. name: "Front",
  22368. image: {
  22369. source: "./media/characters/ofelia/front.svg",
  22370. extra: 546 / 541,
  22371. bottom: 39 / 583
  22372. }
  22373. },
  22374. back: {
  22375. height: math.unit(6, "feet"),
  22376. weight: math.unit(150, "lb"),
  22377. name: "Back",
  22378. image: {
  22379. source: "./media/characters/ofelia/back.svg",
  22380. extra: 564 / 559.5,
  22381. bottom: 8.69 / 573.02
  22382. }
  22383. },
  22384. maw: {
  22385. height: math.unit(1, "feet"),
  22386. name: "Maw",
  22387. image: {
  22388. source: "./media/characters/ofelia/maw.svg"
  22389. }
  22390. },
  22391. foot: {
  22392. height: math.unit(1.949, "feet"),
  22393. name: "Foot",
  22394. image: {
  22395. source: "./media/characters/ofelia/foot.svg"
  22396. }
  22397. },
  22398. },
  22399. [
  22400. {
  22401. name: "Canon Height",
  22402. height: math.unit(2000, "miles"),
  22403. default: true
  22404. },
  22405. ]
  22406. ))
  22407. characterMakers.push(() => makeCharacter(
  22408. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22409. {
  22410. front: {
  22411. height: math.unit(6, "feet"),
  22412. weight: math.unit(150, "lb"),
  22413. name: "Front",
  22414. image: {
  22415. source: "./media/characters/samuel/front.svg",
  22416. extra: 265 / 258,
  22417. bottom: 2 / 266.1566
  22418. }
  22419. },
  22420. },
  22421. [
  22422. {
  22423. name: "Macro",
  22424. height: math.unit(100, "feet"),
  22425. default: true
  22426. },
  22427. {
  22428. name: "Full Size",
  22429. height: math.unit(1000, "miles")
  22430. },
  22431. ]
  22432. ))
  22433. characterMakers.push(() => makeCharacter(
  22434. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22435. {
  22436. front: {
  22437. height: math.unit(6, "feet"),
  22438. weight: math.unit(300, "lb"),
  22439. name: "Front",
  22440. image: {
  22441. source: "./media/characters/beishir-kiel/front.svg",
  22442. extra: 569 / 547,
  22443. bottom: 41.9 / 609
  22444. }
  22445. },
  22446. maw: {
  22447. height: math.unit(6 * 0.202, "feet"),
  22448. name: "Maw",
  22449. image: {
  22450. source: "./media/characters/beishir-kiel/maw.svg"
  22451. }
  22452. },
  22453. },
  22454. [
  22455. {
  22456. name: "Macro",
  22457. height: math.unit(300, "feet"),
  22458. default: true
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22464. {
  22465. front: {
  22466. height: math.unit(5 + 7/12, "feet"),
  22467. weight: math.unit(120, "lb"),
  22468. name: "Front",
  22469. image: {
  22470. source: "./media/characters/logan-grey/front.svg",
  22471. extra: 1836/1738,
  22472. bottom: 108/1944
  22473. }
  22474. },
  22475. back: {
  22476. height: math.unit(5 + 7/12, "feet"),
  22477. weight: math.unit(120, "lb"),
  22478. name: "Back",
  22479. image: {
  22480. source: "./media/characters/logan-grey/back.svg",
  22481. extra: 1880/1794,
  22482. bottom: 24/1904
  22483. }
  22484. },
  22485. frontSfw: {
  22486. height: math.unit(5 + 7/12, "feet"),
  22487. weight: math.unit(120, "lb"),
  22488. name: "Front (SFW)",
  22489. image: {
  22490. source: "./media/characters/logan-grey/front-sfw.svg",
  22491. extra: 1836/1738,
  22492. bottom: 108/1944
  22493. }
  22494. },
  22495. backSfw: {
  22496. height: math.unit(5 + 7/12, "feet"),
  22497. weight: math.unit(120, "lb"),
  22498. name: "Back (SFW)",
  22499. image: {
  22500. source: "./media/characters/logan-grey/back-sfw.svg",
  22501. extra: 1880/1794,
  22502. bottom: 24/1904
  22503. }
  22504. },
  22505. hands: {
  22506. height: math.unit(0.84, "feet"),
  22507. name: "Hands",
  22508. image: {
  22509. source: "./media/characters/logan-grey/hands.svg"
  22510. }
  22511. },
  22512. paws: {
  22513. height: math.unit(0.72, "feet"),
  22514. name: "Paws",
  22515. image: {
  22516. source: "./media/characters/logan-grey/paws.svg"
  22517. }
  22518. },
  22519. cock: {
  22520. height: math.unit(1.45, "feet"),
  22521. name: "Cock",
  22522. image: {
  22523. source: "./media/characters/logan-grey/cock.svg"
  22524. }
  22525. },
  22526. cockAlt: {
  22527. height: math.unit(1.437, "feet"),
  22528. name: "Cock (alt)",
  22529. image: {
  22530. source: "./media/characters/logan-grey/cock-alt.svg"
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Normal",
  22537. height: math.unit(5 + 8 / 12, "feet")
  22538. },
  22539. {
  22540. name: "The 500 Foot Femboy",
  22541. height: math.unit(500, "feet"),
  22542. default: true
  22543. },
  22544. {
  22545. name: "Megmacro",
  22546. height: math.unit(20, "miles")
  22547. },
  22548. ]
  22549. ))
  22550. characterMakers.push(() => makeCharacter(
  22551. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22552. {
  22553. front: {
  22554. height: math.unit(8 + 2 / 12, "feet"),
  22555. weight: math.unit(275, "lb"),
  22556. name: "Front",
  22557. image: {
  22558. source: "./media/characters/draganta/front.svg",
  22559. extra: 1177 / 1135,
  22560. bottom: 33.46 / 1212.1
  22561. }
  22562. },
  22563. },
  22564. [
  22565. {
  22566. name: "Normal",
  22567. height: math.unit(8 + 6 / 12, "feet"),
  22568. default: true
  22569. },
  22570. {
  22571. name: "Macro",
  22572. height: math.unit(150, "feet")
  22573. },
  22574. {
  22575. name: "Megamacro",
  22576. height: math.unit(1000, "miles")
  22577. },
  22578. ]
  22579. ))
  22580. characterMakers.push(() => makeCharacter(
  22581. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22582. {
  22583. front: {
  22584. height: math.unit(1.72, "m"),
  22585. weight: math.unit(80, "lb"),
  22586. name: "Front",
  22587. image: {
  22588. source: "./media/characters/voski/front.svg",
  22589. extra: 2076.22 / 2022.4,
  22590. bottom: 102.7 / 2177.3866
  22591. }
  22592. },
  22593. frontNsfw: {
  22594. height: math.unit(1.72, "m"),
  22595. weight: math.unit(80, "lb"),
  22596. name: "Front (NSFW)",
  22597. image: {
  22598. source: "./media/characters/voski/front-nsfw.svg",
  22599. extra: 2076.22 / 2022.4,
  22600. bottom: 102.7 / 2177.3866
  22601. }
  22602. },
  22603. back: {
  22604. height: math.unit(1.72, "m"),
  22605. weight: math.unit(80, "lb"),
  22606. name: "Back",
  22607. image: {
  22608. source: "./media/characters/voski/back.svg",
  22609. extra: 2104 / 2051,
  22610. bottom: 10.45 / 2113.63
  22611. }
  22612. },
  22613. },
  22614. [
  22615. {
  22616. name: "Normal",
  22617. height: math.unit(1.72, "m")
  22618. },
  22619. {
  22620. name: "Macro",
  22621. height: math.unit(55, "m"),
  22622. default: true
  22623. },
  22624. {
  22625. name: "Macro+",
  22626. height: math.unit(300, "m")
  22627. },
  22628. {
  22629. name: "Macro++",
  22630. height: math.unit(700, "m")
  22631. },
  22632. {
  22633. name: "Macro+++",
  22634. height: math.unit(4500, "m")
  22635. },
  22636. {
  22637. name: "Macro++++",
  22638. height: math.unit(45, "km")
  22639. },
  22640. {
  22641. name: "Macro+++++",
  22642. height: math.unit(1220, "km")
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22648. {
  22649. front: {
  22650. height: math.unit(2.3, "m"),
  22651. weight: math.unit(304, "kg"),
  22652. name: "Front",
  22653. image: {
  22654. source: "./media/characters/icowom-lee/front.svg",
  22655. extra: 985 / 955,
  22656. bottom: 25.4 / 1012
  22657. }
  22658. },
  22659. fronttentacles: {
  22660. height: math.unit(2.3, "m"),
  22661. weight: math.unit(304, "kg"),
  22662. name: "Front-tentacles",
  22663. image: {
  22664. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22665. extra: 985 / 955,
  22666. bottom: 25.4 / 1012
  22667. }
  22668. },
  22669. back: {
  22670. height: math.unit(2.3, "m"),
  22671. weight: math.unit(304, "kg"),
  22672. name: "Back",
  22673. image: {
  22674. source: "./media/characters/icowom-lee/back.svg",
  22675. extra: 975 / 954,
  22676. bottom: 9.5 / 985
  22677. }
  22678. },
  22679. backtentacles: {
  22680. height: math.unit(2.3, "m"),
  22681. weight: math.unit(304, "kg"),
  22682. name: "Back-tentacles",
  22683. image: {
  22684. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22685. extra: 975 / 954,
  22686. bottom: 9.5 / 985
  22687. }
  22688. },
  22689. frontDressed: {
  22690. height: math.unit(2.3, "m"),
  22691. weight: math.unit(304, "kg"),
  22692. name: "Front (Dressed)",
  22693. image: {
  22694. source: "./media/characters/icowom-lee/front-dressed.svg",
  22695. extra: 3076 / 2933,
  22696. bottom: 51.4 / 3125.1889
  22697. }
  22698. },
  22699. rump: {
  22700. height: math.unit(0.776, "meters"),
  22701. name: "Rump",
  22702. image: {
  22703. source: "./media/characters/icowom-lee/rump.svg"
  22704. }
  22705. },
  22706. genitals: {
  22707. height: math.unit(0.78, "meters"),
  22708. name: "Genitals",
  22709. image: {
  22710. source: "./media/characters/icowom-lee/genitals.svg"
  22711. }
  22712. },
  22713. },
  22714. [
  22715. {
  22716. name: "Normal",
  22717. height: math.unit(2.3, "meters"),
  22718. default: true
  22719. },
  22720. {
  22721. name: "Macro",
  22722. height: math.unit(94, "meters"),
  22723. default: true
  22724. },
  22725. ]
  22726. ))
  22727. characterMakers.push(() => makeCharacter(
  22728. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22729. {
  22730. front: {
  22731. height: math.unit(22, "meters"),
  22732. weight: math.unit(21000, "kg"),
  22733. name: "Front",
  22734. image: {
  22735. source: "./media/characters/shock-diamond/front.svg",
  22736. extra: 2204 / 2053,
  22737. bottom: 65 / 2239.47
  22738. }
  22739. },
  22740. frontNude: {
  22741. height: math.unit(22, "meters"),
  22742. weight: math.unit(21000, "kg"),
  22743. name: "Front (Nude)",
  22744. image: {
  22745. source: "./media/characters/shock-diamond/front-nude.svg",
  22746. extra: 2514 / 2285,
  22747. bottom: 13 / 2527.56
  22748. }
  22749. },
  22750. },
  22751. [
  22752. {
  22753. name: "Normal",
  22754. height: math.unit(3, "meters")
  22755. },
  22756. {
  22757. name: "Macro",
  22758. height: math.unit(22, "meters"),
  22759. default: true
  22760. },
  22761. ]
  22762. ))
  22763. characterMakers.push(() => makeCharacter(
  22764. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22765. {
  22766. front: {
  22767. height: math.unit(5 + 4 / 12, "feet"),
  22768. weight: math.unit(120, "lb"),
  22769. name: "Front",
  22770. image: {
  22771. source: "./media/characters/rory/front.svg",
  22772. extra: 1318/1241,
  22773. bottom: 42/1360
  22774. }
  22775. },
  22776. back: {
  22777. height: math.unit(5 + 4 / 12, "feet"),
  22778. weight: math.unit(120, "lb"),
  22779. name: "Back",
  22780. image: {
  22781. source: "./media/characters/rory/back.svg",
  22782. extra: 1318/1241,
  22783. bottom: 42/1360
  22784. }
  22785. },
  22786. butt: {
  22787. height: math.unit(1.74, "feet"),
  22788. name: "Butt",
  22789. image: {
  22790. source: "./media/characters/rory/butt.svg"
  22791. }
  22792. },
  22793. dick: {
  22794. height: math.unit(1.02, "feet"),
  22795. name: "Dick",
  22796. image: {
  22797. source: "./media/characters/rory/dick.svg"
  22798. }
  22799. },
  22800. paws: {
  22801. height: math.unit(1, "feet"),
  22802. name: "Paws",
  22803. image: {
  22804. source: "./media/characters/rory/paws.svg"
  22805. }
  22806. },
  22807. frontAlt: {
  22808. height: math.unit(5 + 4 / 12, "feet"),
  22809. weight: math.unit(120, "lb"),
  22810. name: "Front (Alt)",
  22811. image: {
  22812. source: "./media/characters/rory/front-alt.svg",
  22813. extra: 589 / 556,
  22814. bottom: 45.7 / 635.76
  22815. }
  22816. },
  22817. frontAltNude: {
  22818. height: math.unit(5 + 4 / 12, "feet"),
  22819. weight: math.unit(120, "lb"),
  22820. name: "Front (Alt, Nude)",
  22821. image: {
  22822. source: "./media/characters/rory/front-alt-nude.svg",
  22823. extra: 589 / 556,
  22824. bottom: 45.7 / 635.76
  22825. }
  22826. },
  22827. side: {
  22828. height: math.unit(5 + 4 / 12, "feet"),
  22829. weight: math.unit(120, "lb"),
  22830. name: "Side",
  22831. image: {
  22832. source: "./media/characters/rory/side.svg",
  22833. extra: 597 / 564,
  22834. bottom: 55 / 653
  22835. }
  22836. },
  22837. backAlt: {
  22838. height: math.unit(5 + 4 / 12, "feet"),
  22839. weight: math.unit(120, "lb"),
  22840. name: "Back (Alt)",
  22841. image: {
  22842. source: "./media/characters/rory/back-alt.svg",
  22843. extra: 620 / 585,
  22844. bottom: 8.86 / 630.43
  22845. }
  22846. },
  22847. dickAlt: {
  22848. height: math.unit(0.86, "feet"),
  22849. name: "Dick (Alt)",
  22850. image: {
  22851. source: "./media/characters/rory/dick-alt.svg"
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Normal",
  22858. height: math.unit(5 + 4 / 12, "feet"),
  22859. default: true
  22860. },
  22861. {
  22862. name: "Macro",
  22863. height: math.unit(100, "feet")
  22864. },
  22865. {
  22866. name: "Macro+",
  22867. height: math.unit(140, "feet")
  22868. },
  22869. {
  22870. name: "Macro++",
  22871. height: math.unit(300, "feet")
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22877. {
  22878. front: {
  22879. height: math.unit(5 + 9 / 12, "feet"),
  22880. weight: math.unit(190, "lb"),
  22881. name: "Front",
  22882. image: {
  22883. source: "./media/characters/sprisk/front.svg",
  22884. extra: 1225 / 1180,
  22885. bottom: 42.7 / 1266.4
  22886. }
  22887. },
  22888. frontNsfw: {
  22889. height: math.unit(5 + 9 / 12, "feet"),
  22890. weight: math.unit(190, "lb"),
  22891. name: "Front (NSFW)",
  22892. image: {
  22893. source: "./media/characters/sprisk/front-nsfw.svg",
  22894. extra: 1225 / 1180,
  22895. bottom: 42.7 / 1266.4
  22896. }
  22897. },
  22898. back: {
  22899. height: math.unit(5 + 9 / 12, "feet"),
  22900. weight: math.unit(190, "lb"),
  22901. name: "Back",
  22902. image: {
  22903. source: "./media/characters/sprisk/back.svg",
  22904. extra: 1247 / 1200,
  22905. bottom: 5.6 / 1253.04
  22906. }
  22907. },
  22908. },
  22909. [
  22910. {
  22911. name: "Tiny",
  22912. height: math.unit(2, "inches")
  22913. },
  22914. {
  22915. name: "Normal",
  22916. height: math.unit(5 + 9 / 12, "feet"),
  22917. default: true
  22918. },
  22919. {
  22920. name: "Mini Macro",
  22921. height: math.unit(18, "feet")
  22922. },
  22923. {
  22924. name: "Macro",
  22925. height: math.unit(100, "feet")
  22926. },
  22927. {
  22928. name: "MACRO",
  22929. height: math.unit(50, "miles")
  22930. },
  22931. {
  22932. name: "M A C R O",
  22933. height: math.unit(300, "miles")
  22934. },
  22935. ]
  22936. ))
  22937. characterMakers.push(() => makeCharacter(
  22938. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22939. {
  22940. side: {
  22941. height: math.unit(15.6, "meters"),
  22942. weight: math.unit(700000, "kg"),
  22943. name: "Side",
  22944. image: {
  22945. source: "./media/characters/bunsen/side.svg",
  22946. extra: 1644 / 358
  22947. }
  22948. },
  22949. foot: {
  22950. height: math.unit(1.611 * 1644 / 358, "meter"),
  22951. name: "Foot",
  22952. image: {
  22953. source: "./media/characters/bunsen/foot.svg"
  22954. }
  22955. },
  22956. },
  22957. [
  22958. {
  22959. name: "Small",
  22960. height: math.unit(10, "feet")
  22961. },
  22962. {
  22963. name: "Normal",
  22964. height: math.unit(15.6, "meters"),
  22965. default: true
  22966. },
  22967. ]
  22968. ))
  22969. characterMakers.push(() => makeCharacter(
  22970. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22971. {
  22972. front: {
  22973. height: math.unit(4 + 11 / 12, "feet"),
  22974. weight: math.unit(140, "lb"),
  22975. name: "Front",
  22976. image: {
  22977. source: "./media/characters/sesh/front.svg",
  22978. extra: 3420 / 3231,
  22979. bottom: 72 / 3949.5
  22980. }
  22981. },
  22982. },
  22983. [
  22984. {
  22985. name: "Normal",
  22986. height: math.unit(4 + 11 / 12, "feet")
  22987. },
  22988. {
  22989. name: "Grown",
  22990. height: math.unit(15, "feet"),
  22991. default: true
  22992. },
  22993. {
  22994. name: "Macro",
  22995. height: math.unit(1500, "feet")
  22996. },
  22997. {
  22998. name: "Megamacro",
  22999. height: math.unit(30, "miles")
  23000. },
  23001. {
  23002. name: "Continental",
  23003. height: math.unit(3000, "miles")
  23004. },
  23005. {
  23006. name: "Gravity Mass",
  23007. height: math.unit(300000, "miles")
  23008. },
  23009. {
  23010. name: "Planet Buster",
  23011. height: math.unit(30000000, "miles")
  23012. },
  23013. {
  23014. name: "Big",
  23015. height: math.unit(3000000000, "miles")
  23016. },
  23017. ]
  23018. ))
  23019. characterMakers.push(() => makeCharacter(
  23020. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23021. {
  23022. front: {
  23023. height: math.unit(9, "feet"),
  23024. weight: math.unit(350, "lb"),
  23025. name: "Front",
  23026. image: {
  23027. source: "./media/characters/pepper/front.svg",
  23028. extra: 1448 / 1312,
  23029. bottom: 9.4 / 1457.88
  23030. }
  23031. },
  23032. back: {
  23033. height: math.unit(9, "feet"),
  23034. weight: math.unit(350, "lb"),
  23035. name: "Back",
  23036. image: {
  23037. source: "./media/characters/pepper/back.svg",
  23038. extra: 1423 / 1300,
  23039. bottom: 4.6 / 1429
  23040. }
  23041. },
  23042. maw: {
  23043. height: math.unit(0.932, "feet"),
  23044. name: "Maw",
  23045. image: {
  23046. source: "./media/characters/pepper/maw.svg"
  23047. }
  23048. },
  23049. },
  23050. [
  23051. {
  23052. name: "Normal",
  23053. height: math.unit(9, "feet"),
  23054. default: true
  23055. },
  23056. ]
  23057. ))
  23058. characterMakers.push(() => makeCharacter(
  23059. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23060. {
  23061. front: {
  23062. height: math.unit(6, "feet"),
  23063. weight: math.unit(150, "lb"),
  23064. name: "Front",
  23065. image: {
  23066. source: "./media/characters/maelstrom/front.svg",
  23067. extra: 2100 / 1883,
  23068. bottom: 94 / 2196.7
  23069. }
  23070. },
  23071. },
  23072. [
  23073. {
  23074. name: "Less Kaiju",
  23075. height: math.unit(200, "feet")
  23076. },
  23077. {
  23078. name: "Kaiju",
  23079. height: math.unit(400, "feet"),
  23080. default: true
  23081. },
  23082. {
  23083. name: "Kaiju-er",
  23084. height: math.unit(600, "feet")
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23090. {
  23091. front: {
  23092. height: math.unit(6 + 5 / 12, "feet"),
  23093. weight: math.unit(180, "lb"),
  23094. name: "Front",
  23095. image: {
  23096. source: "./media/characters/lexir/front.svg",
  23097. extra: 180 / 172,
  23098. bottom: 12 / 192
  23099. }
  23100. },
  23101. back: {
  23102. height: math.unit(6 + 5 / 12, "feet"),
  23103. weight: math.unit(180, "lb"),
  23104. name: "Back",
  23105. image: {
  23106. source: "./media/characters/lexir/back.svg",
  23107. extra: 183.84 / 175.5,
  23108. bottom: 3.1 / 187
  23109. }
  23110. },
  23111. },
  23112. [
  23113. {
  23114. name: "Very Smal",
  23115. height: math.unit(1, "nm")
  23116. },
  23117. {
  23118. name: "Normal",
  23119. height: math.unit(6 + 5 / 12, "feet"),
  23120. default: true
  23121. },
  23122. {
  23123. name: "Macro",
  23124. height: math.unit(1, "mile")
  23125. },
  23126. {
  23127. name: "Megamacro",
  23128. height: math.unit(50, "miles")
  23129. },
  23130. ]
  23131. ))
  23132. characterMakers.push(() => makeCharacter(
  23133. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23134. {
  23135. front: {
  23136. height: math.unit(1.5, "meters"),
  23137. weight: math.unit(100, "lb"),
  23138. name: "Front",
  23139. image: {
  23140. source: "./media/characters/maksio/front.svg",
  23141. extra: 1549 / 1531,
  23142. bottom: 123.7 / 1674.5429
  23143. }
  23144. },
  23145. back: {
  23146. height: math.unit(1.5, "meters"),
  23147. weight: math.unit(100, "lb"),
  23148. name: "Back",
  23149. image: {
  23150. source: "./media/characters/maksio/back.svg",
  23151. extra: 1541 / 1509,
  23152. bottom: 97 / 1639
  23153. }
  23154. },
  23155. hand: {
  23156. height: math.unit(0.621, "feet"),
  23157. name: "Hand",
  23158. image: {
  23159. source: "./media/characters/maksio/hand.svg"
  23160. }
  23161. },
  23162. foot: {
  23163. height: math.unit(1.611, "feet"),
  23164. name: "Foot",
  23165. image: {
  23166. source: "./media/characters/maksio/foot.svg"
  23167. }
  23168. },
  23169. },
  23170. [
  23171. {
  23172. name: "Shrunken",
  23173. height: math.unit(10, "cm")
  23174. },
  23175. {
  23176. name: "Normal",
  23177. height: math.unit(150, "cm"),
  23178. default: true
  23179. },
  23180. ]
  23181. ))
  23182. characterMakers.push(() => makeCharacter(
  23183. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23184. {
  23185. front: {
  23186. height: math.unit(100, "feet"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/erza-bear/front.svg",
  23190. extra: 2449 / 2390,
  23191. bottom: 46 / 2494
  23192. }
  23193. },
  23194. back: {
  23195. height: math.unit(100, "feet"),
  23196. name: "Back",
  23197. image: {
  23198. source: "./media/characters/erza-bear/back.svg",
  23199. extra: 2489 / 2430,
  23200. bottom: 85.4 / 2480
  23201. }
  23202. },
  23203. tail: {
  23204. height: math.unit(42, "feet"),
  23205. name: "Tail",
  23206. image: {
  23207. source: "./media/characters/erza-bear/tail.svg"
  23208. }
  23209. },
  23210. tongue: {
  23211. height: math.unit(8, "feet"),
  23212. name: "Tongue",
  23213. image: {
  23214. source: "./media/characters/erza-bear/tongue.svg"
  23215. }
  23216. },
  23217. dick: {
  23218. height: math.unit(10.5, "feet"),
  23219. name: "Dick",
  23220. image: {
  23221. source: "./media/characters/erza-bear/dick.svg"
  23222. }
  23223. },
  23224. dickVertical: {
  23225. height: math.unit(16.9, "feet"),
  23226. name: "Dick (Vertical)",
  23227. image: {
  23228. source: "./media/characters/erza-bear/dick-vertical.svg"
  23229. }
  23230. },
  23231. },
  23232. [
  23233. {
  23234. name: "Macro",
  23235. height: math.unit(100, "feet"),
  23236. default: true
  23237. },
  23238. ]
  23239. ))
  23240. characterMakers.push(() => makeCharacter(
  23241. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23242. {
  23243. front: {
  23244. height: math.unit(172, "cm"),
  23245. weight: math.unit(73, "kg"),
  23246. name: "Front",
  23247. image: {
  23248. source: "./media/characters/violet-flor/front.svg",
  23249. extra: 1530 / 1442,
  23250. bottom: 61.9 / 1588.8
  23251. }
  23252. },
  23253. back: {
  23254. height: math.unit(180, "cm"),
  23255. weight: math.unit(73, "kg"),
  23256. name: "Back",
  23257. image: {
  23258. source: "./media/characters/violet-flor/back.svg",
  23259. extra: 1692 / 1630,
  23260. bottom: 20 / 1712
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Normal",
  23267. height: math.unit(172, "cm"),
  23268. default: true
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23274. {
  23275. front: {
  23276. height: math.unit(6, "feet"),
  23277. weight: math.unit(220, "lb"),
  23278. name: "Front",
  23279. image: {
  23280. source: "./media/characters/lynn-rhea/front.svg",
  23281. extra: 310 / 273
  23282. }
  23283. },
  23284. back: {
  23285. height: math.unit(6, "feet"),
  23286. weight: math.unit(220, "lb"),
  23287. name: "Back",
  23288. image: {
  23289. source: "./media/characters/lynn-rhea/back.svg",
  23290. extra: 310 / 273
  23291. }
  23292. },
  23293. dicks: {
  23294. height: math.unit(0.9, "feet"),
  23295. name: "Dicks",
  23296. image: {
  23297. source: "./media/characters/lynn-rhea/dicks.svg"
  23298. }
  23299. },
  23300. slit: {
  23301. height: math.unit(0.4, "feet"),
  23302. name: "Slit",
  23303. image: {
  23304. source: "./media/characters/lynn-rhea/slit.svg"
  23305. }
  23306. },
  23307. },
  23308. [
  23309. {
  23310. name: "Micro",
  23311. height: math.unit(1, "inch")
  23312. },
  23313. {
  23314. name: "Macro",
  23315. height: math.unit(60, "feet"),
  23316. default: true
  23317. },
  23318. {
  23319. name: "Megamacro",
  23320. height: math.unit(2, "miles")
  23321. },
  23322. {
  23323. name: "Gigamacro",
  23324. height: math.unit(3, "earths")
  23325. },
  23326. {
  23327. name: "Galactic",
  23328. height: math.unit(0.8, "galaxies")
  23329. },
  23330. ]
  23331. ))
  23332. characterMakers.push(() => makeCharacter(
  23333. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23334. {
  23335. front: {
  23336. height: math.unit(1600, "feet"),
  23337. weight: math.unit(85758785169, "kg"),
  23338. name: "Front",
  23339. image: {
  23340. source: "./media/characters/valathos/front.svg",
  23341. extra: 1451 / 1339
  23342. }
  23343. },
  23344. },
  23345. [
  23346. {
  23347. name: "Macro",
  23348. height: math.unit(1600, "feet"),
  23349. default: true
  23350. },
  23351. ]
  23352. ))
  23353. characterMakers.push(() => makeCharacter(
  23354. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23355. {
  23356. front: {
  23357. height: math.unit(7 + 5 / 12, "feet"),
  23358. weight: math.unit(300, "lb"),
  23359. name: "Front",
  23360. image: {
  23361. source: "./media/characters/azula/front.svg",
  23362. extra: 3208 / 2880,
  23363. bottom: 80.2 / 3277
  23364. }
  23365. },
  23366. back: {
  23367. height: math.unit(7 + 5 / 12, "feet"),
  23368. weight: math.unit(300, "lb"),
  23369. name: "Back",
  23370. image: {
  23371. source: "./media/characters/azula/back.svg",
  23372. extra: 3169 / 2822,
  23373. bottom: 150.6 / 3321
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(7 + 5 / 12, "feet"),
  23381. default: true
  23382. },
  23383. {
  23384. name: "Big",
  23385. height: math.unit(20, "feet")
  23386. },
  23387. ]
  23388. ))
  23389. characterMakers.push(() => makeCharacter(
  23390. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23391. {
  23392. front: {
  23393. height: math.unit(5 + 1 / 12, "feet"),
  23394. weight: math.unit(110, "lb"),
  23395. name: "Front",
  23396. image: {
  23397. source: "./media/characters/rupert/front.svg",
  23398. extra: 1549 / 1495,
  23399. bottom: 54.2 / 1604.4
  23400. }
  23401. },
  23402. },
  23403. [
  23404. {
  23405. name: "Normal",
  23406. height: math.unit(5 + 1 / 12, "feet"),
  23407. default: true
  23408. },
  23409. ]
  23410. ))
  23411. characterMakers.push(() => makeCharacter(
  23412. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23413. {
  23414. front: {
  23415. height: math.unit(8 + 4 / 12, "feet"),
  23416. weight: math.unit(350, "lb"),
  23417. name: "Front",
  23418. image: {
  23419. source: "./media/characters/sheera-castellar/front.svg",
  23420. extra: 1957 / 1894,
  23421. bottom: 26.97 / 1975.017
  23422. }
  23423. },
  23424. side: {
  23425. height: math.unit(8 + 4 / 12, "feet"),
  23426. weight: math.unit(350, "lb"),
  23427. name: "Side",
  23428. image: {
  23429. source: "./media/characters/sheera-castellar/side.svg",
  23430. extra: 1957 / 1894
  23431. }
  23432. },
  23433. back: {
  23434. height: math.unit(8 + 4 / 12, "feet"),
  23435. weight: math.unit(350, "lb"),
  23436. name: "Back",
  23437. image: {
  23438. source: "./media/characters/sheera-castellar/back.svg",
  23439. extra: 1957 / 1894
  23440. }
  23441. },
  23442. angled: {
  23443. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23444. weight: math.unit(350, "lb"),
  23445. name: "Angled",
  23446. image: {
  23447. source: "./media/characters/sheera-castellar/angled.svg",
  23448. extra: 1807 / 1707,
  23449. bottom: 68 / 1875
  23450. }
  23451. },
  23452. genitals: {
  23453. height: math.unit(2.2, "feet"),
  23454. name: "Genitals",
  23455. image: {
  23456. source: "./media/characters/sheera-castellar/genitals.svg"
  23457. }
  23458. },
  23459. taur: {
  23460. height: math.unit(10 + 6/12, "feet"),
  23461. name: "Taur",
  23462. image: {
  23463. source: "./media/characters/sheera-castellar/taur.svg",
  23464. extra: 2017/1909,
  23465. bottom: 185/2202
  23466. }
  23467. },
  23468. },
  23469. [
  23470. {
  23471. name: "Normal",
  23472. height: math.unit(8 + 4 / 12, "feet")
  23473. },
  23474. {
  23475. name: "Macro",
  23476. height: math.unit(150, "feet"),
  23477. default: true
  23478. },
  23479. {
  23480. name: "Macro+",
  23481. height: math.unit(800, "feet")
  23482. },
  23483. ]
  23484. ))
  23485. characterMakers.push(() => makeCharacter(
  23486. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23487. {
  23488. front: {
  23489. height: math.unit(6, "feet"),
  23490. weight: math.unit(150, "lb"),
  23491. name: "Front",
  23492. image: {
  23493. source: "./media/characters/jaipur/front.svg",
  23494. extra: 3860 / 3731,
  23495. bottom: 287 / 4140
  23496. }
  23497. },
  23498. back: {
  23499. height: math.unit(6, "feet"),
  23500. weight: math.unit(150, "lb"),
  23501. name: "Back",
  23502. image: {
  23503. source: "./media/characters/jaipur/back.svg",
  23504. extra: 4060 / 3930,
  23505. bottom: 151 / 4200
  23506. }
  23507. },
  23508. },
  23509. [
  23510. {
  23511. name: "Normal",
  23512. height: math.unit(1.85, "meters"),
  23513. default: true
  23514. },
  23515. {
  23516. name: "Macro",
  23517. height: math.unit(150, "meters")
  23518. },
  23519. {
  23520. name: "Macro+",
  23521. height: math.unit(0.5, "miles")
  23522. },
  23523. {
  23524. name: "Macro++",
  23525. height: math.unit(2.5, "miles")
  23526. },
  23527. {
  23528. name: "Macro+++",
  23529. height: math.unit(12, "miles")
  23530. },
  23531. {
  23532. name: "Macro++++",
  23533. height: math.unit(120, "miles")
  23534. },
  23535. {
  23536. name: "Macro+++++",
  23537. height: math.unit(1200, "miles")
  23538. },
  23539. ]
  23540. ))
  23541. characterMakers.push(() => makeCharacter(
  23542. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23543. {
  23544. front: {
  23545. height: math.unit(6, "feet"),
  23546. weight: math.unit(150, "lb"),
  23547. name: "Front",
  23548. image: {
  23549. source: "./media/characters/sheila-wolf/front.svg",
  23550. extra: 1931 / 1808,
  23551. bottom: 29.5 / 1960
  23552. }
  23553. },
  23554. dick: {
  23555. height: math.unit(1.464, "feet"),
  23556. name: "Dick",
  23557. image: {
  23558. source: "./media/characters/sheila-wolf/dick.svg"
  23559. }
  23560. },
  23561. muzzle: {
  23562. height: math.unit(0.513, "feet"),
  23563. name: "Muzzle",
  23564. image: {
  23565. source: "./media/characters/sheila-wolf/muzzle.svg"
  23566. }
  23567. },
  23568. },
  23569. [
  23570. {
  23571. name: "Macro",
  23572. height: math.unit(70, "feet"),
  23573. default: true
  23574. },
  23575. ]
  23576. ))
  23577. characterMakers.push(() => makeCharacter(
  23578. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23579. {
  23580. front: {
  23581. height: math.unit(32, "meters"),
  23582. weight: math.unit(300000, "kg"),
  23583. name: "Front",
  23584. image: {
  23585. source: "./media/characters/almor/front.svg",
  23586. extra: 1408 / 1322,
  23587. bottom: 94.6 / 1506.5
  23588. }
  23589. },
  23590. },
  23591. [
  23592. {
  23593. name: "Macro",
  23594. height: math.unit(32, "meters"),
  23595. default: true
  23596. },
  23597. ]
  23598. ))
  23599. characterMakers.push(() => makeCharacter(
  23600. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23601. {
  23602. front: {
  23603. height: math.unit(7, "feet"),
  23604. weight: math.unit(200, "lb"),
  23605. name: "Front",
  23606. image: {
  23607. source: "./media/characters/silver/front.svg",
  23608. extra: 472.1 / 450.5,
  23609. bottom: 26.5 / 499.424
  23610. }
  23611. },
  23612. },
  23613. [
  23614. {
  23615. name: "Normal",
  23616. height: math.unit(7, "feet"),
  23617. default: true
  23618. },
  23619. {
  23620. name: "Macro",
  23621. height: math.unit(800, "feet")
  23622. },
  23623. {
  23624. name: "Megamacro",
  23625. height: math.unit(250, "miles")
  23626. },
  23627. ]
  23628. ))
  23629. characterMakers.push(() => makeCharacter(
  23630. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23631. {
  23632. front: {
  23633. height: math.unit(6, "feet"),
  23634. weight: math.unit(150, "lb"),
  23635. name: "Front",
  23636. image: {
  23637. source: "./media/characters/pliskin/front.svg",
  23638. extra: 1469 / 1359,
  23639. bottom: 70 / 1540
  23640. }
  23641. },
  23642. },
  23643. [
  23644. {
  23645. name: "Micro",
  23646. height: math.unit(3, "inches")
  23647. },
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(5 + 11 / 12, "feet"),
  23651. default: true
  23652. },
  23653. {
  23654. name: "Macro",
  23655. height: math.unit(120, "feet")
  23656. },
  23657. ]
  23658. ))
  23659. characterMakers.push(() => makeCharacter(
  23660. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23661. {
  23662. front: {
  23663. height: math.unit(6, "feet"),
  23664. weight: math.unit(150, "lb"),
  23665. name: "Front",
  23666. image: {
  23667. source: "./media/characters/sammy/front.svg",
  23668. extra: 1193 / 1089,
  23669. bottom: 30.5 / 1226
  23670. }
  23671. },
  23672. },
  23673. [
  23674. {
  23675. name: "Macro",
  23676. height: math.unit(1700, "feet"),
  23677. default: true
  23678. },
  23679. {
  23680. name: "Examacro",
  23681. height: math.unit(2.5e9, "lightyears")
  23682. },
  23683. ]
  23684. ))
  23685. characterMakers.push(() => makeCharacter(
  23686. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23687. {
  23688. front: {
  23689. height: math.unit(21, "meters"),
  23690. weight: math.unit(12, "tonnes"),
  23691. name: "Front",
  23692. image: {
  23693. source: "./media/characters/kuru/front.svg",
  23694. extra: 4301 / 3785,
  23695. bottom: 371.3 / 4691
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Macro",
  23702. height: math.unit(21, "meters"),
  23703. default: true
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23709. {
  23710. front: {
  23711. height: math.unit(23, "meters"),
  23712. weight: math.unit(12.2, "tonnes"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/rakka/front.svg",
  23716. extra: 4670 / 4169,
  23717. bottom: 301 / 4968.7
  23718. }
  23719. },
  23720. },
  23721. [
  23722. {
  23723. name: "Macro",
  23724. height: math.unit(23, "meters"),
  23725. default: true
  23726. },
  23727. ]
  23728. ))
  23729. characterMakers.push(() => makeCharacter(
  23730. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23731. {
  23732. front: {
  23733. height: math.unit(6, "feet"),
  23734. weight: math.unit(150, "lb"),
  23735. name: "Front",
  23736. image: {
  23737. source: "./media/characters/rhys-feline/front.svg",
  23738. extra: 2488 / 2308,
  23739. bottom: 35.67 / 2519.19
  23740. }
  23741. },
  23742. },
  23743. [
  23744. {
  23745. name: "Really Small",
  23746. height: math.unit(1, "nm")
  23747. },
  23748. {
  23749. name: "Micro",
  23750. height: math.unit(4, "inches")
  23751. },
  23752. {
  23753. name: "Normal",
  23754. height: math.unit(4 + 10 / 12, "feet"),
  23755. default: true
  23756. },
  23757. {
  23758. name: "Macro",
  23759. height: math.unit(100, "feet")
  23760. },
  23761. {
  23762. name: "Megamacto",
  23763. height: math.unit(50, "miles")
  23764. },
  23765. ]
  23766. ))
  23767. characterMakers.push(() => makeCharacter(
  23768. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23769. {
  23770. side: {
  23771. height: math.unit(30, "feet"),
  23772. weight: math.unit(35000, "kg"),
  23773. name: "Side",
  23774. image: {
  23775. source: "./media/characters/alydar/side.svg",
  23776. extra: 234 / 222,
  23777. bottom: 6.5 / 241
  23778. }
  23779. },
  23780. front: {
  23781. height: math.unit(30, "feet"),
  23782. weight: math.unit(35000, "kg"),
  23783. name: "Front",
  23784. image: {
  23785. source: "./media/characters/alydar/front.svg",
  23786. extra: 223.37 / 210.2,
  23787. bottom: 22.3 / 246.76
  23788. }
  23789. },
  23790. top: {
  23791. height: math.unit(64.54, "feet"),
  23792. weight: math.unit(35000, "kg"),
  23793. name: "Top",
  23794. image: {
  23795. source: "./media/characters/alydar/top.svg"
  23796. }
  23797. },
  23798. anthro: {
  23799. height: math.unit(30, "feet"),
  23800. weight: math.unit(9000, "kg"),
  23801. name: "Anthro",
  23802. image: {
  23803. source: "./media/characters/alydar/anthro.svg",
  23804. extra: 432 / 421,
  23805. bottom: 7.18 / 440
  23806. }
  23807. },
  23808. maw: {
  23809. height: math.unit(11.693, "feet"),
  23810. name: "Maw",
  23811. image: {
  23812. source: "./media/characters/alydar/maw.svg"
  23813. }
  23814. },
  23815. head: {
  23816. height: math.unit(11.693, "feet"),
  23817. name: "Head",
  23818. image: {
  23819. source: "./media/characters/alydar/head.svg"
  23820. }
  23821. },
  23822. headAlt: {
  23823. height: math.unit(12.861, "feet"),
  23824. name: "Head (Alt)",
  23825. image: {
  23826. source: "./media/characters/alydar/head-alt.svg"
  23827. }
  23828. },
  23829. wing: {
  23830. height: math.unit(20.712, "feet"),
  23831. name: "Wing",
  23832. image: {
  23833. source: "./media/characters/alydar/wing.svg"
  23834. }
  23835. },
  23836. wingFeather: {
  23837. height: math.unit(9.662, "feet"),
  23838. name: "Wing Feather",
  23839. image: {
  23840. source: "./media/characters/alydar/wing-feather.svg"
  23841. }
  23842. },
  23843. countourFeather: {
  23844. height: math.unit(4.154, "feet"),
  23845. name: "Contour Feather",
  23846. image: {
  23847. source: "./media/characters/alydar/contour-feather.svg"
  23848. }
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Diplomatic",
  23854. height: math.unit(13, "feet"),
  23855. default: true
  23856. },
  23857. {
  23858. name: "Small",
  23859. height: math.unit(30, "feet")
  23860. },
  23861. {
  23862. name: "Normal",
  23863. height: math.unit(95, "feet"),
  23864. default: true
  23865. },
  23866. {
  23867. name: "Large",
  23868. height: math.unit(285, "feet")
  23869. },
  23870. {
  23871. name: "Incomprehensible",
  23872. height: math.unit(450, "megameters")
  23873. },
  23874. ]
  23875. ))
  23876. characterMakers.push(() => makeCharacter(
  23877. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23878. {
  23879. side: {
  23880. height: math.unit(11, "feet"),
  23881. weight: math.unit(1750, "kg"),
  23882. name: "Side",
  23883. image: {
  23884. source: "./media/characters/selicia/side.svg",
  23885. extra: 440 / 396,
  23886. bottom: 24.8 / 465.979
  23887. }
  23888. },
  23889. maw: {
  23890. height: math.unit(4.665, "feet"),
  23891. name: "Maw",
  23892. image: {
  23893. source: "./media/characters/selicia/maw.svg"
  23894. }
  23895. },
  23896. },
  23897. [
  23898. {
  23899. name: "Normal",
  23900. height: math.unit(11, "feet"),
  23901. default: true
  23902. },
  23903. ]
  23904. ))
  23905. characterMakers.push(() => makeCharacter(
  23906. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23907. {
  23908. side: {
  23909. height: math.unit(2 + 6 / 12, "feet"),
  23910. weight: math.unit(30, "lb"),
  23911. name: "Side",
  23912. image: {
  23913. source: "./media/characters/layla/side.svg",
  23914. extra: 244 / 188,
  23915. bottom: 18.2 / 262.1
  23916. }
  23917. },
  23918. back: {
  23919. height: math.unit(2 + 6 / 12, "feet"),
  23920. weight: math.unit(30, "lb"),
  23921. name: "Back",
  23922. image: {
  23923. source: "./media/characters/layla/back.svg",
  23924. extra: 308 / 241.5,
  23925. bottom: 8.9 / 316.8
  23926. }
  23927. },
  23928. cumming: {
  23929. height: math.unit(2 + 6 / 12, "feet"),
  23930. weight: math.unit(30, "lb"),
  23931. name: "Cumming",
  23932. image: {
  23933. source: "./media/characters/layla/cumming.svg",
  23934. extra: 342 / 279,
  23935. bottom: 595 / 938
  23936. }
  23937. },
  23938. dickFlaccid: {
  23939. height: math.unit(2.595, "feet"),
  23940. name: "Flaccid Genitals",
  23941. image: {
  23942. source: "./media/characters/layla/dick-flaccid.svg"
  23943. }
  23944. },
  23945. dickErect: {
  23946. height: math.unit(2.359, "feet"),
  23947. name: "Erect Genitals",
  23948. image: {
  23949. source: "./media/characters/layla/dick-erect.svg"
  23950. }
  23951. },
  23952. dragon: {
  23953. height: math.unit(40, "feet"),
  23954. name: "Dragon",
  23955. image: {
  23956. source: "./media/characters/layla/dragon.svg",
  23957. extra: 610/535,
  23958. bottom: 367/977
  23959. }
  23960. },
  23961. taur: {
  23962. height: math.unit(30, "feet"),
  23963. name: "Taur",
  23964. image: {
  23965. source: "./media/characters/layla/taur.svg",
  23966. extra: 1268/1199,
  23967. bottom: 112/1380
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Micro",
  23974. height: math.unit(1, "inch")
  23975. },
  23976. {
  23977. name: "Small",
  23978. height: math.unit(1, "foot")
  23979. },
  23980. {
  23981. name: "Normal",
  23982. height: math.unit(2 + 6 / 12, "feet"),
  23983. default: true
  23984. },
  23985. {
  23986. name: "Macro",
  23987. height: math.unit(200, "feet")
  23988. },
  23989. {
  23990. name: "Megamacro",
  23991. height: math.unit(1000, "miles")
  23992. },
  23993. {
  23994. name: "Planetary",
  23995. height: math.unit(8000, "miles")
  23996. },
  23997. {
  23998. name: "True Layla",
  23999. height: math.unit(200000 * 7, "multiverses")
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24005. {
  24006. back: {
  24007. height: math.unit(10.5, "feet"),
  24008. weight: math.unit(800, "lb"),
  24009. name: "Back",
  24010. image: {
  24011. source: "./media/characters/knox/back.svg",
  24012. extra: 1486 / 1089,
  24013. bottom: 107 / 1601.4
  24014. }
  24015. },
  24016. side: {
  24017. height: math.unit(10.5, "feet"),
  24018. weight: math.unit(800, "lb"),
  24019. name: "Side",
  24020. image: {
  24021. source: "./media/characters/knox/side.svg",
  24022. extra: 244 / 218,
  24023. bottom: 14 / 260
  24024. }
  24025. },
  24026. },
  24027. [
  24028. {
  24029. name: "Compact",
  24030. height: math.unit(10.5, "feet"),
  24031. default: true
  24032. },
  24033. {
  24034. name: "Dynamax",
  24035. height: math.unit(210, "feet")
  24036. },
  24037. {
  24038. name: "Full Macro",
  24039. height: math.unit(850, "feet")
  24040. },
  24041. ]
  24042. ))
  24043. characterMakers.push(() => makeCharacter(
  24044. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24045. {
  24046. front: {
  24047. height: math.unit(28, "feet"),
  24048. weight: math.unit(10500, "lb"),
  24049. name: "Front",
  24050. image: {
  24051. source: "./media/characters/kayda/front.svg",
  24052. extra: 1536 / 1428,
  24053. bottom: 68.7 / 1603
  24054. }
  24055. },
  24056. back: {
  24057. height: math.unit(28, "feet"),
  24058. weight: math.unit(10500, "lb"),
  24059. name: "Back",
  24060. image: {
  24061. source: "./media/characters/kayda/back.svg",
  24062. extra: 1557 / 1464,
  24063. bottom: 39.5 / 1597.49
  24064. }
  24065. },
  24066. dick: {
  24067. height: math.unit(3.858, "feet"),
  24068. name: "Dick",
  24069. image: {
  24070. source: "./media/characters/kayda/dick.svg"
  24071. }
  24072. },
  24073. },
  24074. [
  24075. {
  24076. name: "Macro",
  24077. height: math.unit(28, "feet"),
  24078. default: true
  24079. },
  24080. ]
  24081. ))
  24082. characterMakers.push(() => makeCharacter(
  24083. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24084. {
  24085. front: {
  24086. height: math.unit(10 + 11 / 12, "feet"),
  24087. weight: math.unit(1400, "lb"),
  24088. name: "Front",
  24089. image: {
  24090. source: "./media/characters/brian/front.svg",
  24091. extra: 737 / 692,
  24092. bottom: 55.4 / 785
  24093. }
  24094. },
  24095. },
  24096. [
  24097. {
  24098. name: "Normal",
  24099. height: math.unit(10 + 11 / 12, "feet"),
  24100. default: true
  24101. },
  24102. ]
  24103. ))
  24104. characterMakers.push(() => makeCharacter(
  24105. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24106. {
  24107. front: {
  24108. height: math.unit(5 + 8 / 12, "feet"),
  24109. weight: math.unit(140, "lb"),
  24110. name: "Front",
  24111. image: {
  24112. source: "./media/characters/khemri/front.svg",
  24113. extra: 4780 / 4059,
  24114. bottom: 80.1 / 4859.25
  24115. }
  24116. },
  24117. },
  24118. [
  24119. {
  24120. name: "Micro",
  24121. height: math.unit(6, "inches")
  24122. },
  24123. {
  24124. name: "Normal",
  24125. height: math.unit(5 + 8 / 12, "feet"),
  24126. default: true
  24127. },
  24128. ]
  24129. ))
  24130. characterMakers.push(() => makeCharacter(
  24131. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24132. {
  24133. front: {
  24134. height: math.unit(13, "feet"),
  24135. weight: math.unit(1700, "lb"),
  24136. name: "Front",
  24137. image: {
  24138. source: "./media/characters/felix-braveheart/front.svg",
  24139. extra: 1222 / 1157,
  24140. bottom: 53.2 / 1280
  24141. }
  24142. },
  24143. back: {
  24144. height: math.unit(13, "feet"),
  24145. weight: math.unit(1700, "lb"),
  24146. name: "Back",
  24147. image: {
  24148. source: "./media/characters/felix-braveheart/back.svg",
  24149. extra: 1277 / 1203,
  24150. bottom: 50.2 / 1327
  24151. }
  24152. },
  24153. feral: {
  24154. height: math.unit(6, "feet"),
  24155. weight: math.unit(400, "lb"),
  24156. name: "Feral",
  24157. image: {
  24158. source: "./media/characters/felix-braveheart/feral.svg",
  24159. extra: 682 / 625,
  24160. bottom: 6.9 / 688
  24161. }
  24162. },
  24163. },
  24164. [
  24165. {
  24166. name: "Normal",
  24167. height: math.unit(13, "feet"),
  24168. default: true
  24169. },
  24170. ]
  24171. ))
  24172. characterMakers.push(() => makeCharacter(
  24173. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24174. {
  24175. side: {
  24176. height: math.unit(5 + 11 / 12, "feet"),
  24177. weight: math.unit(1400, "lb"),
  24178. name: "Side",
  24179. image: {
  24180. source: "./media/characters/shadow-blade/side.svg",
  24181. extra: 1726 / 1267,
  24182. bottom: 58.4 / 1785
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Normal",
  24189. height: math.unit(5 + 11 / 12, "feet"),
  24190. default: true
  24191. },
  24192. ]
  24193. ))
  24194. characterMakers.push(() => makeCharacter(
  24195. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24196. {
  24197. front: {
  24198. height: math.unit(1 + 6 / 12, "feet"),
  24199. weight: math.unit(25, "lb"),
  24200. name: "Front",
  24201. image: {
  24202. source: "./media/characters/karla-halldor/front.svg",
  24203. extra: 1459 / 1383,
  24204. bottom: 12 / 1472
  24205. }
  24206. },
  24207. },
  24208. [
  24209. {
  24210. name: "Normal",
  24211. height: math.unit(1 + 6 / 12, "feet"),
  24212. default: true
  24213. },
  24214. ]
  24215. ))
  24216. characterMakers.push(() => makeCharacter(
  24217. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24218. {
  24219. front: {
  24220. height: math.unit(6 + 2 / 12, "feet"),
  24221. weight: math.unit(160, "lb"),
  24222. name: "Front",
  24223. image: {
  24224. source: "./media/characters/ariam/front.svg",
  24225. extra: 1073/976,
  24226. bottom: 52/1125
  24227. }
  24228. },
  24229. back: {
  24230. height: math.unit(6 + 2/12, "feet"),
  24231. weight: math.unit(160, "lb"),
  24232. name: "Back",
  24233. image: {
  24234. source: "./media/characters/ariam/back.svg",
  24235. extra: 1103/1023,
  24236. bottom: 9/1112
  24237. }
  24238. },
  24239. dressed: {
  24240. height: math.unit(6 + 2/12, "feet"),
  24241. weight: math.unit(160, "lb"),
  24242. name: "Dressed",
  24243. image: {
  24244. source: "./media/characters/ariam/dressed.svg",
  24245. extra: 1099/1009,
  24246. bottom: 25/1124
  24247. }
  24248. },
  24249. squatting: {
  24250. height: math.unit(4.1, "feet"),
  24251. weight: math.unit(160, "lb"),
  24252. name: "Squatting",
  24253. image: {
  24254. source: "./media/characters/ariam/squatting.svg",
  24255. extra: 2617 / 2112,
  24256. bottom: 61.2 / 2681,
  24257. }
  24258. },
  24259. },
  24260. [
  24261. {
  24262. name: "Normal",
  24263. height: math.unit(6 + 2 / 12, "feet"),
  24264. default: true
  24265. },
  24266. {
  24267. name: "Normal+",
  24268. height: math.unit(4, "meters")
  24269. },
  24270. {
  24271. name: "Macro",
  24272. height: math.unit(50, "meters")
  24273. },
  24274. {
  24275. name: "Macro+",
  24276. height: math.unit(100, "meters")
  24277. },
  24278. {
  24279. name: "Megamacro",
  24280. height: math.unit(20, "km")
  24281. },
  24282. {
  24283. name: "Caretaker",
  24284. height: math.unit(444, "megameters")
  24285. },
  24286. ]
  24287. ))
  24288. characterMakers.push(() => makeCharacter(
  24289. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24290. {
  24291. front: {
  24292. height: math.unit(1.67, "meters"),
  24293. weight: math.unit(140, "lb"),
  24294. name: "Front",
  24295. image: {
  24296. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24297. extra: 438 / 410,
  24298. bottom: 0.75 / 439
  24299. }
  24300. },
  24301. },
  24302. [
  24303. {
  24304. name: "Shrunken",
  24305. height: math.unit(7.6, "cm")
  24306. },
  24307. {
  24308. name: "Human Scale",
  24309. height: math.unit(1.67, "meters")
  24310. },
  24311. {
  24312. name: "Wolxi Scale",
  24313. height: math.unit(36.7, "meters"),
  24314. default: true
  24315. },
  24316. ]
  24317. ))
  24318. characterMakers.push(() => makeCharacter(
  24319. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24320. {
  24321. front: {
  24322. height: math.unit(1.73, "meters"),
  24323. weight: math.unit(240, "lb"),
  24324. name: "Front",
  24325. image: {
  24326. source: "./media/characters/izue-two-mothers/front.svg",
  24327. extra: 469 / 437,
  24328. bottom: 1.24 / 470.6
  24329. }
  24330. },
  24331. },
  24332. [
  24333. {
  24334. name: "Shrunken",
  24335. height: math.unit(7.86, "cm")
  24336. },
  24337. {
  24338. name: "Human Scale",
  24339. height: math.unit(1.73, "meters")
  24340. },
  24341. {
  24342. name: "Wolxi Scale",
  24343. height: math.unit(38, "meters"),
  24344. default: true
  24345. },
  24346. ]
  24347. ))
  24348. characterMakers.push(() => makeCharacter(
  24349. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24350. {
  24351. front: {
  24352. height: math.unit(1.55, "meters"),
  24353. weight: math.unit(120, "lb"),
  24354. name: "Front",
  24355. image: {
  24356. source: "./media/characters/teeku-love-shack/front.svg",
  24357. extra: 387 / 362,
  24358. bottom: 1.51 / 388
  24359. }
  24360. },
  24361. },
  24362. [
  24363. {
  24364. name: "Shrunken",
  24365. height: math.unit(7, "cm")
  24366. },
  24367. {
  24368. name: "Human Scale",
  24369. height: math.unit(1.55, "meters")
  24370. },
  24371. {
  24372. name: "Wolxi Scale",
  24373. height: math.unit(34.1, "meters"),
  24374. default: true
  24375. },
  24376. ]
  24377. ))
  24378. characterMakers.push(() => makeCharacter(
  24379. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24380. {
  24381. front: {
  24382. height: math.unit(1.83, "meters"),
  24383. weight: math.unit(135, "lb"),
  24384. name: "Front",
  24385. image: {
  24386. source: "./media/characters/dejma-the-red/front.svg",
  24387. extra: 480 / 458,
  24388. bottom: 1.8 / 482
  24389. }
  24390. },
  24391. },
  24392. [
  24393. {
  24394. name: "Shrunken",
  24395. height: math.unit(8.3, "cm")
  24396. },
  24397. {
  24398. name: "Human Scale",
  24399. height: math.unit(1.83, "meters")
  24400. },
  24401. {
  24402. name: "Wolxi Scale",
  24403. height: math.unit(40, "meters"),
  24404. default: true
  24405. },
  24406. ]
  24407. ))
  24408. characterMakers.push(() => makeCharacter(
  24409. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24410. {
  24411. front: {
  24412. height: math.unit(1.78, "meters"),
  24413. weight: math.unit(65, "kg"),
  24414. name: "Front",
  24415. image: {
  24416. source: "./media/characters/aki/front.svg",
  24417. extra: 452 / 415
  24418. }
  24419. },
  24420. frontNsfw: {
  24421. height: math.unit(1.78, "meters"),
  24422. weight: math.unit(65, "kg"),
  24423. name: "Front (NSFW)",
  24424. image: {
  24425. source: "./media/characters/aki/front-nsfw.svg",
  24426. extra: 452 / 415
  24427. }
  24428. },
  24429. back: {
  24430. height: math.unit(1.78, "meters"),
  24431. weight: math.unit(65, "kg"),
  24432. name: "Back",
  24433. image: {
  24434. source: "./media/characters/aki/back.svg",
  24435. extra: 452 / 415
  24436. }
  24437. },
  24438. rump: {
  24439. height: math.unit(2.05, "feet"),
  24440. name: "Rump",
  24441. image: {
  24442. source: "./media/characters/aki/rump.svg"
  24443. }
  24444. },
  24445. dick: {
  24446. height: math.unit(0.95, "feet"),
  24447. name: "Dick",
  24448. image: {
  24449. source: "./media/characters/aki/dick.svg"
  24450. }
  24451. },
  24452. },
  24453. [
  24454. {
  24455. name: "Micro",
  24456. height: math.unit(15, "cm")
  24457. },
  24458. {
  24459. name: "Normal",
  24460. height: math.unit(178, "cm"),
  24461. default: true
  24462. },
  24463. {
  24464. name: "Macro",
  24465. height: math.unit(214, "m")
  24466. },
  24467. {
  24468. name: "Macro+",
  24469. height: math.unit(534, "m")
  24470. },
  24471. ]
  24472. ))
  24473. characterMakers.push(() => makeCharacter(
  24474. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24475. {
  24476. front: {
  24477. height: math.unit(5 + 5 / 12, "feet"),
  24478. weight: math.unit(120, "lb"),
  24479. name: "Front",
  24480. image: {
  24481. source: "./media/characters/ari/front.svg",
  24482. extra: 714.5 / 682,
  24483. bottom: 8 / 722.5
  24484. }
  24485. },
  24486. },
  24487. [
  24488. {
  24489. name: "Normal",
  24490. height: math.unit(5 + 5 / 12, "feet")
  24491. },
  24492. {
  24493. name: "Macro",
  24494. height: math.unit(100, "feet"),
  24495. default: true
  24496. },
  24497. {
  24498. name: "Megamacro",
  24499. height: math.unit(100, "miles")
  24500. },
  24501. {
  24502. name: "Gigamacro",
  24503. height: math.unit(80000, "miles")
  24504. },
  24505. ]
  24506. ))
  24507. characterMakers.push(() => makeCharacter(
  24508. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24509. {
  24510. side: {
  24511. height: math.unit(9, "feet"),
  24512. weight: math.unit(400, "kg"),
  24513. name: "Side",
  24514. image: {
  24515. source: "./media/characters/bolt/side.svg",
  24516. extra: 1126 / 896,
  24517. bottom: 60 / 1187.3,
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Micro",
  24524. height: math.unit(5, "inches")
  24525. },
  24526. {
  24527. name: "Normal",
  24528. height: math.unit(9, "feet"),
  24529. default: true
  24530. },
  24531. {
  24532. name: "Macro",
  24533. height: math.unit(700, "feet")
  24534. },
  24535. {
  24536. name: "Max Size",
  24537. height: math.unit(1.52e22, "yottameters")
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24543. {
  24544. front: {
  24545. height: math.unit(4.53, "meters"),
  24546. weight: math.unit(3, "tons"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/draekon-sylviar/front.svg",
  24550. extra: 1228 / 1068,
  24551. bottom: 41 / 1270
  24552. }
  24553. },
  24554. tail: {
  24555. height: math.unit(1.772, "meter"),
  24556. name: "Tail",
  24557. image: {
  24558. source: "./media/characters/draekon-sylviar/tail.svg"
  24559. }
  24560. },
  24561. head: {
  24562. height: math.unit(1.331, "meter"),
  24563. name: "Head",
  24564. image: {
  24565. source: "./media/characters/draekon-sylviar/head.svg"
  24566. }
  24567. },
  24568. hand: {
  24569. height: math.unit(0.564, "meter"),
  24570. name: "Hand",
  24571. image: {
  24572. source: "./media/characters/draekon-sylviar/hand.svg"
  24573. }
  24574. },
  24575. foot: {
  24576. height: math.unit(0.621, "meter"),
  24577. name: "Foot",
  24578. image: {
  24579. source: "./media/characters/draekon-sylviar/foot.svg",
  24580. bottom: 32 / 324
  24581. }
  24582. },
  24583. dick: {
  24584. height: math.unit(61, "cm"),
  24585. name: "Dick",
  24586. image: {
  24587. source: "./media/characters/draekon-sylviar/dick.svg"
  24588. }
  24589. },
  24590. dickseparated: {
  24591. height: math.unit(61, "cm"),
  24592. name: "Dick-separated",
  24593. image: {
  24594. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24595. }
  24596. },
  24597. },
  24598. [
  24599. {
  24600. name: "Small",
  24601. height: math.unit(4.53 / 2, "meters"),
  24602. default: true
  24603. },
  24604. {
  24605. name: "Normal",
  24606. height: math.unit(4.53, "meters"),
  24607. default: true
  24608. },
  24609. {
  24610. name: "Large",
  24611. height: math.unit(4.53 * 2, "meters"),
  24612. },
  24613. ]
  24614. ))
  24615. characterMakers.push(() => makeCharacter(
  24616. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24617. {
  24618. front: {
  24619. height: math.unit(6 + 2 / 12, "feet"),
  24620. weight: math.unit(180, "lb"),
  24621. name: "Front",
  24622. image: {
  24623. source: "./media/characters/brawler/front.svg",
  24624. extra: 3301 / 3027,
  24625. bottom: 138 / 3439
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Normal",
  24632. height: math.unit(6 + 2 / 12, "feet"),
  24633. default: true
  24634. },
  24635. ]
  24636. ))
  24637. characterMakers.push(() => makeCharacter(
  24638. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24639. {
  24640. front: {
  24641. height: math.unit(11, "feet"),
  24642. weight: math.unit(1000, "lb"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/alex/front.svg",
  24646. bottom: 44.5 / 620
  24647. }
  24648. },
  24649. },
  24650. [
  24651. {
  24652. name: "Micro",
  24653. height: math.unit(5, "inches")
  24654. },
  24655. {
  24656. name: "Normal",
  24657. height: math.unit(11, "feet"),
  24658. default: true
  24659. },
  24660. {
  24661. name: "Macro",
  24662. height: math.unit(9.5e9, "feet")
  24663. },
  24664. {
  24665. name: "Max Size",
  24666. height: math.unit(1.4e283, "yottameters")
  24667. },
  24668. ]
  24669. ))
  24670. characterMakers.push(() => makeCharacter(
  24671. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24672. {
  24673. female: {
  24674. height: math.unit(29.9, "m"),
  24675. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24676. name: "Female",
  24677. image: {
  24678. source: "./media/characters/zenari/female.svg",
  24679. extra: 3281.6 / 3217,
  24680. bottom: 72.2 / 3353
  24681. }
  24682. },
  24683. male: {
  24684. height: math.unit(27.7, "m"),
  24685. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24686. name: "Male",
  24687. image: {
  24688. source: "./media/characters/zenari/male.svg",
  24689. extra: 3008 / 2991,
  24690. bottom: 54.6 / 3069
  24691. }
  24692. },
  24693. },
  24694. [
  24695. {
  24696. name: "Macro",
  24697. height: math.unit(29.7, "meters"),
  24698. default: true
  24699. },
  24700. ]
  24701. ))
  24702. characterMakers.push(() => makeCharacter(
  24703. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24704. {
  24705. female: {
  24706. height: math.unit(23.8, "m"),
  24707. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24708. name: "Female",
  24709. image: {
  24710. source: "./media/characters/mactarian/female.svg",
  24711. extra: 2662 / 2569,
  24712. bottom: 73 / 2736
  24713. }
  24714. },
  24715. male: {
  24716. height: math.unit(23.8, "m"),
  24717. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24718. name: "Male",
  24719. image: {
  24720. source: "./media/characters/mactarian/male.svg",
  24721. extra: 2673 / 2600,
  24722. bottom: 76 / 2750
  24723. }
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Macro",
  24729. height: math.unit(23.8, "meters"),
  24730. default: true
  24731. },
  24732. ]
  24733. ))
  24734. characterMakers.push(() => makeCharacter(
  24735. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24736. {
  24737. female: {
  24738. height: math.unit(19.3, "m"),
  24739. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24740. name: "Female",
  24741. image: {
  24742. source: "./media/characters/umok/female.svg",
  24743. extra: 2186 / 2078,
  24744. bottom: 87 / 2277
  24745. }
  24746. },
  24747. male: {
  24748. height: math.unit(19.5, "m"),
  24749. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24750. name: "Male",
  24751. image: {
  24752. source: "./media/characters/umok/male.svg",
  24753. extra: 2233 / 2140,
  24754. bottom: 24.4 / 2258
  24755. }
  24756. },
  24757. },
  24758. [
  24759. {
  24760. name: "Macro",
  24761. height: math.unit(19.3, "meters"),
  24762. default: true
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24768. {
  24769. female: {
  24770. height: math.unit(26.15, "m"),
  24771. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24772. name: "Female",
  24773. image: {
  24774. source: "./media/characters/joraxian/female.svg",
  24775. extra: 2912 / 2824,
  24776. bottom: 36 / 2956
  24777. }
  24778. },
  24779. male: {
  24780. height: math.unit(25.4, "m"),
  24781. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24782. name: "Male",
  24783. image: {
  24784. source: "./media/characters/joraxian/male.svg",
  24785. extra: 2877 / 2721,
  24786. bottom: 82 / 2967
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Macro",
  24793. height: math.unit(26.15, "meters"),
  24794. default: true
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24800. {
  24801. female: {
  24802. height: math.unit(21.6, "m"),
  24803. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24804. name: "Female",
  24805. image: {
  24806. source: "./media/characters/sthara/female.svg",
  24807. extra: 2516 / 2347,
  24808. bottom: 21.5 / 2537
  24809. }
  24810. },
  24811. male: {
  24812. height: math.unit(24, "m"),
  24813. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24814. name: "Male",
  24815. image: {
  24816. source: "./media/characters/sthara/male.svg",
  24817. extra: 2732 / 2607,
  24818. bottom: 23 / 2732
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Macro",
  24825. height: math.unit(21.6, "meters"),
  24826. default: true
  24827. },
  24828. ]
  24829. ))
  24830. characterMakers.push(() => makeCharacter(
  24831. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24832. {
  24833. front: {
  24834. height: math.unit(6 + 4 / 12, "feet"),
  24835. weight: math.unit(175, "lb"),
  24836. name: "Front",
  24837. image: {
  24838. source: "./media/characters/luka-bryzant/front.svg",
  24839. extra: 311 / 289,
  24840. bottom: 4 / 315
  24841. }
  24842. },
  24843. back: {
  24844. height: math.unit(6 + 4 / 12, "feet"),
  24845. weight: math.unit(175, "lb"),
  24846. name: "Back",
  24847. image: {
  24848. source: "./media/characters/luka-bryzant/back.svg",
  24849. extra: 311 / 289,
  24850. bottom: 3.8 / 313.7
  24851. }
  24852. },
  24853. },
  24854. [
  24855. {
  24856. name: "Micro",
  24857. height: math.unit(10, "inches")
  24858. },
  24859. {
  24860. name: "Normal",
  24861. height: math.unit(6 + 4 / 12, "feet"),
  24862. default: true
  24863. },
  24864. {
  24865. name: "Large",
  24866. height: math.unit(12, "feet")
  24867. },
  24868. ]
  24869. ))
  24870. characterMakers.push(() => makeCharacter(
  24871. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24872. {
  24873. front: {
  24874. height: math.unit(5 + 7 / 12, "feet"),
  24875. weight: math.unit(185, "lb"),
  24876. name: "Front",
  24877. image: {
  24878. source: "./media/characters/aman-aquila/front.svg",
  24879. extra: 1013 / 976,
  24880. bottom: 45.6 / 1057
  24881. }
  24882. },
  24883. side: {
  24884. height: math.unit(5 + 7 / 12, "feet"),
  24885. weight: math.unit(185, "lb"),
  24886. name: "Side",
  24887. image: {
  24888. source: "./media/characters/aman-aquila/side.svg",
  24889. extra: 1054 / 1011,
  24890. bottom: 15 / 1070
  24891. }
  24892. },
  24893. back: {
  24894. height: math.unit(5 + 7 / 12, "feet"),
  24895. weight: math.unit(185, "lb"),
  24896. name: "Back",
  24897. image: {
  24898. source: "./media/characters/aman-aquila/back.svg",
  24899. extra: 1026 / 970,
  24900. bottom: 12 / 1039
  24901. }
  24902. },
  24903. head: {
  24904. height: math.unit(1.211, "feet"),
  24905. name: "Head",
  24906. image: {
  24907. source: "./media/characters/aman-aquila/head.svg",
  24908. }
  24909. },
  24910. },
  24911. [
  24912. {
  24913. name: "Minimicro",
  24914. height: math.unit(0.057, "inches")
  24915. },
  24916. {
  24917. name: "Micro",
  24918. height: math.unit(7, "inches")
  24919. },
  24920. {
  24921. name: "Mini",
  24922. height: math.unit(3 + 7 / 12, "feet")
  24923. },
  24924. {
  24925. name: "Normal",
  24926. height: math.unit(5 + 7 / 12, "feet"),
  24927. default: true
  24928. },
  24929. {
  24930. name: "Macro",
  24931. height: math.unit(157 + 7 / 12, "feet")
  24932. },
  24933. {
  24934. name: "Megamacro",
  24935. height: math.unit(1557 + 7 / 12, "feet")
  24936. },
  24937. {
  24938. name: "Gigamacro",
  24939. height: math.unit(15557 + 7 / 12, "feet")
  24940. },
  24941. ]
  24942. ))
  24943. characterMakers.push(() => makeCharacter(
  24944. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24945. {
  24946. front: {
  24947. height: math.unit(3 + 2 / 12, "inches"),
  24948. weight: math.unit(0.3, "ounces"),
  24949. name: "Front",
  24950. image: {
  24951. source: "./media/characters/hiphae/front.svg",
  24952. extra: 1931 / 1683,
  24953. bottom: 24 / 1955
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Normal",
  24960. height: math.unit(3 + 1 / 2, "inches"),
  24961. default: true
  24962. },
  24963. ]
  24964. ))
  24965. characterMakers.push(() => makeCharacter(
  24966. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24967. {
  24968. front: {
  24969. height: math.unit(5 + 10 / 12, "feet"),
  24970. weight: math.unit(165, "lb"),
  24971. name: "Front",
  24972. image: {
  24973. source: "./media/characters/nicky/front.svg",
  24974. extra: 3144 / 2886,
  24975. bottom: 45.6 / 3192
  24976. }
  24977. },
  24978. back: {
  24979. height: math.unit(5 + 10 / 12, "feet"),
  24980. weight: math.unit(165, "lb"),
  24981. name: "Back",
  24982. image: {
  24983. source: "./media/characters/nicky/back.svg",
  24984. extra: 3055 / 2804,
  24985. bottom: 28.4 / 3087
  24986. }
  24987. },
  24988. frontclothed: {
  24989. height: math.unit(5 + 10 / 12, "feet"),
  24990. weight: math.unit(165, "lb"),
  24991. name: "Front-clothed",
  24992. image: {
  24993. source: "./media/characters/nicky/front-clothed.svg",
  24994. extra: 3184.9 / 2926.9,
  24995. bottom: 86.5 / 3239.9
  24996. }
  24997. },
  24998. foot: {
  24999. height: math.unit(1.16, "feet"),
  25000. name: "Foot",
  25001. image: {
  25002. source: "./media/characters/nicky/foot.svg"
  25003. }
  25004. },
  25005. feet: {
  25006. height: math.unit(1.34, "feet"),
  25007. name: "Feet",
  25008. image: {
  25009. source: "./media/characters/nicky/feet.svg"
  25010. }
  25011. },
  25012. maw: {
  25013. height: math.unit(0.9, "feet"),
  25014. name: "Maw",
  25015. image: {
  25016. source: "./media/characters/nicky/maw.svg"
  25017. }
  25018. },
  25019. },
  25020. [
  25021. {
  25022. name: "Normal",
  25023. height: math.unit(5 + 10 / 12, "feet"),
  25024. default: true
  25025. },
  25026. {
  25027. name: "Macro",
  25028. height: math.unit(60, "feet")
  25029. },
  25030. {
  25031. name: "Megamacro",
  25032. height: math.unit(1, "mile")
  25033. },
  25034. ]
  25035. ))
  25036. characterMakers.push(() => makeCharacter(
  25037. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25038. {
  25039. side: {
  25040. height: math.unit(10, "feet"),
  25041. weight: math.unit(600, "lb"),
  25042. name: "Side",
  25043. image: {
  25044. source: "./media/characters/blair/side.svg",
  25045. bottom: 16.6 / 475,
  25046. extra: 458 / 431
  25047. }
  25048. },
  25049. },
  25050. [
  25051. {
  25052. name: "Micro",
  25053. height: math.unit(8, "inches")
  25054. },
  25055. {
  25056. name: "Normal",
  25057. height: math.unit(10, "feet"),
  25058. default: true
  25059. },
  25060. {
  25061. name: "Macro",
  25062. height: math.unit(180, "feet")
  25063. },
  25064. ]
  25065. ))
  25066. characterMakers.push(() => makeCharacter(
  25067. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25068. {
  25069. front: {
  25070. height: math.unit(5 + 4 / 12, "feet"),
  25071. weight: math.unit(125, "lb"),
  25072. name: "Front",
  25073. image: {
  25074. source: "./media/characters/fisher/front.svg",
  25075. extra: 444 / 390,
  25076. bottom: 2 / 444.8
  25077. }
  25078. },
  25079. },
  25080. [
  25081. {
  25082. name: "Micro",
  25083. height: math.unit(4, "inches")
  25084. },
  25085. {
  25086. name: "Normal",
  25087. height: math.unit(5 + 4 / 12, "feet"),
  25088. default: true
  25089. },
  25090. {
  25091. name: "Macro",
  25092. height: math.unit(100, "feet")
  25093. },
  25094. ]
  25095. ))
  25096. characterMakers.push(() => makeCharacter(
  25097. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25098. {
  25099. front: {
  25100. height: math.unit(6.71, "feet"),
  25101. weight: math.unit(200, "lb"),
  25102. capacity: math.unit(1000000, "people"),
  25103. name: "Front",
  25104. image: {
  25105. source: "./media/characters/gliss/front.svg",
  25106. extra: 2347 / 2231,
  25107. bottom: 113 / 2462
  25108. }
  25109. },
  25110. hammerspaceSize: {
  25111. height: math.unit(6.71 * 717, "feet"),
  25112. weight: math.unit(200, "lb"),
  25113. capacity: math.unit(1000000, "people"),
  25114. name: "Hammerspace Size",
  25115. image: {
  25116. source: "./media/characters/gliss/front.svg",
  25117. extra: 2347 / 2231,
  25118. bottom: 113 / 2462
  25119. }
  25120. },
  25121. },
  25122. [
  25123. {
  25124. name: "Normal",
  25125. height: math.unit(6.71, "feet"),
  25126. default: true
  25127. },
  25128. ]
  25129. ))
  25130. characterMakers.push(() => makeCharacter(
  25131. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25132. {
  25133. side: {
  25134. height: math.unit(1.44, "m"),
  25135. weight: math.unit(80, "kg"),
  25136. name: "Side",
  25137. image: {
  25138. source: "./media/characters/dune-anderson/side.svg",
  25139. bottom: 49 / 1426
  25140. }
  25141. },
  25142. },
  25143. [
  25144. {
  25145. name: "Wolf-sized",
  25146. height: math.unit(1.44, "meters")
  25147. },
  25148. {
  25149. name: "Normal",
  25150. height: math.unit(5.05, "meters"),
  25151. default: true
  25152. },
  25153. {
  25154. name: "Big",
  25155. height: math.unit(14.4, "meters")
  25156. },
  25157. {
  25158. name: "Huge",
  25159. height: math.unit(144, "meters")
  25160. },
  25161. ]
  25162. ))
  25163. characterMakers.push(() => makeCharacter(
  25164. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25165. {
  25166. front: {
  25167. height: math.unit(7, "feet"),
  25168. weight: math.unit(425, "lb"),
  25169. name: "Front",
  25170. image: {
  25171. source: "./media/characters/hind/front.svg",
  25172. extra: 2091 / 1860,
  25173. bottom: 129 / 2220
  25174. }
  25175. },
  25176. back: {
  25177. height: math.unit(7, "feet"),
  25178. weight: math.unit(425, "lb"),
  25179. name: "Back",
  25180. image: {
  25181. source: "./media/characters/hind/back.svg",
  25182. extra: 2091 / 1860,
  25183. bottom: 24.6 / 2309
  25184. }
  25185. },
  25186. tail: {
  25187. height: math.unit(2.8, "feet"),
  25188. name: "Tail",
  25189. image: {
  25190. source: "./media/characters/hind/tail.svg"
  25191. }
  25192. },
  25193. head: {
  25194. height: math.unit(2.55, "feet"),
  25195. name: "Head",
  25196. image: {
  25197. source: "./media/characters/hind/head.svg"
  25198. }
  25199. },
  25200. },
  25201. [
  25202. {
  25203. name: "XS",
  25204. height: math.unit(0.7, "feet")
  25205. },
  25206. {
  25207. name: "Normal",
  25208. height: math.unit(7, "feet"),
  25209. default: true
  25210. },
  25211. {
  25212. name: "XL",
  25213. height: math.unit(70, "feet")
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25219. {
  25220. front: {
  25221. height: math.unit(2.1, "meters"),
  25222. weight: math.unit(150, "lb"),
  25223. name: "Front",
  25224. image: {
  25225. source: "./media/characters/tharquench-sizestealer/front.svg",
  25226. extra: 1605/1470,
  25227. bottom: 36/1641
  25228. }
  25229. },
  25230. frontAlt: {
  25231. height: math.unit(2.1, "meters"),
  25232. weight: math.unit(150, "lb"),
  25233. name: "Front (Alt)",
  25234. image: {
  25235. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25236. extra: 2318 / 2063,
  25237. bottom: 93.4 / 2410
  25238. }
  25239. },
  25240. },
  25241. [
  25242. {
  25243. name: "Nano",
  25244. height: math.unit(1, "mm")
  25245. },
  25246. {
  25247. name: "Micro",
  25248. height: math.unit(1, "cm")
  25249. },
  25250. {
  25251. name: "Normal",
  25252. height: math.unit(2.1, "meters"),
  25253. default: true
  25254. },
  25255. ]
  25256. ))
  25257. characterMakers.push(() => makeCharacter(
  25258. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25259. {
  25260. front: {
  25261. height: math.unit(7 + 5 / 12, "feet"),
  25262. weight: math.unit(357, "lb"),
  25263. name: "Front",
  25264. image: {
  25265. source: "./media/characters/solex-draconov/front.svg",
  25266. extra: 1993 / 1865,
  25267. bottom: 117 / 2111
  25268. }
  25269. },
  25270. },
  25271. [
  25272. {
  25273. name: "Natural Height",
  25274. height: math.unit(7 + 5 / 12, "feet"),
  25275. default: true
  25276. },
  25277. {
  25278. name: "Macro",
  25279. height: math.unit(350, "feet")
  25280. },
  25281. {
  25282. name: "Macro+",
  25283. height: math.unit(1000, "feet")
  25284. },
  25285. {
  25286. name: "Megamacro",
  25287. height: math.unit(20, "km")
  25288. },
  25289. {
  25290. name: "Megamacro+",
  25291. height: math.unit(1000, "km")
  25292. },
  25293. {
  25294. name: "Gigamacro",
  25295. height: math.unit(2.5, "Gm")
  25296. },
  25297. {
  25298. name: "Teramacro",
  25299. height: math.unit(15, "Tm")
  25300. },
  25301. {
  25302. name: "Galactic",
  25303. height: math.unit(30, "Zm")
  25304. },
  25305. {
  25306. name: "Universal",
  25307. height: math.unit(21000, "Ym")
  25308. },
  25309. {
  25310. name: "Omniversal",
  25311. height: math.unit(9.861e50, "Ym")
  25312. },
  25313. {
  25314. name: "Existential",
  25315. height: math.unit(1e300, "meters")
  25316. },
  25317. ]
  25318. ))
  25319. characterMakers.push(() => makeCharacter(
  25320. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25321. {
  25322. side: {
  25323. height: math.unit(25, "feet"),
  25324. weight: math.unit(90000, "lb"),
  25325. name: "Side",
  25326. image: {
  25327. source: "./media/characters/mandarax/side.svg",
  25328. extra: 614 / 332,
  25329. bottom: 55 / 630
  25330. }
  25331. },
  25332. head: {
  25333. height: math.unit(11.4, "feet"),
  25334. name: "Head",
  25335. image: {
  25336. source: "./media/characters/mandarax/head.svg"
  25337. }
  25338. },
  25339. belly: {
  25340. height: math.unit(33, "feet"),
  25341. name: "Belly",
  25342. capacity: math.unit(500, "people"),
  25343. image: {
  25344. source: "./media/characters/mandarax/belly.svg"
  25345. }
  25346. },
  25347. dick: {
  25348. height: math.unit(8.46, "feet"),
  25349. name: "Dick",
  25350. image: {
  25351. source: "./media/characters/mandarax/dick.svg"
  25352. }
  25353. },
  25354. top: {
  25355. height: math.unit(28, "meters"),
  25356. name: "Top",
  25357. image: {
  25358. source: "./media/characters/mandarax/top.svg"
  25359. }
  25360. },
  25361. },
  25362. [
  25363. {
  25364. name: "Normal",
  25365. height: math.unit(25, "feet"),
  25366. default: true
  25367. },
  25368. ]
  25369. ))
  25370. characterMakers.push(() => makeCharacter(
  25371. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25372. {
  25373. front: {
  25374. height: math.unit(5, "feet"),
  25375. weight: math.unit(90, "lb"),
  25376. name: "Front",
  25377. image: {
  25378. source: "./media/characters/pixil/front.svg",
  25379. extra: 2000 / 1618,
  25380. bottom: 12.3 / 2011
  25381. }
  25382. },
  25383. },
  25384. [
  25385. {
  25386. name: "Normal",
  25387. height: math.unit(5, "feet"),
  25388. default: true
  25389. },
  25390. {
  25391. name: "Megamacro",
  25392. height: math.unit(10, "miles"),
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25398. {
  25399. front: {
  25400. height: math.unit(7 + 2 / 12, "feet"),
  25401. weight: math.unit(200, "lb"),
  25402. name: "Front",
  25403. image: {
  25404. source: "./media/characters/angel/front.svg",
  25405. extra: 1830 / 1737,
  25406. bottom: 22.6 / 1854,
  25407. }
  25408. },
  25409. },
  25410. [
  25411. {
  25412. name: "Normal",
  25413. height: math.unit(7 + 2 / 12, "feet"),
  25414. default: true
  25415. },
  25416. {
  25417. name: "Macro",
  25418. height: math.unit(1000, "feet")
  25419. },
  25420. {
  25421. name: "Megamacro",
  25422. height: math.unit(2, "miles")
  25423. },
  25424. {
  25425. name: "Gigamacro",
  25426. height: math.unit(20, "earths")
  25427. },
  25428. ]
  25429. ))
  25430. characterMakers.push(() => makeCharacter(
  25431. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25432. {
  25433. front: {
  25434. height: math.unit(5, "feet"),
  25435. weight: math.unit(180, "lb"),
  25436. name: "Front",
  25437. image: {
  25438. source: "./media/characters/mekana/front.svg",
  25439. extra: 1671 / 1605,
  25440. bottom: 3.5 / 1691
  25441. }
  25442. },
  25443. side: {
  25444. height: math.unit(5, "feet"),
  25445. weight: math.unit(180, "lb"),
  25446. name: "Side",
  25447. image: {
  25448. source: "./media/characters/mekana/side.svg",
  25449. extra: 1671 / 1605,
  25450. bottom: 3.5 / 1691
  25451. }
  25452. },
  25453. back: {
  25454. height: math.unit(5, "feet"),
  25455. weight: math.unit(180, "lb"),
  25456. name: "Back",
  25457. image: {
  25458. source: "./media/characters/mekana/back.svg",
  25459. extra: 1671 / 1605,
  25460. bottom: 3.5 / 1691
  25461. }
  25462. },
  25463. },
  25464. [
  25465. {
  25466. name: "Normal",
  25467. height: math.unit(5, "feet"),
  25468. default: true
  25469. },
  25470. ]
  25471. ))
  25472. characterMakers.push(() => makeCharacter(
  25473. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25474. {
  25475. front: {
  25476. height: math.unit(4 + 6 / 12, "feet"),
  25477. weight: math.unit(80, "lb"),
  25478. name: "Front",
  25479. image: {
  25480. source: "./media/characters/pixie/front.svg",
  25481. extra: 1924 / 1825,
  25482. bottom: 22.4 / 1946
  25483. }
  25484. },
  25485. },
  25486. [
  25487. {
  25488. name: "Normal",
  25489. height: math.unit(4 + 6 / 12, "feet"),
  25490. default: true
  25491. },
  25492. {
  25493. name: "Macro",
  25494. height: math.unit(40, "feet")
  25495. },
  25496. ]
  25497. ))
  25498. characterMakers.push(() => makeCharacter(
  25499. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25500. {
  25501. front: {
  25502. height: math.unit(2.1, "meters"),
  25503. weight: math.unit(200, "lb"),
  25504. name: "Front",
  25505. image: {
  25506. source: "./media/characters/the-lascivious/front.svg",
  25507. extra: 1 / 0.893,
  25508. bottom: 3.5 / 573.7
  25509. }
  25510. },
  25511. },
  25512. [
  25513. {
  25514. name: "Human Scale",
  25515. height: math.unit(2.1, "meters")
  25516. },
  25517. {
  25518. name: "Wolxi Scale",
  25519. height: math.unit(46.2, "m"),
  25520. default: true
  25521. },
  25522. {
  25523. name: "Boinker of Buildings",
  25524. height: math.unit(10, "km")
  25525. },
  25526. {
  25527. name: "Shagger of Skyscrapers",
  25528. height: math.unit(40, "km")
  25529. },
  25530. {
  25531. name: "Banger of Boroughs",
  25532. height: math.unit(4000, "km")
  25533. },
  25534. {
  25535. name: "Screwer of States",
  25536. height: math.unit(100000, "km")
  25537. },
  25538. {
  25539. name: "Pounder of Planets",
  25540. height: math.unit(2000000, "km")
  25541. },
  25542. ]
  25543. ))
  25544. characterMakers.push(() => makeCharacter(
  25545. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25546. {
  25547. front: {
  25548. height: math.unit(6, "feet"),
  25549. weight: math.unit(150, "lb"),
  25550. name: "Front",
  25551. image: {
  25552. source: "./media/characters/aj/front.svg",
  25553. extra: 2039 / 1562,
  25554. bottom: 40 / 2079
  25555. }
  25556. },
  25557. },
  25558. [
  25559. {
  25560. name: "Normal",
  25561. height: math.unit(11 + 6 / 12, "feet"),
  25562. default: true
  25563. },
  25564. {
  25565. name: "Megamacro",
  25566. height: math.unit(60, "megameters")
  25567. },
  25568. ]
  25569. ))
  25570. characterMakers.push(() => makeCharacter(
  25571. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25572. {
  25573. side: {
  25574. height: math.unit(31 + 8 / 12, "feet"),
  25575. weight: math.unit(75000, "kg"),
  25576. name: "Side",
  25577. image: {
  25578. source: "./media/characters/koros/side.svg",
  25579. extra: 1442 / 1297,
  25580. bottom: 122.7 / 1562
  25581. }
  25582. },
  25583. dicksKingsCrown: {
  25584. height: math.unit(6, "feet"),
  25585. name: "Dicks (King's Crown)",
  25586. image: {
  25587. source: "./media/characters/koros/dicks-kings-crown.svg"
  25588. }
  25589. },
  25590. dicksTailSet: {
  25591. height: math.unit(3, "feet"),
  25592. name: "Dicks (Tail Set)",
  25593. image: {
  25594. source: "./media/characters/koros/dicks-tail-set.svg"
  25595. }
  25596. },
  25597. dickCumming: {
  25598. height: math.unit(7.98, "feet"),
  25599. name: "Dick (Cumming)",
  25600. image: {
  25601. source: "./media/characters/koros/dick-cumming.svg"
  25602. }
  25603. },
  25604. dicksBack: {
  25605. height: math.unit(5.9, "feet"),
  25606. name: "Dicks (Back)",
  25607. image: {
  25608. source: "./media/characters/koros/dicks-back.svg"
  25609. }
  25610. },
  25611. dicksFront: {
  25612. height: math.unit(3.72, "feet"),
  25613. name: "Dicks (Front)",
  25614. image: {
  25615. source: "./media/characters/koros/dicks-front.svg"
  25616. }
  25617. },
  25618. dicksPeeking: {
  25619. height: math.unit(3.0, "feet"),
  25620. name: "Dicks (Peeking)",
  25621. image: {
  25622. source: "./media/characters/koros/dicks-peeking.svg"
  25623. }
  25624. },
  25625. eye: {
  25626. height: math.unit(1.7, "feet"),
  25627. name: "Eye",
  25628. image: {
  25629. source: "./media/characters/koros/eye.svg"
  25630. }
  25631. },
  25632. headFront: {
  25633. height: math.unit(11.69, "feet"),
  25634. name: "Head (Front)",
  25635. image: {
  25636. source: "./media/characters/koros/head-front.svg"
  25637. }
  25638. },
  25639. headSide: {
  25640. height: math.unit(14, "feet"),
  25641. name: "Head (Side)",
  25642. image: {
  25643. source: "./media/characters/koros/head-side.svg"
  25644. }
  25645. },
  25646. leg: {
  25647. height: math.unit(17, "feet"),
  25648. name: "Leg",
  25649. image: {
  25650. source: "./media/characters/koros/leg.svg"
  25651. }
  25652. },
  25653. mawSide: {
  25654. height: math.unit(12.8, "feet"),
  25655. name: "Maw (Side)",
  25656. image: {
  25657. source: "./media/characters/koros/maw-side.svg"
  25658. }
  25659. },
  25660. mawSpitting: {
  25661. height: math.unit(17, "feet"),
  25662. name: "Maw (Spitting)",
  25663. image: {
  25664. source: "./media/characters/koros/maw-spitting.svg"
  25665. }
  25666. },
  25667. slit: {
  25668. height: math.unit(2.8, "feet"),
  25669. name: "Slit",
  25670. image: {
  25671. source: "./media/characters/koros/slit.svg"
  25672. }
  25673. },
  25674. stomach: {
  25675. height: math.unit(6.8, "feet"),
  25676. capacity: math.unit(20, "people"),
  25677. name: "Stomach",
  25678. image: {
  25679. source: "./media/characters/koros/stomach.svg"
  25680. }
  25681. },
  25682. wingspanBottom: {
  25683. height: math.unit(114, "feet"),
  25684. name: "Wingspan (Bottom)",
  25685. image: {
  25686. source: "./media/characters/koros/wingspan-bottom.svg"
  25687. }
  25688. },
  25689. wingspanTop: {
  25690. height: math.unit(104, "feet"),
  25691. name: "Wingspan (Top)",
  25692. image: {
  25693. source: "./media/characters/koros/wingspan-top.svg"
  25694. }
  25695. },
  25696. },
  25697. [
  25698. {
  25699. name: "Normal",
  25700. height: math.unit(31 + 8 / 12, "feet"),
  25701. default: true
  25702. },
  25703. ]
  25704. ))
  25705. characterMakers.push(() => makeCharacter(
  25706. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25707. {
  25708. front: {
  25709. height: math.unit(18 + 5 / 12, "feet"),
  25710. weight: math.unit(3750, "kg"),
  25711. name: "Front",
  25712. image: {
  25713. source: "./media/characters/vexx/front.svg",
  25714. extra: 426 / 396,
  25715. bottom: 31.5 / 458
  25716. }
  25717. },
  25718. maw: {
  25719. height: math.unit(6, "feet"),
  25720. name: "Maw",
  25721. image: {
  25722. source: "./media/characters/vexx/maw.svg"
  25723. }
  25724. },
  25725. },
  25726. [
  25727. {
  25728. name: "Normal",
  25729. height: math.unit(18 + 5 / 12, "feet"),
  25730. default: true
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25736. {
  25737. front: {
  25738. height: math.unit(17 + 6 / 12, "feet"),
  25739. weight: math.unit(150, "lb"),
  25740. name: "Front",
  25741. image: {
  25742. source: "./media/characters/baadra/front.svg",
  25743. extra: 3137 / 2890,
  25744. bottom: 168.4 / 3305
  25745. }
  25746. },
  25747. back: {
  25748. height: math.unit(17 + 6 / 12, "feet"),
  25749. weight: math.unit(150, "lb"),
  25750. name: "Back",
  25751. image: {
  25752. source: "./media/characters/baadra/back.svg",
  25753. extra: 3142 / 2890,
  25754. bottom: 220 / 3371
  25755. }
  25756. },
  25757. head: {
  25758. height: math.unit(5.45, "feet"),
  25759. name: "Head",
  25760. image: {
  25761. source: "./media/characters/baadra/head.svg"
  25762. }
  25763. },
  25764. headAngry: {
  25765. height: math.unit(4.95, "feet"),
  25766. name: "Head (Angry)",
  25767. image: {
  25768. source: "./media/characters/baadra/head-angry.svg"
  25769. }
  25770. },
  25771. headOpen: {
  25772. height: math.unit(6, "feet"),
  25773. name: "Head (Open)",
  25774. image: {
  25775. source: "./media/characters/baadra/head-open.svg"
  25776. }
  25777. },
  25778. },
  25779. [
  25780. {
  25781. name: "Normal",
  25782. height: math.unit(17 + 6 / 12, "feet"),
  25783. default: true
  25784. },
  25785. ]
  25786. ))
  25787. characterMakers.push(() => makeCharacter(
  25788. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25789. {
  25790. front: {
  25791. height: math.unit(7 + 3 / 12, "feet"),
  25792. weight: math.unit(180, "lb"),
  25793. name: "Front",
  25794. image: {
  25795. source: "./media/characters/juri/front.svg",
  25796. extra: 1401 / 1237,
  25797. bottom: 18.5 / 1418
  25798. }
  25799. },
  25800. side: {
  25801. height: math.unit(7 + 3 / 12, "feet"),
  25802. weight: math.unit(180, "lb"),
  25803. name: "Side",
  25804. image: {
  25805. source: "./media/characters/juri/side.svg",
  25806. extra: 1424 / 1242,
  25807. bottom: 18.5 / 1447
  25808. }
  25809. },
  25810. sitting: {
  25811. height: math.unit(6, "feet"),
  25812. weight: math.unit(180, "lb"),
  25813. name: "Sitting",
  25814. image: {
  25815. source: "./media/characters/juri/sitting.svg",
  25816. extra: 1270 / 1143,
  25817. bottom: 100 / 1343
  25818. }
  25819. },
  25820. back: {
  25821. height: math.unit(7 + 3 / 12, "feet"),
  25822. weight: math.unit(180, "lb"),
  25823. name: "Back",
  25824. image: {
  25825. source: "./media/characters/juri/back.svg",
  25826. extra: 1377 / 1240,
  25827. bottom: 23.7 / 1405
  25828. }
  25829. },
  25830. maw: {
  25831. height: math.unit(2.8, "feet"),
  25832. name: "Maw",
  25833. image: {
  25834. source: "./media/characters/juri/maw.svg"
  25835. }
  25836. },
  25837. stomach: {
  25838. height: math.unit(0.89, "feet"),
  25839. capacity: math.unit(4, "liters"),
  25840. name: "Stomach",
  25841. image: {
  25842. source: "./media/characters/juri/stomach.svg"
  25843. }
  25844. },
  25845. },
  25846. [
  25847. {
  25848. name: "Normal",
  25849. height: math.unit(7 + 3 / 12, "feet"),
  25850. default: true
  25851. },
  25852. ]
  25853. ))
  25854. characterMakers.push(() => makeCharacter(
  25855. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25856. {
  25857. fox: {
  25858. height: math.unit(5 + 6 / 12, "feet"),
  25859. weight: math.unit(140, "lb"),
  25860. name: "Fox",
  25861. image: {
  25862. source: "./media/characters/maxene-sita/fox.svg",
  25863. extra: 146 / 138,
  25864. bottom: 2.1 / 148.19
  25865. }
  25866. },
  25867. foxLaying: {
  25868. height: math.unit(1.70, "feet"),
  25869. weight: math.unit(140, "lb"),
  25870. name: "Fox (Laying)",
  25871. image: {
  25872. source: "./media/characters/maxene-sita/fox-laying.svg",
  25873. extra: 910 / 572,
  25874. bottom: 71 / 981
  25875. }
  25876. },
  25877. kitsune: {
  25878. height: math.unit(10, "feet"),
  25879. weight: math.unit(800, "lb"),
  25880. name: "Kitsune",
  25881. image: {
  25882. source: "./media/characters/maxene-sita/kitsune.svg",
  25883. extra: 185 / 176,
  25884. bottom: 4.7 / 189.9
  25885. }
  25886. },
  25887. hellhound: {
  25888. height: math.unit(10, "feet"),
  25889. weight: math.unit(700, "lb"),
  25890. name: "Hellhound",
  25891. image: {
  25892. source: "./media/characters/maxene-sita/hellhound.svg",
  25893. extra: 1600 / 1545,
  25894. bottom: 81 / 1681
  25895. }
  25896. },
  25897. },
  25898. [
  25899. {
  25900. name: "Normal",
  25901. height: math.unit(5 + 6 / 12, "feet"),
  25902. default: true
  25903. },
  25904. ]
  25905. ))
  25906. characterMakers.push(() => makeCharacter(
  25907. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25908. {
  25909. front: {
  25910. height: math.unit(3 + 4 / 12, "feet"),
  25911. weight: math.unit(70, "lb"),
  25912. name: "Front",
  25913. image: {
  25914. source: "./media/characters/maia/front.svg",
  25915. extra: 227 / 219.5,
  25916. bottom: 40 / 267
  25917. }
  25918. },
  25919. back: {
  25920. height: math.unit(3 + 4 / 12, "feet"),
  25921. weight: math.unit(70, "lb"),
  25922. name: "Back",
  25923. image: {
  25924. source: "./media/characters/maia/back.svg",
  25925. extra: 237 / 225
  25926. }
  25927. },
  25928. },
  25929. [
  25930. {
  25931. name: "Normal",
  25932. height: math.unit(3 + 4 / 12, "feet"),
  25933. default: true
  25934. },
  25935. ]
  25936. ))
  25937. characterMakers.push(() => makeCharacter(
  25938. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25939. {
  25940. front: {
  25941. height: math.unit(5 + 10 / 12, "feet"),
  25942. weight: math.unit(197, "lb"),
  25943. name: "Front",
  25944. image: {
  25945. source: "./media/characters/jabaro/front.svg",
  25946. extra: 225 / 216,
  25947. bottom: 5.06 / 230
  25948. }
  25949. },
  25950. back: {
  25951. height: math.unit(5 + 10 / 12, "feet"),
  25952. weight: math.unit(197, "lb"),
  25953. name: "Back",
  25954. image: {
  25955. source: "./media/characters/jabaro/back.svg",
  25956. extra: 225 / 219,
  25957. bottom: 1.9 / 227
  25958. }
  25959. },
  25960. },
  25961. [
  25962. {
  25963. name: "Normal",
  25964. height: math.unit(5 + 10 / 12, "feet"),
  25965. default: true
  25966. },
  25967. ]
  25968. ))
  25969. characterMakers.push(() => makeCharacter(
  25970. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25971. {
  25972. front: {
  25973. height: math.unit(5 + 8 / 12, "feet"),
  25974. weight: math.unit(139, "lb"),
  25975. name: "Front",
  25976. image: {
  25977. source: "./media/characters/risa/front.svg",
  25978. extra: 270 / 260,
  25979. bottom: 11.2 / 282
  25980. }
  25981. },
  25982. back: {
  25983. height: math.unit(5 + 8 / 12, "feet"),
  25984. weight: math.unit(139, "lb"),
  25985. name: "Back",
  25986. image: {
  25987. source: "./media/characters/risa/back.svg",
  25988. extra: 264 / 255,
  25989. bottom: 4 / 268
  25990. }
  25991. },
  25992. },
  25993. [
  25994. {
  25995. name: "Normal",
  25996. height: math.unit(5 + 8 / 12, "feet"),
  25997. default: true
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26003. {
  26004. front: {
  26005. height: math.unit(2 + 11 / 12, "feet"),
  26006. weight: math.unit(30, "lb"),
  26007. name: "Front",
  26008. image: {
  26009. source: "./media/characters/weatley/front.svg",
  26010. bottom: 10.7 / 414,
  26011. extra: 403.5 / 362
  26012. }
  26013. },
  26014. back: {
  26015. height: math.unit(2 + 11 / 12, "feet"),
  26016. weight: math.unit(30, "lb"),
  26017. name: "Back",
  26018. image: {
  26019. source: "./media/characters/weatley/back.svg",
  26020. bottom: 10.7 / 414,
  26021. extra: 403.5 / 362
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Normal",
  26028. height: math.unit(2 + 11 / 12, "feet"),
  26029. default: true
  26030. },
  26031. ]
  26032. ))
  26033. characterMakers.push(() => makeCharacter(
  26034. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26035. {
  26036. front: {
  26037. height: math.unit(5 + 2 / 12, "feet"),
  26038. weight: math.unit(50, "kg"),
  26039. name: "Front",
  26040. image: {
  26041. source: "./media/characters/mercury-crescent/front.svg",
  26042. extra: 1088 / 1033,
  26043. bottom: 18.9 / 1109
  26044. }
  26045. },
  26046. },
  26047. [
  26048. {
  26049. name: "Normal",
  26050. height: math.unit(5 + 2 / 12, "feet"),
  26051. default: true
  26052. },
  26053. ]
  26054. ))
  26055. characterMakers.push(() => makeCharacter(
  26056. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26057. {
  26058. front: {
  26059. height: math.unit(2, "feet"),
  26060. weight: math.unit(15, "kg"),
  26061. name: "Front",
  26062. image: {
  26063. source: "./media/characters/diamond-jones/front.svg",
  26064. extra: 727/723,
  26065. bottom: 46/773
  26066. }
  26067. },
  26068. },
  26069. [
  26070. {
  26071. name: "Normal",
  26072. height: math.unit(2, "feet"),
  26073. default: true
  26074. },
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26079. {
  26080. front: {
  26081. height: math.unit(3, "feet"),
  26082. weight: math.unit(30, "kg"),
  26083. name: "Front",
  26084. image: {
  26085. source: "./media/characters/sweet-bit/front.svg",
  26086. extra: 675 / 567,
  26087. bottom: 27.7 / 703
  26088. }
  26089. },
  26090. },
  26091. [
  26092. {
  26093. name: "Normal",
  26094. height: math.unit(3, "feet"),
  26095. default: true
  26096. },
  26097. ]
  26098. ))
  26099. characterMakers.push(() => makeCharacter(
  26100. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26101. {
  26102. side: {
  26103. height: math.unit(9.178, "feet"),
  26104. weight: math.unit(500, "lb"),
  26105. name: "Side",
  26106. image: {
  26107. source: "./media/characters/umbrazen/side.svg",
  26108. extra: 1730 / 1473,
  26109. bottom: 34.6 / 1765
  26110. }
  26111. },
  26112. },
  26113. [
  26114. {
  26115. name: "Normal",
  26116. height: math.unit(9.178, "feet"),
  26117. default: true
  26118. },
  26119. ]
  26120. ))
  26121. characterMakers.push(() => makeCharacter(
  26122. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26123. {
  26124. front: {
  26125. height: math.unit(10, "feet"),
  26126. weight: math.unit(750, "lb"),
  26127. name: "Front",
  26128. image: {
  26129. source: "./media/characters/arlist/front.svg",
  26130. extra: 961 / 778,
  26131. bottom: 6.2 / 986
  26132. }
  26133. },
  26134. },
  26135. [
  26136. {
  26137. name: "Normal",
  26138. height: math.unit(10, "feet"),
  26139. default: true
  26140. },
  26141. ]
  26142. ))
  26143. characterMakers.push(() => makeCharacter(
  26144. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26145. {
  26146. front: {
  26147. height: math.unit(5 + 1 / 12, "feet"),
  26148. weight: math.unit(110, "lb"),
  26149. name: "Front",
  26150. image: {
  26151. source: "./media/characters/aradel/front.svg",
  26152. extra: 324 / 303,
  26153. bottom: 3.6 / 329.4
  26154. }
  26155. },
  26156. },
  26157. [
  26158. {
  26159. name: "Normal",
  26160. height: math.unit(5 + 1 / 12, "feet"),
  26161. default: true
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26167. {
  26168. front: {
  26169. height: math.unit(3 + 8 / 12, "feet"),
  26170. weight: math.unit(50, "lb"),
  26171. name: "Front",
  26172. image: {
  26173. source: "./media/characters/serryn/front.svg",
  26174. extra: 1792 / 1656,
  26175. bottom: 43.5 / 1840
  26176. }
  26177. },
  26178. },
  26179. [
  26180. {
  26181. name: "Normal",
  26182. height: math.unit(3 + 8 / 12, "feet"),
  26183. default: true
  26184. },
  26185. ]
  26186. ))
  26187. characterMakers.push(() => makeCharacter(
  26188. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26189. {
  26190. front: {
  26191. height: math.unit(7 + 10 / 12, "feet"),
  26192. weight: math.unit(255, "lb"),
  26193. name: "Front",
  26194. image: {
  26195. source: "./media/characters/xavier-thyme/front.svg",
  26196. extra: 3733 / 3642,
  26197. bottom: 131 / 3869
  26198. }
  26199. },
  26200. frontRaven: {
  26201. height: math.unit(7 + 10 / 12, "feet"),
  26202. weight: math.unit(255, "lb"),
  26203. name: "Front (Raven)",
  26204. image: {
  26205. source: "./media/characters/xavier-thyme/front-raven.svg",
  26206. extra: 4385 / 3642,
  26207. bottom: 131 / 4517
  26208. }
  26209. },
  26210. },
  26211. [
  26212. {
  26213. name: "Normal",
  26214. height: math.unit(7 + 10 / 12, "feet"),
  26215. default: true
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(1.6, "m"),
  26224. weight: math.unit(50, "kg"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/kiki/front.svg",
  26228. extra: 4682 / 3610,
  26229. bottom: 115 / 4777
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(1.6, "meters"),
  26237. default: true
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(50, "m"),
  26246. weight: math.unit(500, "tonnes"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/ryoko/front.svg",
  26250. extra: 4632 / 3926,
  26251. bottom: 193 / 4823
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(50, "meters"),
  26259. default: true
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26265. {
  26266. front: {
  26267. height: math.unit(30, "m"),
  26268. weight: math.unit(22, "tonnes"),
  26269. name: "Front",
  26270. image: {
  26271. source: "./media/characters/elio/front.svg",
  26272. extra: 4582 / 3720,
  26273. bottom: 236 / 4828
  26274. }
  26275. },
  26276. },
  26277. [
  26278. {
  26279. name: "Normal",
  26280. height: math.unit(30, "meters"),
  26281. default: true
  26282. },
  26283. ]
  26284. ))
  26285. characterMakers.push(() => makeCharacter(
  26286. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26287. {
  26288. front: {
  26289. height: math.unit(6 + 3 / 12, "feet"),
  26290. weight: math.unit(120, "lb"),
  26291. name: "Front",
  26292. image: {
  26293. source: "./media/characters/azura/front.svg",
  26294. extra: 1149 / 1135,
  26295. bottom: 45 / 1194
  26296. }
  26297. },
  26298. frontClothed: {
  26299. height: math.unit(6 + 3 / 12, "feet"),
  26300. weight: math.unit(120, "lb"),
  26301. name: "Front (Clothed)",
  26302. image: {
  26303. source: "./media/characters/azura/front-clothed.svg",
  26304. extra: 1149 / 1135,
  26305. bottom: 45 / 1194
  26306. }
  26307. },
  26308. },
  26309. [
  26310. {
  26311. name: "Normal",
  26312. height: math.unit(6 + 3 / 12, "feet"),
  26313. default: true
  26314. },
  26315. {
  26316. name: "Macro",
  26317. height: math.unit(20 + 6 / 12, "feet")
  26318. },
  26319. {
  26320. name: "Megamacro",
  26321. height: math.unit(12, "miles")
  26322. },
  26323. {
  26324. name: "Gigamacro",
  26325. height: math.unit(10000, "miles")
  26326. },
  26327. {
  26328. name: "Teramacro",
  26329. height: math.unit(900000, "miles")
  26330. },
  26331. ]
  26332. ))
  26333. characterMakers.push(() => makeCharacter(
  26334. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26335. {
  26336. front: {
  26337. height: math.unit(12, "feet"),
  26338. weight: math.unit(1, "ton"),
  26339. capacity: math.unit(660000, "gallons"),
  26340. name: "Front",
  26341. image: {
  26342. source: "./media/characters/zeus/front.svg",
  26343. extra: 5005 / 4717,
  26344. bottom: 363 / 5388
  26345. }
  26346. },
  26347. },
  26348. [
  26349. {
  26350. name: "Normal",
  26351. height: math.unit(12, "feet")
  26352. },
  26353. {
  26354. name: "Preferred Size",
  26355. height: math.unit(0.5, "miles"),
  26356. default: true
  26357. },
  26358. {
  26359. name: "Giga Horse",
  26360. height: math.unit(300, "miles")
  26361. },
  26362. {
  26363. name: "Riding Planets",
  26364. height: math.unit(30, "megameters")
  26365. },
  26366. {
  26367. name: "Cosmic Giant",
  26368. height: math.unit(3, "zettameters")
  26369. },
  26370. {
  26371. name: "Breeding God",
  26372. height: math.unit(9.92e22, "yottameters")
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26378. {
  26379. side: {
  26380. height: math.unit(9, "feet"),
  26381. weight: math.unit(1500, "kg"),
  26382. name: "Side",
  26383. image: {
  26384. source: "./media/characters/fang/side.svg",
  26385. extra: 924 / 866,
  26386. bottom: 47.5 / 972.3
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Normal",
  26393. height: math.unit(9, "feet"),
  26394. default: true
  26395. },
  26396. {
  26397. name: "Macro",
  26398. height: math.unit(75 + 6 / 12, "feet")
  26399. },
  26400. {
  26401. name: "Teramacro",
  26402. height: math.unit(50000, "miles")
  26403. },
  26404. ]
  26405. ))
  26406. characterMakers.push(() => makeCharacter(
  26407. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26408. {
  26409. front: {
  26410. height: math.unit(10, "feet"),
  26411. weight: math.unit(2, "tons"),
  26412. name: "Front",
  26413. image: {
  26414. source: "./media/characters/rekhit/front.svg",
  26415. extra: 2796 / 2590,
  26416. bottom: 225 / 3022
  26417. }
  26418. },
  26419. },
  26420. [
  26421. {
  26422. name: "Normal",
  26423. height: math.unit(10, "feet"),
  26424. default: true
  26425. },
  26426. {
  26427. name: "Macro",
  26428. height: math.unit(500, "feet")
  26429. },
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26434. {
  26435. front: {
  26436. height: math.unit(7 + 6.451 / 12, "feet"),
  26437. weight: math.unit(310, "lb"),
  26438. name: "Front",
  26439. image: {
  26440. source: "./media/characters/dahlia-verrick/front.svg",
  26441. extra: 1488 / 1365,
  26442. bottom: 6.2 / 1495
  26443. }
  26444. },
  26445. back: {
  26446. height: math.unit(7 + 6.451 / 12, "feet"),
  26447. weight: math.unit(310, "lb"),
  26448. name: "Back",
  26449. image: {
  26450. source: "./media/characters/dahlia-verrick/back.svg",
  26451. extra: 1472 / 1351,
  26452. bottom: 5.28 / 1477
  26453. }
  26454. },
  26455. frontBusiness: {
  26456. height: math.unit(7 + 6.451 / 12, "feet"),
  26457. weight: math.unit(200, "lb"),
  26458. name: "Front (Business)",
  26459. image: {
  26460. source: "./media/characters/dahlia-verrick/front-business.svg",
  26461. extra: 1478 / 1381,
  26462. bottom: 5.5 / 1484
  26463. }
  26464. },
  26465. frontCasual: {
  26466. height: math.unit(7 + 6.451 / 12, "feet"),
  26467. weight: math.unit(200, "lb"),
  26468. name: "Front (Casual)",
  26469. image: {
  26470. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26471. extra: 1478 / 1381,
  26472. bottom: 5.5 / 1484
  26473. }
  26474. },
  26475. },
  26476. [
  26477. {
  26478. name: "Travel-Sized",
  26479. height: math.unit(7.45, "inches")
  26480. },
  26481. {
  26482. name: "Normal",
  26483. height: math.unit(7 + 6.451 / 12, "feet"),
  26484. default: true
  26485. },
  26486. {
  26487. name: "Hitting the Town",
  26488. height: math.unit(37 + 8 / 12, "feet")
  26489. },
  26490. {
  26491. name: "Stomp in the Suburbs",
  26492. height: math.unit(964 + 9.728 / 12, "feet")
  26493. },
  26494. {
  26495. name: "Sit on the City",
  26496. height: math.unit(61747 + 10.592 / 12, "feet")
  26497. },
  26498. {
  26499. name: "Glomp the Globe",
  26500. height: math.unit(252919327 + 4.832 / 12, "feet")
  26501. },
  26502. ]
  26503. ))
  26504. characterMakers.push(() => makeCharacter(
  26505. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26506. {
  26507. front: {
  26508. height: math.unit(6 + 4 / 12, "feet"),
  26509. weight: math.unit(320, "lb"),
  26510. name: "Front",
  26511. image: {
  26512. source: "./media/characters/balina-mahigan/front.svg",
  26513. extra: 447 / 428,
  26514. bottom: 18 / 466
  26515. }
  26516. },
  26517. back: {
  26518. height: math.unit(6 + 4 / 12, "feet"),
  26519. weight: math.unit(320, "lb"),
  26520. name: "Back",
  26521. image: {
  26522. source: "./media/characters/balina-mahigan/back.svg",
  26523. extra: 445 / 428,
  26524. bottom: 4.07 / 448
  26525. }
  26526. },
  26527. arm: {
  26528. height: math.unit(1.88, "feet"),
  26529. name: "Arm",
  26530. image: {
  26531. source: "./media/characters/balina-mahigan/arm.svg"
  26532. }
  26533. },
  26534. backPort: {
  26535. height: math.unit(0.685, "feet"),
  26536. name: "Back Port",
  26537. image: {
  26538. source: "./media/characters/balina-mahigan/back-port.svg"
  26539. }
  26540. },
  26541. hoofpaw: {
  26542. height: math.unit(1.41, "feet"),
  26543. name: "Hoofpaw",
  26544. image: {
  26545. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26546. }
  26547. },
  26548. leftHandBack: {
  26549. height: math.unit(0.938, "feet"),
  26550. name: "Left Hand (Back)",
  26551. image: {
  26552. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26553. }
  26554. },
  26555. leftHandFront: {
  26556. height: math.unit(0.938, "feet"),
  26557. name: "Left Hand (Front)",
  26558. image: {
  26559. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26560. }
  26561. },
  26562. rightHandBack: {
  26563. height: math.unit(0.95, "feet"),
  26564. name: "Right Hand (Back)",
  26565. image: {
  26566. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26567. }
  26568. },
  26569. rightHandFront: {
  26570. height: math.unit(0.95, "feet"),
  26571. name: "Right Hand (Front)",
  26572. image: {
  26573. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26574. }
  26575. },
  26576. },
  26577. [
  26578. {
  26579. name: "Normal",
  26580. height: math.unit(6 + 4 / 12, "feet"),
  26581. default: true
  26582. },
  26583. ]
  26584. ))
  26585. characterMakers.push(() => makeCharacter(
  26586. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26587. {
  26588. front: {
  26589. height: math.unit(6, "feet"),
  26590. weight: math.unit(320, "lb"),
  26591. name: "Front",
  26592. image: {
  26593. source: "./media/characters/balina-mejeri/front.svg",
  26594. extra: 517 / 488,
  26595. bottom: 44.2 / 561
  26596. }
  26597. },
  26598. },
  26599. [
  26600. {
  26601. name: "Normal",
  26602. height: math.unit(6 + 4 / 12, "feet")
  26603. },
  26604. {
  26605. name: "Business",
  26606. height: math.unit(155, "feet"),
  26607. default: true
  26608. },
  26609. ]
  26610. ))
  26611. characterMakers.push(() => makeCharacter(
  26612. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26613. {
  26614. kneeling: {
  26615. height: math.unit(6 + 4 / 12, "feet"),
  26616. weight: math.unit(300 * 20, "lb"),
  26617. name: "Kneeling",
  26618. image: {
  26619. source: "./media/characters/balbarian/kneeling.svg",
  26620. extra: 922 / 862,
  26621. bottom: 42.4 / 965
  26622. }
  26623. },
  26624. },
  26625. [
  26626. {
  26627. name: "Normal",
  26628. height: math.unit(6 + 4 / 12, "feet")
  26629. },
  26630. {
  26631. name: "Treasured",
  26632. height: math.unit(18 + 9 / 12, "feet"),
  26633. default: true
  26634. },
  26635. {
  26636. name: "Macro",
  26637. height: math.unit(900, "feet")
  26638. },
  26639. ]
  26640. ))
  26641. characterMakers.push(() => makeCharacter(
  26642. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26643. {
  26644. front: {
  26645. height: math.unit(6 + 4 / 12, "feet"),
  26646. weight: math.unit(325, "lb"),
  26647. name: "Front",
  26648. image: {
  26649. source: "./media/characters/balina-amarini/front.svg",
  26650. extra: 415 / 403,
  26651. bottom: 19 / 433.4
  26652. }
  26653. },
  26654. back: {
  26655. height: math.unit(6 + 4 / 12, "feet"),
  26656. weight: math.unit(325, "lb"),
  26657. name: "Back",
  26658. image: {
  26659. source: "./media/characters/balina-amarini/back.svg",
  26660. extra: 415 / 403,
  26661. bottom: 13.5 / 432
  26662. }
  26663. },
  26664. overdrive: {
  26665. height: math.unit(6 + 4 / 12, "feet"),
  26666. weight: math.unit(400, "lb"),
  26667. name: "Overdrive",
  26668. image: {
  26669. source: "./media/characters/balina-amarini/overdrive.svg",
  26670. extra: 269 / 259,
  26671. bottom: 12 / 282
  26672. }
  26673. },
  26674. },
  26675. [
  26676. {
  26677. name: "Boom",
  26678. height: math.unit(9 + 10 / 12, "feet"),
  26679. default: true
  26680. },
  26681. {
  26682. name: "Macro",
  26683. height: math.unit(280, "feet")
  26684. },
  26685. ]
  26686. ))
  26687. characterMakers.push(() => makeCharacter(
  26688. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26689. {
  26690. goddess: {
  26691. height: math.unit(600, "feet"),
  26692. weight: math.unit(2000000, "tons"),
  26693. name: "Goddess",
  26694. image: {
  26695. source: "./media/characters/lady-kubwa/goddess.svg",
  26696. extra: 1240.5 / 1223,
  26697. bottom: 22 / 1263
  26698. }
  26699. },
  26700. goddesser: {
  26701. height: math.unit(900, "feet"),
  26702. weight: math.unit(20000000, "lb"),
  26703. name: "Goddess-er",
  26704. image: {
  26705. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26706. extra: 899 / 888,
  26707. bottom: 12.6 / 912
  26708. }
  26709. },
  26710. },
  26711. [
  26712. {
  26713. name: "Macro",
  26714. height: math.unit(600, "feet"),
  26715. default: true
  26716. },
  26717. {
  26718. name: "Megamacro",
  26719. height: math.unit(250, "miles")
  26720. },
  26721. ]
  26722. ))
  26723. characterMakers.push(() => makeCharacter(
  26724. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26725. {
  26726. front: {
  26727. height: math.unit(7 + 7 / 12, "feet"),
  26728. weight: math.unit(250, "lb"),
  26729. name: "Front",
  26730. image: {
  26731. source: "./media/characters/tala-grovehorn/front.svg",
  26732. extra: 2636 / 2525,
  26733. bottom: 147 / 2781
  26734. }
  26735. },
  26736. back: {
  26737. height: math.unit(7 + 7 / 12, "feet"),
  26738. weight: math.unit(250, "lb"),
  26739. name: "Back",
  26740. image: {
  26741. source: "./media/characters/tala-grovehorn/back.svg",
  26742. extra: 2635 / 2539,
  26743. bottom: 100 / 2732.8
  26744. }
  26745. },
  26746. mouth: {
  26747. height: math.unit(1.15, "feet"),
  26748. name: "Mouth",
  26749. image: {
  26750. source: "./media/characters/tala-grovehorn/mouth.svg"
  26751. }
  26752. },
  26753. dick: {
  26754. height: math.unit(2.36, "feet"),
  26755. name: "Dick",
  26756. image: {
  26757. source: "./media/characters/tala-grovehorn/dick.svg"
  26758. }
  26759. },
  26760. slit: {
  26761. height: math.unit(0.61, "feet"),
  26762. name: "Slit",
  26763. image: {
  26764. source: "./media/characters/tala-grovehorn/slit.svg"
  26765. }
  26766. },
  26767. },
  26768. [
  26769. ]
  26770. ))
  26771. characterMakers.push(() => makeCharacter(
  26772. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26773. {
  26774. front: {
  26775. height: math.unit(7 + 7 / 12, "feet"),
  26776. weight: math.unit(225, "lb"),
  26777. name: "Front",
  26778. image: {
  26779. source: "./media/characters/epona/front.svg",
  26780. extra: 2445 / 2290,
  26781. bottom: 251 / 2696
  26782. }
  26783. },
  26784. back: {
  26785. height: math.unit(7 + 7 / 12, "feet"),
  26786. weight: math.unit(225, "lb"),
  26787. name: "Back",
  26788. image: {
  26789. source: "./media/characters/epona/back.svg",
  26790. extra: 2546 / 2408,
  26791. bottom: 44 / 2589
  26792. }
  26793. },
  26794. genitals: {
  26795. height: math.unit(1.5, "feet"),
  26796. name: "Genitals",
  26797. image: {
  26798. source: "./media/characters/epona/genitals.svg"
  26799. }
  26800. },
  26801. },
  26802. [
  26803. {
  26804. name: "Normal",
  26805. height: math.unit(7 + 7 / 12, "feet"),
  26806. default: true
  26807. },
  26808. ]
  26809. ))
  26810. characterMakers.push(() => makeCharacter(
  26811. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26812. {
  26813. front: {
  26814. height: math.unit(7, "feet"),
  26815. weight: math.unit(518, "lb"),
  26816. name: "Front",
  26817. image: {
  26818. source: "./media/characters/avia-bloodbourn/front.svg",
  26819. extra: 1466 / 1350,
  26820. bottom: 65 / 1527
  26821. }
  26822. },
  26823. },
  26824. [
  26825. ]
  26826. ))
  26827. characterMakers.push(() => makeCharacter(
  26828. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26829. {
  26830. front: {
  26831. height: math.unit(9.35, "feet"),
  26832. weight: math.unit(600, "lb"),
  26833. name: "Front",
  26834. image: {
  26835. source: "./media/characters/amera/front.svg",
  26836. extra: 891 / 818,
  26837. bottom: 30 / 922.7
  26838. }
  26839. },
  26840. back: {
  26841. height: math.unit(9.35, "feet"),
  26842. weight: math.unit(600, "lb"),
  26843. name: "Back",
  26844. image: {
  26845. source: "./media/characters/amera/back.svg",
  26846. extra: 876 / 824,
  26847. bottom: 6.8 / 884
  26848. }
  26849. },
  26850. dick: {
  26851. height: math.unit(2.14, "feet"),
  26852. name: "Dick",
  26853. image: {
  26854. source: "./media/characters/amera/dick.svg"
  26855. }
  26856. },
  26857. },
  26858. [
  26859. {
  26860. name: "Normal",
  26861. height: math.unit(9.35, "feet"),
  26862. default: true
  26863. },
  26864. ]
  26865. ))
  26866. characterMakers.push(() => makeCharacter(
  26867. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26868. {
  26869. kneeling: {
  26870. height: math.unit(3 + 4 / 12, "feet"),
  26871. weight: math.unit(90, "lb"),
  26872. name: "Kneeling",
  26873. image: {
  26874. source: "./media/characters/rosewen/kneeling.svg",
  26875. extra: 1835 / 1571,
  26876. bottom: 27.7 / 1862
  26877. }
  26878. },
  26879. },
  26880. [
  26881. {
  26882. name: "Normal",
  26883. height: math.unit(3 + 4 / 12, "feet"),
  26884. default: true
  26885. },
  26886. ]
  26887. ))
  26888. characterMakers.push(() => makeCharacter(
  26889. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26890. {
  26891. front: {
  26892. height: math.unit(5 + 10 / 12, "feet"),
  26893. weight: math.unit(200, "lb"),
  26894. name: "Front",
  26895. image: {
  26896. source: "./media/characters/sabah/front.svg",
  26897. extra: 849 / 763,
  26898. bottom: 33.9 / 881
  26899. }
  26900. },
  26901. },
  26902. [
  26903. {
  26904. name: "Normal",
  26905. height: math.unit(5 + 10 / 12, "feet"),
  26906. default: true
  26907. },
  26908. ]
  26909. ))
  26910. characterMakers.push(() => makeCharacter(
  26911. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26912. {
  26913. front: {
  26914. height: math.unit(3 + 5 / 12, "feet"),
  26915. weight: math.unit(40, "kg"),
  26916. name: "Front",
  26917. image: {
  26918. source: "./media/characters/purple-flame/front.svg",
  26919. extra: 1577 / 1412,
  26920. bottom: 97 / 1694
  26921. }
  26922. },
  26923. frontDressed: {
  26924. height: math.unit(3 + 5 / 12, "feet"),
  26925. weight: math.unit(40, "kg"),
  26926. name: "Front (Dressed)",
  26927. image: {
  26928. source: "./media/characters/purple-flame/front-dressed.svg",
  26929. extra: 1577 / 1412,
  26930. bottom: 97 / 1694
  26931. }
  26932. },
  26933. headphones: {
  26934. height: math.unit(0.85, "feet"),
  26935. name: "Headphones",
  26936. image: {
  26937. source: "./media/characters/purple-flame/headphones.svg"
  26938. }
  26939. },
  26940. },
  26941. [
  26942. {
  26943. name: "Really Small",
  26944. height: math.unit(5, "cm")
  26945. },
  26946. {
  26947. name: "Micro",
  26948. height: math.unit(1 + 5 / 12, "feet")
  26949. },
  26950. {
  26951. name: "Normal",
  26952. height: math.unit(3 + 5 / 12, "feet"),
  26953. default: true
  26954. },
  26955. {
  26956. name: "Minimacro",
  26957. height: math.unit(125, "feet")
  26958. },
  26959. {
  26960. name: "Macro",
  26961. height: math.unit(0.5, "miles")
  26962. },
  26963. {
  26964. name: "Megamacro",
  26965. height: math.unit(50, "miles")
  26966. },
  26967. {
  26968. name: "Gigantic",
  26969. height: math.unit(750, "miles")
  26970. },
  26971. {
  26972. name: "Planetary",
  26973. height: math.unit(15000, "miles")
  26974. },
  26975. ]
  26976. ))
  26977. characterMakers.push(() => makeCharacter(
  26978. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26979. {
  26980. front: {
  26981. height: math.unit(14, "feet"),
  26982. weight: math.unit(959, "lb"),
  26983. name: "Front",
  26984. image: {
  26985. source: "./media/characters/arsenal/front.svg",
  26986. extra: 2357 / 2157,
  26987. bottom: 93 / 2458
  26988. }
  26989. },
  26990. },
  26991. [
  26992. {
  26993. name: "Normal",
  26994. height: math.unit(14, "feet"),
  26995. default: true
  26996. },
  26997. ]
  26998. ))
  26999. characterMakers.push(() => makeCharacter(
  27000. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27001. {
  27002. front: {
  27003. height: math.unit(6, "feet"),
  27004. weight: math.unit(150, "lb"),
  27005. name: "Front",
  27006. image: {
  27007. source: "./media/characters/adira/front.svg",
  27008. extra: 1078 / 1029,
  27009. bottom: 87 / 1166
  27010. }
  27011. },
  27012. },
  27013. [
  27014. {
  27015. name: "Micro",
  27016. height: math.unit(4, "inches"),
  27017. default: true
  27018. },
  27019. {
  27020. name: "Macro",
  27021. height: math.unit(50, "feet")
  27022. },
  27023. ]
  27024. ))
  27025. characterMakers.push(() => makeCharacter(
  27026. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27027. {
  27028. front: {
  27029. height: math.unit(16, "feet"),
  27030. weight: math.unit(1000, "lb"),
  27031. name: "Front",
  27032. image: {
  27033. source: "./media/characters/grim/front.svg",
  27034. extra: 622 / 614,
  27035. bottom: 18.1 / 642
  27036. }
  27037. },
  27038. back: {
  27039. height: math.unit(16, "feet"),
  27040. weight: math.unit(1000, "lb"),
  27041. name: "Back",
  27042. image: {
  27043. source: "./media/characters/grim/back.svg",
  27044. extra: 610.6 / 602,
  27045. bottom: 40.8 / 652
  27046. }
  27047. },
  27048. hunched: {
  27049. height: math.unit(9.75, "feet"),
  27050. weight: math.unit(1000, "lb"),
  27051. name: "Hunched",
  27052. image: {
  27053. source: "./media/characters/grim/hunched.svg",
  27054. extra: 304 / 297,
  27055. bottom: 35.4 / 394
  27056. }
  27057. },
  27058. },
  27059. [
  27060. {
  27061. name: "Normal",
  27062. height: math.unit(16, "feet"),
  27063. default: true
  27064. },
  27065. ]
  27066. ))
  27067. characterMakers.push(() => makeCharacter(
  27068. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27069. {
  27070. front: {
  27071. height: math.unit(2.3, "meters"),
  27072. weight: math.unit(300, "lb"),
  27073. name: "Front",
  27074. image: {
  27075. source: "./media/characters/sinja/front-sfw.svg",
  27076. extra: 1393 / 1294,
  27077. bottom: 70 / 1463
  27078. }
  27079. },
  27080. frontNsfw: {
  27081. height: math.unit(2.3, "meters"),
  27082. weight: math.unit(300, "lb"),
  27083. name: "Front (NSFW)",
  27084. image: {
  27085. source: "./media/characters/sinja/front-nsfw.svg",
  27086. extra: 1393 / 1294,
  27087. bottom: 70 / 1463
  27088. }
  27089. },
  27090. back: {
  27091. height: math.unit(2.3, "meters"),
  27092. weight: math.unit(300, "lb"),
  27093. name: "Back",
  27094. image: {
  27095. source: "./media/characters/sinja/back.svg",
  27096. extra: 1393 / 1294,
  27097. bottom: 70 / 1463
  27098. }
  27099. },
  27100. head: {
  27101. height: math.unit(1.771, "feet"),
  27102. name: "Head",
  27103. image: {
  27104. source: "./media/characters/sinja/head.svg"
  27105. }
  27106. },
  27107. slit: {
  27108. height: math.unit(0.8, "feet"),
  27109. name: "Slit",
  27110. image: {
  27111. source: "./media/characters/sinja/slit.svg"
  27112. }
  27113. },
  27114. },
  27115. [
  27116. {
  27117. name: "Normal",
  27118. height: math.unit(2.3, "meters")
  27119. },
  27120. {
  27121. name: "Macro",
  27122. height: math.unit(91, "meters"),
  27123. default: true
  27124. },
  27125. {
  27126. name: "Megamacro",
  27127. height: math.unit(91440, "meters")
  27128. },
  27129. {
  27130. name: "Gigamacro",
  27131. height: math.unit(60960000, "meters")
  27132. },
  27133. {
  27134. name: "Teramacro",
  27135. height: math.unit(9144000000, "meters")
  27136. },
  27137. ]
  27138. ))
  27139. characterMakers.push(() => makeCharacter(
  27140. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27141. {
  27142. front: {
  27143. height: math.unit(1.7, "meters"),
  27144. weight: math.unit(130, "lb"),
  27145. name: "Front",
  27146. image: {
  27147. source: "./media/characters/kyu/front.svg",
  27148. extra: 415 / 395,
  27149. bottom: 5 / 420
  27150. }
  27151. },
  27152. head: {
  27153. height: math.unit(1.75, "feet"),
  27154. name: "Head",
  27155. image: {
  27156. source: "./media/characters/kyu/head.svg"
  27157. }
  27158. },
  27159. foot: {
  27160. height: math.unit(0.81, "feet"),
  27161. name: "Foot",
  27162. image: {
  27163. source: "./media/characters/kyu/foot.svg"
  27164. }
  27165. },
  27166. },
  27167. [
  27168. {
  27169. name: "Normal",
  27170. height: math.unit(1.7, "meters")
  27171. },
  27172. {
  27173. name: "Macro",
  27174. height: math.unit(131, "feet"),
  27175. default: true
  27176. },
  27177. {
  27178. name: "Megamacro",
  27179. height: math.unit(91440, "meters")
  27180. },
  27181. {
  27182. name: "Gigamacro",
  27183. height: math.unit(60960000, "meters")
  27184. },
  27185. {
  27186. name: "Teramacro",
  27187. height: math.unit(9144000000, "meters")
  27188. },
  27189. ]
  27190. ))
  27191. characterMakers.push(() => makeCharacter(
  27192. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27193. {
  27194. front: {
  27195. height: math.unit(7 + 1 / 12, "feet"),
  27196. weight: math.unit(250, "lb"),
  27197. name: "Front",
  27198. image: {
  27199. source: "./media/characters/joey/front.svg",
  27200. extra: 1791 / 1537,
  27201. bottom: 28 / 1816
  27202. }
  27203. },
  27204. },
  27205. [
  27206. {
  27207. name: "Micro",
  27208. height: math.unit(3, "inches")
  27209. },
  27210. {
  27211. name: "Normal",
  27212. height: math.unit(7 + 1 / 12, "feet"),
  27213. default: true
  27214. },
  27215. ]
  27216. ))
  27217. characterMakers.push(() => makeCharacter(
  27218. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27219. {
  27220. front: {
  27221. height: math.unit(165, "cm"),
  27222. weight: math.unit(140, "lb"),
  27223. name: "Front",
  27224. image: {
  27225. source: "./media/characters/sam-evans/front.svg",
  27226. extra: 3417 / 3230,
  27227. bottom: 41.3 / 3417
  27228. }
  27229. },
  27230. frontSixTails: {
  27231. height: math.unit(165, "cm"),
  27232. weight: math.unit(140, "lb"),
  27233. name: "Front-six-tails",
  27234. image: {
  27235. source: "./media/characters/sam-evans/front-six-tails.svg",
  27236. extra: 3417 / 3230,
  27237. bottom: 41.3 / 3417
  27238. }
  27239. },
  27240. back: {
  27241. height: math.unit(165, "cm"),
  27242. weight: math.unit(140, "lb"),
  27243. name: "Back",
  27244. image: {
  27245. source: "./media/characters/sam-evans/back.svg",
  27246. extra: 3227 / 3032,
  27247. bottom: 6.8 / 3234
  27248. }
  27249. },
  27250. face: {
  27251. height: math.unit(0.68, "feet"),
  27252. name: "Face",
  27253. image: {
  27254. source: "./media/characters/sam-evans/face.svg"
  27255. }
  27256. },
  27257. },
  27258. [
  27259. {
  27260. name: "Normal",
  27261. height: math.unit(165, "cm"),
  27262. default: true
  27263. },
  27264. {
  27265. name: "Macro",
  27266. height: math.unit(100, "meters")
  27267. },
  27268. {
  27269. name: "Macro+",
  27270. height: math.unit(800, "meters")
  27271. },
  27272. {
  27273. name: "Macro++",
  27274. height: math.unit(3, "km")
  27275. },
  27276. {
  27277. name: "Macro+++",
  27278. height: math.unit(30, "km")
  27279. },
  27280. ]
  27281. ))
  27282. characterMakers.push(() => makeCharacter(
  27283. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27284. {
  27285. front: {
  27286. height: math.unit(10, "feet"),
  27287. weight: math.unit(750, "lb"),
  27288. name: "Front",
  27289. image: {
  27290. source: "./media/characters/juliet-a/front.svg",
  27291. extra: 1766 / 1720,
  27292. bottom: 43 / 1809
  27293. }
  27294. },
  27295. back: {
  27296. height: math.unit(10, "feet"),
  27297. weight: math.unit(750, "lb"),
  27298. name: "Back",
  27299. image: {
  27300. source: "./media/characters/juliet-a/back.svg",
  27301. extra: 1781 / 1734,
  27302. bottom: 35 / 1810,
  27303. }
  27304. },
  27305. },
  27306. [
  27307. {
  27308. name: "Normal",
  27309. height: math.unit(10, "feet"),
  27310. default: true
  27311. },
  27312. {
  27313. name: "Dragon Form",
  27314. height: math.unit(250, "feet")
  27315. },
  27316. {
  27317. name: "Macro",
  27318. height: math.unit(1000, "feet")
  27319. },
  27320. {
  27321. name: "Megamacro",
  27322. height: math.unit(10000, "feet")
  27323. }
  27324. ]
  27325. ))
  27326. characterMakers.push(() => makeCharacter(
  27327. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27328. {
  27329. regular: {
  27330. height: math.unit(7 + 3 / 12, "feet"),
  27331. weight: math.unit(260, "lb"),
  27332. name: "Regular",
  27333. image: {
  27334. source: "./media/characters/wild/regular.svg",
  27335. extra: 97.45 / 92,
  27336. bottom: 6.8 / 104.3
  27337. }
  27338. },
  27339. biggums: {
  27340. height: math.unit(8 + 6 / 12, "feet"),
  27341. weight: math.unit(425, "lb"),
  27342. name: "Biggums",
  27343. image: {
  27344. source: "./media/characters/wild/biggums.svg",
  27345. extra: 97.45 / 92,
  27346. bottom: 7.5 / 132.34
  27347. }
  27348. },
  27349. mawRegular: {
  27350. height: math.unit(1.24, "feet"),
  27351. name: "Maw (Regular)",
  27352. image: {
  27353. source: "./media/characters/wild/maw.svg"
  27354. }
  27355. },
  27356. mawBiggums: {
  27357. height: math.unit(1.47, "feet"),
  27358. name: "Maw (Biggums)",
  27359. image: {
  27360. source: "./media/characters/wild/maw.svg"
  27361. }
  27362. },
  27363. },
  27364. [
  27365. {
  27366. name: "Normal",
  27367. height: math.unit(7 + 3 / 12, "feet"),
  27368. default: true
  27369. },
  27370. ]
  27371. ))
  27372. characterMakers.push(() => makeCharacter(
  27373. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27374. {
  27375. front: {
  27376. height: math.unit(2.5, "meters"),
  27377. weight: math.unit(200, "kg"),
  27378. name: "Front",
  27379. image: {
  27380. source: "./media/characters/vidar/front.svg",
  27381. extra: 2994 / 2795,
  27382. bottom: 56 / 3061
  27383. }
  27384. },
  27385. back: {
  27386. height: math.unit(2.5, "meters"),
  27387. weight: math.unit(200, "kg"),
  27388. name: "Back",
  27389. image: {
  27390. source: "./media/characters/vidar/back.svg",
  27391. extra: 3131 / 2928,
  27392. bottom: 13.5 / 3141.5
  27393. }
  27394. },
  27395. feral: {
  27396. height: math.unit(2.5, "meters"),
  27397. weight: math.unit(2000, "kg"),
  27398. name: "Feral",
  27399. image: {
  27400. source: "./media/characters/vidar/feral.svg",
  27401. extra: 2790 / 1765,
  27402. bottom: 6 / 2796
  27403. }
  27404. },
  27405. },
  27406. [
  27407. {
  27408. name: "Normal",
  27409. height: math.unit(2.5, "meters"),
  27410. default: true
  27411. },
  27412. {
  27413. name: "Macro",
  27414. height: math.unit(100, "meters")
  27415. },
  27416. ]
  27417. ))
  27418. characterMakers.push(() => makeCharacter(
  27419. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27420. {
  27421. front: {
  27422. height: math.unit(5 + 9 / 12, "feet"),
  27423. weight: math.unit(120, "lb"),
  27424. name: "Front",
  27425. image: {
  27426. source: "./media/characters/ash/front.svg",
  27427. extra: 2189 / 1961,
  27428. bottom: 5.2 / 2194
  27429. }
  27430. },
  27431. },
  27432. [
  27433. {
  27434. name: "Normal",
  27435. height: math.unit(5 + 9 / 12, "feet"),
  27436. default: true
  27437. },
  27438. ]
  27439. ))
  27440. characterMakers.push(() => makeCharacter(
  27441. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27442. {
  27443. front: {
  27444. height: math.unit(9, "feet"),
  27445. weight: math.unit(10000, "lb"),
  27446. name: "Front",
  27447. image: {
  27448. source: "./media/characters/gygabite/front.svg",
  27449. bottom: 31.7 / 537.8,
  27450. extra: 505 / 370
  27451. }
  27452. },
  27453. },
  27454. [
  27455. {
  27456. name: "Normal",
  27457. height: math.unit(9, "feet"),
  27458. default: true
  27459. },
  27460. ]
  27461. ))
  27462. characterMakers.push(() => makeCharacter(
  27463. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27464. {
  27465. front: {
  27466. height: math.unit(12, "feet"),
  27467. weight: math.unit(35000, "lb"),
  27468. name: "Front",
  27469. image: {
  27470. source: "./media/characters/p0tat0/front.svg",
  27471. extra: 1065 / 921,
  27472. bottom: 55.7 / 1121.25
  27473. }
  27474. },
  27475. },
  27476. [
  27477. {
  27478. name: "Normal",
  27479. height: math.unit(12, "feet"),
  27480. default: true
  27481. },
  27482. ]
  27483. ))
  27484. characterMakers.push(() => makeCharacter(
  27485. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27486. {
  27487. side: {
  27488. height: math.unit(6.5, "feet"),
  27489. weight: math.unit(800, "lb"),
  27490. name: "Side",
  27491. image: {
  27492. source: "./media/characters/dusk/side.svg",
  27493. extra: 615 / 373,
  27494. bottom: 53 / 664
  27495. }
  27496. },
  27497. sitting: {
  27498. height: math.unit(7, "feet"),
  27499. weight: math.unit(800, "lb"),
  27500. name: "Sitting",
  27501. image: {
  27502. source: "./media/characters/dusk/sitting.svg",
  27503. extra: 753 / 425,
  27504. bottom: 33 / 774
  27505. }
  27506. },
  27507. head: {
  27508. height: math.unit(6.1, "feet"),
  27509. name: "Head",
  27510. image: {
  27511. source: "./media/characters/dusk/head.svg"
  27512. }
  27513. },
  27514. },
  27515. [
  27516. {
  27517. name: "Normal",
  27518. height: math.unit(7, "feet"),
  27519. default: true
  27520. },
  27521. ]
  27522. ))
  27523. characterMakers.push(() => makeCharacter(
  27524. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27525. {
  27526. front: {
  27527. height: math.unit(15, "feet"),
  27528. weight: math.unit(7000, "lb"),
  27529. name: "Front",
  27530. image: {
  27531. source: "./media/characters/jay-direwolf/front.svg",
  27532. extra: 1810 / 1732,
  27533. bottom: 66 / 1892
  27534. }
  27535. },
  27536. },
  27537. [
  27538. {
  27539. name: "Normal",
  27540. height: math.unit(15, "feet"),
  27541. default: true
  27542. },
  27543. ]
  27544. ))
  27545. characterMakers.push(() => makeCharacter(
  27546. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27547. {
  27548. front: {
  27549. height: math.unit(4 + 9 / 12, "feet"),
  27550. weight: math.unit(130, "lb"),
  27551. name: "Front",
  27552. image: {
  27553. source: "./media/characters/anchovie/front.svg",
  27554. extra: 382 / 350,
  27555. bottom: 25 / 409
  27556. }
  27557. },
  27558. back: {
  27559. height: math.unit(4 + 9 / 12, "feet"),
  27560. weight: math.unit(130, "lb"),
  27561. name: "Back",
  27562. image: {
  27563. source: "./media/characters/anchovie/back.svg",
  27564. extra: 385 / 352,
  27565. bottom: 16.6 / 402
  27566. }
  27567. },
  27568. frontDressed: {
  27569. height: math.unit(4 + 9 / 12, "feet"),
  27570. weight: math.unit(130, "lb"),
  27571. name: "Front (Dressed)",
  27572. image: {
  27573. source: "./media/characters/anchovie/front-dressed.svg",
  27574. extra: 382 / 350,
  27575. bottom: 25 / 409
  27576. }
  27577. },
  27578. backDressed: {
  27579. height: math.unit(4 + 9 / 12, "feet"),
  27580. weight: math.unit(130, "lb"),
  27581. name: "Back (Dressed)",
  27582. image: {
  27583. source: "./media/characters/anchovie/back-dressed.svg",
  27584. extra: 385 / 352,
  27585. bottom: 16.6 / 402
  27586. }
  27587. },
  27588. },
  27589. [
  27590. {
  27591. name: "Micro",
  27592. height: math.unit(6.4, "inches")
  27593. },
  27594. {
  27595. name: "Normal",
  27596. height: math.unit(4 + 9 / 12, "feet"),
  27597. default: true
  27598. },
  27599. ]
  27600. ))
  27601. characterMakers.push(() => makeCharacter(
  27602. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27603. {
  27604. front: {
  27605. height: math.unit(2, "meters"),
  27606. weight: math.unit(180, "lb"),
  27607. name: "Front",
  27608. image: {
  27609. source: "./media/characters/acidrenamon/front.svg",
  27610. extra: 987 / 890,
  27611. bottom: 22.8 / 1009
  27612. }
  27613. },
  27614. back: {
  27615. height: math.unit(2, "meters"),
  27616. weight: math.unit(180, "lb"),
  27617. name: "Back",
  27618. image: {
  27619. source: "./media/characters/acidrenamon/back.svg",
  27620. extra: 983 / 891,
  27621. bottom: 8.4 / 992
  27622. }
  27623. },
  27624. head: {
  27625. height: math.unit(1.92, "feet"),
  27626. name: "Head",
  27627. image: {
  27628. source: "./media/characters/acidrenamon/head.svg"
  27629. }
  27630. },
  27631. rump: {
  27632. height: math.unit(1.72, "feet"),
  27633. name: "Rump",
  27634. image: {
  27635. source: "./media/characters/acidrenamon/rump.svg"
  27636. }
  27637. },
  27638. tail: {
  27639. height: math.unit(4.2, "feet"),
  27640. name: "Tail",
  27641. image: {
  27642. source: "./media/characters/acidrenamon/tail.svg"
  27643. }
  27644. },
  27645. },
  27646. [
  27647. {
  27648. name: "Normal",
  27649. height: math.unit(2, "meters"),
  27650. default: true
  27651. },
  27652. {
  27653. name: "Minimacro",
  27654. height: math.unit(7, "meters")
  27655. },
  27656. {
  27657. name: "Macro",
  27658. height: math.unit(200, "meters")
  27659. },
  27660. {
  27661. name: "Gigamacro",
  27662. height: math.unit(0.2, "earths")
  27663. },
  27664. ]
  27665. ))
  27666. characterMakers.push(() => makeCharacter(
  27667. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27668. {
  27669. front: {
  27670. height: math.unit(6, "feet"),
  27671. weight: math.unit(150, "lb"),
  27672. name: "Front",
  27673. image: {
  27674. source: "./media/characters/kenzie-lee/front.svg",
  27675. extra: 1525 / 1465,
  27676. bottom: 45 / 1570
  27677. }
  27678. },
  27679. side: {
  27680. height: math.unit(6, "feet"),
  27681. weight: math.unit(150, "lb"),
  27682. name: "Side",
  27683. image: {
  27684. source: "./media/characters/kenzie-lee/side.svg",
  27685. extra: 5505 / 5383,
  27686. bottom: 60 / 5573
  27687. }
  27688. },
  27689. paw: {
  27690. height: math.unit(0.57, "feet"),
  27691. name: "Paw",
  27692. image: {
  27693. source: "./media/characters/kenzie-lee/paw.svg"
  27694. }
  27695. },
  27696. },
  27697. [
  27698. {
  27699. name: "Normal",
  27700. height: math.unit(152, "feet"),
  27701. default: true
  27702. },
  27703. {
  27704. name: "Megamacro",
  27705. height: math.unit(7, "miles")
  27706. },
  27707. {
  27708. name: "Gigamacro",
  27709. height: math.unit(8000, "miles")
  27710. },
  27711. ]
  27712. ))
  27713. characterMakers.push(() => makeCharacter(
  27714. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27715. {
  27716. side: {
  27717. height: math.unit(6, "feet"),
  27718. weight: math.unit(150, "lb"),
  27719. name: "Side",
  27720. image: {
  27721. source: "./media/characters/withers/side.svg",
  27722. extra: 1830 / 1728,
  27723. bottom: 96 / 1927
  27724. }
  27725. },
  27726. front: {
  27727. height: math.unit(6, "feet"),
  27728. weight: math.unit(150, "lb"),
  27729. name: "Front",
  27730. image: {
  27731. source: "./media/characters/withers/front.svg",
  27732. extra: 1514 / 1438,
  27733. bottom: 118 / 1632
  27734. }
  27735. },
  27736. },
  27737. [
  27738. {
  27739. name: "Macro",
  27740. height: math.unit(168, "feet"),
  27741. default: true
  27742. },
  27743. {
  27744. name: "Megamacro",
  27745. height: math.unit(15, "miles")
  27746. }
  27747. ]
  27748. ))
  27749. characterMakers.push(() => makeCharacter(
  27750. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27751. {
  27752. front: {
  27753. height: math.unit(6 + 7 / 12, "feet"),
  27754. weight: math.unit(250, "lb"),
  27755. name: "Front",
  27756. image: {
  27757. source: "./media/characters/nemoskii/front.svg",
  27758. extra: 2270 / 1734,
  27759. bottom: 86 / 2354
  27760. }
  27761. },
  27762. back: {
  27763. height: math.unit(6 + 7 / 12, "feet"),
  27764. weight: math.unit(250, "lb"),
  27765. name: "Back",
  27766. image: {
  27767. source: "./media/characters/nemoskii/back.svg",
  27768. extra: 1845 / 1788,
  27769. bottom: 10.5 / 1852
  27770. }
  27771. },
  27772. head: {
  27773. height: math.unit(1.31, "feet"),
  27774. name: "Head",
  27775. image: {
  27776. source: "./media/characters/nemoskii/head.svg"
  27777. }
  27778. },
  27779. },
  27780. [
  27781. {
  27782. name: "Micro",
  27783. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27784. },
  27785. {
  27786. name: "Normal",
  27787. height: math.unit(6 + 7 / 12, "feet"),
  27788. default: true
  27789. },
  27790. {
  27791. name: "Macro",
  27792. height: math.unit((6 + 7 / 12) * 150, "feet")
  27793. },
  27794. {
  27795. name: "Macro+",
  27796. height: math.unit((6 + 7 / 12) * 500, "feet")
  27797. },
  27798. {
  27799. name: "Megamacro",
  27800. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27801. },
  27802. ]
  27803. ))
  27804. characterMakers.push(() => makeCharacter(
  27805. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27806. {
  27807. front: {
  27808. height: math.unit(1, "mile"),
  27809. weight: math.unit(265261.9, "lb"),
  27810. name: "Front",
  27811. image: {
  27812. source: "./media/characters/shui/front.svg",
  27813. extra: 1633 / 1564,
  27814. bottom: 91.5 / 1726
  27815. }
  27816. },
  27817. },
  27818. [
  27819. {
  27820. name: "Macro",
  27821. height: math.unit(1, "mile"),
  27822. default: true
  27823. },
  27824. ]
  27825. ))
  27826. characterMakers.push(() => makeCharacter(
  27827. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27828. {
  27829. front: {
  27830. height: math.unit(12 + 6 / 12, "feet"),
  27831. weight: math.unit(1342, "lb"),
  27832. name: "Front",
  27833. image: {
  27834. source: "./media/characters/arokh-takakura/front.svg",
  27835. extra: 1089 / 1043,
  27836. bottom: 77.4 / 1176.7
  27837. }
  27838. },
  27839. back: {
  27840. height: math.unit(12 + 6 / 12, "feet"),
  27841. weight: math.unit(1342, "lb"),
  27842. name: "Back",
  27843. image: {
  27844. source: "./media/characters/arokh-takakura/back.svg",
  27845. extra: 1046 / 1019,
  27846. bottom: 102 / 1150
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Big",
  27853. height: math.unit(12 + 6 / 12, "feet"),
  27854. default: true
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27860. {
  27861. front: {
  27862. height: math.unit(5 + 6 / 12, "feet"),
  27863. weight: math.unit(150, "lb"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/theo/front.svg",
  27867. extra: 1184 / 1131,
  27868. bottom: 7.4 / 1191
  27869. }
  27870. },
  27871. },
  27872. [
  27873. {
  27874. name: "Micro",
  27875. height: math.unit(5, "inches")
  27876. },
  27877. {
  27878. name: "Normal",
  27879. height: math.unit(5 + 6 / 12, "feet"),
  27880. default: true
  27881. },
  27882. ]
  27883. ))
  27884. characterMakers.push(() => makeCharacter(
  27885. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27886. {
  27887. front: {
  27888. height: math.unit(5 + 9 / 12, "feet"),
  27889. weight: math.unit(130, "lb"),
  27890. name: "Front",
  27891. image: {
  27892. source: "./media/characters/cecelia-swift/front.svg",
  27893. extra: 502 / 484,
  27894. bottom: 23 / 523
  27895. }
  27896. },
  27897. back: {
  27898. height: math.unit(5 + 9 / 12, "feet"),
  27899. weight: math.unit(130, "lb"),
  27900. name: "Back",
  27901. image: {
  27902. source: "./media/characters/cecelia-swift/back.svg",
  27903. extra: 499 / 485,
  27904. bottom: 12 / 511
  27905. }
  27906. },
  27907. head: {
  27908. height: math.unit(0.90, "feet"),
  27909. name: "Head",
  27910. image: {
  27911. source: "./media/characters/cecelia-swift/head.svg"
  27912. }
  27913. },
  27914. rump: {
  27915. height: math.unit(1.75, "feet"),
  27916. name: "Rump",
  27917. image: {
  27918. source: "./media/characters/cecelia-swift/rump.svg"
  27919. }
  27920. },
  27921. },
  27922. [
  27923. {
  27924. name: "Normal",
  27925. height: math.unit(5 + 9 / 12, "feet"),
  27926. default: true
  27927. },
  27928. {
  27929. name: "Big",
  27930. height: math.unit(50, "feet")
  27931. },
  27932. {
  27933. name: "Macro",
  27934. height: math.unit(100, "feet")
  27935. },
  27936. {
  27937. name: "Macro+",
  27938. height: math.unit(500, "feet")
  27939. },
  27940. {
  27941. name: "Macro++",
  27942. height: math.unit(1000, "feet")
  27943. },
  27944. ]
  27945. ))
  27946. characterMakers.push(() => makeCharacter(
  27947. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27948. {
  27949. front: {
  27950. height: math.unit(6, "feet"),
  27951. weight: math.unit(150, "lb"),
  27952. name: "Front",
  27953. image: {
  27954. source: "./media/characters/kaunan/front.svg",
  27955. extra: 2890 / 2523,
  27956. bottom: 49 / 2939
  27957. }
  27958. },
  27959. },
  27960. [
  27961. {
  27962. name: "Macro",
  27963. height: math.unit(150, "feet"),
  27964. default: true
  27965. },
  27966. ]
  27967. ))
  27968. characterMakers.push(() => makeCharacter(
  27969. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27970. {
  27971. front: {
  27972. height: math.unit(175, "cm"),
  27973. weight: math.unit(60, "kg"),
  27974. name: "Front",
  27975. image: {
  27976. source: "./media/characters/fei/front.svg",
  27977. extra: 1873/1723,
  27978. bottom: 53/1926
  27979. }
  27980. },
  27981. },
  27982. [
  27983. {
  27984. name: "Mortal",
  27985. height: math.unit(175, "cm")
  27986. },
  27987. {
  27988. name: "Normal",
  27989. height: math.unit(3500, "m"),
  27990. default: true
  27991. },
  27992. {
  27993. name: "Stroll",
  27994. height: math.unit(17.5, "km")
  27995. },
  27996. {
  27997. name: "Showoff",
  27998. height: math.unit(175, "km")
  27999. },
  28000. ]
  28001. ))
  28002. characterMakers.push(() => makeCharacter(
  28003. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28004. {
  28005. front: {
  28006. height: math.unit(7, "feet"),
  28007. weight: math.unit(1000, "kg"),
  28008. name: "Front",
  28009. image: {
  28010. source: "./media/characters/edrax/front.svg",
  28011. extra: 2838 / 2550,
  28012. bottom: 130 / 2968
  28013. }
  28014. },
  28015. },
  28016. [
  28017. {
  28018. name: "Small",
  28019. height: math.unit(7, "feet")
  28020. },
  28021. {
  28022. name: "Normal",
  28023. height: math.unit(1500, "meters")
  28024. },
  28025. {
  28026. name: "Mega",
  28027. height: math.unit(12000000, "km"),
  28028. default: true
  28029. },
  28030. {
  28031. name: "Megamacro",
  28032. height: math.unit(10600000, "lightyears")
  28033. },
  28034. {
  28035. name: "Hypermacro",
  28036. height: math.unit(256, "yottameters")
  28037. },
  28038. ]
  28039. ))
  28040. characterMakers.push(() => makeCharacter(
  28041. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28042. {
  28043. front: {
  28044. height: math.unit(10, "feet"),
  28045. weight: math.unit(750, "lb"),
  28046. name: "Front",
  28047. image: {
  28048. source: "./media/characters/clove/front.svg",
  28049. extra: 2031 / 1860,
  28050. bottom: 47.8 / 2080
  28051. }
  28052. },
  28053. back: {
  28054. height: math.unit(10, "feet"),
  28055. weight: math.unit(750, "lb"),
  28056. name: "Back",
  28057. image: {
  28058. source: "./media/characters/clove/back.svg",
  28059. extra: 2025 / 1859,
  28060. bottom: 46 / 2071
  28061. }
  28062. },
  28063. },
  28064. [
  28065. {
  28066. name: "Normal",
  28067. height: math.unit(10, "feet"),
  28068. default: true
  28069. },
  28070. ]
  28071. ))
  28072. characterMakers.push(() => makeCharacter(
  28073. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28074. {
  28075. front: {
  28076. height: math.unit(4, "feet"),
  28077. weight: math.unit(50, "lb"),
  28078. name: "Front",
  28079. image: {
  28080. source: "./media/characters/alex-rabbit/front.svg",
  28081. extra: 507 / 458,
  28082. bottom: 18.5 / 527
  28083. }
  28084. },
  28085. back: {
  28086. height: math.unit(4, "feet"),
  28087. weight: math.unit(50, "lb"),
  28088. name: "Back",
  28089. image: {
  28090. source: "./media/characters/alex-rabbit/back.svg",
  28091. extra: 502 / 460,
  28092. bottom: 18.9 / 521
  28093. }
  28094. },
  28095. },
  28096. [
  28097. {
  28098. name: "Normal",
  28099. height: math.unit(4, "feet"),
  28100. default: true
  28101. },
  28102. ]
  28103. ))
  28104. characterMakers.push(() => makeCharacter(
  28105. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28106. {
  28107. front: {
  28108. height: math.unit(1 + 3 / 12, "feet"),
  28109. weight: math.unit(80, "lb"),
  28110. name: "Front",
  28111. image: {
  28112. source: "./media/characters/zander-rose/front.svg",
  28113. extra: 916 / 797,
  28114. bottom: 17 / 933
  28115. }
  28116. },
  28117. back: {
  28118. height: math.unit(1 + 3 / 12, "feet"),
  28119. weight: math.unit(80, "lb"),
  28120. name: "Back",
  28121. image: {
  28122. source: "./media/characters/zander-rose/back.svg",
  28123. extra: 903 / 779,
  28124. bottom: 31 / 934
  28125. }
  28126. },
  28127. },
  28128. [
  28129. {
  28130. name: "Normal",
  28131. height: math.unit(1 + 3 / 12, "feet"),
  28132. default: true
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28138. {
  28139. anthro: {
  28140. height: math.unit(6, "feet"),
  28141. weight: math.unit(150, "lb"),
  28142. name: "Anthro",
  28143. image: {
  28144. source: "./media/characters/razz/anthro.svg",
  28145. extra: 1437 / 1343,
  28146. bottom: 48 / 1485
  28147. }
  28148. },
  28149. feral: {
  28150. height: math.unit(6, "feet"),
  28151. weight: math.unit(150, "lb"),
  28152. name: "Feral",
  28153. image: {
  28154. source: "./media/characters/razz/feral.svg",
  28155. extra: 2569 / 1385,
  28156. bottom: 95 / 2664
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(6, "feet"),
  28164. default: true
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28170. {
  28171. front: {
  28172. height: math.unit(9 + 4 / 12, "feet"),
  28173. weight: math.unit(500, "lb"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/morrigan/front.svg",
  28177. extra: 2707 / 2579,
  28178. bottom: 156 / 2863
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(9 + 4 / 12, "feet"),
  28186. default: true
  28187. },
  28188. ]
  28189. ))
  28190. characterMakers.push(() => makeCharacter(
  28191. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28192. {
  28193. front: {
  28194. height: math.unit(5, "stories"),
  28195. weight: math.unit(4000, "lb"),
  28196. name: "Front",
  28197. image: {
  28198. source: "./media/characters/jenene/front.svg",
  28199. extra: 1780 / 1710,
  28200. bottom: 57 / 1837
  28201. }
  28202. },
  28203. },
  28204. [
  28205. {
  28206. name: "Normal",
  28207. height: math.unit(5, "stories"),
  28208. default: true
  28209. },
  28210. ]
  28211. ))
  28212. characterMakers.push(() => makeCharacter(
  28213. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28214. {
  28215. taurSfw: {
  28216. height: math.unit(10, "meters"),
  28217. weight: math.unit(17500, "kg"),
  28218. name: "Taur",
  28219. image: {
  28220. source: "./media/characters/faey/taur-sfw.svg",
  28221. extra: 1200 / 968,
  28222. bottom: 41 / 1241
  28223. }
  28224. },
  28225. chestmaw: {
  28226. height: math.unit(2.01, "meters"),
  28227. name: "Chestmaw",
  28228. image: {
  28229. source: "./media/characters/faey/chestmaw.svg"
  28230. }
  28231. },
  28232. foot: {
  28233. height: math.unit(2.43, "meters"),
  28234. name: "Foot",
  28235. image: {
  28236. source: "./media/characters/faey/foot.svg"
  28237. }
  28238. },
  28239. jaws: {
  28240. height: math.unit(1.66, "meters"),
  28241. name: "Jaws",
  28242. image: {
  28243. source: "./media/characters/faey/jaws.svg"
  28244. }
  28245. },
  28246. tongues: {
  28247. height: math.unit(2.01, "meters"),
  28248. name: "Tongues",
  28249. image: {
  28250. source: "./media/characters/faey/tongues.svg"
  28251. }
  28252. },
  28253. },
  28254. [
  28255. {
  28256. name: "Small",
  28257. height: math.unit(10, "meters"),
  28258. default: true
  28259. },
  28260. {
  28261. name: "Big",
  28262. height: math.unit(500000, "km")
  28263. },
  28264. ]
  28265. ))
  28266. characterMakers.push(() => makeCharacter(
  28267. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28268. {
  28269. front: {
  28270. height: math.unit(7, "feet"),
  28271. weight: math.unit(275, "lb"),
  28272. name: "Front",
  28273. image: {
  28274. source: "./media/characters/roku/front.svg",
  28275. extra: 903 / 878,
  28276. bottom: 37 / 940
  28277. }
  28278. },
  28279. },
  28280. [
  28281. {
  28282. name: "Normal",
  28283. height: math.unit(7, "feet"),
  28284. default: true
  28285. },
  28286. {
  28287. name: "Macro",
  28288. height: math.unit(500, "feet")
  28289. },
  28290. {
  28291. name: "Megamacro",
  28292. height: math.unit(200, "miles")
  28293. },
  28294. ]
  28295. ))
  28296. characterMakers.push(() => makeCharacter(
  28297. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28298. {
  28299. front: {
  28300. height: math.unit(6 + 2 / 12, "feet"),
  28301. weight: math.unit(150, "lb"),
  28302. name: "Front",
  28303. image: {
  28304. source: "./media/characters/lira/front.svg",
  28305. extra: 1727 / 1605,
  28306. bottom: 26 / 1753
  28307. }
  28308. },
  28309. back: {
  28310. height: math.unit(6 + 2 / 12, "feet"),
  28311. weight: math.unit(150, "lb"),
  28312. name: "Back",
  28313. image: {
  28314. source: "./media/characters/lira/back.svg",
  28315. extra: 1713/1621,
  28316. bottom: 20/1733
  28317. }
  28318. },
  28319. hand: {
  28320. height: math.unit(0.75, "feet"),
  28321. name: "Hand",
  28322. image: {
  28323. source: "./media/characters/lira/hand.svg"
  28324. }
  28325. },
  28326. maw: {
  28327. height: math.unit(0.65, "feet"),
  28328. name: "Maw",
  28329. image: {
  28330. source: "./media/characters/lira/maw.svg"
  28331. }
  28332. },
  28333. pawDigi: {
  28334. height: math.unit(1.6, "feet"),
  28335. name: "Paw Digi",
  28336. image: {
  28337. source: "./media/characters/lira/paw-digi.svg"
  28338. }
  28339. },
  28340. pawPlanti: {
  28341. height: math.unit(1.4, "feet"),
  28342. name: "Paw Planti",
  28343. image: {
  28344. source: "./media/characters/lira/paw-planti.svg"
  28345. }
  28346. },
  28347. },
  28348. [
  28349. {
  28350. name: "Normal",
  28351. height: math.unit(6 + 2 / 12, "feet"),
  28352. default: true
  28353. },
  28354. {
  28355. name: "Macro",
  28356. height: math.unit(100, "feet")
  28357. },
  28358. {
  28359. name: "Macro²",
  28360. height: math.unit(1600, "feet")
  28361. },
  28362. {
  28363. name: "Planetary",
  28364. height: math.unit(20, "earths")
  28365. },
  28366. ]
  28367. ))
  28368. characterMakers.push(() => makeCharacter(
  28369. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28370. {
  28371. front: {
  28372. height: math.unit(6, "feet"),
  28373. weight: math.unit(150, "lb"),
  28374. name: "Front",
  28375. image: {
  28376. source: "./media/characters/hadjet/front.svg",
  28377. extra: 1480 / 1346,
  28378. bottom: 26 / 1506
  28379. }
  28380. },
  28381. frontNsfw: {
  28382. height: math.unit(6, "feet"),
  28383. weight: math.unit(150, "lb"),
  28384. name: "Front (NSFW)",
  28385. image: {
  28386. source: "./media/characters/hadjet/front-nsfw.svg",
  28387. extra: 1440 / 1358,
  28388. bottom: 52 / 1492
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Macro",
  28395. height: math.unit(10, "stories"),
  28396. default: true
  28397. },
  28398. {
  28399. name: "Megamacro",
  28400. height: math.unit(1.5, "miles")
  28401. },
  28402. {
  28403. name: "Megamacro+",
  28404. height: math.unit(5, "miles")
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28410. {
  28411. side: {
  28412. height: math.unit(106, "feet"),
  28413. weight: math.unit(500, "tonnes"),
  28414. name: "Side",
  28415. image: {
  28416. source: "./media/characters/kodran/side.svg",
  28417. extra: 553 / 480,
  28418. bottom: 33 / 586
  28419. }
  28420. },
  28421. front: {
  28422. height: math.unit(132, "feet"),
  28423. weight: math.unit(500, "tonnes"),
  28424. name: "Front",
  28425. image: {
  28426. source: "./media/characters/kodran/front.svg",
  28427. extra: 667 / 643,
  28428. bottom: 42 / 709
  28429. }
  28430. },
  28431. flying: {
  28432. height: math.unit(350, "feet"),
  28433. weight: math.unit(500, "tonnes"),
  28434. name: "Flying",
  28435. image: {
  28436. source: "./media/characters/kodran/flying.svg"
  28437. }
  28438. },
  28439. foot: {
  28440. height: math.unit(33, "feet"),
  28441. name: "Foot",
  28442. image: {
  28443. source: "./media/characters/kodran/foot.svg"
  28444. }
  28445. },
  28446. footFront: {
  28447. height: math.unit(19, "feet"),
  28448. name: "Foot (Front)",
  28449. image: {
  28450. source: "./media/characters/kodran/foot-front.svg",
  28451. extra: 261 / 261,
  28452. bottom: 91 / 352
  28453. }
  28454. },
  28455. headFront: {
  28456. height: math.unit(53, "feet"),
  28457. name: "Head (Front)",
  28458. image: {
  28459. source: "./media/characters/kodran/head-front.svg"
  28460. }
  28461. },
  28462. headSide: {
  28463. height: math.unit(65, "feet"),
  28464. name: "Head (Side)",
  28465. image: {
  28466. source: "./media/characters/kodran/head-side.svg"
  28467. }
  28468. },
  28469. throat: {
  28470. height: math.unit(79, "feet"),
  28471. name: "Throat",
  28472. image: {
  28473. source: "./media/characters/kodran/throat.svg"
  28474. }
  28475. },
  28476. },
  28477. [
  28478. {
  28479. name: "Large",
  28480. height: math.unit(106, "feet"),
  28481. default: true
  28482. },
  28483. ]
  28484. ))
  28485. characterMakers.push(() => makeCharacter(
  28486. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28487. {
  28488. side: {
  28489. height: math.unit(11, "feet"),
  28490. weight: math.unit(150, "lb"),
  28491. name: "Side",
  28492. image: {
  28493. source: "./media/characters/pyxaron/side.svg",
  28494. extra: 305 / 195,
  28495. bottom: 17 / 322
  28496. }
  28497. },
  28498. },
  28499. [
  28500. {
  28501. name: "Normal",
  28502. height: math.unit(11, "feet"),
  28503. default: true
  28504. },
  28505. ]
  28506. ))
  28507. characterMakers.push(() => makeCharacter(
  28508. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28509. {
  28510. front: {
  28511. height: math.unit(6, "feet"),
  28512. weight: math.unit(150, "lb"),
  28513. name: "Front",
  28514. image: {
  28515. source: "./media/characters/meep/front.svg",
  28516. extra: 88 / 80,
  28517. bottom: 6 / 94
  28518. }
  28519. },
  28520. },
  28521. [
  28522. {
  28523. name: "Fun Sized",
  28524. height: math.unit(2, "inches"),
  28525. default: true
  28526. },
  28527. {
  28528. name: "Friend Sized",
  28529. height: math.unit(8, "inches")
  28530. },
  28531. ]
  28532. ))
  28533. characterMakers.push(() => makeCharacter(
  28534. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28535. {
  28536. front: {
  28537. height: math.unit(15, "feet"),
  28538. weight: math.unit(2500, "lb"),
  28539. name: "Front",
  28540. image: {
  28541. source: "./media/characters/holly-rabbit/front.svg",
  28542. extra: 1433 / 1233,
  28543. bottom: 125 / 1558
  28544. }
  28545. },
  28546. dick: {
  28547. height: math.unit(4.6, "feet"),
  28548. name: "Dick",
  28549. image: {
  28550. source: "./media/characters/holly-rabbit/dick.svg"
  28551. }
  28552. },
  28553. },
  28554. [
  28555. {
  28556. name: "Normal",
  28557. height: math.unit(15, "feet"),
  28558. default: true
  28559. },
  28560. {
  28561. name: "Macro",
  28562. height: math.unit(250, "feet")
  28563. },
  28564. {
  28565. name: "Macro+",
  28566. height: math.unit(2500, "feet")
  28567. },
  28568. ]
  28569. ))
  28570. characterMakers.push(() => makeCharacter(
  28571. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28572. {
  28573. front: {
  28574. height: math.unit(3.02, "meters"),
  28575. weight: math.unit(500, "kg"),
  28576. name: "Front",
  28577. image: {
  28578. source: "./media/characters/drena/front.svg",
  28579. extra: 282 / 243,
  28580. bottom: 8 / 290
  28581. }
  28582. },
  28583. side: {
  28584. height: math.unit(3.02, "meters"),
  28585. weight: math.unit(500, "kg"),
  28586. name: "Side",
  28587. image: {
  28588. source: "./media/characters/drena/side.svg",
  28589. extra: 280 / 245,
  28590. bottom: 10 / 290
  28591. }
  28592. },
  28593. back: {
  28594. height: math.unit(3.02, "meters"),
  28595. weight: math.unit(500, "kg"),
  28596. name: "Back",
  28597. image: {
  28598. source: "./media/characters/drena/back.svg",
  28599. extra: 278 / 243,
  28600. bottom: 2 / 280
  28601. }
  28602. },
  28603. foot: {
  28604. height: math.unit(0.75, "meters"),
  28605. name: "Foot",
  28606. image: {
  28607. source: "./media/characters/drena/foot.svg"
  28608. }
  28609. },
  28610. maw: {
  28611. height: math.unit(0.82, "meters"),
  28612. name: "Maw",
  28613. image: {
  28614. source: "./media/characters/drena/maw.svg"
  28615. }
  28616. },
  28617. rump: {
  28618. height: math.unit(0.93, "meters"),
  28619. name: "Rump",
  28620. image: {
  28621. source: "./media/characters/drena/rump.svg"
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Normal",
  28628. height: math.unit(3.02, "meters"),
  28629. default: true
  28630. },
  28631. ]
  28632. ))
  28633. characterMakers.push(() => makeCharacter(
  28634. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28635. {
  28636. front: {
  28637. height: math.unit(6 + 4 / 12, "feet"),
  28638. weight: math.unit(250, "lb"),
  28639. name: "Front",
  28640. image: {
  28641. source: "./media/characters/remmyzilla/front.svg",
  28642. extra: 4033 / 3588,
  28643. bottom: 123 / 4156
  28644. }
  28645. },
  28646. back: {
  28647. height: math.unit(6 + 4 / 12, "feet"),
  28648. weight: math.unit(250, "lb"),
  28649. name: "Back",
  28650. image: {
  28651. source: "./media/characters/remmyzilla/back.svg",
  28652. extra: 2687 / 2555,
  28653. bottom: 48 / 2735
  28654. }
  28655. },
  28656. paw: {
  28657. height: math.unit(1.73, "feet"),
  28658. name: "Paw",
  28659. image: {
  28660. source: "./media/characters/remmyzilla/paw.svg"
  28661. }
  28662. },
  28663. maw: {
  28664. height: math.unit(1.73, "feet"),
  28665. name: "Maw",
  28666. image: {
  28667. source: "./media/characters/remmyzilla/maw.svg"
  28668. }
  28669. },
  28670. },
  28671. [
  28672. {
  28673. name: "Normal",
  28674. height: math.unit(6 + 4 / 12, "feet")
  28675. },
  28676. {
  28677. name: "Minimacro",
  28678. height: math.unit(12 + 8 / 12, "feet")
  28679. },
  28680. {
  28681. name: "Normal",
  28682. height: math.unit(640, "feet"),
  28683. default: true
  28684. },
  28685. {
  28686. name: "Megamacro",
  28687. height: math.unit(6400, "feet")
  28688. },
  28689. {
  28690. name: "Gigamacro",
  28691. height: math.unit(64000, "miles")
  28692. },
  28693. ]
  28694. ))
  28695. characterMakers.push(() => makeCharacter(
  28696. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28697. {
  28698. front: {
  28699. height: math.unit(2.5, "meters"),
  28700. weight: math.unit(300, "lb"),
  28701. name: "Front",
  28702. image: {
  28703. source: "./media/characters/lawrence/front.svg",
  28704. extra: 357 / 335,
  28705. bottom: 30 / 387
  28706. }
  28707. },
  28708. back: {
  28709. height: math.unit(2.5, "meters"),
  28710. weight: math.unit(300, "lb"),
  28711. name: "Back",
  28712. image: {
  28713. source: "./media/characters/lawrence/back.svg",
  28714. extra: 357 / 338,
  28715. bottom: 16 / 373
  28716. }
  28717. },
  28718. head: {
  28719. height: math.unit(0.9, "meter"),
  28720. name: "Head",
  28721. image: {
  28722. source: "./media/characters/lawrence/head.svg"
  28723. }
  28724. },
  28725. maw: {
  28726. height: math.unit(0.7, "meter"),
  28727. name: "Maw",
  28728. image: {
  28729. source: "./media/characters/lawrence/maw.svg"
  28730. }
  28731. },
  28732. footBottom: {
  28733. height: math.unit(0.5, "meter"),
  28734. name: "Foot (Bottom)",
  28735. image: {
  28736. source: "./media/characters/lawrence/foot-bottom.svg"
  28737. }
  28738. },
  28739. footTop: {
  28740. height: math.unit(0.5, "meter"),
  28741. name: "Foot (Top)",
  28742. image: {
  28743. source: "./media/characters/lawrence/foot-top.svg"
  28744. }
  28745. },
  28746. },
  28747. [
  28748. {
  28749. name: "Normal",
  28750. height: math.unit(2.5, "meters"),
  28751. default: true
  28752. },
  28753. {
  28754. name: "Macro",
  28755. height: math.unit(95, "meters")
  28756. },
  28757. {
  28758. name: "Megamacro",
  28759. height: math.unit(150, "km")
  28760. },
  28761. ]
  28762. ))
  28763. characterMakers.push(() => makeCharacter(
  28764. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28765. {
  28766. front: {
  28767. height: math.unit(4.2, "meters"),
  28768. name: "Front",
  28769. image: {
  28770. source: "./media/characters/sydney/front.svg",
  28771. extra: 1323 / 1277,
  28772. bottom: 111 / 1434
  28773. }
  28774. },
  28775. },
  28776. [
  28777. {
  28778. name: "Normal",
  28779. height: math.unit(4.2, "meters"),
  28780. default: true
  28781. },
  28782. ]
  28783. ))
  28784. characterMakers.push(() => makeCharacter(
  28785. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28786. {
  28787. back: {
  28788. height: math.unit(201, "feet"),
  28789. name: "Back",
  28790. image: {
  28791. source: "./media/characters/jessica/back.svg",
  28792. extra: 273 / 259,
  28793. bottom: 7 / 280
  28794. }
  28795. },
  28796. },
  28797. [
  28798. {
  28799. name: "Normal",
  28800. height: math.unit(201, "feet"),
  28801. default: true
  28802. },
  28803. {
  28804. name: "Megamacro",
  28805. height: math.unit(8, "miles")
  28806. },
  28807. ]
  28808. ))
  28809. characterMakers.push(() => makeCharacter(
  28810. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28811. {
  28812. side: {
  28813. height: math.unit(320, "cm"),
  28814. name: "Side",
  28815. image: {
  28816. source: "./media/characters/victoria/side.svg",
  28817. extra: 778 / 346,
  28818. bottom: 56 / 834
  28819. }
  28820. },
  28821. maw: {
  28822. height: math.unit(5.9, "feet"),
  28823. name: "Maw",
  28824. image: {
  28825. source: "./media/characters/victoria/maw.svg"
  28826. }
  28827. },
  28828. },
  28829. [
  28830. {
  28831. name: "Normal",
  28832. height: math.unit(320, "cm"),
  28833. default: true
  28834. },
  28835. ]
  28836. ))
  28837. characterMakers.push(() => makeCharacter(
  28838. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28839. {
  28840. front: {
  28841. height: math.unit(5 + 6 / 12, "feet"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/cat/front.svg",
  28845. extra: 1449/1295,
  28846. bottom: 34/1483
  28847. }
  28848. },
  28849. back: {
  28850. height: math.unit(5 + 6 / 12, "feet"),
  28851. name: "Back",
  28852. image: {
  28853. source: "./media/characters/cat/back.svg",
  28854. extra: 1466/1301,
  28855. bottom: 19/1485
  28856. }
  28857. },
  28858. taur: {
  28859. height: math.unit(7, "feet"),
  28860. name: "Taur",
  28861. image: {
  28862. source: "./media/characters/cat/taur.svg",
  28863. extra: 1389/1233,
  28864. bottom: 83/1472
  28865. }
  28866. },
  28867. lucarioFront: {
  28868. height: math.unit(4, "feet"),
  28869. name: "Lucario (Front)",
  28870. image: {
  28871. source: "./media/characters/cat/lucario-front.svg",
  28872. extra: 1149/1019,
  28873. bottom: 84/1233
  28874. }
  28875. },
  28876. lucarioBack: {
  28877. height: math.unit(4, "feet"),
  28878. name: "Lucario (Back)",
  28879. image: {
  28880. source: "./media/characters/cat/lucario-back.svg",
  28881. extra: 1190/1059,
  28882. bottom: 33/1223
  28883. }
  28884. },
  28885. megaLucario: {
  28886. height: math.unit(4, "feet"),
  28887. name: "Mega Lucario",
  28888. image: {
  28889. source: "./media/characters/cat/mega-lucario.svg",
  28890. extra: 1515 / 1319,
  28891. bottom: 63 / 1578
  28892. }
  28893. },
  28894. nickit: {
  28895. height: math.unit(2, "feet"),
  28896. name: "Nickit",
  28897. image: {
  28898. source: "./media/characters/cat/nickit.svg",
  28899. extra: 1980 / 1585,
  28900. bottom: 102 / 2082
  28901. }
  28902. },
  28903. lopunnyFront: {
  28904. height: math.unit(5, "feet"),
  28905. name: "Lopunny (Front)",
  28906. image: {
  28907. source: "./media/characters/cat/lopunny-front.svg",
  28908. extra: 1782 / 1469,
  28909. bottom: 38 / 1820
  28910. }
  28911. },
  28912. lopunnyBack: {
  28913. height: math.unit(5, "feet"),
  28914. name: "Lopunny (Back)",
  28915. image: {
  28916. source: "./media/characters/cat/lopunny-back.svg",
  28917. extra: 1660 / 1490,
  28918. bottom: 25 / 1685
  28919. }
  28920. },
  28921. },
  28922. [
  28923. {
  28924. name: "Really small",
  28925. height: math.unit(1, "nm")
  28926. },
  28927. {
  28928. name: "Micro",
  28929. height: math.unit(5, "inches")
  28930. },
  28931. {
  28932. name: "Normal",
  28933. height: math.unit(5 + 6 / 12, "feet"),
  28934. default: true
  28935. },
  28936. {
  28937. name: "Macro",
  28938. height: math.unit(50, "feet")
  28939. },
  28940. {
  28941. name: "Macro+",
  28942. height: math.unit(150, "feet")
  28943. },
  28944. {
  28945. name: "Megamacro",
  28946. height: math.unit(100, "miles")
  28947. },
  28948. ]
  28949. ))
  28950. characterMakers.push(() => makeCharacter(
  28951. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28952. {
  28953. front: {
  28954. height: math.unit(63.4, "meters"),
  28955. weight: math.unit(3.28349e+6, "kilograms"),
  28956. name: "Front",
  28957. image: {
  28958. source: "./media/characters/kirina-violet/front.svg",
  28959. extra: 2812 / 2725,
  28960. bottom: 0 / 2812
  28961. }
  28962. },
  28963. back: {
  28964. height: math.unit(63.4, "meters"),
  28965. weight: math.unit(3.28349e+6, "kilograms"),
  28966. name: "Back",
  28967. image: {
  28968. source: "./media/characters/kirina-violet/back.svg",
  28969. extra: 2812 / 2725,
  28970. bottom: 0 / 2812
  28971. }
  28972. },
  28973. mouth: {
  28974. height: math.unit(4.35, "meters"),
  28975. name: "Mouth",
  28976. image: {
  28977. source: "./media/characters/kirina-violet/mouth.svg"
  28978. }
  28979. },
  28980. paw: {
  28981. height: math.unit(5.6, "meters"),
  28982. name: "Paw",
  28983. image: {
  28984. source: "./media/characters/kirina-violet/paw.svg"
  28985. }
  28986. },
  28987. tail: {
  28988. height: math.unit(18, "meters"),
  28989. name: "Tail",
  28990. image: {
  28991. source: "./media/characters/kirina-violet/tail.svg"
  28992. }
  28993. },
  28994. },
  28995. [
  28996. {
  28997. name: "Macro",
  28998. height: math.unit(63.4, "meters"),
  28999. default: true
  29000. },
  29001. ]
  29002. ))
  29003. characterMakers.push(() => makeCharacter(
  29004. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29005. {
  29006. front: {
  29007. height: math.unit(75, "feet"),
  29008. name: "Front",
  29009. image: {
  29010. source: "./media/characters/cat-gigachu/front.svg",
  29011. extra: 1239/1027,
  29012. bottom: 32/1271
  29013. }
  29014. },
  29015. back: {
  29016. height: math.unit(75, "feet"),
  29017. name: "Back",
  29018. image: {
  29019. source: "./media/characters/cat-gigachu/back.svg",
  29020. extra: 1229/1030,
  29021. bottom: 9/1238
  29022. }
  29023. },
  29024. },
  29025. [
  29026. {
  29027. name: "Dynamax",
  29028. height: math.unit(75, "feet"),
  29029. default: true
  29030. },
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(6, "feet"),
  29038. weight: math.unit(150, "lb"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/sfaiyan/front.svg",
  29042. extra: 999 / 978,
  29043. bottom: 5 / 1004
  29044. }
  29045. },
  29046. },
  29047. [
  29048. {
  29049. name: "Normal",
  29050. height: math.unit(1.82, "meters")
  29051. },
  29052. {
  29053. name: "Giant",
  29054. height: math.unit(2.27, "km"),
  29055. default: true
  29056. },
  29057. ]
  29058. ))
  29059. characterMakers.push(() => makeCharacter(
  29060. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29061. {
  29062. front: {
  29063. height: math.unit(179, "cm"),
  29064. weight: math.unit(100, "kg"),
  29065. name: "Front",
  29066. image: {
  29067. source: "./media/characters/raunehkeli/front.svg",
  29068. extra: 1934 / 1926,
  29069. bottom: 0 / 1934
  29070. }
  29071. },
  29072. },
  29073. [
  29074. {
  29075. name: "Normal",
  29076. height: math.unit(179, "cm")
  29077. },
  29078. {
  29079. name: "Maximum",
  29080. height: math.unit(575, "meters"),
  29081. default: true
  29082. },
  29083. ]
  29084. ))
  29085. characterMakers.push(() => makeCharacter(
  29086. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29087. {
  29088. front: {
  29089. height: math.unit(6, "feet"),
  29090. weight: math.unit(150, "lb"),
  29091. name: "Front",
  29092. image: {
  29093. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29094. extra: 2625 / 2518,
  29095. bottom: 60 / 2685
  29096. }
  29097. },
  29098. },
  29099. [
  29100. {
  29101. name: "Normal",
  29102. height: math.unit(6 + 2 / 12, "feet")
  29103. },
  29104. {
  29105. name: "Macro",
  29106. height: math.unit(1180, "feet"),
  29107. default: true
  29108. },
  29109. ]
  29110. ))
  29111. characterMakers.push(() => makeCharacter(
  29112. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29113. {
  29114. front: {
  29115. height: math.unit(5 + 6 / 12, "feet"),
  29116. weight: math.unit(108, "lb"),
  29117. name: "Front",
  29118. image: {
  29119. source: "./media/characters/lilith-zott/front.svg",
  29120. extra: 2510 / 2238,
  29121. bottom: 100 / 2610
  29122. }
  29123. },
  29124. frontDressed: {
  29125. height: math.unit(5 + 6 / 12, "feet"),
  29126. weight: math.unit(108, "lb"),
  29127. name: "Front (Dressed)",
  29128. image: {
  29129. source: "./media/characters/lilith-zott/front-dressed.svg",
  29130. extra: 2510 / 2238,
  29131. bottom: 100 / 2610
  29132. }
  29133. },
  29134. },
  29135. [
  29136. {
  29137. name: "Normal",
  29138. height: math.unit(5 + 6 / 12, "feet")
  29139. },
  29140. {
  29141. name: "Macro",
  29142. height: math.unit(1030, "feet"),
  29143. default: true
  29144. },
  29145. ]
  29146. ))
  29147. characterMakers.push(() => makeCharacter(
  29148. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29149. {
  29150. front: {
  29151. height: math.unit(6, "feet"),
  29152. weight: math.unit(150, "lb"),
  29153. name: "Front",
  29154. image: {
  29155. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29156. extra: 2567 / 2435,
  29157. bottom: 39 / 2606
  29158. }
  29159. },
  29160. frontSuper: {
  29161. height: math.unit(6, "feet"),
  29162. name: "Front (Super)",
  29163. image: {
  29164. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29165. extra: 2567 / 2435,
  29166. bottom: 39 / 2606
  29167. }
  29168. },
  29169. },
  29170. [
  29171. {
  29172. name: "Normal",
  29173. height: math.unit(5 + 10 / 12, "feet")
  29174. },
  29175. {
  29176. name: "Macro",
  29177. height: math.unit(1100, "feet"),
  29178. default: true
  29179. },
  29180. ]
  29181. ))
  29182. characterMakers.push(() => makeCharacter(
  29183. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29184. {
  29185. front: {
  29186. height: math.unit(100, "miles"),
  29187. name: "Front",
  29188. image: {
  29189. source: "./media/characters/sona/front.svg",
  29190. extra: 2433 / 2201,
  29191. bottom: 53 / 2486
  29192. }
  29193. },
  29194. foot: {
  29195. height: math.unit(16.1, "miles"),
  29196. name: "Foot",
  29197. image: {
  29198. source: "./media/characters/sona/foot.svg"
  29199. }
  29200. },
  29201. },
  29202. [
  29203. {
  29204. name: "Macro",
  29205. height: math.unit(100, "miles"),
  29206. default: true
  29207. },
  29208. ]
  29209. ))
  29210. characterMakers.push(() => makeCharacter(
  29211. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29212. {
  29213. front: {
  29214. height: math.unit(6, "feet"),
  29215. weight: math.unit(150, "lb"),
  29216. name: "Front",
  29217. image: {
  29218. source: "./media/characters/bailey/front.svg",
  29219. extra: 1778 / 1724,
  29220. bottom: 30 / 1808
  29221. }
  29222. },
  29223. },
  29224. [
  29225. {
  29226. name: "Micro",
  29227. height: math.unit(4, "inches")
  29228. },
  29229. {
  29230. name: "Normal",
  29231. height: math.unit(5 + 5 / 12, "feet"),
  29232. default: true
  29233. },
  29234. {
  29235. name: "Macro",
  29236. height: math.unit(250, "feet")
  29237. },
  29238. {
  29239. name: "Megamacro",
  29240. height: math.unit(100, "miles")
  29241. },
  29242. ]
  29243. ))
  29244. characterMakers.push(() => makeCharacter(
  29245. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29246. {
  29247. front: {
  29248. height: math.unit(5 + 2 / 12, "feet"),
  29249. weight: math.unit(120, "lb"),
  29250. name: "Front",
  29251. image: {
  29252. source: "./media/characters/snaps/front.svg",
  29253. extra: 2370 / 2177,
  29254. bottom: 48 / 2418
  29255. }
  29256. },
  29257. back: {
  29258. height: math.unit(5 + 2 / 12, "feet"),
  29259. weight: math.unit(120, "lb"),
  29260. name: "Back",
  29261. image: {
  29262. source: "./media/characters/snaps/back.svg",
  29263. extra: 2408 / 2258,
  29264. bottom: 15 / 2423
  29265. }
  29266. },
  29267. },
  29268. [
  29269. {
  29270. name: "Micro",
  29271. height: math.unit(9, "inches")
  29272. },
  29273. {
  29274. name: "Normal",
  29275. height: math.unit(5 + 2 / 12, "feet"),
  29276. default: true
  29277. },
  29278. {
  29279. name: "Mini Macro",
  29280. height: math.unit(10, "feet")
  29281. },
  29282. ]
  29283. ))
  29284. characterMakers.push(() => makeCharacter(
  29285. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29286. {
  29287. front: {
  29288. height: math.unit(1.8, "meters"),
  29289. weight: math.unit(85, "kg"),
  29290. name: "Front",
  29291. image: {
  29292. source: "./media/characters/azteck/front.svg",
  29293. extra: 2815 / 2625,
  29294. bottom: 89 / 2904
  29295. }
  29296. },
  29297. back: {
  29298. height: math.unit(1.8, "meters"),
  29299. weight: math.unit(85, "kg"),
  29300. name: "Back",
  29301. image: {
  29302. source: "./media/characters/azteck/back.svg",
  29303. extra: 2856 / 2648,
  29304. bottom: 85 / 2941
  29305. }
  29306. },
  29307. frontDressed: {
  29308. height: math.unit(1.8, "meters"),
  29309. weight: math.unit(85, "kg"),
  29310. name: "Front (Dressed)",
  29311. image: {
  29312. source: "./media/characters/azteck/front-dressed.svg",
  29313. extra: 2147 / 2003,
  29314. bottom: 68 / 2215
  29315. }
  29316. },
  29317. head: {
  29318. height: math.unit(0.47, "meters"),
  29319. weight: math.unit(85, "kg"),
  29320. name: "Head",
  29321. image: {
  29322. source: "./media/characters/azteck/head.svg"
  29323. }
  29324. },
  29325. },
  29326. [
  29327. {
  29328. name: "Bite sized",
  29329. height: math.unit(16, "cm")
  29330. },
  29331. {
  29332. name: "Normal",
  29333. height: math.unit(1.8, "meters"),
  29334. default: true
  29335. },
  29336. ]
  29337. ))
  29338. characterMakers.push(() => makeCharacter(
  29339. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29340. {
  29341. front: {
  29342. height: math.unit(6, "feet"),
  29343. weight: math.unit(150, "lb"),
  29344. name: "Front",
  29345. image: {
  29346. source: "./media/characters/pidge/front.svg",
  29347. extra: 620 / 588,
  29348. bottom: 9 / 629
  29349. }
  29350. },
  29351. back: {
  29352. height: math.unit(6, "feet"),
  29353. weight: math.unit(150, "lb"),
  29354. name: "Back",
  29355. image: {
  29356. source: "./media/characters/pidge/back.svg",
  29357. extra: 620 / 588,
  29358. bottom: 9 / 629
  29359. }
  29360. },
  29361. },
  29362. [
  29363. {
  29364. name: "Macro",
  29365. height: math.unit(1, "mile"),
  29366. default: true
  29367. },
  29368. ]
  29369. ))
  29370. characterMakers.push(() => makeCharacter(
  29371. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29372. {
  29373. front: {
  29374. height: math.unit(6, "feet"),
  29375. weight: math.unit(150, "lb"),
  29376. name: "Front",
  29377. image: {
  29378. source: "./media/characters/en/front.svg",
  29379. extra: 1697 / 1563,
  29380. bottom: 103 / 1800
  29381. }
  29382. },
  29383. back: {
  29384. height: math.unit(6, "feet"),
  29385. weight: math.unit(150, "lb"),
  29386. name: "Back",
  29387. image: {
  29388. source: "./media/characters/en/back.svg",
  29389. extra: 1700 / 1570,
  29390. bottom: 51 / 1751
  29391. }
  29392. },
  29393. frontDressed: {
  29394. height: math.unit(6, "feet"),
  29395. weight: math.unit(150, "lb"),
  29396. name: "Front (Dressed)",
  29397. image: {
  29398. source: "./media/characters/en/front-dressed.svg",
  29399. extra: 1697 / 1563,
  29400. bottom: 103 / 1800
  29401. }
  29402. },
  29403. backDressed: {
  29404. height: math.unit(6, "feet"),
  29405. weight: math.unit(150, "lb"),
  29406. name: "Back (Dressed)",
  29407. image: {
  29408. source: "./media/characters/en/back-dressed.svg",
  29409. extra: 1700 / 1570,
  29410. bottom: 51 / 1751
  29411. }
  29412. },
  29413. },
  29414. [
  29415. {
  29416. name: "Macro",
  29417. height: math.unit(210, "feet"),
  29418. default: true
  29419. },
  29420. ]
  29421. ))
  29422. characterMakers.push(() => makeCharacter(
  29423. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29424. {
  29425. front: {
  29426. height: math.unit(6, "feet"),
  29427. weight: math.unit(150, "lb"),
  29428. name: "Front",
  29429. image: {
  29430. source: "./media/characters/haze-orris/front.svg",
  29431. extra: 3975 / 3525,
  29432. bottom: 137 / 4112
  29433. }
  29434. },
  29435. },
  29436. [
  29437. {
  29438. name: "Micro",
  29439. height: math.unit(150, "mm"),
  29440. default: true
  29441. },
  29442. ]
  29443. ))
  29444. characterMakers.push(() => makeCharacter(
  29445. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29446. {
  29447. front: {
  29448. height: math.unit(6, "feet"),
  29449. weight: math.unit(150, "lb"),
  29450. name: "Front",
  29451. image: {
  29452. source: "./media/characters/casselene-yaro/front.svg",
  29453. extra: 4721 / 4541,
  29454. bottom: 82 / 4803
  29455. }
  29456. },
  29457. back: {
  29458. height: math.unit(6, "feet"),
  29459. weight: math.unit(150, "lb"),
  29460. name: "Back",
  29461. image: {
  29462. source: "./media/characters/casselene-yaro/back.svg",
  29463. extra: 4569 / 4377,
  29464. bottom: 69 / 4638
  29465. }
  29466. },
  29467. frontDressed: {
  29468. height: math.unit(6, "feet"),
  29469. weight: math.unit(150, "lb"),
  29470. name: "Front-dressed",
  29471. image: {
  29472. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29473. extra: 4721 / 4541,
  29474. bottom: 82 / 4803
  29475. }
  29476. },
  29477. },
  29478. [
  29479. {
  29480. name: "Macro",
  29481. height: math.unit(190, "feet"),
  29482. default: true
  29483. },
  29484. ]
  29485. ))
  29486. characterMakers.push(() => makeCharacter(
  29487. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29488. {
  29489. front: {
  29490. height: math.unit(6, "feet"),
  29491. weight: math.unit(150, "lb"),
  29492. name: "Front",
  29493. image: {
  29494. source: "./media/characters/myra-rue-delore/front.svg",
  29495. extra: 1340 / 1308,
  29496. bottom: 67 / 1407
  29497. }
  29498. },
  29499. back: {
  29500. height: math.unit(6, "feet"),
  29501. weight: math.unit(150, "lb"),
  29502. name: "Back",
  29503. image: {
  29504. source: "./media/characters/myra-rue-delore/back.svg",
  29505. extra: 1341 / 1310,
  29506. bottom: 40 / 1381
  29507. }
  29508. },
  29509. frontDressed: {
  29510. height: math.unit(6, "feet"),
  29511. weight: math.unit(150, "lb"),
  29512. name: "Front (Dressed)",
  29513. image: {
  29514. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29515. extra: 1340 / 1308,
  29516. bottom: 67 / 1407
  29517. }
  29518. },
  29519. },
  29520. [
  29521. {
  29522. name: "Macro",
  29523. height: math.unit(150, "feet"),
  29524. default: true
  29525. },
  29526. ]
  29527. ))
  29528. characterMakers.push(() => makeCharacter(
  29529. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29530. {
  29531. front: {
  29532. height: math.unit(10, "feet"),
  29533. weight: math.unit(15015, "lb"),
  29534. name: "Front",
  29535. image: {
  29536. source: "./media/characters/fem!plat/front.svg",
  29537. extra: 2799 / 2604,
  29538. bottom: 149 / 2948
  29539. }
  29540. },
  29541. },
  29542. [
  29543. {
  29544. name: "Normal",
  29545. height: math.unit(10, "feet"),
  29546. default: true
  29547. },
  29548. {
  29549. name: "Macro",
  29550. height: math.unit(100, "feet")
  29551. },
  29552. {
  29553. name: "Megamacro",
  29554. height: math.unit(1000, "feet")
  29555. },
  29556. ]
  29557. ))
  29558. characterMakers.push(() => makeCharacter(
  29559. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29560. {
  29561. front: {
  29562. height: math.unit(15 + 5 / 12, "feet"),
  29563. weight: math.unit(4600, "lb"),
  29564. name: "Front",
  29565. image: {
  29566. source: "./media/characters/neapolitan-ananassa/front.svg",
  29567. extra: 2903 / 2736,
  29568. bottom: 0 / 2903
  29569. }
  29570. },
  29571. side: {
  29572. height: math.unit(15 + 5 / 12, "feet"),
  29573. weight: math.unit(4600, "lb"),
  29574. name: "Side",
  29575. image: {
  29576. source: "./media/characters/neapolitan-ananassa/side.svg",
  29577. extra: 2925 / 2719,
  29578. bottom: 0 / 2925
  29579. }
  29580. },
  29581. back: {
  29582. height: math.unit(15 + 5 / 12, "feet"),
  29583. weight: math.unit(4600, "lb"),
  29584. name: "Back",
  29585. image: {
  29586. source: "./media/characters/neapolitan-ananassa/back.svg",
  29587. extra: 2903 / 2736,
  29588. bottom: 0 / 2903
  29589. }
  29590. },
  29591. },
  29592. [
  29593. {
  29594. name: "Normal",
  29595. height: math.unit(15 + 5 / 12, "feet"),
  29596. default: true
  29597. },
  29598. {
  29599. name: "Post-Millenium",
  29600. height: math.unit(35 + 5 / 12, "feet")
  29601. },
  29602. {
  29603. name: "Post-Era",
  29604. height: math.unit(450 + 5 / 12, "feet")
  29605. },
  29606. ]
  29607. ))
  29608. characterMakers.push(() => makeCharacter(
  29609. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29610. {
  29611. front: {
  29612. height: math.unit(300, "meters"),
  29613. weight: math.unit(125000, "tonnes"),
  29614. name: "Front",
  29615. image: {
  29616. source: "./media/characters/pazuzu/front.svg",
  29617. extra: 877 / 794,
  29618. bottom: 47 / 924
  29619. }
  29620. },
  29621. },
  29622. [
  29623. {
  29624. name: "Macro",
  29625. height: math.unit(300, "meters"),
  29626. default: true
  29627. },
  29628. ]
  29629. ))
  29630. characterMakers.push(() => makeCharacter(
  29631. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29632. {
  29633. side: {
  29634. height: math.unit(10 + 7 / 12, "feet"),
  29635. weight: math.unit(2.5, "tons"),
  29636. name: "Side",
  29637. image: {
  29638. source: "./media/characters/aasha/side.svg",
  29639. extra: 1345 / 1245,
  29640. bottom: 111 / 1456
  29641. }
  29642. },
  29643. back: {
  29644. height: math.unit(10 + 7 / 12, "feet"),
  29645. weight: math.unit(2.5, "tons"),
  29646. name: "Back",
  29647. image: {
  29648. source: "./media/characters/aasha/back.svg",
  29649. extra: 1133 / 1057,
  29650. bottom: 257 / 1390
  29651. }
  29652. },
  29653. },
  29654. [
  29655. {
  29656. name: "Normal",
  29657. height: math.unit(10 + 7 / 12, "feet"),
  29658. default: true
  29659. },
  29660. ]
  29661. ))
  29662. characterMakers.push(() => makeCharacter(
  29663. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29664. {
  29665. front: {
  29666. height: math.unit(6 + 3 / 12, "feet"),
  29667. name: "Front",
  29668. image: {
  29669. source: "./media/characters/nevan/front.svg",
  29670. extra: 704 / 704,
  29671. bottom: 28 / 732
  29672. }
  29673. },
  29674. back: {
  29675. height: math.unit(6 + 3 / 12, "feet"),
  29676. name: "Back",
  29677. image: {
  29678. source: "./media/characters/nevan/back.svg",
  29679. extra: 714 / 714,
  29680. bottom: 21 / 735
  29681. }
  29682. },
  29683. frontFlaccid: {
  29684. height: math.unit(6 + 3 / 12, "feet"),
  29685. name: "Front (Flaccid)",
  29686. image: {
  29687. source: "./media/characters/nevan/front-flaccid.svg",
  29688. extra: 704 / 704,
  29689. bottom: 28 / 732
  29690. }
  29691. },
  29692. frontErect: {
  29693. height: math.unit(6 + 3 / 12, "feet"),
  29694. name: "Front (Erect)",
  29695. image: {
  29696. source: "./media/characters/nevan/front-erect.svg",
  29697. extra: 704 / 704,
  29698. bottom: 28 / 732
  29699. }
  29700. },
  29701. backFlaccid: {
  29702. height: math.unit(6 + 3 / 12, "feet"),
  29703. name: "Back (Flaccid)",
  29704. image: {
  29705. source: "./media/characters/nevan/back-flaccid.svg",
  29706. extra: 714 / 714,
  29707. bottom: 21 / 735
  29708. }
  29709. },
  29710. },
  29711. [
  29712. {
  29713. name: "Normal",
  29714. height: math.unit(6 + 3 / 12, "feet"),
  29715. default: true
  29716. },
  29717. ]
  29718. ))
  29719. characterMakers.push(() => makeCharacter(
  29720. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29721. {
  29722. front: {
  29723. height: math.unit(4, "feet"),
  29724. name: "Front",
  29725. image: {
  29726. source: "./media/characters/arhan/front.svg",
  29727. extra: 3368 / 3133,
  29728. bottom: 0 / 3368
  29729. }
  29730. },
  29731. side: {
  29732. height: math.unit(4, "feet"),
  29733. name: "Side",
  29734. image: {
  29735. source: "./media/characters/arhan/side.svg",
  29736. extra: 3347 / 3105,
  29737. bottom: 0 / 3347
  29738. }
  29739. },
  29740. tongue: {
  29741. height: math.unit(1.42, "feet"),
  29742. name: "Tongue",
  29743. image: {
  29744. source: "./media/characters/arhan/tongue.svg"
  29745. }
  29746. },
  29747. head: {
  29748. height: math.unit(0.85, "feet"),
  29749. name: "Head",
  29750. image: {
  29751. source: "./media/characters/arhan/head.svg"
  29752. }
  29753. },
  29754. },
  29755. [
  29756. {
  29757. name: "Normal",
  29758. height: math.unit(4, "feet"),
  29759. default: true
  29760. },
  29761. ]
  29762. ))
  29763. characterMakers.push(() => makeCharacter(
  29764. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29765. {
  29766. front: {
  29767. height: math.unit(5 + 7.5 / 12, "feet"),
  29768. weight: math.unit(120, "lb"),
  29769. name: "Front",
  29770. image: {
  29771. source: "./media/characters/digi-duncan/front.svg",
  29772. extra: 330 / 326,
  29773. bottom: 16 / 346
  29774. }
  29775. },
  29776. side: {
  29777. height: math.unit(5 + 7.5 / 12, "feet"),
  29778. weight: math.unit(120, "lb"),
  29779. name: "Side",
  29780. image: {
  29781. source: "./media/characters/digi-duncan/side.svg",
  29782. extra: 341 / 337,
  29783. bottom: 1 / 342
  29784. }
  29785. },
  29786. back: {
  29787. height: math.unit(5 + 7.5 / 12, "feet"),
  29788. weight: math.unit(120, "lb"),
  29789. name: "Back",
  29790. image: {
  29791. source: "./media/characters/digi-duncan/back.svg",
  29792. extra: 330 / 326,
  29793. bottom: 12 / 342
  29794. }
  29795. },
  29796. },
  29797. [
  29798. {
  29799. name: "Speck",
  29800. height: math.unit(0.25, "mm")
  29801. },
  29802. {
  29803. name: "Micro",
  29804. height: math.unit(5, "mm")
  29805. },
  29806. {
  29807. name: "Tiny",
  29808. height: math.unit(0.5, "inches"),
  29809. default: true
  29810. },
  29811. {
  29812. name: "Human",
  29813. height: math.unit(5 + 7.5 / 12, "feet")
  29814. },
  29815. {
  29816. name: "Minigiant",
  29817. height: math.unit(8 + 5.25, "feet")
  29818. },
  29819. {
  29820. name: "Giant",
  29821. height: math.unit(2000, "feet")
  29822. },
  29823. {
  29824. name: "Mega",
  29825. height: math.unit(371.1, "miles")
  29826. },
  29827. ]
  29828. ))
  29829. characterMakers.push(() => makeCharacter(
  29830. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29831. {
  29832. front: {
  29833. height: math.unit(2, "meters"),
  29834. weight: math.unit(350, "kg"),
  29835. name: "Front",
  29836. image: {
  29837. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29838. extra: 898 / 838,
  29839. bottom: 9 / 907
  29840. }
  29841. },
  29842. },
  29843. [
  29844. {
  29845. name: "Micro",
  29846. height: math.unit(8, "meters")
  29847. },
  29848. {
  29849. name: "Normal",
  29850. height: math.unit(50, "meters"),
  29851. default: true
  29852. },
  29853. {
  29854. name: "Macro",
  29855. height: math.unit(500, "meters")
  29856. },
  29857. ]
  29858. ))
  29859. characterMakers.push(() => makeCharacter(
  29860. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29861. {
  29862. front: {
  29863. height: math.unit(6 + 6 / 12, "feet"),
  29864. name: "Front",
  29865. image: {
  29866. source: "./media/characters/khardesh/front.svg",
  29867. extra: 888 / 797,
  29868. bottom: 25 / 913
  29869. }
  29870. },
  29871. },
  29872. [
  29873. {
  29874. name: "Normal",
  29875. height: math.unit(6 + 6 / 12, "feet"),
  29876. default: true
  29877. },
  29878. {
  29879. name: "Normal+",
  29880. height: math.unit(4, "meters")
  29881. },
  29882. {
  29883. name: "Macro",
  29884. height: math.unit(50, "meters")
  29885. },
  29886. {
  29887. name: "Macro+",
  29888. height: math.unit(100, "meters")
  29889. },
  29890. {
  29891. name: "Megamacro",
  29892. height: math.unit(20, "km")
  29893. },
  29894. ]
  29895. ))
  29896. characterMakers.push(() => makeCharacter(
  29897. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29898. {
  29899. front: {
  29900. height: math.unit(6, "feet"),
  29901. weight: math.unit(150, "lb"),
  29902. name: "Front",
  29903. image: {
  29904. source: "./media/characters/kosho/front.svg",
  29905. extra: 1847 / 1847,
  29906. bottom: 86 / 1933
  29907. }
  29908. },
  29909. },
  29910. [
  29911. {
  29912. name: "Second-stage micro",
  29913. height: math.unit(0.5, "inches")
  29914. },
  29915. {
  29916. name: "First-stage micro",
  29917. height: math.unit(6, "inches")
  29918. },
  29919. {
  29920. name: "Normal",
  29921. height: math.unit(6, "feet"),
  29922. default: true
  29923. },
  29924. {
  29925. name: "First-stage macro",
  29926. height: math.unit(72, "feet")
  29927. },
  29928. {
  29929. name: "Second-stage macro",
  29930. height: math.unit(864, "feet")
  29931. },
  29932. ]
  29933. ))
  29934. characterMakers.push(() => makeCharacter(
  29935. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29936. {
  29937. normal: {
  29938. height: math.unit(4 + 6 / 12, "feet"),
  29939. name: "Normal",
  29940. image: {
  29941. source: "./media/characters/hydra/normal.svg",
  29942. extra: 2833 / 2634,
  29943. bottom: 68 / 2901
  29944. }
  29945. },
  29946. smol: {
  29947. height: math.unit(0.705, "inches"),
  29948. name: "Smol",
  29949. image: {
  29950. source: "./media/characters/hydra/smol.svg",
  29951. extra: 2715 / 2540,
  29952. bottom: 0 / 2715
  29953. }
  29954. },
  29955. },
  29956. [
  29957. {
  29958. name: "Normal",
  29959. height: math.unit(4 + 6 / 12, "feet"),
  29960. default: true
  29961. }
  29962. ]
  29963. ))
  29964. characterMakers.push(() => makeCharacter(
  29965. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29966. {
  29967. front: {
  29968. height: math.unit(0.6, "cm"),
  29969. name: "Front",
  29970. image: {
  29971. source: "./media/characters/daz/front.svg",
  29972. extra: 1682 / 1164,
  29973. bottom: 42 / 1724
  29974. }
  29975. },
  29976. },
  29977. [
  29978. {
  29979. name: "Normal",
  29980. height: math.unit(0.6, "cm"),
  29981. default: true
  29982. },
  29983. ]
  29984. ))
  29985. characterMakers.push(() => makeCharacter(
  29986. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29987. {
  29988. front: {
  29989. height: math.unit(6, "feet"),
  29990. weight: math.unit(235, "lb"),
  29991. name: "Front",
  29992. image: {
  29993. source: "./media/characters/theo-pangolin/front.svg",
  29994. extra: 1996 / 1969,
  29995. bottom: 115 / 2111
  29996. }
  29997. },
  29998. back: {
  29999. height: math.unit(6, "feet"),
  30000. weight: math.unit(235, "lb"),
  30001. name: "Back",
  30002. image: {
  30003. source: "./media/characters/theo-pangolin/back.svg",
  30004. extra: 1979 / 1979,
  30005. bottom: 40 / 2019
  30006. }
  30007. },
  30008. feral: {
  30009. height: math.unit(2, "feet"),
  30010. weight: math.unit(30, "lb"),
  30011. name: "Feral",
  30012. image: {
  30013. source: "./media/characters/theo-pangolin/feral.svg",
  30014. extra: 803 / 791,
  30015. bottom: 181 / 984
  30016. }
  30017. },
  30018. footFive: {
  30019. height: math.unit(1.43, "feet"),
  30020. name: "Foot (Five Toes)",
  30021. image: {
  30022. source: "./media/characters/theo-pangolin/foot-five.svg"
  30023. }
  30024. },
  30025. footFour: {
  30026. height: math.unit(1.43, "feet"),
  30027. name: "Foot (Four Toes)",
  30028. image: {
  30029. source: "./media/characters/theo-pangolin/foot-four.svg"
  30030. }
  30031. },
  30032. handFour: {
  30033. height: math.unit(0.81, "feet"),
  30034. name: "Hand (Four Fingers)",
  30035. image: {
  30036. source: "./media/characters/theo-pangolin/hand-four.svg"
  30037. }
  30038. },
  30039. handThree: {
  30040. height: math.unit(0.81, "feet"),
  30041. name: "Hand (Three Fingers)",
  30042. image: {
  30043. source: "./media/characters/theo-pangolin/hand-three.svg"
  30044. }
  30045. },
  30046. headFront: {
  30047. height: math.unit(1.37, "feet"),
  30048. name: "Head (Front)",
  30049. image: {
  30050. source: "./media/characters/theo-pangolin/head-front.svg"
  30051. }
  30052. },
  30053. headSide: {
  30054. height: math.unit(1.43, "feet"),
  30055. name: "Head (Side)",
  30056. image: {
  30057. source: "./media/characters/theo-pangolin/head-side.svg"
  30058. }
  30059. },
  30060. tongue: {
  30061. height: math.unit(2.29, "feet"),
  30062. name: "Tongue",
  30063. image: {
  30064. source: "./media/characters/theo-pangolin/tongue.svg"
  30065. }
  30066. },
  30067. },
  30068. [
  30069. {
  30070. name: "Normal",
  30071. height: math.unit(6, "feet")
  30072. },
  30073. {
  30074. name: "Macro",
  30075. height: math.unit(400, "feet"),
  30076. default: true
  30077. },
  30078. ]
  30079. ))
  30080. characterMakers.push(() => makeCharacter(
  30081. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30082. {
  30083. front: {
  30084. height: math.unit(6, "inches"),
  30085. weight: math.unit(0.036, "kg"),
  30086. name: "Front",
  30087. image: {
  30088. source: "./media/characters/renée/front.svg",
  30089. extra: 900 / 886,
  30090. bottom: 8 / 908
  30091. }
  30092. },
  30093. },
  30094. [
  30095. {
  30096. name: "Nano",
  30097. height: math.unit(1, "nm")
  30098. },
  30099. {
  30100. name: "Micro",
  30101. height: math.unit(1, "mm")
  30102. },
  30103. {
  30104. name: "Normal",
  30105. height: math.unit(6, "inches")
  30106. },
  30107. {
  30108. name: "Macro",
  30109. height: math.unit(2000, "feet"),
  30110. default: true
  30111. },
  30112. {
  30113. name: "Megamacro",
  30114. height: math.unit(2, "km")
  30115. },
  30116. {
  30117. name: "Gigamacro",
  30118. height: math.unit(2000, "km")
  30119. },
  30120. {
  30121. name: "Teramacro",
  30122. height: math.unit(250000, "km")
  30123. },
  30124. ]
  30125. ))
  30126. characterMakers.push(() => makeCharacter(
  30127. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30128. {
  30129. front: {
  30130. height: math.unit(4, "meters"),
  30131. weight: math.unit(150, "kg"),
  30132. name: "Front",
  30133. image: {
  30134. source: "./media/characters/caledvwlch/front.svg",
  30135. extra: 1760 / 1551,
  30136. bottom: 28 / 1788
  30137. }
  30138. },
  30139. side: {
  30140. height: math.unit(4, "meters"),
  30141. weight: math.unit(150, "kg"),
  30142. name: "Side",
  30143. image: {
  30144. source: "./media/characters/caledvwlch/side.svg",
  30145. extra: 1605 / 1536,
  30146. bottom: 31 / 1636
  30147. }
  30148. },
  30149. back: {
  30150. height: math.unit(4, "meters"),
  30151. weight: math.unit(150, "kg"),
  30152. name: "Back",
  30153. image: {
  30154. source: "./media/characters/caledvwlch/back.svg",
  30155. extra: 1635 / 1565,
  30156. bottom: 27 / 1662
  30157. }
  30158. },
  30159. },
  30160. [
  30161. {
  30162. name: "\"Incognito\"",
  30163. height: math.unit(4, "meters")
  30164. },
  30165. {
  30166. name: "Small rampage",
  30167. height: math.unit(600, "meters")
  30168. },
  30169. {
  30170. name: "Mega",
  30171. height: math.unit(30, "km")
  30172. },
  30173. {
  30174. name: "Home-size",
  30175. height: math.unit(50, "km"),
  30176. default: true
  30177. },
  30178. {
  30179. name: "Giga",
  30180. height: math.unit(300, "km")
  30181. },
  30182. {
  30183. name: "Lounging",
  30184. height: math.unit(11000, "km")
  30185. },
  30186. {
  30187. name: "Planet snacking",
  30188. height: math.unit(2000000, "km")
  30189. },
  30190. ]
  30191. ))
  30192. characterMakers.push(() => makeCharacter(
  30193. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30194. {
  30195. front: {
  30196. height: math.unit(6, "feet"),
  30197. weight: math.unit(215, "lb"),
  30198. name: "Front",
  30199. image: {
  30200. source: "./media/characters/sapphire-svell/front.svg",
  30201. extra: 495 / 455,
  30202. bottom: 20 / 515
  30203. }
  30204. },
  30205. back: {
  30206. height: math.unit(6, "feet"),
  30207. weight: math.unit(216, "lb"),
  30208. name: "Back",
  30209. image: {
  30210. source: "./media/characters/sapphire-svell/back.svg",
  30211. extra: 497 / 477,
  30212. bottom: 7 / 504
  30213. }
  30214. },
  30215. maw: {
  30216. height: math.unit(1.57, "feet"),
  30217. name: "Maw",
  30218. image: {
  30219. source: "./media/characters/sapphire-svell/maw.svg"
  30220. }
  30221. },
  30222. foot: {
  30223. height: math.unit(1.07, "feet"),
  30224. name: "Foot",
  30225. image: {
  30226. source: "./media/characters/sapphire-svell/foot.svg"
  30227. }
  30228. },
  30229. toering: {
  30230. height: math.unit(1.7, "inch"),
  30231. name: "Toering",
  30232. image: {
  30233. source: "./media/characters/sapphire-svell/toering.svg"
  30234. }
  30235. },
  30236. },
  30237. [
  30238. {
  30239. name: "Normal",
  30240. height: math.unit(300, "feet"),
  30241. default: true
  30242. },
  30243. {
  30244. name: "Augmented",
  30245. height: math.unit(1250, "feet")
  30246. },
  30247. {
  30248. name: "Unleashed",
  30249. height: math.unit(3000, "feet")
  30250. },
  30251. ]
  30252. ))
  30253. characterMakers.push(() => makeCharacter(
  30254. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30255. {
  30256. side: {
  30257. height: math.unit(2 + 3 / 12, "feet"),
  30258. weight: math.unit(110, "lb"),
  30259. name: "Side",
  30260. image: {
  30261. source: "./media/characters/glitch-flux/side.svg",
  30262. extra: 997 / 805,
  30263. bottom: 20 / 1017
  30264. }
  30265. },
  30266. },
  30267. [
  30268. {
  30269. name: "Normal",
  30270. height: math.unit(2 + 3 / 12, "feet"),
  30271. default: true
  30272. },
  30273. ]
  30274. ))
  30275. characterMakers.push(() => makeCharacter(
  30276. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30277. {
  30278. front: {
  30279. height: math.unit(4, "meters"),
  30280. name: "Front",
  30281. image: {
  30282. source: "./media/characters/mid/front.svg",
  30283. extra: 507 / 476,
  30284. bottom: 17 / 524
  30285. }
  30286. },
  30287. back: {
  30288. height: math.unit(4, "meters"),
  30289. name: "Back",
  30290. image: {
  30291. source: "./media/characters/mid/back.svg",
  30292. extra: 519 / 487,
  30293. bottom: 7 / 526
  30294. }
  30295. },
  30296. stuck: {
  30297. height: math.unit(2.2, "meters"),
  30298. name: "Stuck",
  30299. image: {
  30300. source: "./media/characters/mid/stuck.svg",
  30301. extra: 1951 / 1869,
  30302. bottom: 88 / 2039
  30303. }
  30304. }
  30305. },
  30306. [
  30307. {
  30308. name: "Normal",
  30309. height: math.unit(4, "meters"),
  30310. default: true
  30311. },
  30312. {
  30313. name: "Big",
  30314. height: math.unit(10, "meters")
  30315. },
  30316. {
  30317. name: "Macro",
  30318. height: math.unit(800, "meters")
  30319. },
  30320. {
  30321. name: "Megamacro",
  30322. height: math.unit(100, "km")
  30323. },
  30324. {
  30325. name: "Overgrown",
  30326. height: math.unit(1, "parsec")
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30332. {
  30333. front: {
  30334. height: math.unit(2.5, "meters"),
  30335. weight: math.unit(225, "kg"),
  30336. name: "Front",
  30337. image: {
  30338. source: "./media/characters/iris/front.svg",
  30339. extra: 3348 / 3251,
  30340. bottom: 205 / 3553
  30341. }
  30342. },
  30343. maw: {
  30344. height: math.unit(0.56, "meter"),
  30345. name: "Maw",
  30346. image: {
  30347. source: "./media/characters/iris/maw.svg"
  30348. }
  30349. },
  30350. },
  30351. [
  30352. {
  30353. name: "Mewter cat",
  30354. height: math.unit(1.2, "meters")
  30355. },
  30356. {
  30357. name: "Minimacro",
  30358. height: math.unit(2.5, "meters"),
  30359. default: true
  30360. },
  30361. {
  30362. name: "Macro",
  30363. height: math.unit(180, "meters")
  30364. },
  30365. {
  30366. name: "Megamacro",
  30367. height: math.unit(2746, "meters")
  30368. },
  30369. ]
  30370. ))
  30371. characterMakers.push(() => makeCharacter(
  30372. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30373. {
  30374. front: {
  30375. height: math.unit(6, "feet"),
  30376. weight: math.unit(135, "lb"),
  30377. name: "Front",
  30378. image: {
  30379. source: "./media/characters/axel/front.svg",
  30380. extra: 908 / 908,
  30381. bottom: 58 / 966
  30382. }
  30383. },
  30384. side: {
  30385. height: math.unit(6, "feet"),
  30386. weight: math.unit(135, "lb"),
  30387. name: "Side",
  30388. image: {
  30389. source: "./media/characters/axel/side.svg",
  30390. extra: 958 / 958,
  30391. bottom: 11 / 969
  30392. }
  30393. },
  30394. back: {
  30395. height: math.unit(6, "feet"),
  30396. weight: math.unit(135, "lb"),
  30397. name: "Back",
  30398. image: {
  30399. source: "./media/characters/axel/back.svg",
  30400. extra: 887 / 887,
  30401. bottom: 34 / 921
  30402. }
  30403. },
  30404. head: {
  30405. height: math.unit(1.07, "feet"),
  30406. name: "Head",
  30407. image: {
  30408. source: "./media/characters/axel/head.svg"
  30409. }
  30410. },
  30411. beak: {
  30412. height: math.unit(1.4, "feet"),
  30413. name: "Beak",
  30414. image: {
  30415. source: "./media/characters/axel/beak.svg"
  30416. }
  30417. },
  30418. beakSide: {
  30419. height: math.unit(1.4, "feet"),
  30420. name: "Beak Side",
  30421. image: {
  30422. source: "./media/characters/axel/beak-side.svg"
  30423. }
  30424. },
  30425. sheath: {
  30426. height: math.unit(0.5, "feet"),
  30427. name: "Sheath",
  30428. image: {
  30429. source: "./media/characters/axel/sheath.svg"
  30430. }
  30431. },
  30432. dick: {
  30433. height: math.unit(0.98, "feet"),
  30434. name: "Dick",
  30435. image: {
  30436. source: "./media/characters/axel/dick.svg"
  30437. }
  30438. },
  30439. },
  30440. [
  30441. {
  30442. name: "Macro",
  30443. height: math.unit(68, "meters"),
  30444. default: true
  30445. },
  30446. ]
  30447. ))
  30448. characterMakers.push(() => makeCharacter(
  30449. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30450. {
  30451. front: {
  30452. height: math.unit(3.5, "meters"),
  30453. weight: math.unit(1200, "kg"),
  30454. name: "Front",
  30455. image: {
  30456. source: "./media/characters/joanna/front.svg",
  30457. extra: 1596 / 1488,
  30458. bottom: 29 / 1625
  30459. }
  30460. },
  30461. back: {
  30462. height: math.unit(3.5, "meters"),
  30463. weight: math.unit(1200, "kg"),
  30464. name: "Back",
  30465. image: {
  30466. source: "./media/characters/joanna/back.svg",
  30467. extra: 1594 / 1495,
  30468. bottom: 26 / 1620
  30469. }
  30470. },
  30471. frontShorts: {
  30472. height: math.unit(3.5, "meters"),
  30473. weight: math.unit(1200, "kg"),
  30474. name: "Front (Shorts)",
  30475. image: {
  30476. source: "./media/characters/joanna/front-shorts.svg",
  30477. extra: 1596 / 1488,
  30478. bottom: 29 / 1625
  30479. }
  30480. },
  30481. frontBiker: {
  30482. height: math.unit(3.5, "meters"),
  30483. weight: math.unit(1200, "kg"),
  30484. name: "Front (Biker)",
  30485. image: {
  30486. source: "./media/characters/joanna/front-biker.svg",
  30487. extra: 1596 / 1488,
  30488. bottom: 29 / 1625
  30489. }
  30490. },
  30491. backBiker: {
  30492. height: math.unit(3.5, "meters"),
  30493. weight: math.unit(1200, "kg"),
  30494. name: "Back (Biker)",
  30495. image: {
  30496. source: "./media/characters/joanna/back-biker.svg",
  30497. extra: 1594 / 1495,
  30498. bottom: 88 / 1682
  30499. }
  30500. },
  30501. bikeLeft: {
  30502. height: math.unit(2.4, "meters"),
  30503. weight: math.unit(1600, "kg"),
  30504. name: "Bike (Left)",
  30505. image: {
  30506. source: "./media/characters/joanna/bike-left.svg",
  30507. extra: 720 / 720,
  30508. bottom: 8 / 728
  30509. }
  30510. },
  30511. bikeRight: {
  30512. height: math.unit(2.4, "meters"),
  30513. weight: math.unit(1600, "kg"),
  30514. name: "Bike (Right)",
  30515. image: {
  30516. source: "./media/characters/joanna/bike-right.svg",
  30517. extra: 720 / 720,
  30518. bottom: 8 / 728
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Incognito",
  30525. height: math.unit(3.5, "meters")
  30526. },
  30527. {
  30528. name: "Casual Big",
  30529. height: math.unit(200, "meters")
  30530. },
  30531. {
  30532. name: "Macro",
  30533. height: math.unit(600, "meters")
  30534. },
  30535. {
  30536. name: "Original",
  30537. height: math.unit(20, "km"),
  30538. default: true
  30539. },
  30540. {
  30541. name: "Giga",
  30542. height: math.unit(400, "km")
  30543. },
  30544. {
  30545. name: "Lounging",
  30546. height: math.unit(1500, "km")
  30547. },
  30548. {
  30549. name: "Planetary",
  30550. height: math.unit(200000, "km")
  30551. },
  30552. ]
  30553. ))
  30554. characterMakers.push(() => makeCharacter(
  30555. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30556. {
  30557. front: {
  30558. height: math.unit(6, "feet"),
  30559. weight: math.unit(150, "lb"),
  30560. name: "Front",
  30561. image: {
  30562. source: "./media/characters/hugo-sigil/front.svg",
  30563. extra: 522 / 500,
  30564. bottom: 2 / 524
  30565. }
  30566. },
  30567. back: {
  30568. height: math.unit(6, "feet"),
  30569. weight: math.unit(150, "lb"),
  30570. name: "Back",
  30571. image: {
  30572. source: "./media/characters/hugo-sigil/back.svg",
  30573. extra: 519 / 495,
  30574. bottom: 5 / 524
  30575. }
  30576. },
  30577. maw: {
  30578. height: math.unit(1.4, "feet"),
  30579. weight: math.unit(150, "lb"),
  30580. name: "Maw",
  30581. image: {
  30582. source: "./media/characters/hugo-sigil/maw.svg"
  30583. }
  30584. },
  30585. feet: {
  30586. height: math.unit(1.56, "feet"),
  30587. weight: math.unit(150, "lb"),
  30588. name: "Feet",
  30589. image: {
  30590. source: "./media/characters/hugo-sigil/feet.svg",
  30591. extra: 177 / 177,
  30592. bottom: 12 / 189
  30593. }
  30594. },
  30595. },
  30596. [
  30597. {
  30598. name: "Normal",
  30599. height: math.unit(6, "feet")
  30600. },
  30601. {
  30602. name: "Macro",
  30603. height: math.unit(200, "feet"),
  30604. default: true
  30605. },
  30606. ]
  30607. ))
  30608. characterMakers.push(() => makeCharacter(
  30609. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30610. {
  30611. front: {
  30612. height: math.unit(6, "feet"),
  30613. weight: math.unit(150, "lb"),
  30614. name: "Front",
  30615. image: {
  30616. source: "./media/characters/peri/front.svg",
  30617. extra: 2354 / 2233,
  30618. bottom: 49 / 2403
  30619. }
  30620. },
  30621. },
  30622. [
  30623. {
  30624. name: "Really Small",
  30625. height: math.unit(1, "nm")
  30626. },
  30627. {
  30628. name: "Micro",
  30629. height: math.unit(4, "inches")
  30630. },
  30631. {
  30632. name: "Normal",
  30633. height: math.unit(7, "inches"),
  30634. default: true
  30635. },
  30636. {
  30637. name: "Macro",
  30638. height: math.unit(400, "feet")
  30639. },
  30640. {
  30641. name: "Megamacro",
  30642. height: math.unit(100, "miles")
  30643. },
  30644. ]
  30645. ))
  30646. characterMakers.push(() => makeCharacter(
  30647. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30648. {
  30649. frontSlim: {
  30650. height: math.unit(7, "feet"),
  30651. name: "Front (Slim)",
  30652. image: {
  30653. source: "./media/characters/issilora/front-slim.svg",
  30654. extra: 529 / 449,
  30655. bottom: 53 / 582
  30656. }
  30657. },
  30658. sideSlim: {
  30659. height: math.unit(7, "feet"),
  30660. name: "Side (Slim)",
  30661. image: {
  30662. source: "./media/characters/issilora/side-slim.svg",
  30663. extra: 570 / 480,
  30664. bottom: 30 / 600
  30665. }
  30666. },
  30667. backSlim: {
  30668. height: math.unit(7, "feet"),
  30669. name: "Back (Slim)",
  30670. image: {
  30671. source: "./media/characters/issilora/back-slim.svg",
  30672. extra: 537 / 455,
  30673. bottom: 46 / 583
  30674. }
  30675. },
  30676. frontBuff: {
  30677. height: math.unit(7, "feet"),
  30678. name: "Front (Buff)",
  30679. image: {
  30680. source: "./media/characters/issilora/front-buff.svg",
  30681. extra: 2310 / 2035,
  30682. bottom: 335 / 2645
  30683. }
  30684. },
  30685. head: {
  30686. height: math.unit(1.94, "feet"),
  30687. name: "Head",
  30688. image: {
  30689. source: "./media/characters/issilora/head.svg"
  30690. }
  30691. },
  30692. },
  30693. [
  30694. {
  30695. name: "Minimum",
  30696. height: math.unit(7, "feet")
  30697. },
  30698. {
  30699. name: "Comfortable",
  30700. height: math.unit(17, "feet")
  30701. },
  30702. {
  30703. name: "Fun Size",
  30704. height: math.unit(47, "feet")
  30705. },
  30706. {
  30707. name: "Natural Macro",
  30708. height: math.unit(137, "feet"),
  30709. default: true
  30710. },
  30711. {
  30712. name: "Maximum Kaiju",
  30713. height: math.unit(397, "feet")
  30714. },
  30715. ]
  30716. ))
  30717. characterMakers.push(() => makeCharacter(
  30718. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30719. {
  30720. front: {
  30721. height: math.unit(50 + 9/12, "feet"),
  30722. weight: math.unit(32.8, "tons"),
  30723. name: "Front",
  30724. image: {
  30725. source: "./media/characters/irb'iiritaahn/front.svg",
  30726. extra: 1878/1826,
  30727. bottom: 326/2204
  30728. }
  30729. },
  30730. back: {
  30731. height: math.unit(50 + 9/12, "feet"),
  30732. weight: math.unit(32.8, "tons"),
  30733. name: "Back",
  30734. image: {
  30735. source: "./media/characters/irb'iiritaahn/back.svg",
  30736. extra: 2052/2018,
  30737. bottom: 152/2204
  30738. }
  30739. },
  30740. head: {
  30741. height: math.unit(12.86, "feet"),
  30742. name: "Head",
  30743. image: {
  30744. source: "./media/characters/irb'iiritaahn/head.svg"
  30745. }
  30746. },
  30747. maw: {
  30748. height: math.unit(9.66, "feet"),
  30749. name: "Maw",
  30750. image: {
  30751. source: "./media/characters/irb'iiritaahn/maw.svg"
  30752. }
  30753. },
  30754. frontDick: {
  30755. height: math.unit(8.78461, "feet"),
  30756. name: "Front Dick",
  30757. image: {
  30758. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30759. }
  30760. },
  30761. rearDick: {
  30762. height: math.unit(8.78461, "feet"),
  30763. name: "Rear Dick",
  30764. image: {
  30765. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30766. }
  30767. },
  30768. rearDickUnfolded: {
  30769. height: math.unit(8.78, "feet"),
  30770. name: "Rear Dick (Unfolded)",
  30771. image: {
  30772. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30773. }
  30774. },
  30775. wings: {
  30776. height: math.unit(43, "feet"),
  30777. name: "Wings",
  30778. image: {
  30779. source: "./media/characters/irb'iiritaahn/wings.svg"
  30780. }
  30781. },
  30782. },
  30783. [
  30784. {
  30785. name: "Macro",
  30786. height: math.unit(50 + 9/12, "feet"),
  30787. default: true
  30788. },
  30789. ]
  30790. ))
  30791. characterMakers.push(() => makeCharacter(
  30792. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30793. {
  30794. front: {
  30795. height: math.unit(205, "cm"),
  30796. weight: math.unit(102, "kg"),
  30797. name: "Front",
  30798. image: {
  30799. source: "./media/characters/irbisgreif/front.svg",
  30800. extra: 785/706,
  30801. bottom: 13/798
  30802. }
  30803. },
  30804. back: {
  30805. height: math.unit(205, "cm"),
  30806. weight: math.unit(102, "kg"),
  30807. name: "Back",
  30808. image: {
  30809. source: "./media/characters/irbisgreif/back.svg",
  30810. extra: 713/701,
  30811. bottom: 26/739
  30812. }
  30813. },
  30814. frontDressed: {
  30815. height: math.unit(216, "cm"),
  30816. weight: math.unit(102, "kg"),
  30817. name: "Front-dressed",
  30818. image: {
  30819. source: "./media/characters/irbisgreif/front-dressed.svg",
  30820. extra: 902/776,
  30821. bottom: 14/916
  30822. }
  30823. },
  30824. sideDressed: {
  30825. height: math.unit(195, "cm"),
  30826. weight: math.unit(102, "kg"),
  30827. name: "Side-dressed",
  30828. image: {
  30829. source: "./media/characters/irbisgreif/side-dressed.svg",
  30830. extra: 788/688,
  30831. bottom: 21/809
  30832. }
  30833. },
  30834. backDressed: {
  30835. height: math.unit(216, "cm"),
  30836. weight: math.unit(102, "kg"),
  30837. name: "Back-dressed",
  30838. image: {
  30839. source: "./media/characters/irbisgreif/back-dressed.svg",
  30840. extra: 901/783,
  30841. bottom: 10/911
  30842. }
  30843. },
  30844. dick: {
  30845. height: math.unit(0.49, "feet"),
  30846. name: "Dick",
  30847. image: {
  30848. source: "./media/characters/irbisgreif/dick.svg"
  30849. }
  30850. },
  30851. wingTop: {
  30852. height: math.unit(1.93 , "feet"),
  30853. name: "Wing-top",
  30854. image: {
  30855. source: "./media/characters/irbisgreif/wing-top.svg"
  30856. }
  30857. },
  30858. wingBottom: {
  30859. height: math.unit(1.93 , "feet"),
  30860. name: "Wing-bottom",
  30861. image: {
  30862. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30863. }
  30864. },
  30865. },
  30866. [
  30867. {
  30868. name: "Normal",
  30869. height: math.unit(216, "cm"),
  30870. default: true
  30871. },
  30872. ]
  30873. ))
  30874. characterMakers.push(() => makeCharacter(
  30875. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30876. {
  30877. front: {
  30878. height: math.unit(6, "feet"),
  30879. weight: math.unit(150, "lb"),
  30880. name: "Front",
  30881. image: {
  30882. source: "./media/characters/pride/front.svg",
  30883. extra: 1299/1230,
  30884. bottom: 18/1317
  30885. }
  30886. },
  30887. },
  30888. [
  30889. {
  30890. name: "Normal",
  30891. height: math.unit(7, "feet")
  30892. },
  30893. {
  30894. name: "Mini-macro",
  30895. height: math.unit(11, "feet")
  30896. },
  30897. {
  30898. name: "Macro",
  30899. height: math.unit(15, "meters"),
  30900. default: true
  30901. },
  30902. {
  30903. name: "Macro+",
  30904. height: math.unit(40, "meters")
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30910. {
  30911. front: {
  30912. height: math.unit(4 + 2 / 12, "feet"),
  30913. weight: math.unit(95, "lb"),
  30914. name: "Front",
  30915. image: {
  30916. source: "./media/characters/vaelophis-nyx/front.svg",
  30917. extra: 2532/2330,
  30918. bottom: 0/2532
  30919. }
  30920. },
  30921. back: {
  30922. height: math.unit(4 + 2 / 12, "feet"),
  30923. weight: math.unit(95, "lb"),
  30924. name: "Back",
  30925. image: {
  30926. source: "./media/characters/vaelophis-nyx/back.svg",
  30927. extra: 2484/2361,
  30928. bottom: 0/2484
  30929. }
  30930. },
  30931. feralSide: {
  30932. height: math.unit(2 + 1/12, "feet"),
  30933. weight: math.unit(20, "lb"),
  30934. name: "Feral (Side)",
  30935. image: {
  30936. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30937. extra: 1721/1581,
  30938. bottom: 70/1791
  30939. }
  30940. },
  30941. feralLazing: {
  30942. height: math.unit(1.08, "feet"),
  30943. weight: math.unit(20, "lb"),
  30944. name: "Feral (Lazing)",
  30945. image: {
  30946. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30947. extra: 822/822,
  30948. bottom: 248/1070
  30949. }
  30950. },
  30951. ear: {
  30952. height: math.unit(0.416, "feet"),
  30953. name: "Ear",
  30954. image: {
  30955. source: "./media/characters/vaelophis-nyx/ear.svg"
  30956. }
  30957. },
  30958. eye: {
  30959. height: math.unit(0.0748, "feet"),
  30960. name: "Eye",
  30961. image: {
  30962. source: "./media/characters/vaelophis-nyx/eye.svg"
  30963. }
  30964. },
  30965. mouth: {
  30966. height: math.unit(0.378, "feet"),
  30967. name: "Mouth",
  30968. image: {
  30969. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30970. }
  30971. },
  30972. spade: {
  30973. height: math.unit(0.55, "feet"),
  30974. name: "Spade",
  30975. image: {
  30976. source: "./media/characters/vaelophis-nyx/spade.svg"
  30977. }
  30978. },
  30979. },
  30980. [
  30981. {
  30982. name: "Normal",
  30983. height: math.unit(4 + 2/12, "feet"),
  30984. default: true
  30985. },
  30986. ]
  30987. ))
  30988. characterMakers.push(() => makeCharacter(
  30989. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30990. {
  30991. front: {
  30992. height: math.unit(7, "feet"),
  30993. weight: math.unit(231, "lb"),
  30994. name: "Front",
  30995. image: {
  30996. source: "./media/characters/flux/front.svg",
  30997. extra: 919/871,
  30998. bottom: 0/919
  30999. }
  31000. },
  31001. back: {
  31002. height: math.unit(7, "feet"),
  31003. weight: math.unit(231, "lb"),
  31004. name: "Back",
  31005. image: {
  31006. source: "./media/characters/flux/back.svg",
  31007. extra: 1040/992,
  31008. bottom: 0/1040
  31009. }
  31010. },
  31011. frontDressed: {
  31012. height: math.unit(7, "feet"),
  31013. weight: math.unit(231, "lb"),
  31014. name: "Front (Dressed)",
  31015. image: {
  31016. source: "./media/characters/flux/front-dressed.svg",
  31017. extra: 919/871,
  31018. bottom: 0/919
  31019. }
  31020. },
  31021. feralSide: {
  31022. height: math.unit(5, "feet"),
  31023. weight: math.unit(150, "lb"),
  31024. name: "Feral (Side)",
  31025. image: {
  31026. source: "./media/characters/flux/feral-side.svg",
  31027. extra: 598/528,
  31028. bottom: 28/626
  31029. }
  31030. },
  31031. head: {
  31032. height: math.unit(1.585, "feet"),
  31033. name: "Head",
  31034. image: {
  31035. source: "./media/characters/flux/head.svg"
  31036. }
  31037. },
  31038. headSide: {
  31039. height: math.unit(1.74, "feet"),
  31040. name: "Head (Side)",
  31041. image: {
  31042. source: "./media/characters/flux/head-side.svg"
  31043. }
  31044. },
  31045. headSideFire: {
  31046. height: math.unit(1.76, "feet"),
  31047. name: "Head (Side, Fire)",
  31048. image: {
  31049. source: "./media/characters/flux/head-side-fire.svg"
  31050. }
  31051. },
  31052. },
  31053. [
  31054. {
  31055. name: "Normal",
  31056. height: math.unit(7, "feet"),
  31057. default: true
  31058. },
  31059. ]
  31060. ))
  31061. characterMakers.push(() => makeCharacter(
  31062. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31063. {
  31064. front: {
  31065. height: math.unit(9, "feet"),
  31066. weight: math.unit(1012, "lb"),
  31067. name: "Front",
  31068. image: {
  31069. source: "./media/characters/ulfra-lupae/front.svg",
  31070. extra: 1083/1011,
  31071. bottom: 67/1150
  31072. }
  31073. },
  31074. },
  31075. [
  31076. {
  31077. name: "Micro",
  31078. height: math.unit(6, "inches")
  31079. },
  31080. {
  31081. name: "Socializing",
  31082. height: math.unit(6 + 5/12, "feet")
  31083. },
  31084. {
  31085. name: "Normal",
  31086. height: math.unit(9, "feet"),
  31087. default: true
  31088. },
  31089. {
  31090. name: "Macro",
  31091. height: math.unit(150, "feet")
  31092. },
  31093. ]
  31094. ))
  31095. characterMakers.push(() => makeCharacter(
  31096. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31097. {
  31098. front: {
  31099. height: math.unit(5 + 2/12, "feet"),
  31100. weight: math.unit(120, "lb"),
  31101. name: "Front",
  31102. image: {
  31103. source: "./media/characters/timber/front.svg",
  31104. extra: 2814/2705,
  31105. bottom: 181/2995
  31106. }
  31107. },
  31108. },
  31109. [
  31110. {
  31111. name: "Normal",
  31112. height: math.unit(5 + 2/12, "feet"),
  31113. default: true
  31114. },
  31115. ]
  31116. ))
  31117. characterMakers.push(() => makeCharacter(
  31118. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31119. {
  31120. front: {
  31121. height: math.unit(5 + 7/12, "feet"),
  31122. weight: math.unit(220, "lb"),
  31123. name: "Front",
  31124. image: {
  31125. source: "./media/characters/nicki/front.svg",
  31126. extra: 453/419,
  31127. bottom: 7/460
  31128. }
  31129. },
  31130. frontAlt: {
  31131. height: math.unit(5 + 7/12, "feet"),
  31132. weight: math.unit(220, "lb"),
  31133. name: "Front-alt",
  31134. image: {
  31135. source: "./media/characters/nicki/front-alt.svg",
  31136. extra: 435/411,
  31137. bottom: 12/447
  31138. }
  31139. },
  31140. back: {
  31141. height: math.unit(5 + 7/12, "feet"),
  31142. weight: math.unit(220, "lb"),
  31143. name: "Back",
  31144. image: {
  31145. source: "./media/characters/nicki/back.svg",
  31146. extra: 440/413,
  31147. bottom: 19/459
  31148. }
  31149. },
  31150. taur: {
  31151. height: math.unit(7 + 6/12, "feet"),
  31152. weight: math.unit(700, "lb"),
  31153. name: "Taur",
  31154. image: {
  31155. source: "./media/characters/nicki/taur.svg",
  31156. extra: 975/773,
  31157. bottom: 0/975
  31158. }
  31159. },
  31160. frontNsfw: {
  31161. height: math.unit(5 + 7/12, "feet"),
  31162. weight: math.unit(220, "lb"),
  31163. name: "Front (NSFW)",
  31164. image: {
  31165. source: "./media/characters/nicki/front-nsfw.svg",
  31166. extra: 453/419,
  31167. bottom: 7/460
  31168. }
  31169. },
  31170. frontNsfwAlt: {
  31171. height: math.unit(5 + 7/12, "feet"),
  31172. weight: math.unit(220, "lb"),
  31173. name: "Front (Alt, NSFW)",
  31174. image: {
  31175. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31176. extra: 435/411,
  31177. bottom: 12/447
  31178. }
  31179. },
  31180. backNsfw: {
  31181. height: math.unit(5 + 7/12, "feet"),
  31182. weight: math.unit(220, "lb"),
  31183. name: "Back (NSFW)",
  31184. image: {
  31185. source: "./media/characters/nicki/back-nsfw.svg",
  31186. extra: 440/413,
  31187. bottom: 19/459
  31188. }
  31189. },
  31190. head: {
  31191. height: math.unit(2.1, "feet"),
  31192. name: "Head",
  31193. image: {
  31194. source: "./media/characters/nicki/head.svg"
  31195. }
  31196. },
  31197. paw: {
  31198. height: math.unit(1.88, "feet"),
  31199. name: "Paw",
  31200. image: {
  31201. source: "./media/characters/nicki/paw.svg"
  31202. }
  31203. },
  31204. },
  31205. [
  31206. {
  31207. name: "Normal",
  31208. height: math.unit(5 + 7/12, "feet"),
  31209. default: true
  31210. },
  31211. ]
  31212. ))
  31213. characterMakers.push(() => makeCharacter(
  31214. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31215. {
  31216. front: {
  31217. height: math.unit(7 + 10/12, "feet"),
  31218. weight: math.unit(3.5, "tons"),
  31219. name: "Front",
  31220. image: {
  31221. source: "./media/characters/lee/front.svg",
  31222. extra: 1773/1615,
  31223. bottom: 86/1859
  31224. }
  31225. },
  31226. hand: {
  31227. height: math.unit(1.78, "feet"),
  31228. name: "Hand",
  31229. image: {
  31230. source: "./media/characters/lee/hand.svg"
  31231. }
  31232. },
  31233. maw: {
  31234. height: math.unit(1.18, "feet"),
  31235. name: "Maw",
  31236. image: {
  31237. source: "./media/characters/lee/maw.svg"
  31238. }
  31239. },
  31240. },
  31241. [
  31242. {
  31243. name: "Normal",
  31244. height: math.unit(7 + 10/12, "feet"),
  31245. default: true
  31246. },
  31247. ]
  31248. ))
  31249. characterMakers.push(() => makeCharacter(
  31250. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31251. {
  31252. front: {
  31253. height: math.unit(9, "feet"),
  31254. name: "Front",
  31255. image: {
  31256. source: "./media/characters/guti/front.svg",
  31257. extra: 4551/4355,
  31258. bottom: 123/4674
  31259. }
  31260. },
  31261. tongue: {
  31262. height: math.unit(1, "feet"),
  31263. name: "Tongue",
  31264. image: {
  31265. source: "./media/characters/guti/tongue.svg"
  31266. }
  31267. },
  31268. paw: {
  31269. height: math.unit(1.18, "feet"),
  31270. name: "Paw",
  31271. image: {
  31272. source: "./media/characters/guti/paw.svg"
  31273. }
  31274. },
  31275. },
  31276. [
  31277. {
  31278. name: "Normal",
  31279. height: math.unit(9, "feet"),
  31280. default: true
  31281. },
  31282. ]
  31283. ))
  31284. characterMakers.push(() => makeCharacter(
  31285. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31286. {
  31287. side: {
  31288. height: math.unit(5, "meters"),
  31289. name: "Side",
  31290. image: {
  31291. source: "./media/characters/vesper/side.svg",
  31292. extra: 1605/1518,
  31293. bottom: 0/1605
  31294. }
  31295. },
  31296. },
  31297. [
  31298. {
  31299. name: "Small",
  31300. height: math.unit(5, "meters")
  31301. },
  31302. {
  31303. name: "Sage",
  31304. height: math.unit(100, "meters"),
  31305. default: true
  31306. },
  31307. {
  31308. name: "Fun Size",
  31309. height: math.unit(600, "meters")
  31310. },
  31311. {
  31312. name: "Goddess",
  31313. height: math.unit(20000, "km")
  31314. },
  31315. {
  31316. name: "Maximum",
  31317. height: math.unit(5, "galaxies")
  31318. },
  31319. ]
  31320. ))
  31321. characterMakers.push(() => makeCharacter(
  31322. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31323. {
  31324. front: {
  31325. height: math.unit(6 + 3/12, "feet"),
  31326. weight: math.unit(190, "lb"),
  31327. name: "Front",
  31328. image: {
  31329. source: "./media/characters/gawain/front.svg",
  31330. extra: 2222/2139,
  31331. bottom: 90/2312
  31332. }
  31333. },
  31334. back: {
  31335. height: math.unit(6 + 3/12, "feet"),
  31336. weight: math.unit(190, "lb"),
  31337. name: "Back",
  31338. image: {
  31339. source: "./media/characters/gawain/back.svg",
  31340. extra: 2199/2111,
  31341. bottom: 73/2272
  31342. }
  31343. },
  31344. },
  31345. [
  31346. {
  31347. name: "Normal",
  31348. height: math.unit(6 + 3/12, "feet"),
  31349. default: true
  31350. },
  31351. ]
  31352. ))
  31353. characterMakers.push(() => makeCharacter(
  31354. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31355. {
  31356. side: {
  31357. height: math.unit(3.5, "meters"),
  31358. weight: math.unit(16000, "lb"),
  31359. name: "Side",
  31360. image: {
  31361. source: "./media/characters/dascalti/side.svg",
  31362. extra: 392/273,
  31363. bottom: 47/439
  31364. }
  31365. },
  31366. breath: {
  31367. height: math.unit(7.4, "feet"),
  31368. name: "Breath",
  31369. image: {
  31370. source: "./media/characters/dascalti/breath.svg"
  31371. }
  31372. },
  31373. fed: {
  31374. height: math.unit(3.6, "meters"),
  31375. weight: math.unit(16000, "lb"),
  31376. name: "Fed",
  31377. image: {
  31378. source: "./media/characters/dascalti/fed.svg",
  31379. extra: 1419/820,
  31380. bottom: 95/1514
  31381. }
  31382. },
  31383. },
  31384. [
  31385. {
  31386. name: "Normal",
  31387. height: math.unit(3.5, "meters"),
  31388. default: true
  31389. },
  31390. ]
  31391. ))
  31392. characterMakers.push(() => makeCharacter(
  31393. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31394. {
  31395. front: {
  31396. height: math.unit(3 + 5/12, "feet"),
  31397. name: "Front",
  31398. image: {
  31399. source: "./media/characters/mauve/front.svg",
  31400. extra: 1126/1033,
  31401. bottom: 65/1191
  31402. }
  31403. },
  31404. side: {
  31405. height: math.unit(3 + 5/12, "feet"),
  31406. name: "Side",
  31407. image: {
  31408. source: "./media/characters/mauve/side.svg",
  31409. extra: 1089/1001,
  31410. bottom: 29/1118
  31411. }
  31412. },
  31413. back: {
  31414. height: math.unit(3 + 5/12, "feet"),
  31415. name: "Back",
  31416. image: {
  31417. source: "./media/characters/mauve/back.svg",
  31418. extra: 1173/1053,
  31419. bottom: 109/1282
  31420. }
  31421. },
  31422. },
  31423. [
  31424. {
  31425. name: "Normal",
  31426. height: math.unit(3 + 5/12, "feet"),
  31427. default: true
  31428. },
  31429. ]
  31430. ))
  31431. characterMakers.push(() => makeCharacter(
  31432. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31433. {
  31434. front: {
  31435. height: math.unit(6 + 3/12, "feet"),
  31436. weight: math.unit(430, "lb"),
  31437. name: "Front",
  31438. image: {
  31439. source: "./media/characters/carlos/front.svg",
  31440. extra: 1964/1913,
  31441. bottom: 70/2034
  31442. }
  31443. },
  31444. },
  31445. [
  31446. {
  31447. name: "Normal",
  31448. height: math.unit(6 + 3/12, "feet"),
  31449. default: true
  31450. },
  31451. ]
  31452. ))
  31453. characterMakers.push(() => makeCharacter(
  31454. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31455. {
  31456. back: {
  31457. height: math.unit(5 + 10/12, "feet"),
  31458. weight: math.unit(200, "lb"),
  31459. name: "Back",
  31460. image: {
  31461. source: "./media/characters/jax/back.svg",
  31462. extra: 764/739,
  31463. bottom: 25/789
  31464. }
  31465. },
  31466. },
  31467. [
  31468. {
  31469. name: "Normal",
  31470. height: math.unit(5 + 10/12, "feet"),
  31471. default: true
  31472. },
  31473. ]
  31474. ))
  31475. characterMakers.push(() => makeCharacter(
  31476. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31477. {
  31478. front: {
  31479. height: math.unit(8, "feet"),
  31480. weight: math.unit(250, "lb"),
  31481. name: "Front",
  31482. image: {
  31483. source: "./media/characters/eikthynir/front.svg",
  31484. extra: 1332/1166,
  31485. bottom: 82/1414
  31486. }
  31487. },
  31488. back: {
  31489. height: math.unit(8, "feet"),
  31490. weight: math.unit(250, "lb"),
  31491. name: "Back",
  31492. image: {
  31493. source: "./media/characters/eikthynir/back.svg",
  31494. extra: 1342/1190,
  31495. bottom: 19/1361
  31496. }
  31497. },
  31498. dick: {
  31499. height: math.unit(2.35, "feet"),
  31500. name: "Dick",
  31501. image: {
  31502. source: "./media/characters/eikthynir/dick.svg"
  31503. }
  31504. },
  31505. },
  31506. [
  31507. {
  31508. name: "Normal",
  31509. height: math.unit(8, "feet"),
  31510. default: true
  31511. },
  31512. ]
  31513. ))
  31514. characterMakers.push(() => makeCharacter(
  31515. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31516. {
  31517. front: {
  31518. height: math.unit(99, "meters"),
  31519. weight: math.unit(13000, "tons"),
  31520. name: "Front",
  31521. image: {
  31522. source: "./media/characters/zlmos/front.svg",
  31523. extra: 2202/1992,
  31524. bottom: 315/2517
  31525. }
  31526. },
  31527. },
  31528. [
  31529. {
  31530. name: "Macro",
  31531. height: math.unit(99, "meters"),
  31532. default: true
  31533. },
  31534. ]
  31535. ))
  31536. characterMakers.push(() => makeCharacter(
  31537. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31538. {
  31539. front: {
  31540. height: math.unit(6 + 5/12, "feet"),
  31541. name: "Front",
  31542. image: {
  31543. source: "./media/characters/purri/front.svg",
  31544. extra: 1698/1610,
  31545. bottom: 32/1730
  31546. }
  31547. },
  31548. frontAlt: {
  31549. height: math.unit(6 + 5/12, "feet"),
  31550. name: "Front (Alt)",
  31551. image: {
  31552. source: "./media/characters/purri/front-alt.svg",
  31553. extra: 450/420,
  31554. bottom: 26/476
  31555. }
  31556. },
  31557. boots: {
  31558. height: math.unit(5.5, "feet"),
  31559. name: "Boots",
  31560. image: {
  31561. source: "./media/characters/purri/boots.svg",
  31562. extra: 905/853,
  31563. bottom: 18/923
  31564. }
  31565. },
  31566. lying: {
  31567. height: math.unit(2, "feet"),
  31568. name: "Lying",
  31569. image: {
  31570. source: "./media/characters/purri/lying.svg",
  31571. extra: 940/843,
  31572. bottom: 146/1086
  31573. }
  31574. },
  31575. devious: {
  31576. height: math.unit(1.77, "feet"),
  31577. name: "Devious",
  31578. image: {
  31579. source: "./media/characters/purri/devious.svg",
  31580. extra: 1440/1155,
  31581. bottom: 147/1587
  31582. }
  31583. },
  31584. bean: {
  31585. height: math.unit(1.94, "feet"),
  31586. name: "Bean",
  31587. image: {
  31588. source: "./media/characters/purri/bean.svg"
  31589. }
  31590. },
  31591. },
  31592. [
  31593. {
  31594. name: "Micro",
  31595. height: math.unit(1, "mm")
  31596. },
  31597. {
  31598. name: "Normal",
  31599. height: math.unit(6 + 5/12, "feet"),
  31600. default: true
  31601. },
  31602. {
  31603. name: "Macro :3c",
  31604. height: math.unit(2, "miles")
  31605. },
  31606. ]
  31607. ))
  31608. characterMakers.push(() => makeCharacter(
  31609. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31610. {
  31611. front: {
  31612. height: math.unit(6 + 2/12, "feet"),
  31613. weight: math.unit(250, "lb"),
  31614. name: "Front",
  31615. image: {
  31616. source: "./media/characters/moonlight/front.svg",
  31617. extra: 1044/908,
  31618. bottom: 56/1100
  31619. }
  31620. },
  31621. feral: {
  31622. height: math.unit(3 + 1/12, "feet"),
  31623. weight: math.unit(50, "kg"),
  31624. name: "Feral",
  31625. image: {
  31626. source: "./media/characters/moonlight/feral.svg",
  31627. extra: 3705/2791,
  31628. bottom: 145/3850
  31629. }
  31630. },
  31631. paw: {
  31632. height: math.unit(1, "feet"),
  31633. name: "Paw",
  31634. image: {
  31635. source: "./media/characters/moonlight/paw.svg"
  31636. }
  31637. },
  31638. paws: {
  31639. height: math.unit(0.98, "feet"),
  31640. name: "Paws",
  31641. image: {
  31642. source: "./media/characters/moonlight/paws.svg",
  31643. extra: 939/939,
  31644. bottom: 50/989
  31645. }
  31646. },
  31647. mouth: {
  31648. height: math.unit(0.48, "feet"),
  31649. name: "Mouth",
  31650. image: {
  31651. source: "./media/characters/moonlight/mouth.svg"
  31652. }
  31653. },
  31654. dick: {
  31655. height: math.unit(1.46, "feet"),
  31656. name: "Dick",
  31657. image: {
  31658. source: "./media/characters/moonlight/dick.svg"
  31659. }
  31660. },
  31661. },
  31662. [
  31663. {
  31664. name: "Normal",
  31665. height: math.unit(6 + 2/12, "feet"),
  31666. default: true
  31667. },
  31668. {
  31669. name: "Macro",
  31670. height: math.unit(300, "feet")
  31671. },
  31672. {
  31673. name: "Macro+",
  31674. height: math.unit(1, "mile")
  31675. },
  31676. {
  31677. name: "Mt. Moon",
  31678. height: math.unit(5, "miles")
  31679. },
  31680. {
  31681. name: "Megamacro",
  31682. height: math.unit(15, "miles")
  31683. },
  31684. ]
  31685. ))
  31686. characterMakers.push(() => makeCharacter(
  31687. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31688. {
  31689. back: {
  31690. height: math.unit(6, "feet"),
  31691. weight: math.unit(150, "lb"),
  31692. name: "Back",
  31693. image: {
  31694. source: "./media/characters/sylen/back.svg",
  31695. extra: 1335/1273,
  31696. bottom: 107/1442
  31697. }
  31698. },
  31699. },
  31700. [
  31701. {
  31702. name: "Normal",
  31703. height: math.unit(5 + 5/12, "feet")
  31704. },
  31705. {
  31706. name: "Megamacro",
  31707. height: math.unit(3, "miles"),
  31708. default: true
  31709. },
  31710. ]
  31711. ))
  31712. characterMakers.push(() => makeCharacter(
  31713. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31714. {
  31715. front: {
  31716. height: math.unit(6, "feet"),
  31717. weight: math.unit(190, "lb"),
  31718. name: "Front",
  31719. image: {
  31720. source: "./media/characters/huttser/front.svg",
  31721. extra: 1152/1058,
  31722. bottom: 23/1175
  31723. }
  31724. },
  31725. side: {
  31726. height: math.unit(6, "feet"),
  31727. weight: math.unit(190, "lb"),
  31728. name: "Side",
  31729. image: {
  31730. source: "./media/characters/huttser/side.svg",
  31731. extra: 1174/1065,
  31732. bottom: 18/1192
  31733. }
  31734. },
  31735. back: {
  31736. height: math.unit(6, "feet"),
  31737. weight: math.unit(190, "lb"),
  31738. name: "Back",
  31739. image: {
  31740. source: "./media/characters/huttser/back.svg",
  31741. extra: 1158/1056,
  31742. bottom: 12/1170
  31743. }
  31744. },
  31745. },
  31746. [
  31747. ]
  31748. ))
  31749. characterMakers.push(() => makeCharacter(
  31750. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31751. {
  31752. side: {
  31753. height: math.unit(12 + 9/12, "feet"),
  31754. weight: math.unit(15000, "lb"),
  31755. name: "Side",
  31756. image: {
  31757. source: "./media/characters/faan/side.svg",
  31758. extra: 2747/2697,
  31759. bottom: 0/2747
  31760. }
  31761. },
  31762. front: {
  31763. height: math.unit(12 + 9/12, "feet"),
  31764. weight: math.unit(15000, "lb"),
  31765. name: "Front",
  31766. image: {
  31767. source: "./media/characters/faan/front.svg",
  31768. extra: 607/571,
  31769. bottom: 24/631
  31770. }
  31771. },
  31772. head: {
  31773. height: math.unit(2.85, "feet"),
  31774. name: "Head",
  31775. image: {
  31776. source: "./media/characters/faan/head.svg"
  31777. }
  31778. },
  31779. headAlt: {
  31780. height: math.unit(3.13, "feet"),
  31781. name: "Head-alt",
  31782. image: {
  31783. source: "./media/characters/faan/head-alt.svg"
  31784. }
  31785. },
  31786. },
  31787. [
  31788. {
  31789. name: "Normal",
  31790. height: math.unit(12 + 9/12, "feet"),
  31791. default: true
  31792. },
  31793. ]
  31794. ))
  31795. characterMakers.push(() => makeCharacter(
  31796. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31797. {
  31798. front: {
  31799. height: math.unit(6, "feet"),
  31800. weight: math.unit(300, "lb"),
  31801. name: "Front",
  31802. image: {
  31803. source: "./media/characters/tanio/front.svg",
  31804. extra: 711/673,
  31805. bottom: 25/736
  31806. }
  31807. },
  31808. },
  31809. [
  31810. {
  31811. name: "Normal",
  31812. height: math.unit(6, "feet"),
  31813. default: true
  31814. },
  31815. ]
  31816. ))
  31817. characterMakers.push(() => makeCharacter(
  31818. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31819. {
  31820. front: {
  31821. height: math.unit(3, "inches"),
  31822. name: "Front",
  31823. image: {
  31824. source: "./media/characters/noboru/front.svg",
  31825. extra: 1039/932,
  31826. bottom: 18/1057
  31827. }
  31828. },
  31829. },
  31830. [
  31831. {
  31832. name: "Micro",
  31833. height: math.unit(3, "inches"),
  31834. default: true
  31835. },
  31836. ]
  31837. ))
  31838. characterMakers.push(() => makeCharacter(
  31839. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31840. {
  31841. front: {
  31842. height: math.unit(1.85, "meters"),
  31843. weight: math.unit(80, "kg"),
  31844. name: "Front",
  31845. image: {
  31846. source: "./media/characters/daniel-barrett/front.svg",
  31847. extra: 355/337,
  31848. bottom: 9/364
  31849. }
  31850. },
  31851. },
  31852. [
  31853. {
  31854. name: "Pico",
  31855. height: math.unit(0.0433, "mm")
  31856. },
  31857. {
  31858. name: "Nano",
  31859. height: math.unit(1.5, "mm")
  31860. },
  31861. {
  31862. name: "Micro",
  31863. height: math.unit(5.3, "cm"),
  31864. default: true
  31865. },
  31866. {
  31867. name: "Normal",
  31868. height: math.unit(1.85, "meters")
  31869. },
  31870. {
  31871. name: "Macro",
  31872. height: math.unit(64.7, "meters")
  31873. },
  31874. {
  31875. name: "Megamacro",
  31876. height: math.unit(2.26, "km")
  31877. },
  31878. {
  31879. name: "Gigamacro",
  31880. height: math.unit(79, "km")
  31881. },
  31882. {
  31883. name: "Teramacro",
  31884. height: math.unit(2765, "km")
  31885. },
  31886. {
  31887. name: "Petamacro",
  31888. height: math.unit(96678, "km")
  31889. },
  31890. ]
  31891. ))
  31892. characterMakers.push(() => makeCharacter(
  31893. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31894. {
  31895. front: {
  31896. height: math.unit(30, "meters"),
  31897. weight: math.unit(400, "tons"),
  31898. name: "Front",
  31899. image: {
  31900. source: "./media/characters/zeel/front.svg",
  31901. extra: 2599/2599,
  31902. bottom: 226/2825
  31903. }
  31904. },
  31905. },
  31906. [
  31907. {
  31908. name: "Macro",
  31909. height: math.unit(30, "meters"),
  31910. default: true
  31911. },
  31912. ]
  31913. ))
  31914. characterMakers.push(() => makeCharacter(
  31915. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31916. {
  31917. front: {
  31918. height: math.unit(6 + 7/12, "feet"),
  31919. weight: math.unit(210, "lb"),
  31920. name: "Front",
  31921. image: {
  31922. source: "./media/characters/tarn/front.svg",
  31923. extra: 3517/3220,
  31924. bottom: 91/3608
  31925. }
  31926. },
  31927. back: {
  31928. height: math.unit(6 + 7/12, "feet"),
  31929. weight: math.unit(210, "lb"),
  31930. name: "Back",
  31931. image: {
  31932. source: "./media/characters/tarn/back.svg",
  31933. extra: 3566/3241,
  31934. bottom: 34/3600
  31935. }
  31936. },
  31937. dick: {
  31938. height: math.unit(1.65, "feet"),
  31939. name: "Dick",
  31940. image: {
  31941. source: "./media/characters/tarn/dick.svg"
  31942. }
  31943. },
  31944. paw: {
  31945. height: math.unit(1.80, "feet"),
  31946. name: "Paw",
  31947. image: {
  31948. source: "./media/characters/tarn/paw.svg"
  31949. }
  31950. },
  31951. tongue: {
  31952. height: math.unit(0.97, "feet"),
  31953. name: "Tongue",
  31954. image: {
  31955. source: "./media/characters/tarn/tongue.svg"
  31956. }
  31957. },
  31958. },
  31959. [
  31960. {
  31961. name: "Micro",
  31962. height: math.unit(4, "inches")
  31963. },
  31964. {
  31965. name: "Normal",
  31966. height: math.unit(6 + 7/12, "feet"),
  31967. default: true
  31968. },
  31969. {
  31970. name: "Macro",
  31971. height: math.unit(300, "feet")
  31972. },
  31973. ]
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31977. {
  31978. front: {
  31979. height: math.unit(5 + 7/12, "feet"),
  31980. weight: math.unit(80, "kg"),
  31981. name: "Front",
  31982. image: {
  31983. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31984. extra: 3023/2865,
  31985. bottom: 33/3056
  31986. }
  31987. },
  31988. back: {
  31989. height: math.unit(5 + 7/12, "feet"),
  31990. weight: math.unit(80, "kg"),
  31991. name: "Back",
  31992. image: {
  31993. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31994. extra: 3020/2886,
  31995. bottom: 30/3050
  31996. }
  31997. },
  31998. dick: {
  31999. height: math.unit(0.98, "feet"),
  32000. name: "Dick",
  32001. image: {
  32002. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32003. }
  32004. },
  32005. anatomy: {
  32006. height: math.unit(2.86, "feet"),
  32007. name: "Anatomy",
  32008. image: {
  32009. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32010. }
  32011. },
  32012. },
  32013. [
  32014. {
  32015. name: "Really Small",
  32016. height: math.unit(2, "inches")
  32017. },
  32018. {
  32019. name: "Micro",
  32020. height: math.unit(5.583, "inches")
  32021. },
  32022. {
  32023. name: "Normal",
  32024. height: math.unit(5 + 7/12, "feet"),
  32025. default: true
  32026. },
  32027. {
  32028. name: "Macro",
  32029. height: math.unit(67, "feet")
  32030. },
  32031. {
  32032. name: "Megamacro",
  32033. height: math.unit(134, "feet")
  32034. },
  32035. ]
  32036. ))
  32037. characterMakers.push(() => makeCharacter(
  32038. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32039. {
  32040. front: {
  32041. height: math.unit(9, "feet"),
  32042. weight: math.unit(120, "lb"),
  32043. name: "Front",
  32044. image: {
  32045. source: "./media/characters/sally/front.svg",
  32046. extra: 1506/1349,
  32047. bottom: 66/1572
  32048. }
  32049. },
  32050. },
  32051. [
  32052. {
  32053. name: "Normal",
  32054. height: math.unit(9, "feet"),
  32055. default: true
  32056. },
  32057. ]
  32058. ))
  32059. characterMakers.push(() => makeCharacter(
  32060. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32061. {
  32062. front: {
  32063. height: math.unit(8, "feet"),
  32064. weight: math.unit(900, "lb"),
  32065. name: "Front",
  32066. image: {
  32067. source: "./media/characters/owen/front.svg",
  32068. extra: 1761/1657,
  32069. bottom: 74/1835
  32070. }
  32071. },
  32072. side: {
  32073. height: math.unit(8, "feet"),
  32074. weight: math.unit(900, "lb"),
  32075. name: "Side",
  32076. image: {
  32077. source: "./media/characters/owen/side.svg",
  32078. extra: 1797/1734,
  32079. bottom: 30/1827
  32080. }
  32081. },
  32082. back: {
  32083. height: math.unit(8, "feet"),
  32084. weight: math.unit(900, "lb"),
  32085. name: "Back",
  32086. image: {
  32087. source: "./media/characters/owen/back.svg",
  32088. extra: 1796/1706,
  32089. bottom: 59/1855
  32090. }
  32091. },
  32092. maw: {
  32093. height: math.unit(1.76, "feet"),
  32094. name: "Maw",
  32095. image: {
  32096. source: "./media/characters/owen/maw.svg"
  32097. }
  32098. },
  32099. },
  32100. [
  32101. {
  32102. name: "Normal",
  32103. height: math.unit(8, "feet"),
  32104. default: true
  32105. },
  32106. ]
  32107. ))
  32108. characterMakers.push(() => makeCharacter(
  32109. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32110. {
  32111. front: {
  32112. height: math.unit(4, "feet"),
  32113. weight: math.unit(400, "lb"),
  32114. name: "Front",
  32115. image: {
  32116. source: "./media/characters/ryth/front.svg",
  32117. extra: 1920/1748,
  32118. bottom: 42/1962
  32119. }
  32120. },
  32121. back: {
  32122. height: math.unit(4, "feet"),
  32123. weight: math.unit(400, "lb"),
  32124. name: "Back",
  32125. image: {
  32126. source: "./media/characters/ryth/back.svg",
  32127. extra: 1897/1690,
  32128. bottom: 89/1986
  32129. }
  32130. },
  32131. mouth: {
  32132. height: math.unit(1.39, "feet"),
  32133. name: "Mouth",
  32134. image: {
  32135. source: "./media/characters/ryth/mouth.svg"
  32136. }
  32137. },
  32138. tailmaw: {
  32139. height: math.unit(1.23, "feet"),
  32140. name: "Tailmaw",
  32141. image: {
  32142. source: "./media/characters/ryth/tailmaw.svg"
  32143. }
  32144. },
  32145. goia: {
  32146. height: math.unit(4, "meters"),
  32147. weight: math.unit(10800, "lb"),
  32148. name: "Goia",
  32149. image: {
  32150. source: "./media/characters/ryth/goia.svg",
  32151. extra: 745/640,
  32152. bottom: 107/852
  32153. }
  32154. },
  32155. goiaFront: {
  32156. height: math.unit(4, "meters"),
  32157. weight: math.unit(10800, "lb"),
  32158. name: "Goia (Front)",
  32159. image: {
  32160. source: "./media/characters/ryth/goia-front.svg",
  32161. extra: 750/586,
  32162. bottom: 114/864
  32163. }
  32164. },
  32165. goiaMaw: {
  32166. height: math.unit(5.55, "feet"),
  32167. name: "Goia Maw",
  32168. image: {
  32169. source: "./media/characters/ryth/goia-maw.svg"
  32170. }
  32171. },
  32172. goiaForepaw: {
  32173. height: math.unit(3.5, "feet"),
  32174. name: "Goia Forepaw",
  32175. image: {
  32176. source: "./media/characters/ryth/goia-forepaw.svg"
  32177. }
  32178. },
  32179. goiaHindpaw: {
  32180. height: math.unit(5.55, "feet"),
  32181. name: "Goia Hindpaw",
  32182. image: {
  32183. source: "./media/characters/ryth/goia-hindpaw.svg"
  32184. }
  32185. },
  32186. },
  32187. [
  32188. {
  32189. name: "Normal",
  32190. height: math.unit(4, "feet"),
  32191. default: true
  32192. },
  32193. ]
  32194. ))
  32195. characterMakers.push(() => makeCharacter(
  32196. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32197. {
  32198. front: {
  32199. height: math.unit(7, "feet"),
  32200. weight: math.unit(180, "lb"),
  32201. name: "Front",
  32202. image: {
  32203. source: "./media/characters/necrolance/front.svg",
  32204. extra: 1062/947,
  32205. bottom: 41/1103
  32206. }
  32207. },
  32208. back: {
  32209. height: math.unit(7, "feet"),
  32210. weight: math.unit(180, "lb"),
  32211. name: "Back",
  32212. image: {
  32213. source: "./media/characters/necrolance/back.svg",
  32214. extra: 1045/984,
  32215. bottom: 14/1059
  32216. }
  32217. },
  32218. wing: {
  32219. height: math.unit(2.67, "feet"),
  32220. name: "Wing",
  32221. image: {
  32222. source: "./media/characters/necrolance/wing.svg"
  32223. }
  32224. },
  32225. },
  32226. [
  32227. {
  32228. name: "Normal",
  32229. height: math.unit(7, "feet"),
  32230. default: true
  32231. },
  32232. ]
  32233. ))
  32234. characterMakers.push(() => makeCharacter(
  32235. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32236. {
  32237. front: {
  32238. height: math.unit(76, "meters"),
  32239. weight: math.unit(30000, "tons"),
  32240. name: "Front",
  32241. image: {
  32242. source: "./media/characters/tyler/front.svg",
  32243. extra: 1640/1640,
  32244. bottom: 114/1754
  32245. }
  32246. },
  32247. },
  32248. [
  32249. {
  32250. name: "Macro",
  32251. height: math.unit(76, "meters"),
  32252. default: true
  32253. },
  32254. ]
  32255. ))
  32256. characterMakers.push(() => makeCharacter(
  32257. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32258. {
  32259. front: {
  32260. height: math.unit(4 + 11/12, "feet"),
  32261. weight: math.unit(132, "lb"),
  32262. name: "Front",
  32263. image: {
  32264. source: "./media/characters/icey/front.svg",
  32265. extra: 2750/2550,
  32266. bottom: 33/2783
  32267. }
  32268. },
  32269. back: {
  32270. height: math.unit(4 + 11/12, "feet"),
  32271. weight: math.unit(132, "lb"),
  32272. name: "Back",
  32273. image: {
  32274. source: "./media/characters/icey/back.svg",
  32275. extra: 2624/2481,
  32276. bottom: 35/2659
  32277. }
  32278. },
  32279. },
  32280. [
  32281. {
  32282. name: "Normal",
  32283. height: math.unit(4 + 11/12, "feet"),
  32284. default: true
  32285. },
  32286. ]
  32287. ))
  32288. characterMakers.push(() => makeCharacter(
  32289. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32290. {
  32291. front: {
  32292. height: math.unit(100, "feet"),
  32293. weight: math.unit(0, "lb"),
  32294. name: "Front",
  32295. image: {
  32296. source: "./media/characters/smile/front.svg",
  32297. extra: 2983/2912,
  32298. bottom: 162/3145
  32299. }
  32300. },
  32301. back: {
  32302. height: math.unit(100, "feet"),
  32303. weight: math.unit(0, "lb"),
  32304. name: "Back",
  32305. image: {
  32306. source: "./media/characters/smile/back.svg",
  32307. extra: 3143/3031,
  32308. bottom: 91/3234
  32309. }
  32310. },
  32311. head: {
  32312. height: math.unit(26.3, "feet"),
  32313. weight: math.unit(0, "lb"),
  32314. name: "Head",
  32315. image: {
  32316. source: "./media/characters/smile/head.svg"
  32317. }
  32318. },
  32319. collar: {
  32320. height: math.unit(5.3, "feet"),
  32321. weight: math.unit(0, "lb"),
  32322. name: "Collar",
  32323. image: {
  32324. source: "./media/characters/smile/collar.svg"
  32325. }
  32326. },
  32327. },
  32328. [
  32329. {
  32330. name: "Macro",
  32331. height: math.unit(100, "feet"),
  32332. default: true
  32333. },
  32334. ]
  32335. ))
  32336. characterMakers.push(() => makeCharacter(
  32337. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32338. {
  32339. dragon: {
  32340. height: math.unit(26, "feet"),
  32341. weight: math.unit(36, "tons"),
  32342. name: "Dragon",
  32343. image: {
  32344. source: "./media/characters/arimphae/dragon.svg",
  32345. extra: 1574/983,
  32346. bottom: 357/1931
  32347. }
  32348. },
  32349. drake: {
  32350. height: math.unit(9, "feet"),
  32351. weight: math.unit(1.5, "tons"),
  32352. name: "Drake",
  32353. image: {
  32354. source: "./media/characters/arimphae/drake.svg",
  32355. extra: 1120/925,
  32356. bottom: 435/1555
  32357. }
  32358. },
  32359. },
  32360. [
  32361. {
  32362. name: "Small",
  32363. height: math.unit(26*5/9, "feet")
  32364. },
  32365. {
  32366. name: "Normal",
  32367. height: math.unit(26, "feet"),
  32368. default: true
  32369. },
  32370. ]
  32371. ))
  32372. characterMakers.push(() => makeCharacter(
  32373. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32374. {
  32375. front: {
  32376. height: math.unit(8 + 9/12, "feet"),
  32377. name: "Front",
  32378. image: {
  32379. source: "./media/characters/xander/front.svg",
  32380. extra: 1237/974,
  32381. bottom: 94/1331
  32382. }
  32383. },
  32384. },
  32385. [
  32386. {
  32387. name: "Normal",
  32388. height: math.unit(8 + 9/12, "feet"),
  32389. default: true
  32390. },
  32391. {
  32392. name: "Gaze Grabber",
  32393. height: math.unit(13 + 8/12, "feet")
  32394. },
  32395. {
  32396. name: "Jaw Dropper",
  32397. height: math.unit(27, "feet")
  32398. },
  32399. {
  32400. name: "Show Stopper",
  32401. height: math.unit(136, "feet")
  32402. },
  32403. {
  32404. name: "Superstar",
  32405. height: math.unit(1.9e6, "miles")
  32406. },
  32407. ]
  32408. ))
  32409. characterMakers.push(() => makeCharacter(
  32410. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32411. {
  32412. side: {
  32413. height: math.unit(2100, "feet"),
  32414. name: "Side",
  32415. image: {
  32416. source: "./media/characters/osiris/side.svg",
  32417. extra: 1105/939,
  32418. bottom: 167/1272
  32419. }
  32420. },
  32421. },
  32422. [
  32423. {
  32424. name: "Macro",
  32425. height: math.unit(2100, "feet"),
  32426. default: true
  32427. },
  32428. ]
  32429. ))
  32430. characterMakers.push(() => makeCharacter(
  32431. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32432. {
  32433. front: {
  32434. height: math.unit(6 + 8/12, "feet"),
  32435. weight: math.unit(225, "lb"),
  32436. name: "Front",
  32437. image: {
  32438. source: "./media/characters/rhys-londe/front.svg",
  32439. extra: 2258/2141,
  32440. bottom: 188/2446
  32441. }
  32442. },
  32443. back: {
  32444. height: math.unit(6 + 8/12, "feet"),
  32445. weight: math.unit(225, "lb"),
  32446. name: "Back",
  32447. image: {
  32448. source: "./media/characters/rhys-londe/back.svg",
  32449. extra: 2237/2137,
  32450. bottom: 63/2300
  32451. }
  32452. },
  32453. frontNsfw: {
  32454. height: math.unit(6 + 8/12, "feet"),
  32455. weight: math.unit(225, "lb"),
  32456. name: "Front (NSFW)",
  32457. image: {
  32458. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32459. extra: 2258/2141,
  32460. bottom: 188/2446
  32461. }
  32462. },
  32463. backNsfw: {
  32464. height: math.unit(6 + 8/12, "feet"),
  32465. weight: math.unit(225, "lb"),
  32466. name: "Back (NSFW)",
  32467. image: {
  32468. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32469. extra: 2237/2137,
  32470. bottom: 63/2300
  32471. }
  32472. },
  32473. dick: {
  32474. height: math.unit(30, "inches"),
  32475. name: "Dick",
  32476. image: {
  32477. source: "./media/characters/rhys-londe/dick.svg"
  32478. }
  32479. },
  32480. maw: {
  32481. height: math.unit(1.6, "feet"),
  32482. name: "Maw",
  32483. image: {
  32484. source: "./media/characters/rhys-londe/maw.svg"
  32485. }
  32486. },
  32487. },
  32488. [
  32489. {
  32490. name: "Normal",
  32491. height: math.unit(6 + 8/12, "feet"),
  32492. default: true
  32493. },
  32494. ]
  32495. ))
  32496. characterMakers.push(() => makeCharacter(
  32497. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32498. {
  32499. front: {
  32500. height: math.unit(3 + 10/12, "feet"),
  32501. weight: math.unit(90, "lb"),
  32502. name: "Front",
  32503. image: {
  32504. source: "./media/characters/taivas-ensim/front.svg",
  32505. extra: 1327/1216,
  32506. bottom: 96/1423
  32507. }
  32508. },
  32509. back: {
  32510. height: math.unit(3 + 10/12, "feet"),
  32511. weight: math.unit(90, "lb"),
  32512. name: "Back",
  32513. image: {
  32514. source: "./media/characters/taivas-ensim/back.svg",
  32515. extra: 1355/1247,
  32516. bottom: 11/1366
  32517. }
  32518. },
  32519. frontNsfw: {
  32520. height: math.unit(3 + 10/12, "feet"),
  32521. weight: math.unit(90, "lb"),
  32522. name: "Front (NSFW)",
  32523. image: {
  32524. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32525. extra: 1327/1216,
  32526. bottom: 96/1423
  32527. }
  32528. },
  32529. backNsfw: {
  32530. height: math.unit(3 + 10/12, "feet"),
  32531. weight: math.unit(90, "lb"),
  32532. name: "Back (NSFW)",
  32533. image: {
  32534. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32535. extra: 1355/1247,
  32536. bottom: 11/1366
  32537. }
  32538. },
  32539. },
  32540. [
  32541. {
  32542. name: "Normal",
  32543. height: math.unit(3 + 10/12, "feet"),
  32544. default: true
  32545. },
  32546. ]
  32547. ))
  32548. characterMakers.push(() => makeCharacter(
  32549. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32550. {
  32551. front: {
  32552. height: math.unit(9 + 6/12, "feet"),
  32553. weight: math.unit(940, "lb"),
  32554. name: "Front",
  32555. image: {
  32556. source: "./media/characters/byliss/front.svg",
  32557. extra: 1327/1290,
  32558. bottom: 82/1409
  32559. }
  32560. },
  32561. back: {
  32562. height: math.unit(9 + 6/12, "feet"),
  32563. weight: math.unit(940, "lb"),
  32564. name: "Back",
  32565. image: {
  32566. source: "./media/characters/byliss/back.svg",
  32567. extra: 1376/1349,
  32568. bottom: 9/1385
  32569. }
  32570. },
  32571. frontNsfw: {
  32572. height: math.unit(9 + 6/12, "feet"),
  32573. weight: math.unit(940, "lb"),
  32574. name: "Front (NSFW)",
  32575. image: {
  32576. source: "./media/characters/byliss/front-nsfw.svg",
  32577. extra: 1327/1290,
  32578. bottom: 82/1409
  32579. }
  32580. },
  32581. backNsfw: {
  32582. height: math.unit(9 + 6/12, "feet"),
  32583. weight: math.unit(940, "lb"),
  32584. name: "Back (NSFW)",
  32585. image: {
  32586. source: "./media/characters/byliss/back-nsfw.svg",
  32587. extra: 1376/1349,
  32588. bottom: 9/1385
  32589. }
  32590. },
  32591. },
  32592. [
  32593. {
  32594. name: "Normal",
  32595. height: math.unit(9 + 6/12, "feet"),
  32596. default: true
  32597. },
  32598. ]
  32599. ))
  32600. characterMakers.push(() => makeCharacter(
  32601. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32602. {
  32603. front: {
  32604. height: math.unit(5 + 2/12, "feet"),
  32605. weight: math.unit(200, "lb"),
  32606. name: "Front",
  32607. image: {
  32608. source: "./media/characters/noraly/front.svg",
  32609. extra: 4985/4773,
  32610. bottom: 150/5135
  32611. }
  32612. },
  32613. full: {
  32614. height: math.unit(5 + 2/12, "feet"),
  32615. weight: math.unit(164, "lb"),
  32616. name: "Full",
  32617. image: {
  32618. source: "./media/characters/noraly/full.svg",
  32619. extra: 1114/1059,
  32620. bottom: 35/1149
  32621. }
  32622. },
  32623. fuller: {
  32624. height: math.unit(5 + 2/12, "feet"),
  32625. weight: math.unit(230, "lb"),
  32626. name: "Fuller",
  32627. image: {
  32628. source: "./media/characters/noraly/fuller.svg",
  32629. extra: 1114/1059,
  32630. bottom: 35/1149
  32631. }
  32632. },
  32633. fullest: {
  32634. height: math.unit(5 + 2/12, "feet"),
  32635. weight: math.unit(300, "lb"),
  32636. name: "Fullest",
  32637. image: {
  32638. source: "./media/characters/noraly/fullest.svg",
  32639. extra: 1114/1059,
  32640. bottom: 35/1149
  32641. }
  32642. },
  32643. },
  32644. [
  32645. {
  32646. name: "Normal",
  32647. height: math.unit(5 + 2/12, "feet"),
  32648. default: true
  32649. },
  32650. ]
  32651. ))
  32652. characterMakers.push(() => makeCharacter(
  32653. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32654. {
  32655. front: {
  32656. height: math.unit(5 + 2/12, "feet"),
  32657. weight: math.unit(210, "lb"),
  32658. name: "Front",
  32659. image: {
  32660. source: "./media/characters/pera/front.svg",
  32661. extra: 1560/1531,
  32662. bottom: 165/1725
  32663. }
  32664. },
  32665. back: {
  32666. height: math.unit(5 + 2/12, "feet"),
  32667. weight: math.unit(210, "lb"),
  32668. name: "Back",
  32669. image: {
  32670. source: "./media/characters/pera/back.svg",
  32671. extra: 1523/1493,
  32672. bottom: 152/1675
  32673. }
  32674. },
  32675. dick: {
  32676. height: math.unit(2.4, "feet"),
  32677. name: "Dick",
  32678. image: {
  32679. source: "./media/characters/pera/dick.svg"
  32680. }
  32681. },
  32682. },
  32683. [
  32684. {
  32685. name: "Normal",
  32686. height: math.unit(5 + 2/12, "feet"),
  32687. default: true
  32688. },
  32689. ]
  32690. ))
  32691. characterMakers.push(() => makeCharacter(
  32692. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32693. {
  32694. front: {
  32695. height: math.unit(12, "feet"),
  32696. weight: math.unit(3200, "lb"),
  32697. name: "Front",
  32698. image: {
  32699. source: "./media/characters/julian/front.svg",
  32700. extra: 2962/2701,
  32701. bottom: 184/3146
  32702. }
  32703. },
  32704. maw: {
  32705. height: math.unit(5.35, "feet"),
  32706. name: "Maw",
  32707. image: {
  32708. source: "./media/characters/julian/maw.svg"
  32709. }
  32710. },
  32711. paw: {
  32712. height: math.unit(3.07, "feet"),
  32713. name: "Paw",
  32714. image: {
  32715. source: "./media/characters/julian/paw.svg"
  32716. }
  32717. },
  32718. },
  32719. [
  32720. {
  32721. name: "Default",
  32722. height: math.unit(12, "feet"),
  32723. default: true
  32724. },
  32725. {
  32726. name: "Big",
  32727. height: math.unit(50, "feet")
  32728. },
  32729. {
  32730. name: "Really Big",
  32731. height: math.unit(1, "mile")
  32732. },
  32733. {
  32734. name: "Extremely Big",
  32735. height: math.unit(100, "miles")
  32736. },
  32737. {
  32738. name: "Planet Hugger",
  32739. height: math.unit(200, "megameters")
  32740. },
  32741. {
  32742. name: "Unreasonably Big",
  32743. height: math.unit(1e300, "meters")
  32744. },
  32745. ]
  32746. ))
  32747. characterMakers.push(() => makeCharacter(
  32748. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32749. {
  32750. solgooleo: {
  32751. height: math.unit(4, "meters"),
  32752. weight: math.unit(6000*1.5, "kg"),
  32753. volume: math.unit(6000, "liters"),
  32754. name: "Solgooleo",
  32755. image: {
  32756. source: "./media/characters/pi/solgooleo.svg",
  32757. extra: 388/331,
  32758. bottom: 29/417
  32759. }
  32760. },
  32761. },
  32762. [
  32763. {
  32764. name: "Normal",
  32765. height: math.unit(4, "meters"),
  32766. default: true
  32767. },
  32768. ]
  32769. ))
  32770. characterMakers.push(() => makeCharacter(
  32771. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32772. {
  32773. front: {
  32774. height: math.unit(8, "feet"),
  32775. weight: math.unit(4, "tons"),
  32776. name: "Front",
  32777. image: {
  32778. source: "./media/characters/shaun/front.svg",
  32779. extra: 503/495,
  32780. bottom: 20/523
  32781. }
  32782. },
  32783. back: {
  32784. height: math.unit(8, "feet"),
  32785. weight: math.unit(4, "tons"),
  32786. name: "Back",
  32787. image: {
  32788. source: "./media/characters/shaun/back.svg",
  32789. extra: 487/480,
  32790. bottom: 20/507
  32791. }
  32792. },
  32793. },
  32794. [
  32795. {
  32796. name: "Lorg",
  32797. height: math.unit(8, "feet"),
  32798. default: true
  32799. },
  32800. ]
  32801. ))
  32802. characterMakers.push(() => makeCharacter(
  32803. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32804. {
  32805. front: {
  32806. height: math.unit(7, "feet"),
  32807. name: "Front",
  32808. image: {
  32809. source: "./media/characters/sini/front.svg",
  32810. extra: 726/678,
  32811. bottom: 35/761
  32812. }
  32813. },
  32814. back: {
  32815. height: math.unit(7, "feet"),
  32816. name: "Back",
  32817. image: {
  32818. source: "./media/characters/sini/back.svg",
  32819. extra: 743/701,
  32820. bottom: 12/755
  32821. }
  32822. },
  32823. mawAnthro: {
  32824. height: math.unit(2.14, "feet"),
  32825. name: "Maw (Anthro)",
  32826. image: {
  32827. source: "./media/characters/sini/maw-anthro.svg"
  32828. }
  32829. },
  32830. dick: {
  32831. height: math.unit(1.45, "feet"),
  32832. name: "Dick (Anthro)",
  32833. image: {
  32834. source: "./media/characters/sini/dick-anthro.svg"
  32835. }
  32836. },
  32837. feral: {
  32838. height: math.unit(16, "feet"),
  32839. name: "Feral",
  32840. image: {
  32841. source: "./media/characters/sini/feral.svg",
  32842. extra: 814/605,
  32843. bottom: 11/825
  32844. }
  32845. },
  32846. mawFeral: {
  32847. height: math.unit(5.66, "feet"),
  32848. name: "Maw-feral",
  32849. image: {
  32850. source: "./media/characters/sini/maw-feral.svg"
  32851. }
  32852. },
  32853. footFeral: {
  32854. height: math.unit(5.17, "feet"),
  32855. name: "Foot-feral",
  32856. image: {
  32857. source: "./media/characters/sini/foot-feral.svg"
  32858. }
  32859. },
  32860. },
  32861. [
  32862. {
  32863. name: "Normal",
  32864. height: math.unit(7, "feet"),
  32865. default: true
  32866. },
  32867. ]
  32868. ))
  32869. characterMakers.push(() => makeCharacter(
  32870. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32871. {
  32872. side: {
  32873. height: math.unit(13, "meters"),
  32874. weight: math.unit(9072, "kg"),
  32875. name: "Side",
  32876. image: {
  32877. source: "./media/characters/raylldo/side.svg",
  32878. extra: 403/344,
  32879. bottom: 42/445
  32880. }
  32881. },
  32882. leaping: {
  32883. height: math.unit(12.3, "meters"),
  32884. weight: math.unit(9072, "kg"),
  32885. name: "Leaping",
  32886. image: {
  32887. source: "./media/characters/raylldo/leaping.svg",
  32888. extra: 470/249,
  32889. bottom: 13/483
  32890. }
  32891. },
  32892. flying: {
  32893. height: math.unit(18, "meters"),
  32894. weight: math.unit(9072, "kg"),
  32895. name: "Flying",
  32896. image: {
  32897. source: "./media/characters/raylldo/flying.svg"
  32898. }
  32899. },
  32900. head: {
  32901. height: math.unit(5.85, "meters"),
  32902. name: "Head",
  32903. image: {
  32904. source: "./media/characters/raylldo/head.svg"
  32905. }
  32906. },
  32907. maw: {
  32908. height: math.unit(5.32, "meters"),
  32909. name: "Maw",
  32910. image: {
  32911. source: "./media/characters/raylldo/maw.svg"
  32912. }
  32913. },
  32914. eye: {
  32915. height: math.unit(0.54, "meters"),
  32916. name: "Eye",
  32917. image: {
  32918. source: "./media/characters/raylldo/eye.svg"
  32919. }
  32920. },
  32921. },
  32922. [
  32923. {
  32924. name: "Normal",
  32925. height: math.unit(13, "meters"),
  32926. default: true
  32927. },
  32928. ]
  32929. ))
  32930. characterMakers.push(() => makeCharacter(
  32931. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32932. {
  32933. anthroFront: {
  32934. height: math.unit(9, "feet"),
  32935. weight: math.unit(600, "lb"),
  32936. name: "Anthro (Front)",
  32937. image: {
  32938. source: "./media/characters/glint/anthro-front.svg",
  32939. extra: 1097/1018,
  32940. bottom: 28/1125
  32941. }
  32942. },
  32943. anthroBack: {
  32944. height: math.unit(9, "feet"),
  32945. weight: math.unit(600, "lb"),
  32946. name: "Anthro (Back)",
  32947. image: {
  32948. source: "./media/characters/glint/anthro-back.svg",
  32949. extra: 1154/997,
  32950. bottom: 36/1190
  32951. }
  32952. },
  32953. feral: {
  32954. height: math.unit(11, "feet"),
  32955. weight: math.unit(50000, "lb"),
  32956. name: "Feral",
  32957. image: {
  32958. source: "./media/characters/glint/feral.svg",
  32959. extra: 3035/1585,
  32960. bottom: 1169/4204
  32961. }
  32962. },
  32963. dickAnthro: {
  32964. height: math.unit(0.7, "meters"),
  32965. name: "Dick (Anthro)",
  32966. image: {
  32967. source: "./media/characters/glint/dick-anthro.svg"
  32968. }
  32969. },
  32970. dickFeral: {
  32971. height: math.unit(2.65, "meters"),
  32972. name: "Dick (Feral)",
  32973. image: {
  32974. source: "./media/characters/glint/dick-feral.svg"
  32975. }
  32976. },
  32977. slitHidden: {
  32978. height: math.unit(5.85, "meters"),
  32979. name: "Slit (Hidden)",
  32980. image: {
  32981. source: "./media/characters/glint/slit-hidden.svg"
  32982. }
  32983. },
  32984. slitErect: {
  32985. height: math.unit(5.85, "meters"),
  32986. name: "Slit (Erect)",
  32987. image: {
  32988. source: "./media/characters/glint/slit-erect.svg"
  32989. }
  32990. },
  32991. mawAnthro: {
  32992. height: math.unit(0.63, "meters"),
  32993. name: "Maw (Anthro)",
  32994. image: {
  32995. source: "./media/characters/glint/maw.svg"
  32996. }
  32997. },
  32998. mawFeral: {
  32999. height: math.unit(2.89, "meters"),
  33000. name: "Maw (Feral)",
  33001. image: {
  33002. source: "./media/characters/glint/maw.svg"
  33003. }
  33004. },
  33005. },
  33006. [
  33007. {
  33008. name: "Normal",
  33009. height: math.unit(9, "feet"),
  33010. default: true
  33011. },
  33012. ]
  33013. ))
  33014. characterMakers.push(() => makeCharacter(
  33015. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33016. {
  33017. side: {
  33018. height: math.unit(15, "feet"),
  33019. weight: math.unit(5000, "kg"),
  33020. name: "Side",
  33021. image: {
  33022. source: "./media/characters/kairne/side.svg",
  33023. extra: 979/811,
  33024. bottom: 13/992
  33025. }
  33026. },
  33027. front: {
  33028. height: math.unit(15, "feet"),
  33029. weight: math.unit(5000, "kg"),
  33030. name: "Front",
  33031. image: {
  33032. source: "./media/characters/kairne/front.svg",
  33033. extra: 908/814,
  33034. bottom: 26/934
  33035. }
  33036. },
  33037. sideNsfw: {
  33038. height: math.unit(15, "feet"),
  33039. weight: math.unit(5000, "kg"),
  33040. name: "Side (NSFW)",
  33041. image: {
  33042. source: "./media/characters/kairne/side-nsfw.svg",
  33043. extra: 979/811,
  33044. bottom: 13/992
  33045. }
  33046. },
  33047. frontNsfw: {
  33048. height: math.unit(15, "feet"),
  33049. weight: math.unit(5000, "kg"),
  33050. name: "Front (NSFW)",
  33051. image: {
  33052. source: "./media/characters/kairne/front-nsfw.svg",
  33053. extra: 908/814,
  33054. bottom: 26/934
  33055. }
  33056. },
  33057. dickCaged: {
  33058. height: math.unit(0.65, "meters"),
  33059. name: "Dick-caged",
  33060. image: {
  33061. source: "./media/characters/kairne/dick-caged.svg"
  33062. }
  33063. },
  33064. dick: {
  33065. height: math.unit(0.79, "meters"),
  33066. name: "Dick",
  33067. image: {
  33068. source: "./media/characters/kairne/dick.svg"
  33069. }
  33070. },
  33071. genitals: {
  33072. height: math.unit(1.29, "meters"),
  33073. name: "Genitals",
  33074. image: {
  33075. source: "./media/characters/kairne/genitals.svg"
  33076. }
  33077. },
  33078. maw: {
  33079. height: math.unit(1.73, "meters"),
  33080. name: "Maw",
  33081. image: {
  33082. source: "./media/characters/kairne/maw.svg"
  33083. }
  33084. },
  33085. },
  33086. [
  33087. {
  33088. name: "Normal",
  33089. height: math.unit(15, "feet"),
  33090. default: true
  33091. },
  33092. ]
  33093. ))
  33094. characterMakers.push(() => makeCharacter(
  33095. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33096. {
  33097. front: {
  33098. height: math.unit(5 + 8/12, "feet"),
  33099. weight: math.unit(139, "lb"),
  33100. name: "Front",
  33101. image: {
  33102. source: "./media/characters/biscuit-jackal/front.svg",
  33103. extra: 2106/1961,
  33104. bottom: 58/2164
  33105. }
  33106. },
  33107. back: {
  33108. height: math.unit(5 + 8/12, "feet"),
  33109. weight: math.unit(139, "lb"),
  33110. name: "Back",
  33111. image: {
  33112. source: "./media/characters/biscuit-jackal/back.svg",
  33113. extra: 2132/1976,
  33114. bottom: 57/2189
  33115. }
  33116. },
  33117. werejackal: {
  33118. height: math.unit(6 + 3/12, "feet"),
  33119. weight: math.unit(188, "lb"),
  33120. name: "Werejackal",
  33121. image: {
  33122. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33123. extra: 2373/2178,
  33124. bottom: 53/2426
  33125. }
  33126. },
  33127. },
  33128. [
  33129. {
  33130. name: "Normal",
  33131. height: math.unit(5 + 8/12, "feet"),
  33132. default: true
  33133. },
  33134. ]
  33135. ))
  33136. characterMakers.push(() => makeCharacter(
  33137. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33138. {
  33139. front: {
  33140. height: math.unit(140, "cm"),
  33141. weight: math.unit(45, "kg"),
  33142. name: "Front",
  33143. image: {
  33144. source: "./media/characters/tayra-white/front.svg",
  33145. extra: 2229/2192,
  33146. bottom: 75/2304
  33147. }
  33148. },
  33149. },
  33150. [
  33151. {
  33152. name: "Normal",
  33153. height: math.unit(140, "cm"),
  33154. default: true
  33155. },
  33156. ]
  33157. ))
  33158. characterMakers.push(() => makeCharacter(
  33159. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33160. {
  33161. front: {
  33162. height: math.unit(4 + 5/12, "feet"),
  33163. name: "Front",
  33164. image: {
  33165. source: "./media/characters/scoop/front.svg",
  33166. extra: 1257/1136,
  33167. bottom: 69/1326
  33168. }
  33169. },
  33170. back: {
  33171. height: math.unit(4 + 5/12, "feet"),
  33172. name: "Back",
  33173. image: {
  33174. source: "./media/characters/scoop/back.svg",
  33175. extra: 1321/1152,
  33176. bottom: 32/1353
  33177. }
  33178. },
  33179. maw: {
  33180. height: math.unit(0.68, "feet"),
  33181. name: "Maw",
  33182. image: {
  33183. source: "./media/characters/scoop/maw.svg"
  33184. }
  33185. },
  33186. },
  33187. [
  33188. {
  33189. name: "Really Small",
  33190. height: math.unit(1, "mm")
  33191. },
  33192. {
  33193. name: "Micro",
  33194. height: math.unit(1, "inch")
  33195. },
  33196. {
  33197. name: "Normal",
  33198. height: math.unit(4 + 5/12, "feet"),
  33199. default: true
  33200. },
  33201. {
  33202. name: "Macro",
  33203. height: math.unit(200, "feet")
  33204. },
  33205. {
  33206. name: "Megamacro",
  33207. height: math.unit(3240, "feet")
  33208. },
  33209. {
  33210. name: "Teramacro",
  33211. height: math.unit(2500, "miles")
  33212. },
  33213. ]
  33214. ))
  33215. characterMakers.push(() => makeCharacter(
  33216. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33217. {
  33218. front: {
  33219. height: math.unit(15 + 7/12, "feet"),
  33220. name: "Front",
  33221. image: {
  33222. source: "./media/characters/saphinara/front.svg",
  33223. extra: 604/546,
  33224. bottom: 19/623
  33225. }
  33226. },
  33227. side: {
  33228. height: math.unit(15 + 7/12, "feet"),
  33229. name: "Side",
  33230. image: {
  33231. source: "./media/characters/saphinara/side.svg",
  33232. extra: 605/547,
  33233. bottom: 6/611
  33234. }
  33235. },
  33236. back: {
  33237. height: math.unit(15 + 7/12, "feet"),
  33238. name: "Back",
  33239. image: {
  33240. source: "./media/characters/saphinara/back.svg",
  33241. extra: 591/531,
  33242. bottom: 13/604
  33243. }
  33244. },
  33245. frontTail: {
  33246. height: math.unit(15 + 7/12, "feet"),
  33247. name: "Front (Full Tail)",
  33248. image: {
  33249. source: "./media/characters/saphinara/front-tail.svg",
  33250. extra: 748/547,
  33251. bottom: 66/814
  33252. }
  33253. },
  33254. },
  33255. [
  33256. {
  33257. name: "Normal",
  33258. height: math.unit(15 + 7/12, "feet"),
  33259. default: true
  33260. },
  33261. {
  33262. name: "Angry",
  33263. height: math.unit(30 + 6/12, "feet")
  33264. },
  33265. {
  33266. name: "Enraged",
  33267. height: math.unit(102 + 1/12, "feet")
  33268. },
  33269. ]
  33270. ))
  33271. characterMakers.push(() => makeCharacter(
  33272. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33273. {
  33274. front: {
  33275. height: math.unit(6 + 8/12, "feet"),
  33276. weight: math.unit(300, "lb"),
  33277. name: "Front",
  33278. image: {
  33279. source: "./media/characters/jrain/front.svg",
  33280. extra: 3039/2865,
  33281. bottom: 399/3438
  33282. }
  33283. },
  33284. back: {
  33285. height: math.unit(6 + 8/12, "feet"),
  33286. weight: math.unit(300, "lb"),
  33287. name: "Back",
  33288. image: {
  33289. source: "./media/characters/jrain/back.svg",
  33290. extra: 3089/2938,
  33291. bottom: 172/3261
  33292. }
  33293. },
  33294. head: {
  33295. height: math.unit(2.14, "feet"),
  33296. name: "Head",
  33297. image: {
  33298. source: "./media/characters/jrain/head.svg"
  33299. }
  33300. },
  33301. maw: {
  33302. height: math.unit(1.77, "feet"),
  33303. name: "Maw",
  33304. image: {
  33305. source: "./media/characters/jrain/maw.svg"
  33306. }
  33307. },
  33308. leftHand: {
  33309. height: math.unit(1.1, "feet"),
  33310. name: "Left Hand",
  33311. image: {
  33312. source: "./media/characters/jrain/left-hand.svg"
  33313. }
  33314. },
  33315. rightHand: {
  33316. height: math.unit(1.1, "feet"),
  33317. name: "Right Hand",
  33318. image: {
  33319. source: "./media/characters/jrain/right-hand.svg"
  33320. }
  33321. },
  33322. eye: {
  33323. height: math.unit(0.35, "feet"),
  33324. name: "Eye",
  33325. image: {
  33326. source: "./media/characters/jrain/eye.svg"
  33327. }
  33328. },
  33329. },
  33330. [
  33331. {
  33332. name: "Normal",
  33333. height: math.unit(6 + 8/12, "feet"),
  33334. default: true
  33335. },
  33336. {
  33337. name: "Casually Large",
  33338. height: math.unit(25, "feet")
  33339. },
  33340. {
  33341. name: "Giant",
  33342. height: math.unit(100, "feet")
  33343. },
  33344. {
  33345. name: "Kaiju",
  33346. height: math.unit(300, "feet")
  33347. },
  33348. ]
  33349. ))
  33350. characterMakers.push(() => makeCharacter(
  33351. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33352. {
  33353. dragon: {
  33354. height: math.unit(5, "meters"),
  33355. name: "Dragon",
  33356. image: {
  33357. source: "./media/characters/sabrina/dragon.svg",
  33358. extra: 3670 / 2365,
  33359. bottom: 333 / 4003
  33360. }
  33361. },
  33362. gryphon: {
  33363. height: math.unit(3, "meters"),
  33364. name: "Gryphon",
  33365. image: {
  33366. source: "./media/characters/sabrina/gryphon.svg",
  33367. extra: 1576 / 945,
  33368. bottom: 71 / 1647
  33369. }
  33370. },
  33371. snake: {
  33372. height: math.unit(12, "meters"),
  33373. name: "Snake",
  33374. image: {
  33375. source: "./media/characters/sabrina/snake.svg",
  33376. extra: 1758 / 1320,
  33377. bottom: 186 / 1944
  33378. }
  33379. },
  33380. collar: {
  33381. height: math.unit(1.86, "meters"),
  33382. name: "Collar",
  33383. image: {
  33384. source: "./media/characters/sabrina/collar.svg"
  33385. }
  33386. },
  33387. eye: {
  33388. height: math.unit(0.53, "meters"),
  33389. name: "Eye",
  33390. image: {
  33391. source: "./media/characters/sabrina/eye.svg"
  33392. }
  33393. },
  33394. foot: {
  33395. height: math.unit(1.86, "meters"),
  33396. name: "Foot",
  33397. image: {
  33398. source: "./media/characters/sabrina/foot.svg"
  33399. }
  33400. },
  33401. hand: {
  33402. height: math.unit(1.32, "meters"),
  33403. name: "Hand",
  33404. image: {
  33405. source: "./media/characters/sabrina/hand.svg"
  33406. }
  33407. },
  33408. head: {
  33409. height: math.unit(2.44, "meters"),
  33410. name: "Head",
  33411. image: {
  33412. source: "./media/characters/sabrina/head.svg"
  33413. }
  33414. },
  33415. headAngry: {
  33416. height: math.unit(2.44, "meters"),
  33417. name: "Head (Angry))",
  33418. image: {
  33419. source: "./media/characters/sabrina/head-angry.svg"
  33420. }
  33421. },
  33422. maw: {
  33423. height: math.unit(1.65, "meters"),
  33424. name: "Maw",
  33425. image: {
  33426. source: "./media/characters/sabrina/maw.svg"
  33427. }
  33428. },
  33429. spikes: {
  33430. height: math.unit(1.69, "meters"),
  33431. name: "Spikes",
  33432. image: {
  33433. source: "./media/characters/sabrina/spikes.svg"
  33434. }
  33435. },
  33436. stomach: {
  33437. height: math.unit(1.15, "meters"),
  33438. name: "Stomach",
  33439. image: {
  33440. source: "./media/characters/sabrina/stomach.svg"
  33441. }
  33442. },
  33443. tongue: {
  33444. height: math.unit(1.27, "meters"),
  33445. name: "Tongue",
  33446. image: {
  33447. source: "./media/characters/sabrina/tongue.svg"
  33448. }
  33449. },
  33450. wingDorsal: {
  33451. height: math.unit(4.85, "meters"),
  33452. name: "Wing (Dorsal)",
  33453. image: {
  33454. source: "./media/characters/sabrina/wing-dorsal.svg"
  33455. }
  33456. },
  33457. wingVentral: {
  33458. height: math.unit(4.85, "meters"),
  33459. name: "Wing (Ventral)",
  33460. image: {
  33461. source: "./media/characters/sabrina/wing-ventral.svg"
  33462. }
  33463. },
  33464. },
  33465. [
  33466. {
  33467. name: "Normal",
  33468. height: math.unit(5, "meters"),
  33469. default: true
  33470. },
  33471. ]
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33475. {
  33476. frontMaid: {
  33477. height: math.unit(5 + 5/12, "feet"),
  33478. weight: math.unit(130, "lb"),
  33479. name: "Front (Maid)",
  33480. image: {
  33481. source: "./media/characters/midnight-tales/front-maid.svg",
  33482. extra: 489/454,
  33483. bottom: 61/550
  33484. }
  33485. },
  33486. frontFormal: {
  33487. height: math.unit(5 + 5/12, "feet"),
  33488. weight: math.unit(130, "lb"),
  33489. name: "Front (Formal)",
  33490. image: {
  33491. source: "./media/characters/midnight-tales/front-formal.svg",
  33492. extra: 489/454,
  33493. bottom: 61/550
  33494. }
  33495. },
  33496. back: {
  33497. height: math.unit(5 + 5/12, "feet"),
  33498. weight: math.unit(130, "lb"),
  33499. name: "Back",
  33500. image: {
  33501. source: "./media/characters/midnight-tales/back.svg",
  33502. extra: 498/456,
  33503. bottom: 33/531
  33504. }
  33505. },
  33506. frontBeast: {
  33507. height: math.unit(40, "feet"),
  33508. weight: math.unit(64000, "lb"),
  33509. name: "Front (Beast)",
  33510. image: {
  33511. source: "./media/characters/midnight-tales/front-beast.svg",
  33512. extra: 927/860,
  33513. bottom: 53/980
  33514. }
  33515. },
  33516. backBeast: {
  33517. height: math.unit(40, "feet"),
  33518. weight: math.unit(64000, "lb"),
  33519. name: "Back (Beast)",
  33520. image: {
  33521. source: "./media/characters/midnight-tales/back-beast.svg",
  33522. extra: 929/855,
  33523. bottom: 16/945
  33524. }
  33525. },
  33526. footBeast: {
  33527. height: math.unit(6.7, "feet"),
  33528. name: "Foot (Beast)",
  33529. image: {
  33530. source: "./media/characters/midnight-tales/foot-beast.svg"
  33531. }
  33532. },
  33533. headBeast: {
  33534. height: math.unit(8, "feet"),
  33535. name: "Head (Beast)",
  33536. image: {
  33537. source: "./media/characters/midnight-tales/head-beast.svg"
  33538. }
  33539. },
  33540. },
  33541. [
  33542. {
  33543. name: "Normal",
  33544. height: math.unit(5 + 5 / 12, "feet"),
  33545. default: true
  33546. },
  33547. {
  33548. name: "Macro",
  33549. height: math.unit(25, "feet")
  33550. },
  33551. ]
  33552. ))
  33553. characterMakers.push(() => makeCharacter(
  33554. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33555. {
  33556. front: {
  33557. height: math.unit(5 + 10/12, "feet"),
  33558. name: "Front",
  33559. image: {
  33560. source: "./media/characters/argon/front.svg",
  33561. extra: 2009/1935,
  33562. bottom: 118/2127
  33563. }
  33564. },
  33565. back: {
  33566. height: math.unit(5 + 10/12, "feet"),
  33567. name: "Back",
  33568. image: {
  33569. source: "./media/characters/argon/back.svg",
  33570. extra: 2047/1992,
  33571. bottom: 20/2067
  33572. }
  33573. },
  33574. frontDressed: {
  33575. height: math.unit(5 + 10/12, "feet"),
  33576. name: "Front (Dressed)",
  33577. image: {
  33578. source: "./media/characters/argon/front-dressed.svg",
  33579. extra: 2009/1935,
  33580. bottom: 118/2127
  33581. }
  33582. },
  33583. },
  33584. [
  33585. {
  33586. name: "Normal",
  33587. height: math.unit(5 + 10/12, "feet"),
  33588. default: true
  33589. },
  33590. ]
  33591. ))
  33592. characterMakers.push(() => makeCharacter(
  33593. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33594. {
  33595. front: {
  33596. height: math.unit(8 + 6/12, "feet"),
  33597. weight: math.unit(1150, "lb"),
  33598. name: "Front",
  33599. image: {
  33600. source: "./media/characters/kichi/front.svg",
  33601. extra: 1267/1164,
  33602. bottom: 61/1328
  33603. }
  33604. },
  33605. back: {
  33606. height: math.unit(8 + 6/12, "feet"),
  33607. weight: math.unit(1150, "lb"),
  33608. name: "Back",
  33609. image: {
  33610. source: "./media/characters/kichi/back.svg",
  33611. extra: 1273/1166,
  33612. bottom: 33/1306
  33613. }
  33614. },
  33615. },
  33616. [
  33617. {
  33618. name: "Normal",
  33619. height: math.unit(8 + 6/12, "feet"),
  33620. default: true
  33621. },
  33622. ]
  33623. ))
  33624. characterMakers.push(() => makeCharacter(
  33625. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33626. {
  33627. front: {
  33628. height: math.unit(6, "feet"),
  33629. weight: math.unit(210, "lb"),
  33630. name: "Front",
  33631. image: {
  33632. source: "./media/characters/manetel-greyscale/front.svg",
  33633. extra: 350/312,
  33634. bottom: 8/358
  33635. }
  33636. },
  33637. },
  33638. [
  33639. {
  33640. name: "Micro",
  33641. height: math.unit(2, "inches")
  33642. },
  33643. {
  33644. name: "Normal",
  33645. height: math.unit(6, "feet"),
  33646. default: true
  33647. },
  33648. {
  33649. name: "Minimacro",
  33650. height: math.unit(17, "feet")
  33651. },
  33652. {
  33653. name: "Macro",
  33654. height: math.unit(117, "feet")
  33655. },
  33656. ]
  33657. ))
  33658. characterMakers.push(() => makeCharacter(
  33659. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33660. {
  33661. side: {
  33662. height: math.unit(5 + 1/12, "feet"),
  33663. weight: math.unit(418, "lb"),
  33664. name: "Side",
  33665. image: {
  33666. source: "./media/characters/softpurr/side.svg",
  33667. extra: 1993/1945,
  33668. bottom: 134/2127
  33669. }
  33670. },
  33671. front: {
  33672. height: math.unit(5 + 1/12, "feet"),
  33673. weight: math.unit(418, "lb"),
  33674. name: "Front",
  33675. image: {
  33676. source: "./media/characters/softpurr/front.svg",
  33677. extra: 1950/1856,
  33678. bottom: 174/2124
  33679. }
  33680. },
  33681. paw: {
  33682. height: math.unit(1, "feet"),
  33683. name: "Paw",
  33684. image: {
  33685. source: "./media/characters/softpurr/paw.svg"
  33686. }
  33687. },
  33688. },
  33689. [
  33690. {
  33691. name: "Normal",
  33692. height: math.unit(5 + 1/12, "feet"),
  33693. default: true
  33694. },
  33695. ]
  33696. ))
  33697. characterMakers.push(() => makeCharacter(
  33698. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33699. {
  33700. front: {
  33701. height: math.unit(260, "meters"),
  33702. name: "Front",
  33703. image: {
  33704. source: "./media/characters/anahita/front.svg",
  33705. extra: 665/635,
  33706. bottom: 89/754
  33707. }
  33708. },
  33709. },
  33710. [
  33711. {
  33712. name: "Macro",
  33713. height: math.unit(260, "meters"),
  33714. default: true
  33715. },
  33716. ]
  33717. ))
  33718. characterMakers.push(() => makeCharacter(
  33719. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33720. {
  33721. front: {
  33722. height: math.unit(4 + 10/12, "feet"),
  33723. weight: math.unit(160, "lb"),
  33724. name: "Front",
  33725. image: {
  33726. source: "./media/characters/chip-mouse/front.svg",
  33727. extra: 3528/3408,
  33728. bottom: 0/3528
  33729. }
  33730. },
  33731. frontNsfw: {
  33732. height: math.unit(4 + 10/12, "feet"),
  33733. weight: math.unit(160, "lb"),
  33734. name: "Front (NSFW)",
  33735. image: {
  33736. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33737. extra: 3528/3408,
  33738. bottom: 0/3528
  33739. }
  33740. },
  33741. },
  33742. [
  33743. {
  33744. name: "Normal",
  33745. height: math.unit(4 + 10/12, "feet"),
  33746. default: true
  33747. },
  33748. ]
  33749. ))
  33750. characterMakers.push(() => makeCharacter(
  33751. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33752. {
  33753. side: {
  33754. height: math.unit(10, "feet"),
  33755. weight: math.unit(14000, "lb"),
  33756. name: "Side",
  33757. image: {
  33758. source: "./media/characters/kremm/side.svg",
  33759. extra: 1390/1053,
  33760. bottom: 90/1480
  33761. }
  33762. },
  33763. gut: {
  33764. height: math.unit(5.8, "feet"),
  33765. name: "Gut",
  33766. image: {
  33767. source: "./media/characters/kremm/gut.svg"
  33768. }
  33769. },
  33770. ass: {
  33771. height: math.unit(6.1, "feet"),
  33772. name: "Ass",
  33773. image: {
  33774. source: "./media/characters/kremm/ass.svg"
  33775. }
  33776. },
  33777. jaws: {
  33778. height: math.unit(2.2, "feet"),
  33779. name: "Jaws",
  33780. image: {
  33781. source: "./media/characters/kremm/jaws.svg"
  33782. }
  33783. },
  33784. dick: {
  33785. height: math.unit(4.26, "feet"),
  33786. name: "Dick",
  33787. image: {
  33788. source: "./media/characters/kremm/dick.svg"
  33789. }
  33790. },
  33791. },
  33792. [
  33793. {
  33794. name: "Normal",
  33795. height: math.unit(10, "feet"),
  33796. default: true
  33797. },
  33798. ]
  33799. ))
  33800. characterMakers.push(() => makeCharacter(
  33801. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33802. {
  33803. front: {
  33804. height: math.unit(30, "stories"),
  33805. name: "Front",
  33806. image: {
  33807. source: "./media/characters/kai/front.svg",
  33808. extra: 1892/1718,
  33809. bottom: 162/2054
  33810. }
  33811. },
  33812. },
  33813. [
  33814. {
  33815. name: "Macro",
  33816. height: math.unit(30, "stories"),
  33817. default: true
  33818. },
  33819. ]
  33820. ))
  33821. characterMakers.push(() => makeCharacter(
  33822. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33823. {
  33824. front: {
  33825. height: math.unit(6 + 4/12, "feet"),
  33826. weight: math.unit(145, "lb"),
  33827. name: "Front",
  33828. image: {
  33829. source: "./media/characters/sykes/front.svg",
  33830. extra: 1321 / 1187,
  33831. bottom: 66 / 1387
  33832. }
  33833. },
  33834. back: {
  33835. height: math.unit(6 + 4/12, "feet"),
  33836. weight: math.unit(145, "lb"),
  33837. name: "Back",
  33838. image: {
  33839. source: "./media/characters/sykes/back.svg",
  33840. extra: 1326/1181,
  33841. bottom: 31/1357
  33842. }
  33843. },
  33844. handBack: {
  33845. height: math.unit(0.9, "feet"),
  33846. name: "Hand (Back)",
  33847. image: {
  33848. source: "./media/characters/sykes/hand-back.svg"
  33849. }
  33850. },
  33851. handFront: {
  33852. height: math.unit(0.839, "feet"),
  33853. name: "Hand (Front)",
  33854. image: {
  33855. source: "./media/characters/sykes/hand-front.svg"
  33856. }
  33857. },
  33858. leftFoot: {
  33859. height: math.unit(1.2, "feet"),
  33860. name: "Foot (Left)",
  33861. image: {
  33862. source: "./media/characters/sykes/foot-left.svg"
  33863. }
  33864. },
  33865. rightFoot: {
  33866. height: math.unit(1.2, "feet"),
  33867. name: "Foot (Right)",
  33868. image: {
  33869. source: "./media/characters/sykes/foot-right.svg"
  33870. }
  33871. },
  33872. maw: {
  33873. height: math.unit(1.93, "feet"),
  33874. name: "Maw",
  33875. image: {
  33876. source: "./media/characters/sykes/maw.svg"
  33877. }
  33878. },
  33879. teeth: {
  33880. height: math.unit(0.51, "feet"),
  33881. name: "Teeth",
  33882. image: {
  33883. source: "./media/characters/sykes/teeth.svg"
  33884. }
  33885. },
  33886. tongue: {
  33887. height: math.unit(2.13, "feet"),
  33888. name: "Tongue",
  33889. image: {
  33890. source: "./media/characters/sykes/tongue.svg"
  33891. }
  33892. },
  33893. uvula: {
  33894. height: math.unit(0.16, "feet"),
  33895. name: "Uvula",
  33896. image: {
  33897. source: "./media/characters/sykes/uvula.svg"
  33898. }
  33899. },
  33900. collar: {
  33901. height: math.unit(0.287, "feet"),
  33902. name: "Collar",
  33903. image: {
  33904. source: "./media/characters/sykes/collar.svg"
  33905. }
  33906. },
  33907. },
  33908. [
  33909. {
  33910. name: "Shrunken",
  33911. height: math.unit(5, "inches")
  33912. },
  33913. {
  33914. name: "Normal",
  33915. height: math.unit(6 + 4 / 12, "feet"),
  33916. default: true
  33917. },
  33918. {
  33919. name: "Big",
  33920. height: math.unit(15, "feet")
  33921. },
  33922. ]
  33923. ))
  33924. characterMakers.push(() => makeCharacter(
  33925. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33926. {
  33927. front: {
  33928. height: math.unit(5 + 8/12, "feet"),
  33929. weight: math.unit(190, "lb"),
  33930. name: "Front",
  33931. image: {
  33932. source: "./media/characters/oven-otter/front.svg",
  33933. extra: 1809/1740,
  33934. bottom: 181/1990
  33935. }
  33936. },
  33937. back: {
  33938. height: math.unit(5 + 8/12, "feet"),
  33939. weight: math.unit(190, "lb"),
  33940. name: "Back",
  33941. image: {
  33942. source: "./media/characters/oven-otter/back.svg",
  33943. extra: 1709/1635,
  33944. bottom: 118/1827
  33945. }
  33946. },
  33947. hand: {
  33948. height: math.unit(1.07, "feet"),
  33949. name: "Hand",
  33950. image: {
  33951. source: "./media/characters/oven-otter/hand.svg"
  33952. }
  33953. },
  33954. beans: {
  33955. height: math.unit(1.74, "feet"),
  33956. name: "Beans",
  33957. image: {
  33958. source: "./media/characters/oven-otter/beans.svg"
  33959. }
  33960. },
  33961. },
  33962. [
  33963. {
  33964. name: "Micro",
  33965. height: math.unit(0.5, "inches")
  33966. },
  33967. {
  33968. name: "Normal",
  33969. height: math.unit(5 + 8/12, "feet"),
  33970. default: true
  33971. },
  33972. {
  33973. name: "Macro",
  33974. height: math.unit(250, "feet")
  33975. },
  33976. {
  33977. name: "Really High",
  33978. height: math.unit(420, "feet")
  33979. },
  33980. ]
  33981. ))
  33982. characterMakers.push(() => makeCharacter(
  33983. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33984. {
  33985. front: {
  33986. height: math.unit(5, "meters"),
  33987. weight: math.unit(292000000000000, "kg"),
  33988. name: "Front",
  33989. image: {
  33990. source: "./media/characters/devourer/front.svg",
  33991. extra: 1800/1733,
  33992. bottom: 211/2011
  33993. }
  33994. },
  33995. maw: {
  33996. height: math.unit(1.1, "meter"),
  33997. name: "Maw",
  33998. image: {
  33999. source: "./media/characters/devourer/maw.svg"
  34000. }
  34001. },
  34002. },
  34003. [
  34004. {
  34005. name: "Small",
  34006. height: math.unit(3, "meters")
  34007. },
  34008. {
  34009. name: "Large",
  34010. height: math.unit(5, "meters"),
  34011. default: true
  34012. },
  34013. ]
  34014. ))
  34015. characterMakers.push(() => makeCharacter(
  34016. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34017. {
  34018. front: {
  34019. height: math.unit(6, "feet"),
  34020. weight: math.unit(400, "lb"),
  34021. name: "Front",
  34022. image: {
  34023. source: "./media/characters/ellarby/front.svg",
  34024. extra: 1909/1763,
  34025. bottom: 80/1989
  34026. }
  34027. },
  34028. back: {
  34029. height: math.unit(6, "feet"),
  34030. weight: math.unit(400, "lb"),
  34031. name: "Back",
  34032. image: {
  34033. source: "./media/characters/ellarby/back.svg",
  34034. extra: 1914/1784,
  34035. bottom: 172/2086
  34036. }
  34037. },
  34038. },
  34039. [
  34040. {
  34041. name: "Mischief",
  34042. height: math.unit(18, "inches")
  34043. },
  34044. {
  34045. name: "Trouble",
  34046. height: math.unit(12, "feet")
  34047. },
  34048. {
  34049. name: "Havoc",
  34050. height: math.unit(200, "feet"),
  34051. default: true
  34052. },
  34053. {
  34054. name: "Pandemonium",
  34055. height: math.unit(1, "mile")
  34056. },
  34057. {
  34058. name: "Catastrophe",
  34059. height: math.unit(100, "miles")
  34060. },
  34061. ]
  34062. ))
  34063. characterMakers.push(() => makeCharacter(
  34064. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34065. {
  34066. front: {
  34067. height: math.unit(4.7, "meters"),
  34068. weight: math.unit(6500, "kg"),
  34069. name: "Front",
  34070. image: {
  34071. source: "./media/characters/vex/front.svg",
  34072. extra: 1288/1140,
  34073. bottom: 100/1388
  34074. }
  34075. },
  34076. },
  34077. [
  34078. {
  34079. name: "Normal",
  34080. height: math.unit(4.7, "meters"),
  34081. default: true
  34082. },
  34083. ]
  34084. ))
  34085. characterMakers.push(() => makeCharacter(
  34086. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34087. {
  34088. normal: {
  34089. height: math.unit(6, "feet"),
  34090. weight: math.unit(350, "lb"),
  34091. name: "Normal",
  34092. image: {
  34093. source: "./media/characters/teshy/normal.svg",
  34094. extra: 1795/1735,
  34095. bottom: 16/1811
  34096. }
  34097. },
  34098. monsterFront: {
  34099. height: math.unit(12, "feet"),
  34100. weight: math.unit(4700, "lb"),
  34101. name: "Monster (Front)",
  34102. image: {
  34103. source: "./media/characters/teshy/monster-front.svg",
  34104. extra: 2042/2034,
  34105. bottom: 128/2170
  34106. }
  34107. },
  34108. monsterSide: {
  34109. height: math.unit(12, "feet"),
  34110. weight: math.unit(4700, "lb"),
  34111. name: "Monster (Side)",
  34112. image: {
  34113. source: "./media/characters/teshy/monster-side.svg",
  34114. extra: 2067/2056,
  34115. bottom: 70/2137
  34116. }
  34117. },
  34118. monsterBack: {
  34119. height: math.unit(12, "feet"),
  34120. weight: math.unit(4700, "lb"),
  34121. name: "Monster (Back)",
  34122. image: {
  34123. source: "./media/characters/teshy/monster-back.svg",
  34124. extra: 1921/1914,
  34125. bottom: 171/2092
  34126. }
  34127. },
  34128. },
  34129. [
  34130. {
  34131. name: "Normal",
  34132. height: math.unit(6, "feet"),
  34133. default: true
  34134. },
  34135. ]
  34136. ))
  34137. characterMakers.push(() => makeCharacter(
  34138. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34139. {
  34140. front: {
  34141. height: math.unit(6, "feet"),
  34142. name: "Front",
  34143. image: {
  34144. source: "./media/characters/ramey/front.svg",
  34145. extra: 790/787,
  34146. bottom: 27/817
  34147. }
  34148. },
  34149. },
  34150. [
  34151. {
  34152. name: "Normal",
  34153. height: math.unit(6, "feet"),
  34154. default: true
  34155. },
  34156. ]
  34157. ))
  34158. characterMakers.push(() => makeCharacter(
  34159. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34160. {
  34161. front: {
  34162. height: math.unit(5 + 5/12, "feet"),
  34163. weight: math.unit(120, "lb"),
  34164. name: "Front",
  34165. image: {
  34166. source: "./media/characters/phirae/front.svg",
  34167. extra: 2491/2436,
  34168. bottom: 38/2529
  34169. }
  34170. },
  34171. },
  34172. [
  34173. {
  34174. name: "Normal",
  34175. height: math.unit(5 + 5/12, "feet"),
  34176. default: true
  34177. },
  34178. ]
  34179. ))
  34180. characterMakers.push(() => makeCharacter(
  34181. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34182. {
  34183. front: {
  34184. height: math.unit(5 + 3/12, "feet"),
  34185. name: "Front",
  34186. image: {
  34187. source: "./media/characters/stagglas/front.svg",
  34188. extra: 962/882,
  34189. bottom: 53/1015
  34190. }
  34191. },
  34192. feral: {
  34193. height: math.unit(335, "cm"),
  34194. name: "Feral",
  34195. image: {
  34196. source: "./media/characters/stagglas/feral.svg",
  34197. extra: 1732/1090,
  34198. bottom: 48/1780
  34199. }
  34200. },
  34201. },
  34202. [
  34203. {
  34204. name: "Normal",
  34205. height: math.unit(5 + 3/12, "feet"),
  34206. default: true
  34207. },
  34208. ]
  34209. ))
  34210. characterMakers.push(() => makeCharacter(
  34211. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34212. {
  34213. front: {
  34214. height: math.unit(5 + 4/12, "feet"),
  34215. weight: math.unit(145, "lb"),
  34216. name: "Front",
  34217. image: {
  34218. source: "./media/characters/starra/front.svg",
  34219. extra: 1790/1691,
  34220. bottom: 91/1881
  34221. }
  34222. },
  34223. },
  34224. [
  34225. {
  34226. name: "Normal",
  34227. height: math.unit(5 + 4/12, "feet"),
  34228. default: true
  34229. },
  34230. ]
  34231. ))
  34232. characterMakers.push(() => makeCharacter(
  34233. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34234. {
  34235. front: {
  34236. height: math.unit(2.2, "meters"),
  34237. name: "Front",
  34238. image: {
  34239. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34240. extra: 1194/1005,
  34241. bottom: 25/1219
  34242. }
  34243. },
  34244. },
  34245. [
  34246. {
  34247. name: "Normal",
  34248. height: math.unit(2.2, "meters"),
  34249. default: true
  34250. },
  34251. ]
  34252. ))
  34253. characterMakers.push(() => makeCharacter(
  34254. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34255. {
  34256. side: {
  34257. height: math.unit(8 + 2/12, "feet"),
  34258. weight: math.unit(1240, "lb"),
  34259. name: "Side",
  34260. image: {
  34261. source: "./media/characters/mika-valentine/side.svg",
  34262. extra: 2670/2501,
  34263. bottom: 250/2920
  34264. }
  34265. },
  34266. },
  34267. [
  34268. {
  34269. name: "Normal",
  34270. height: math.unit(8 + 2/12, "feet"),
  34271. default: true
  34272. },
  34273. ]
  34274. ))
  34275. characterMakers.push(() => makeCharacter(
  34276. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34277. {
  34278. front: {
  34279. height: math.unit(7 + 2/12, "feet"),
  34280. name: "Front",
  34281. image: {
  34282. source: "./media/characters/xoltol/front.svg",
  34283. extra: 2212/2124,
  34284. bottom: 84/2296
  34285. }
  34286. },
  34287. side: {
  34288. height: math.unit(7 + 2/12, "feet"),
  34289. name: "Side",
  34290. image: {
  34291. source: "./media/characters/xoltol/side.svg",
  34292. extra: 2273/2197,
  34293. bottom: 26/2299
  34294. }
  34295. },
  34296. hand: {
  34297. height: math.unit(2.5, "feet"),
  34298. name: "Hand",
  34299. image: {
  34300. source: "./media/characters/xoltol/hand.svg"
  34301. }
  34302. },
  34303. },
  34304. [
  34305. {
  34306. name: "Small-ish",
  34307. height: math.unit(5 + 11/12, "feet")
  34308. },
  34309. {
  34310. name: "Normal",
  34311. height: math.unit(7 + 2/12, "feet")
  34312. },
  34313. {
  34314. name: "\"Macro\"",
  34315. height: math.unit(14 + 9/12, "feet"),
  34316. default: true
  34317. },
  34318. {
  34319. name: "Alternate Height",
  34320. height: math.unit(20, "feet")
  34321. },
  34322. {
  34323. name: "Actually Macro",
  34324. height: math.unit(100, "feet")
  34325. },
  34326. ]
  34327. ))
  34328. characterMakers.push(() => makeCharacter(
  34329. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34330. {
  34331. front: {
  34332. height: math.unit(5 + 2/12, "feet"),
  34333. name: "Front",
  34334. image: {
  34335. source: "./media/characters/kotetsu-redwood/front.svg",
  34336. extra: 1053/942,
  34337. bottom: 60/1113
  34338. }
  34339. },
  34340. },
  34341. [
  34342. {
  34343. name: "Normal",
  34344. height: math.unit(5 + 2/12, "feet"),
  34345. default: true
  34346. },
  34347. ]
  34348. ))
  34349. characterMakers.push(() => makeCharacter(
  34350. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34351. {
  34352. front: {
  34353. height: math.unit(2.4, "meters"),
  34354. weight: math.unit(125, "kg"),
  34355. name: "Front",
  34356. image: {
  34357. source: "./media/characters/lilith/front.svg",
  34358. extra: 1590/1513,
  34359. bottom: 203/1793
  34360. }
  34361. },
  34362. },
  34363. [
  34364. {
  34365. name: "Humanoid",
  34366. height: math.unit(2.4, "meters")
  34367. },
  34368. {
  34369. name: "Normal",
  34370. height: math.unit(6, "meters"),
  34371. default: true
  34372. },
  34373. {
  34374. name: "Largest",
  34375. height: math.unit(55, "meters")
  34376. },
  34377. ]
  34378. ))
  34379. characterMakers.push(() => makeCharacter(
  34380. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34381. {
  34382. front: {
  34383. height: math.unit(8 + 4/12, "feet"),
  34384. weight: math.unit(535, "lb"),
  34385. name: "Front",
  34386. image: {
  34387. source: "./media/characters/beh'kah-bolger/front.svg",
  34388. extra: 1660/1603,
  34389. bottom: 37/1697
  34390. }
  34391. },
  34392. },
  34393. [
  34394. {
  34395. name: "Normal",
  34396. height: math.unit(8 + 4/12, "feet"),
  34397. default: true
  34398. },
  34399. {
  34400. name: "Kaiju",
  34401. height: math.unit(250, "feet")
  34402. },
  34403. {
  34404. name: "Still Growing",
  34405. height: math.unit(10, "miles")
  34406. },
  34407. {
  34408. name: "Continental",
  34409. height: math.unit(5000, "miles")
  34410. },
  34411. {
  34412. name: "Final Form",
  34413. height: math.unit(2500000, "miles")
  34414. },
  34415. ]
  34416. ))
  34417. characterMakers.push(() => makeCharacter(
  34418. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34419. {
  34420. front: {
  34421. height: math.unit(7 + 2/12, "feet"),
  34422. weight: math.unit(230, "kg"),
  34423. name: "Front",
  34424. image: {
  34425. source: "./media/characters/tatyana-milewska/front.svg",
  34426. extra: 1199/1150,
  34427. bottom: 86/1285
  34428. }
  34429. },
  34430. },
  34431. [
  34432. {
  34433. name: "Normal",
  34434. height: math.unit(7 + 2/12, "feet"),
  34435. default: true
  34436. },
  34437. {
  34438. name: "Big",
  34439. height: math.unit(12, "feet")
  34440. },
  34441. {
  34442. name: "Minimacro",
  34443. height: math.unit(20, "feet")
  34444. },
  34445. {
  34446. name: "Macro",
  34447. height: math.unit(120, "feet")
  34448. },
  34449. ]
  34450. ))
  34451. characterMakers.push(() => makeCharacter(
  34452. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34453. {
  34454. front: {
  34455. height: math.unit(7 + 8/12, "feet"),
  34456. weight: math.unit(152, "kg"),
  34457. name: "Front",
  34458. image: {
  34459. source: "./media/characters/helen-arri/front.svg",
  34460. extra: 440/423,
  34461. bottom: 14/454
  34462. }
  34463. },
  34464. back: {
  34465. height: math.unit(7 + 8/12, "feet"),
  34466. weight: math.unit(152, "kg"),
  34467. name: "Back",
  34468. image: {
  34469. source: "./media/characters/helen-arri/back.svg",
  34470. extra: 443/426,
  34471. bottom: 8/451
  34472. }
  34473. },
  34474. },
  34475. [
  34476. {
  34477. name: "Normal",
  34478. height: math.unit(7 + 8/12, "feet"),
  34479. default: true
  34480. },
  34481. {
  34482. name: "Big",
  34483. height: math.unit(14, "feet")
  34484. },
  34485. {
  34486. name: "Minimacro",
  34487. height: math.unit(24, "feet")
  34488. },
  34489. {
  34490. name: "Macro",
  34491. height: math.unit(140, "feet")
  34492. },
  34493. ]
  34494. ))
  34495. characterMakers.push(() => makeCharacter(
  34496. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34497. {
  34498. front: {
  34499. height: math.unit(6, "meters"),
  34500. name: "Front",
  34501. image: {
  34502. source: "./media/characters/ehanu-rehu/front.svg",
  34503. extra: 1800/1800,
  34504. bottom: 59/1859
  34505. }
  34506. },
  34507. },
  34508. [
  34509. {
  34510. name: "Normal",
  34511. height: math.unit(6, "meters"),
  34512. default: true
  34513. },
  34514. ]
  34515. ))
  34516. characterMakers.push(() => makeCharacter(
  34517. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34518. {
  34519. front: {
  34520. height: math.unit(7 + 3/12, "feet"),
  34521. name: "Front",
  34522. image: {
  34523. source: "./media/characters/renholder/front.svg",
  34524. extra: 3096/2960,
  34525. bottom: 250/3346
  34526. }
  34527. },
  34528. },
  34529. [
  34530. {
  34531. name: "Normal Bat",
  34532. height: math.unit(7 + 3/12, "feet"),
  34533. default: true
  34534. },
  34535. {
  34536. name: "Slightly Tall Bat",
  34537. height: math.unit(100, "feet")
  34538. },
  34539. {
  34540. name: "Big Bat",
  34541. height: math.unit(1000, "feet")
  34542. },
  34543. {
  34544. name: "City-Sized Bat",
  34545. height: math.unit(200000, "feet")
  34546. },
  34547. {
  34548. name: "Bigger Bat",
  34549. height: math.unit(10000, "miles")
  34550. },
  34551. {
  34552. name: "Solar Sized Bat",
  34553. height: math.unit(100, "AU")
  34554. },
  34555. {
  34556. name: "Galactic Bat",
  34557. height: math.unit(200000, "lightyears")
  34558. },
  34559. {
  34560. name: "Universally Known Bat",
  34561. height: math.unit(1, "universe")
  34562. },
  34563. ]
  34564. ))
  34565. characterMakers.push(() => makeCharacter(
  34566. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34567. {
  34568. front: {
  34569. height: math.unit(6 + 11/12, "feet"),
  34570. weight: math.unit(250, "lb"),
  34571. name: "Front",
  34572. image: {
  34573. source: "./media/characters/cookiecat/front.svg",
  34574. extra: 893/827,
  34575. bottom: 14/907
  34576. }
  34577. },
  34578. },
  34579. [
  34580. {
  34581. name: "Micro",
  34582. height: math.unit(3, "inches")
  34583. },
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(6 + 11/12, "feet"),
  34587. default: true
  34588. },
  34589. {
  34590. name: "Macro",
  34591. height: math.unit(100, "feet")
  34592. },
  34593. {
  34594. name: "Macro+",
  34595. height: math.unit(404, "feet")
  34596. },
  34597. {
  34598. name: "Megamacro",
  34599. height: math.unit(165, "miles")
  34600. },
  34601. {
  34602. name: "Planetary",
  34603. height: math.unit(4600, "miles")
  34604. },
  34605. ]
  34606. ))
  34607. characterMakers.push(() => makeCharacter(
  34608. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34609. {
  34610. front: {
  34611. height: math.unit(10 + 3/12, "feet"),
  34612. weight: math.unit(1500, "lb"),
  34613. name: "Front",
  34614. image: {
  34615. source: "./media/characters/tux-kusanagi/front.svg",
  34616. extra: 944/840,
  34617. bottom: 39/983
  34618. }
  34619. },
  34620. back: {
  34621. height: math.unit(10 + 3/12, "feet"),
  34622. weight: math.unit(1500, "lb"),
  34623. name: "Back",
  34624. image: {
  34625. source: "./media/characters/tux-kusanagi/back.svg",
  34626. extra: 941/842,
  34627. bottom: 28/969
  34628. }
  34629. },
  34630. rump: {
  34631. height: math.unit(5.25, "feet"),
  34632. name: "Rump",
  34633. image: {
  34634. source: "./media/characters/tux-kusanagi/rump.svg"
  34635. }
  34636. },
  34637. beak: {
  34638. height: math.unit(1.54, "feet"),
  34639. name: "Beak",
  34640. image: {
  34641. source: "./media/characters/tux-kusanagi/beak.svg"
  34642. }
  34643. },
  34644. },
  34645. [
  34646. {
  34647. name: "Normal",
  34648. height: math.unit(10 + 3/12, "feet"),
  34649. default: true
  34650. },
  34651. ]
  34652. ))
  34653. characterMakers.push(() => makeCharacter(
  34654. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34655. {
  34656. front: {
  34657. height: math.unit(58, "feet"),
  34658. weight: math.unit(200, "tons"),
  34659. name: "Front",
  34660. image: {
  34661. source: "./media/characters/uzarmazari/front.svg",
  34662. extra: 1575/1455,
  34663. bottom: 152/1727
  34664. }
  34665. },
  34666. back: {
  34667. height: math.unit(58, "feet"),
  34668. weight: math.unit(200, "tons"),
  34669. name: "Back",
  34670. image: {
  34671. source: "./media/characters/uzarmazari/back.svg",
  34672. extra: 1585/1510,
  34673. bottom: 157/1742
  34674. }
  34675. },
  34676. head: {
  34677. height: math.unit(26, "feet"),
  34678. name: "Head",
  34679. image: {
  34680. source: "./media/characters/uzarmazari/head.svg"
  34681. }
  34682. },
  34683. },
  34684. [
  34685. {
  34686. name: "Normal",
  34687. height: math.unit(58, "feet"),
  34688. default: true
  34689. },
  34690. ]
  34691. ))
  34692. characterMakers.push(() => makeCharacter(
  34693. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34694. {
  34695. side: {
  34696. height: math.unit(15, "feet"),
  34697. name: "Side",
  34698. image: {
  34699. source: "./media/characters/akitu/side.svg",
  34700. extra: 1421/1321,
  34701. bottom: 157/1578
  34702. }
  34703. },
  34704. front: {
  34705. height: math.unit(15, "feet"),
  34706. name: "Front",
  34707. image: {
  34708. source: "./media/characters/akitu/front.svg",
  34709. extra: 1435/1326,
  34710. bottom: 232/1667
  34711. }
  34712. },
  34713. },
  34714. [
  34715. {
  34716. name: "Normal",
  34717. height: math.unit(15, "feet"),
  34718. default: true
  34719. },
  34720. ]
  34721. ))
  34722. characterMakers.push(() => makeCharacter(
  34723. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34724. {
  34725. front: {
  34726. height: math.unit(10 + 8/12, "feet"),
  34727. name: "Front",
  34728. image: {
  34729. source: "./media/characters/azalie-croixland/front.svg",
  34730. extra: 1972/1856,
  34731. bottom: 31/2003
  34732. }
  34733. },
  34734. },
  34735. [
  34736. {
  34737. name: "Original Height",
  34738. height: math.unit(5 + 4/12, "feet")
  34739. },
  34740. {
  34741. name: "Normal Height",
  34742. height: math.unit(10 + 8/12, "feet"),
  34743. default: true
  34744. },
  34745. ]
  34746. ))
  34747. characterMakers.push(() => makeCharacter(
  34748. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34749. {
  34750. side: {
  34751. height: math.unit(7 + 1/12, "feet"),
  34752. weight: math.unit(245, "lb"),
  34753. name: "Side",
  34754. image: {
  34755. source: "./media/characters/kavus-kazian/side.svg",
  34756. extra: 349/342,
  34757. bottom: 15/364
  34758. }
  34759. },
  34760. },
  34761. [
  34762. {
  34763. name: "Normal",
  34764. height: math.unit(7 + 1/12, "feet"),
  34765. default: true
  34766. },
  34767. ]
  34768. ))
  34769. characterMakers.push(() => makeCharacter(
  34770. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34771. {
  34772. normal: {
  34773. height: math.unit(5 + 11/12, "feet"),
  34774. name: "Normal",
  34775. image: {
  34776. source: "./media/characters/moonlight-rose/normal.svg",
  34777. extra: 1979/1835,
  34778. bottom: 14/1993
  34779. }
  34780. },
  34781. demon: {
  34782. height: math.unit(5, "km"),
  34783. name: "Demon",
  34784. image: {
  34785. source: "./media/characters/moonlight-rose/demon.svg",
  34786. extra: 986/916,
  34787. bottom: 28/1014
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "\"Natural\" height",
  34794. height: math.unit(5 + 11/12, "feet")
  34795. },
  34796. {
  34797. name: "Comfortable Size",
  34798. height: math.unit(40, "meters")
  34799. },
  34800. {
  34801. name: "Common Size",
  34802. height: math.unit(50, "km"),
  34803. default: true
  34804. },
  34805. {
  34806. name: "Demonic",
  34807. height: math.unit(1.24415e+21, "meters")
  34808. },
  34809. ]
  34810. ))
  34811. characterMakers.push(() => makeCharacter(
  34812. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34813. {
  34814. front: {
  34815. height: math.unit(16, "feet"),
  34816. weight: math.unit(610, "kg"),
  34817. name: "Front",
  34818. image: {
  34819. source: "./media/characters/huckle/front.svg",
  34820. extra: 1731/1625,
  34821. bottom: 33/1764
  34822. }
  34823. },
  34824. back: {
  34825. height: math.unit(16, "feet"),
  34826. weight: math.unit(610, "kg"),
  34827. name: "Back",
  34828. image: {
  34829. source: "./media/characters/huckle/back.svg",
  34830. extra: 1738/1651,
  34831. bottom: 37/1775
  34832. }
  34833. },
  34834. laughing: {
  34835. height: math.unit(3.75, "feet"),
  34836. name: "Laughing",
  34837. image: {
  34838. source: "./media/characters/huckle/laughing.svg"
  34839. }
  34840. },
  34841. angry: {
  34842. height: math.unit(4.15, "feet"),
  34843. name: "Angry",
  34844. image: {
  34845. source: "./media/characters/huckle/angry.svg"
  34846. }
  34847. },
  34848. },
  34849. [
  34850. {
  34851. name: "Normal",
  34852. height: math.unit(16, "feet"),
  34853. default: true
  34854. },
  34855. {
  34856. name: "Mini Macro",
  34857. height: math.unit(463, "feet")
  34858. },
  34859. {
  34860. name: "Macro",
  34861. height: math.unit(1680, "meters")
  34862. },
  34863. {
  34864. name: "Mega Macro",
  34865. height: math.unit(175, "km")
  34866. },
  34867. {
  34868. name: "Terra Macro",
  34869. height: math.unit(32, "gigameters")
  34870. },
  34871. {
  34872. name: "Multiverse+",
  34873. height: math.unit(2.56e23, "yottameters")
  34874. },
  34875. ]
  34876. ))
  34877. characterMakers.push(() => makeCharacter(
  34878. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34879. {
  34880. front: {
  34881. height: math.unit(6 + 9/12, "feet"),
  34882. weight: math.unit(280, "lb"),
  34883. name: "Front",
  34884. image: {
  34885. source: "./media/characters/candy/front.svg",
  34886. extra: 234/217,
  34887. bottom: 11/245
  34888. }
  34889. },
  34890. },
  34891. [
  34892. {
  34893. name: "Really Small",
  34894. height: math.unit(0.1, "nm")
  34895. },
  34896. {
  34897. name: "Micro",
  34898. height: math.unit(2, "inches")
  34899. },
  34900. {
  34901. name: "Normal",
  34902. height: math.unit(6 + 9/12, "feet"),
  34903. default: true
  34904. },
  34905. {
  34906. name: "Small Macro",
  34907. height: math.unit(69, "feet")
  34908. },
  34909. {
  34910. name: "Macro",
  34911. height: math.unit(160, "feet")
  34912. },
  34913. {
  34914. name: "Megamacro",
  34915. height: math.unit(22000, "miles")
  34916. },
  34917. {
  34918. name: "Gigamacro",
  34919. height: math.unit(50000, "miles")
  34920. },
  34921. ]
  34922. ))
  34923. characterMakers.push(() => makeCharacter(
  34924. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34925. {
  34926. front: {
  34927. height: math.unit(4, "feet"),
  34928. weight: math.unit(90, "lb"),
  34929. name: "Front",
  34930. image: {
  34931. source: "./media/characters/joey-mcdonald/front.svg",
  34932. extra: 1059/852,
  34933. bottom: 33/1092
  34934. }
  34935. },
  34936. back: {
  34937. height: math.unit(4, "feet"),
  34938. weight: math.unit(90, "lb"),
  34939. name: "Back",
  34940. image: {
  34941. source: "./media/characters/joey-mcdonald/back.svg",
  34942. extra: 1077/879,
  34943. bottom: 5/1082
  34944. }
  34945. },
  34946. frontKobold: {
  34947. height: math.unit(4, "feet"),
  34948. weight: math.unit(100, "lb"),
  34949. name: "Front-kobold",
  34950. image: {
  34951. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34952. extra: 1480/1367,
  34953. bottom: 0/1480
  34954. }
  34955. },
  34956. backKobold: {
  34957. height: math.unit(4, "feet"),
  34958. weight: math.unit(100, "lb"),
  34959. name: "Back-kobold",
  34960. image: {
  34961. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34962. extra: 1449/1361,
  34963. bottom: 0/1449
  34964. }
  34965. },
  34966. },
  34967. [
  34968. {
  34969. name: "Normal",
  34970. height: math.unit(4, "feet"),
  34971. default: true
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34977. {
  34978. front: {
  34979. height: math.unit(12 + 6/12, "feet"),
  34980. name: "Front",
  34981. image: {
  34982. source: "./media/characters/kass-lockheed/front.svg",
  34983. extra: 354/343,
  34984. bottom: 9/363
  34985. }
  34986. },
  34987. back: {
  34988. height: math.unit(12 + 6/12, "feet"),
  34989. name: "Back",
  34990. image: {
  34991. source: "./media/characters/kass-lockheed/back.svg",
  34992. extra: 364/352,
  34993. bottom: 3/367
  34994. }
  34995. },
  34996. dick: {
  34997. height: math.unit(3.12, "feet"),
  34998. name: "Dick",
  34999. image: {
  35000. source: "./media/characters/kass-lockheed/dick.svg"
  35001. }
  35002. },
  35003. head: {
  35004. height: math.unit(2.6, "feet"),
  35005. name: "Head",
  35006. image: {
  35007. source: "./media/characters/kass-lockheed/head.svg"
  35008. }
  35009. },
  35010. bleh: {
  35011. height: math.unit(2.85, "feet"),
  35012. name: "Bleh",
  35013. image: {
  35014. source: "./media/characters/kass-lockheed/bleh.svg"
  35015. }
  35016. },
  35017. smug: {
  35018. height: math.unit(2.85, "feet"),
  35019. name: "Smug",
  35020. image: {
  35021. source: "./media/characters/kass-lockheed/smug.svg"
  35022. }
  35023. },
  35024. },
  35025. [
  35026. {
  35027. name: "Normal",
  35028. height: math.unit(12 + 6/12, "feet"),
  35029. default: true
  35030. },
  35031. ]
  35032. ))
  35033. characterMakers.push(() => makeCharacter(
  35034. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35035. {
  35036. front: {
  35037. height: math.unit(6 + 2/12, "feet"),
  35038. name: "Front",
  35039. image: {
  35040. source: "./media/characters/taylor/front.svg",
  35041. extra: 639/495,
  35042. bottom: 12/651
  35043. }
  35044. },
  35045. },
  35046. [
  35047. {
  35048. name: "Normal",
  35049. height: math.unit(6 + 2/12, "feet"),
  35050. default: true
  35051. },
  35052. {
  35053. name: "Big",
  35054. height: math.unit(15, "feet")
  35055. },
  35056. {
  35057. name: "Lorg",
  35058. height: math.unit(80, "feet")
  35059. },
  35060. {
  35061. name: "Too Lorg",
  35062. height: math.unit(120, "feet")
  35063. },
  35064. ]
  35065. ))
  35066. characterMakers.push(() => makeCharacter(
  35067. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35068. {
  35069. front: {
  35070. height: math.unit(15, "feet"),
  35071. name: "Front",
  35072. image: {
  35073. source: "./media/characters/kaizer/front.svg",
  35074. extra: 1612/1436,
  35075. bottom: 43/1655
  35076. }
  35077. },
  35078. },
  35079. [
  35080. {
  35081. name: "Normal",
  35082. height: math.unit(15, "feet"),
  35083. default: true
  35084. },
  35085. ]
  35086. ))
  35087. characterMakers.push(() => makeCharacter(
  35088. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35089. {
  35090. front: {
  35091. height: math.unit(2, "feet"),
  35092. weight: math.unit(30, "lb"),
  35093. name: "Front",
  35094. image: {
  35095. source: "./media/characters/sandy/front.svg",
  35096. extra: 1439/1307,
  35097. bottom: 194/1633
  35098. }
  35099. },
  35100. },
  35101. [
  35102. {
  35103. name: "Normal",
  35104. height: math.unit(2, "feet"),
  35105. default: true
  35106. },
  35107. ]
  35108. ))
  35109. characterMakers.push(() => makeCharacter(
  35110. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35111. {
  35112. front: {
  35113. height: math.unit(3, "feet"),
  35114. name: "Front",
  35115. image: {
  35116. source: "./media/characters/mellvi/front.svg",
  35117. extra: 1831/1630,
  35118. bottom: 58/1889
  35119. }
  35120. },
  35121. },
  35122. [
  35123. {
  35124. name: "Normal",
  35125. height: math.unit(3, "feet"),
  35126. default: true
  35127. },
  35128. ]
  35129. ))
  35130. characterMakers.push(() => makeCharacter(
  35131. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35132. {
  35133. front: {
  35134. height: math.unit(5 + 11/12, "feet"),
  35135. weight: math.unit(200, "lb"),
  35136. name: "Front",
  35137. image: {
  35138. source: "./media/characters/shirou/front.svg",
  35139. extra: 2491/2383,
  35140. bottom: 189/2680
  35141. }
  35142. },
  35143. back: {
  35144. height: math.unit(5 + 11/12, "feet"),
  35145. weight: math.unit(200, "lb"),
  35146. name: "Back",
  35147. image: {
  35148. source: "./media/characters/shirou/back.svg",
  35149. extra: 2554/2450,
  35150. bottom: 76/2630
  35151. }
  35152. },
  35153. },
  35154. [
  35155. {
  35156. name: "Normal",
  35157. height: math.unit(5 + 11/12, "feet"),
  35158. default: true
  35159. },
  35160. ]
  35161. ))
  35162. characterMakers.push(() => makeCharacter(
  35163. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35164. {
  35165. front: {
  35166. height: math.unit(6 + 3/12, "feet"),
  35167. weight: math.unit(177, "lb"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/noryu/front.svg",
  35171. extra: 973/885,
  35172. bottom: 10/983
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(6 + 3/12, "feet"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35186. {
  35187. front: {
  35188. height: math.unit(5 + 6/12, "feet"),
  35189. weight: math.unit(170, "lb"),
  35190. name: "Front",
  35191. image: {
  35192. source: "./media/characters/mevolas-rubenido/front.svg",
  35193. extra: 2109/1901,
  35194. bottom: 96/2205
  35195. }
  35196. },
  35197. },
  35198. [
  35199. {
  35200. name: "Normal",
  35201. height: math.unit(5 + 6/12, "feet"),
  35202. default: true
  35203. },
  35204. ]
  35205. ))
  35206. characterMakers.push(() => makeCharacter(
  35207. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35208. {
  35209. front: {
  35210. height: math.unit(100, "feet"),
  35211. name: "Front",
  35212. image: {
  35213. source: "./media/characters/dee/front.svg",
  35214. extra: 2153/2036,
  35215. bottom: 59/2212
  35216. }
  35217. },
  35218. back: {
  35219. height: math.unit(100, "feet"),
  35220. name: "Back",
  35221. image: {
  35222. source: "./media/characters/dee/back.svg",
  35223. extra: 2183/2058,
  35224. bottom: 75/2258
  35225. }
  35226. },
  35227. foot: {
  35228. height: math.unit(19.43, "feet"),
  35229. name: "Foot",
  35230. image: {
  35231. source: "./media/characters/dee/foot.svg"
  35232. }
  35233. },
  35234. hoof: {
  35235. height: math.unit(20.6, "feet"),
  35236. name: "Hoof",
  35237. image: {
  35238. source: "./media/characters/dee/hoof.svg"
  35239. }
  35240. },
  35241. },
  35242. [
  35243. {
  35244. name: "Macro",
  35245. height: math.unit(100, "feet"),
  35246. default: true
  35247. },
  35248. ]
  35249. ))
  35250. characterMakers.push(() => makeCharacter(
  35251. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35252. {
  35253. front: {
  35254. height: math.unit(5 + 6/12, "feet"),
  35255. name: "Front",
  35256. image: {
  35257. source: "./media/characters/teh/front.svg",
  35258. extra: 1002/847,
  35259. bottom: 62/1064
  35260. }
  35261. },
  35262. },
  35263. [
  35264. {
  35265. name: "Normal",
  35266. height: math.unit(5 + 6/12, "feet"),
  35267. default: true
  35268. },
  35269. ]
  35270. ))
  35271. characterMakers.push(() => makeCharacter(
  35272. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35273. {
  35274. side: {
  35275. height: math.unit(6 + 1/12, "feet"),
  35276. weight: math.unit(204, "lb"),
  35277. name: "Side",
  35278. image: {
  35279. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35280. extra: 974/775,
  35281. bottom: 169/1143
  35282. }
  35283. },
  35284. sitting: {
  35285. height: math.unit(6 + 2/12, "feet"),
  35286. weight: math.unit(204, "lb"),
  35287. name: "Sitting",
  35288. image: {
  35289. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35290. extra: 1175/964,
  35291. bottom: 378/1553
  35292. }
  35293. },
  35294. },
  35295. [
  35296. {
  35297. name: "Normal",
  35298. height: math.unit(6 + 1/12, "feet"),
  35299. default: true
  35300. },
  35301. ]
  35302. ))
  35303. characterMakers.push(() => makeCharacter(
  35304. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35305. {
  35306. front: {
  35307. height: math.unit(6, "inches"),
  35308. name: "Front",
  35309. image: {
  35310. source: "./media/characters/tululi/front.svg",
  35311. extra: 1997/1876,
  35312. bottom: 20/2017
  35313. }
  35314. },
  35315. },
  35316. [
  35317. {
  35318. name: "Normal",
  35319. height: math.unit(6, "inches"),
  35320. default: true
  35321. },
  35322. ]
  35323. ))
  35324. characterMakers.push(() => makeCharacter(
  35325. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35326. {
  35327. front: {
  35328. height: math.unit(4 + 1/12, "feet"),
  35329. name: "Front",
  35330. image: {
  35331. source: "./media/characters/star/front.svg",
  35332. extra: 1493/1189,
  35333. bottom: 48/1541
  35334. }
  35335. },
  35336. },
  35337. [
  35338. {
  35339. name: "Normal",
  35340. height: math.unit(4 + 1/12, "feet"),
  35341. default: true
  35342. },
  35343. ]
  35344. ))
  35345. characterMakers.push(() => makeCharacter(
  35346. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35347. {
  35348. front: {
  35349. height: math.unit(6 + 3/12, "feet"),
  35350. name: "Front",
  35351. image: {
  35352. source: "./media/characters/comet/front.svg",
  35353. extra: 1681/1462,
  35354. bottom: 26/1707
  35355. }
  35356. },
  35357. },
  35358. [
  35359. {
  35360. name: "Normal",
  35361. height: math.unit(6 + 3/12, "feet"),
  35362. default: true
  35363. },
  35364. ]
  35365. ))
  35366. characterMakers.push(() => makeCharacter(
  35367. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35368. {
  35369. front: {
  35370. height: math.unit(950, "feet"),
  35371. name: "Front",
  35372. image: {
  35373. source: "./media/characters/vortex/front.svg",
  35374. extra: 1497/1434,
  35375. bottom: 56/1553
  35376. }
  35377. },
  35378. maw: {
  35379. height: math.unit(285, "feet"),
  35380. name: "Maw",
  35381. image: {
  35382. source: "./media/characters/vortex/maw.svg"
  35383. }
  35384. },
  35385. },
  35386. [
  35387. {
  35388. name: "Macro",
  35389. height: math.unit(950, "feet"),
  35390. default: true
  35391. },
  35392. ]
  35393. ))
  35394. characterMakers.push(() => makeCharacter(
  35395. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35396. {
  35397. front: {
  35398. height: math.unit(600, "feet"),
  35399. weight: math.unit(0.02, "grams"),
  35400. name: "Front",
  35401. image: {
  35402. source: "./media/characters/doodle/front.svg",
  35403. extra: 1578/1413,
  35404. bottom: 37/1615
  35405. }
  35406. },
  35407. },
  35408. [
  35409. {
  35410. name: "Macro",
  35411. height: math.unit(600, "feet"),
  35412. default: true
  35413. },
  35414. ]
  35415. ))
  35416. characterMakers.push(() => makeCharacter(
  35417. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35418. {
  35419. front: {
  35420. height: math.unit(6 + 6/12, "feet"),
  35421. name: "Front",
  35422. image: {
  35423. source: "./media/characters/jai/front.svg",
  35424. extra: 1645/1534,
  35425. bottom: 115/1760
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Normal",
  35432. height: math.unit(6 + 6/12, "feet"),
  35433. default: true
  35434. },
  35435. ]
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35439. {
  35440. front: {
  35441. height: math.unit(6 + 8/12, "feet"),
  35442. name: "Front",
  35443. image: {
  35444. source: "./media/characters/pixel/front.svg",
  35445. extra: 1900/1735,
  35446. bottom: 63/1963
  35447. }
  35448. },
  35449. },
  35450. [
  35451. {
  35452. name: "Normal",
  35453. height: math.unit(6 + 8/12, "feet"),
  35454. default: true
  35455. },
  35456. ]
  35457. ))
  35458. characterMakers.push(() => makeCharacter(
  35459. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35460. {
  35461. front: {
  35462. height: math.unit(4 + 11/12, "feet"),
  35463. weight: math.unit(111, "lb"),
  35464. name: "Front",
  35465. image: {
  35466. source: "./media/characters/rhett/front.svg",
  35467. extra: 1682/1586,
  35468. bottom: 92/1774
  35469. }
  35470. },
  35471. },
  35472. [
  35473. {
  35474. name: "Mini",
  35475. height: math.unit(1 + 1/12, "feet")
  35476. },
  35477. {
  35478. name: "Normal",
  35479. height: math.unit(4 + 11/12, "feet"),
  35480. default: true
  35481. },
  35482. ]
  35483. ))
  35484. characterMakers.push(() => makeCharacter(
  35485. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35486. {
  35487. front: {
  35488. height: math.unit(3 + 3/12, "feet"),
  35489. name: "Front",
  35490. image: {
  35491. source: "./media/characters/penny/front.svg",
  35492. extra: 1406/1311,
  35493. bottom: 26/1432
  35494. }
  35495. },
  35496. },
  35497. [
  35498. {
  35499. name: "Normal",
  35500. height: math.unit(3 + 3/12, "feet"),
  35501. default: true
  35502. },
  35503. ]
  35504. ))
  35505. characterMakers.push(() => makeCharacter(
  35506. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35507. {
  35508. front: {
  35509. height: math.unit(4 + 11/12, "feet"),
  35510. name: "Front",
  35511. image: {
  35512. source: "./media/characters/monty/front.svg",
  35513. extra: 1479/1209,
  35514. bottom: 0/1479
  35515. }
  35516. },
  35517. },
  35518. [
  35519. {
  35520. name: "Normal",
  35521. height: math.unit(4 + 11/12, "feet"),
  35522. default: true
  35523. },
  35524. ]
  35525. ))
  35526. characterMakers.push(() => makeCharacter(
  35527. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35528. {
  35529. front: {
  35530. height: math.unit(8 + 4/12, "feet"),
  35531. name: "Front",
  35532. image: {
  35533. source: "./media/characters/sterling/front.svg",
  35534. extra: 1420/1236,
  35535. bottom: 27/1447
  35536. }
  35537. },
  35538. },
  35539. [
  35540. {
  35541. name: "Normal",
  35542. height: math.unit(8 + 4/12, "feet"),
  35543. default: true
  35544. },
  35545. ]
  35546. ))
  35547. characterMakers.push(() => makeCharacter(
  35548. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35549. {
  35550. front: {
  35551. height: math.unit(15, "feet"),
  35552. name: "Front",
  35553. image: {
  35554. source: "./media/characters/marble/front.svg",
  35555. extra: 973/937,
  35556. bottom: 32/1005
  35557. }
  35558. },
  35559. },
  35560. [
  35561. {
  35562. name: "Normal",
  35563. height: math.unit(15, "feet"),
  35564. default: true
  35565. },
  35566. ]
  35567. ))
  35568. characterMakers.push(() => makeCharacter(
  35569. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35570. {
  35571. front: {
  35572. height: math.unit(3, "inches"),
  35573. name: "Front",
  35574. image: {
  35575. source: "./media/characters/powder/front.svg",
  35576. extra: 1504/1334,
  35577. bottom: 518/2022
  35578. }
  35579. },
  35580. },
  35581. [
  35582. {
  35583. name: "Normal",
  35584. height: math.unit(3, "inches"),
  35585. default: true
  35586. },
  35587. ]
  35588. ))
  35589. characterMakers.push(() => makeCharacter(
  35590. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35591. {
  35592. front: {
  35593. height: math.unit(4 + 5/12, "feet"),
  35594. name: "Front",
  35595. image: {
  35596. source: "./media/characters/joey-raccoon/front.svg",
  35597. extra: 1273/1197,
  35598. bottom: 0/1273
  35599. }
  35600. },
  35601. },
  35602. [
  35603. {
  35604. name: "Normal",
  35605. height: math.unit(4 + 5/12, "feet"),
  35606. default: true
  35607. },
  35608. ]
  35609. ))
  35610. characterMakers.push(() => makeCharacter(
  35611. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35612. {
  35613. front: {
  35614. height: math.unit(8 + 4/12, "feet"),
  35615. name: "Front",
  35616. image: {
  35617. source: "./media/characters/vick/front.svg",
  35618. extra: 2187/2118,
  35619. bottom: 47/2234
  35620. }
  35621. },
  35622. },
  35623. [
  35624. {
  35625. name: "Normal",
  35626. height: math.unit(8 + 4/12, "feet"),
  35627. default: true
  35628. },
  35629. ]
  35630. ))
  35631. characterMakers.push(() => makeCharacter(
  35632. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35633. {
  35634. front: {
  35635. height: math.unit(5 + 5/12, "feet"),
  35636. name: "Front",
  35637. image: {
  35638. source: "./media/characters/mitsy/front.svg",
  35639. extra: 1842/1695,
  35640. bottom: 0/1842
  35641. }
  35642. },
  35643. },
  35644. [
  35645. {
  35646. name: "Normal",
  35647. height: math.unit(5 + 5/12, "feet"),
  35648. default: true
  35649. },
  35650. ]
  35651. ))
  35652. characterMakers.push(() => makeCharacter(
  35653. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35654. {
  35655. front: {
  35656. height: math.unit(6 + 3/12, "feet"),
  35657. name: "Front",
  35658. image: {
  35659. source: "./media/characters/silvy/front.svg",
  35660. extra: 1995/1836,
  35661. bottom: 225/2220
  35662. }
  35663. },
  35664. },
  35665. [
  35666. {
  35667. name: "Normal",
  35668. height: math.unit(6 + 3/12, "feet"),
  35669. default: true
  35670. },
  35671. ]
  35672. ))
  35673. characterMakers.push(() => makeCharacter(
  35674. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35675. {
  35676. front: {
  35677. height: math.unit(3 + 8/12, "feet"),
  35678. name: "Front",
  35679. image: {
  35680. source: "./media/characters/rodney/front.svg",
  35681. extra: 1956/1747,
  35682. bottom: 31/1987
  35683. }
  35684. },
  35685. frontDressed: {
  35686. height: math.unit(2.9, "feet"),
  35687. name: "Front (Dressed)",
  35688. image: {
  35689. source: "./media/characters/rodney/front-dressed.svg",
  35690. extra: 1382/1241,
  35691. bottom: 385/1767
  35692. }
  35693. },
  35694. },
  35695. [
  35696. {
  35697. name: "Normal",
  35698. height: math.unit(3 + 8/12, "feet"),
  35699. default: true
  35700. },
  35701. ]
  35702. ))
  35703. characterMakers.push(() => makeCharacter(
  35704. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35705. {
  35706. front: {
  35707. height: math.unit(5 + 9/12, "feet"),
  35708. weight: math.unit(194, "lbs"),
  35709. name: "Front",
  35710. image: {
  35711. source: "./media/characters/zakail-sudekai/front.svg",
  35712. extra: 2696/2533,
  35713. bottom: 248/2944
  35714. }
  35715. },
  35716. maw: {
  35717. height: math.unit(1.35, "feet"),
  35718. name: "Maw",
  35719. image: {
  35720. source: "./media/characters/zakail-sudekai/maw.svg"
  35721. }
  35722. },
  35723. },
  35724. [
  35725. {
  35726. name: "Normal",
  35727. height: math.unit(5 + 9/12, "feet"),
  35728. default: true
  35729. },
  35730. ]
  35731. ))
  35732. characterMakers.push(() => makeCharacter(
  35733. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35734. {
  35735. front: {
  35736. height: math.unit(8 + 4/12, "feet"),
  35737. weight: math.unit(1200, "lb"),
  35738. name: "Front",
  35739. image: {
  35740. source: "./media/characters/eleanor/front.svg",
  35741. extra: 1226/1192,
  35742. bottom: 52/1278
  35743. }
  35744. },
  35745. back: {
  35746. height: math.unit(8 + 4/12, "feet"),
  35747. weight: math.unit(1200, "lb"),
  35748. name: "Back",
  35749. image: {
  35750. source: "./media/characters/eleanor/back.svg",
  35751. extra: 1242/1184,
  35752. bottom: 60/1302
  35753. }
  35754. },
  35755. head: {
  35756. height: math.unit(2.62, "feet"),
  35757. name: "Head",
  35758. image: {
  35759. source: "./media/characters/eleanor/head.svg"
  35760. }
  35761. },
  35762. },
  35763. [
  35764. {
  35765. name: "Normal",
  35766. height: math.unit(8 + 4/12, "feet"),
  35767. default: true
  35768. },
  35769. ]
  35770. ))
  35771. characterMakers.push(() => makeCharacter(
  35772. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35773. {
  35774. front: {
  35775. height: math.unit(8 + 4/12, "feet"),
  35776. weight: math.unit(750, "lb"),
  35777. name: "Front",
  35778. image: {
  35779. source: "./media/characters/tanya/front.svg",
  35780. extra: 1749/1615,
  35781. bottom: 33/1782
  35782. }
  35783. },
  35784. },
  35785. [
  35786. {
  35787. name: "Normal",
  35788. height: math.unit(8 + 4/12, "feet"),
  35789. default: true
  35790. },
  35791. ]
  35792. ))
  35793. characterMakers.push(() => makeCharacter(
  35794. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35795. {
  35796. front: {
  35797. height: math.unit(5, "feet"),
  35798. weight: math.unit(225, "lb"),
  35799. name: "Front",
  35800. image: {
  35801. source: "./media/characters/cindy/front.svg",
  35802. extra: 1320/1250,
  35803. bottom: 42/1362
  35804. }
  35805. },
  35806. frontDressed: {
  35807. height: math.unit(5, "feet"),
  35808. weight: math.unit(225, "lb"),
  35809. name: "Front (Dressed)",
  35810. image: {
  35811. source: "./media/characters/cindy/front-dressed.svg",
  35812. extra: 1320/1250,
  35813. bottom: 42/1362
  35814. }
  35815. },
  35816. back: {
  35817. height: math.unit(5, "feet"),
  35818. weight: math.unit(225, "lb"),
  35819. name: "Back",
  35820. image: {
  35821. source: "./media/characters/cindy/back.svg",
  35822. extra: 1384/1346,
  35823. bottom: 14/1398
  35824. }
  35825. },
  35826. },
  35827. [
  35828. {
  35829. name: "Normal",
  35830. height: math.unit(5, "feet"),
  35831. default: true
  35832. },
  35833. ]
  35834. ))
  35835. characterMakers.push(() => makeCharacter(
  35836. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35837. {
  35838. front: {
  35839. height: math.unit(6 + 9/12, "feet"),
  35840. weight: math.unit(440, "lb"),
  35841. name: "Front",
  35842. image: {
  35843. source: "./media/characters/wilbur-owen/front.svg",
  35844. extra: 1575/1448,
  35845. bottom: 72/1647
  35846. }
  35847. },
  35848. back: {
  35849. height: math.unit(6 + 9/12, "feet"),
  35850. weight: math.unit(440, "lb"),
  35851. name: "Back",
  35852. image: {
  35853. source: "./media/characters/wilbur-owen/back.svg",
  35854. extra: 1578/1445,
  35855. bottom: 36/1614
  35856. }
  35857. },
  35858. },
  35859. [
  35860. {
  35861. name: "Normal",
  35862. height: math.unit(6 + 9/12, "feet"),
  35863. default: true
  35864. },
  35865. ]
  35866. ))
  35867. characterMakers.push(() => makeCharacter(
  35868. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35869. {
  35870. front: {
  35871. height: math.unit(6 + 5/12, "feet"),
  35872. weight: math.unit(650, "lb"),
  35873. name: "Front",
  35874. image: {
  35875. source: "./media/characters/keegan/front.svg",
  35876. extra: 2387/2198,
  35877. bottom: 33/2420
  35878. }
  35879. },
  35880. side: {
  35881. height: math.unit(6 + 5/12, "feet"),
  35882. weight: math.unit(650, "lb"),
  35883. name: "Side",
  35884. image: {
  35885. source: "./media/characters/keegan/side.svg",
  35886. extra: 2390/2202,
  35887. bottom: 47/2437
  35888. }
  35889. },
  35890. back: {
  35891. height: math.unit(6 + 5/12, "feet"),
  35892. weight: math.unit(650, "lb"),
  35893. name: "Back",
  35894. image: {
  35895. source: "./media/characters/keegan/back.svg",
  35896. extra: 2418/2268,
  35897. bottom: 15/2433
  35898. }
  35899. },
  35900. frontSfw: {
  35901. height: math.unit(6 + 5/12, "feet"),
  35902. weight: math.unit(650, "lb"),
  35903. name: "Front (SFW)",
  35904. image: {
  35905. source: "./media/characters/keegan/front-sfw.svg",
  35906. extra: 2387/2198,
  35907. bottom: 33/2420
  35908. }
  35909. },
  35910. beans: {
  35911. height: math.unit(1.85, "feet"),
  35912. name: "Beans",
  35913. image: {
  35914. source: "./media/characters/keegan/beans.svg"
  35915. }
  35916. },
  35917. },
  35918. [
  35919. {
  35920. name: "Normal",
  35921. height: math.unit(6 + 5/12, "feet"),
  35922. default: true
  35923. },
  35924. ]
  35925. ))
  35926. characterMakers.push(() => makeCharacter(
  35927. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35928. {
  35929. front: {
  35930. height: math.unit(9, "feet"),
  35931. name: "Front",
  35932. image: {
  35933. source: "./media/characters/colton/front.svg",
  35934. extra: 1589/1326,
  35935. bottom: 139/1728
  35936. }
  35937. },
  35938. },
  35939. [
  35940. {
  35941. name: "Normal",
  35942. height: math.unit(9, "feet"),
  35943. default: true
  35944. },
  35945. ]
  35946. ))
  35947. characterMakers.push(() => makeCharacter(
  35948. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35949. {
  35950. front: {
  35951. height: math.unit(2 + 9/12, "feet"),
  35952. name: "Front",
  35953. image: {
  35954. source: "./media/characters/bora/front.svg",
  35955. extra: 1265/1250,
  35956. bottom: 24/1289
  35957. }
  35958. },
  35959. },
  35960. [
  35961. {
  35962. name: "Normal",
  35963. height: math.unit(2 + 9/12, "feet"),
  35964. default: true
  35965. },
  35966. ]
  35967. ))
  35968. characterMakers.push(() => makeCharacter(
  35969. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35970. {
  35971. front: {
  35972. height: math.unit(8, "feet"),
  35973. name: "Front",
  35974. image: {
  35975. source: "./media/characters/myu-myu/front.svg",
  35976. extra: 1949/1857,
  35977. bottom: 90/2039
  35978. }
  35979. },
  35980. },
  35981. [
  35982. {
  35983. name: "Normal",
  35984. height: math.unit(8, "feet"),
  35985. default: true
  35986. },
  35987. {
  35988. name: "Big",
  35989. height: math.unit(15, "feet")
  35990. },
  35991. {
  35992. name: "BIG",
  35993. height: math.unit(25, "feet")
  35994. },
  35995. ]
  35996. ))
  35997. characterMakers.push(() => makeCharacter(
  35998. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35999. {
  36000. side: {
  36001. height: math.unit(7 + 5/12, "feet"),
  36002. weight: math.unit(2800, "lb"),
  36003. name: "Side",
  36004. image: {
  36005. source: "./media/characters/haloren/side.svg",
  36006. extra: 1793/409,
  36007. bottom: 59/1852
  36008. }
  36009. },
  36010. frontPaw: {
  36011. height: math.unit(2.36, "feet"),
  36012. name: "Front paw",
  36013. image: {
  36014. source: "./media/characters/haloren/front-paw.svg"
  36015. }
  36016. },
  36017. hindPaw: {
  36018. height: math.unit(3.18, "feet"),
  36019. name: "Hind paw",
  36020. image: {
  36021. source: "./media/characters/haloren/hind-paw.svg"
  36022. }
  36023. },
  36024. maw: {
  36025. height: math.unit(5.05, "feet"),
  36026. name: "Maw",
  36027. image: {
  36028. source: "./media/characters/haloren/maw.svg"
  36029. }
  36030. },
  36031. dick: {
  36032. height: math.unit(2.90, "feet"),
  36033. name: "Dick",
  36034. image: {
  36035. source: "./media/characters/haloren/dick.svg"
  36036. }
  36037. },
  36038. },
  36039. [
  36040. {
  36041. name: "Normal",
  36042. height: math.unit(7 + 5/12, "feet"),
  36043. default: true
  36044. },
  36045. {
  36046. name: "Enhanced",
  36047. height: math.unit(14 + 3/12, "feet")
  36048. },
  36049. ]
  36050. ))
  36051. characterMakers.push(() => makeCharacter(
  36052. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36053. {
  36054. front: {
  36055. height: math.unit(171, "cm"),
  36056. name: "Front",
  36057. image: {
  36058. source: "./media/characters/kimmy/front.svg",
  36059. extra: 1491/1435,
  36060. bottom: 53/1544
  36061. }
  36062. },
  36063. },
  36064. [
  36065. {
  36066. name: "Small",
  36067. height: math.unit(9, "cm")
  36068. },
  36069. {
  36070. name: "Normal",
  36071. height: math.unit(171, "cm"),
  36072. default: true
  36073. },
  36074. ]
  36075. ))
  36076. characterMakers.push(() => makeCharacter(
  36077. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36078. {
  36079. front: {
  36080. height: math.unit(8, "feet"),
  36081. weight: math.unit(300, "lb"),
  36082. name: "Front",
  36083. image: {
  36084. source: "./media/characters/galeboomer/front.svg",
  36085. extra: 4651/4415,
  36086. bottom: 162/4813
  36087. }
  36088. },
  36089. back: {
  36090. height: math.unit(8, "feet"),
  36091. weight: math.unit(300, "lb"),
  36092. name: "Back",
  36093. image: {
  36094. source: "./media/characters/galeboomer/back.svg",
  36095. extra: 4544/4314,
  36096. bottom: 16/4560
  36097. }
  36098. },
  36099. frontAlt: {
  36100. height: math.unit(8, "feet"),
  36101. weight: math.unit(300, "lb"),
  36102. name: "Front (Alt)",
  36103. image: {
  36104. source: "./media/characters/galeboomer/front-alt.svg",
  36105. extra: 4458/4228,
  36106. bottom: 68/4526
  36107. }
  36108. },
  36109. maw: {
  36110. height: math.unit(1.2, "feet"),
  36111. name: "Maw",
  36112. image: {
  36113. source: "./media/characters/galeboomer/maw.svg"
  36114. }
  36115. },
  36116. },
  36117. [
  36118. {
  36119. name: "Normal",
  36120. height: math.unit(8, "feet"),
  36121. default: true
  36122. },
  36123. ]
  36124. ))
  36125. characterMakers.push(() => makeCharacter(
  36126. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36127. {
  36128. front: {
  36129. height: math.unit(5 + 9/12, "feet"),
  36130. weight: math.unit(120, "lb"),
  36131. name: "Front",
  36132. image: {
  36133. source: "./media/characters/chyr/front.svg",
  36134. extra: 1323/1254,
  36135. bottom: 63/1386
  36136. }
  36137. },
  36138. back: {
  36139. height: math.unit(5 + 9/12, "feet"),
  36140. weight: math.unit(120, "lb"),
  36141. name: "Back",
  36142. image: {
  36143. source: "./media/characters/chyr/back.svg",
  36144. extra: 1323/1252,
  36145. bottom: 48/1371
  36146. }
  36147. },
  36148. },
  36149. [
  36150. {
  36151. name: "Normal",
  36152. height: math.unit(5 + 9/12, "feet"),
  36153. default: true
  36154. },
  36155. ]
  36156. ))
  36157. characterMakers.push(() => makeCharacter(
  36158. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36159. {
  36160. front: {
  36161. height: math.unit(7, "feet"),
  36162. weight: math.unit(310, "lb"),
  36163. name: "Front",
  36164. image: {
  36165. source: "./media/characters/solarus/front.svg",
  36166. extra: 2415/2021,
  36167. bottom: 103/2518
  36168. }
  36169. },
  36170. back: {
  36171. height: math.unit(7, "feet"),
  36172. weight: math.unit(310, "lb"),
  36173. name: "Back",
  36174. image: {
  36175. source: "./media/characters/solarus/back.svg",
  36176. extra: 2463/2089,
  36177. bottom: 79/2542
  36178. }
  36179. },
  36180. },
  36181. [
  36182. {
  36183. name: "Normal",
  36184. height: math.unit(7, "feet"),
  36185. default: true
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36191. {
  36192. front: {
  36193. height: math.unit(16, "feet"),
  36194. name: "Front",
  36195. image: {
  36196. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36197. extra: 1844/1780,
  36198. bottom: 58/1902
  36199. }
  36200. },
  36201. winterCoat: {
  36202. height: math.unit(16, "feet"),
  36203. name: "Winter Coat",
  36204. image: {
  36205. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36206. extra: 1807/1775,
  36207. bottom: 69/1876
  36208. }
  36209. },
  36210. },
  36211. [
  36212. {
  36213. name: "Normal",
  36214. height: math.unit(16, "feet"),
  36215. default: true
  36216. },
  36217. {
  36218. name: "Chicago Size",
  36219. height: math.unit(560, "feet")
  36220. },
  36221. ]
  36222. ))
  36223. characterMakers.push(() => makeCharacter(
  36224. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36225. {
  36226. front: {
  36227. height: math.unit(11 + 6/12, "feet"),
  36228. weight: math.unit(1366, "lb"),
  36229. name: "Front",
  36230. image: {
  36231. source: "./media/characters/lexor/front.svg",
  36232. extra: 1560/1481,
  36233. bottom: 211/1771
  36234. }
  36235. },
  36236. back: {
  36237. height: math.unit(11 + 6/12, "feet"),
  36238. weight: math.unit(1366, "lb"),
  36239. name: "Back",
  36240. image: {
  36241. source: "./media/characters/lexor/back.svg",
  36242. extra: 1614/1533,
  36243. bottom: 76/1690
  36244. }
  36245. },
  36246. maw: {
  36247. height: math.unit(3, "feet"),
  36248. name: "Maw",
  36249. image: {
  36250. source: "./media/characters/lexor/maw.svg"
  36251. }
  36252. },
  36253. dick: {
  36254. height: math.unit(2.59, "feet"),
  36255. name: "Dick",
  36256. image: {
  36257. source: "./media/characters/lexor/dick.svg"
  36258. }
  36259. },
  36260. },
  36261. [
  36262. {
  36263. name: "Normal",
  36264. height: math.unit(11 + 6/12, "feet"),
  36265. default: true
  36266. },
  36267. ]
  36268. ))
  36269. characterMakers.push(() => makeCharacter(
  36270. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36271. {
  36272. front: {
  36273. height: math.unit(5 + 8/12, "feet"),
  36274. name: "Front",
  36275. image: {
  36276. source: "./media/characters/magnum/front.svg",
  36277. extra: 942/855,
  36278. bottom: 26/968
  36279. }
  36280. },
  36281. },
  36282. [
  36283. {
  36284. name: "Normal",
  36285. height: math.unit(5 + 8/12, "feet"),
  36286. default: true
  36287. },
  36288. ]
  36289. ))
  36290. characterMakers.push(() => makeCharacter(
  36291. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36292. {
  36293. front: {
  36294. height: math.unit(18 + 4/12, "feet"),
  36295. weight: math.unit(1500, "kg"),
  36296. name: "Front",
  36297. image: {
  36298. source: "./media/characters/solas-sharpsman/front.svg",
  36299. extra: 1698/1589,
  36300. bottom: 0/1698
  36301. }
  36302. },
  36303. },
  36304. [
  36305. {
  36306. name: "Normal",
  36307. height: math.unit(18 + 4/12, "feet"),
  36308. default: true
  36309. },
  36310. ]
  36311. ))
  36312. characterMakers.push(() => makeCharacter(
  36313. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36314. {
  36315. front: {
  36316. height: math.unit(5 + 5/12, "feet"),
  36317. weight: math.unit(180, "lb"),
  36318. name: "Front",
  36319. image: {
  36320. source: "./media/characters/october/front.svg",
  36321. extra: 1800/1650,
  36322. bottom: 0/1800
  36323. }
  36324. },
  36325. frontNsfw: {
  36326. height: math.unit(5 + 5/12, "feet"),
  36327. weight: math.unit(180, "lb"),
  36328. name: "Front (NSFW)",
  36329. image: {
  36330. source: "./media/characters/october/front-nsfw.svg",
  36331. extra: 1392/1307,
  36332. bottom: 42/1434
  36333. }
  36334. },
  36335. },
  36336. [
  36337. {
  36338. name: "Normal",
  36339. height: math.unit(5 + 5/12, "feet"),
  36340. default: true
  36341. },
  36342. ]
  36343. ))
  36344. characterMakers.push(() => makeCharacter(
  36345. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36346. {
  36347. front: {
  36348. height: math.unit(8 + 6/12, "feet"),
  36349. name: "Front",
  36350. image: {
  36351. source: "./media/characters/essynkardi/front.svg",
  36352. extra: 1914/1846,
  36353. bottom: 22/1936
  36354. }
  36355. },
  36356. },
  36357. [
  36358. {
  36359. name: "Normal",
  36360. height: math.unit(8 + 6/12, "feet"),
  36361. default: true
  36362. },
  36363. ]
  36364. ))
  36365. characterMakers.push(() => makeCharacter(
  36366. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36367. {
  36368. front: {
  36369. height: math.unit(6 + 6/12, "feet"),
  36370. weight: math.unit(7, "lb"),
  36371. name: "Front",
  36372. image: {
  36373. source: "./media/characters/icky/front.svg",
  36374. extra: 813/782,
  36375. bottom: 66/879
  36376. }
  36377. },
  36378. back: {
  36379. height: math.unit(6 + 6/12, "feet"),
  36380. weight: math.unit(7, "lb"),
  36381. name: "Back",
  36382. image: {
  36383. source: "./media/characters/icky/back.svg",
  36384. extra: 754/735,
  36385. bottom: 56/810
  36386. }
  36387. },
  36388. },
  36389. [
  36390. {
  36391. name: "Normal",
  36392. height: math.unit(6 + 6/12, "feet"),
  36393. default: true
  36394. },
  36395. ]
  36396. ))
  36397. characterMakers.push(() => makeCharacter(
  36398. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36399. {
  36400. front: {
  36401. height: math.unit(15, "feet"),
  36402. name: "Front",
  36403. image: {
  36404. source: "./media/characters/rojas/front.svg",
  36405. extra: 1462/1408,
  36406. bottom: 95/1557
  36407. }
  36408. },
  36409. back: {
  36410. height: math.unit(15, "feet"),
  36411. name: "Back",
  36412. image: {
  36413. source: "./media/characters/rojas/back.svg",
  36414. extra: 1023/954,
  36415. bottom: 28/1051
  36416. }
  36417. },
  36418. },
  36419. [
  36420. {
  36421. name: "Normal",
  36422. height: math.unit(15, "feet"),
  36423. default: true
  36424. },
  36425. ]
  36426. ))
  36427. characterMakers.push(() => makeCharacter(
  36428. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36429. {
  36430. frontHuman: {
  36431. height: math.unit(5 + 7/12, "feet"),
  36432. name: "Front (Human)",
  36433. image: {
  36434. source: "./media/characters/alek-dryagan/front-human.svg",
  36435. extra: 1687/1667,
  36436. bottom: 69/1756
  36437. }
  36438. },
  36439. backHuman: {
  36440. height: math.unit(5 + 7/12, "feet"),
  36441. name: "Back (Human)",
  36442. image: {
  36443. source: "./media/characters/alek-dryagan/back-human.svg",
  36444. extra: 1670/1649,
  36445. bottom: 65/1735
  36446. }
  36447. },
  36448. frontDemi: {
  36449. height: math.unit(65, "feet"),
  36450. name: "Front (Demi)",
  36451. image: {
  36452. source: "./media/characters/alek-dryagan/front-demi.svg",
  36453. extra: 1669/1642,
  36454. bottom: 49/1718
  36455. }
  36456. },
  36457. backDemi: {
  36458. height: math.unit(65, "feet"),
  36459. name: "Back (Demi)",
  36460. image: {
  36461. source: "./media/characters/alek-dryagan/back-demi.svg",
  36462. extra: 1658/1637,
  36463. bottom: 40/1698
  36464. }
  36465. },
  36466. mawHuman: {
  36467. height: math.unit(0.3, "feet"),
  36468. name: "Maw (Human)",
  36469. image: {
  36470. source: "./media/characters/alek-dryagan/maw-human.svg"
  36471. }
  36472. },
  36473. mawDemi: {
  36474. height: math.unit(3.8, "feet"),
  36475. name: "Maw (Demi)",
  36476. image: {
  36477. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36478. }
  36479. },
  36480. },
  36481. [
  36482. {
  36483. name: "Normal",
  36484. height: math.unit(5 + 7/12, "feet"),
  36485. default: true
  36486. },
  36487. ]
  36488. ))
  36489. characterMakers.push(() => makeCharacter(
  36490. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36491. {
  36492. frontHuman: {
  36493. height: math.unit(5 + 2/12, "feet"),
  36494. name: "Front (Human)",
  36495. image: {
  36496. source: "./media/characters/gen/front-human.svg",
  36497. extra: 1627/1538,
  36498. bottom: 71/1698
  36499. }
  36500. },
  36501. backHuman: {
  36502. height: math.unit(5 + 2/12, "feet"),
  36503. name: "Back (Human)",
  36504. image: {
  36505. source: "./media/characters/gen/back-human.svg",
  36506. extra: 1638/1548,
  36507. bottom: 69/1707
  36508. }
  36509. },
  36510. frontDemi: {
  36511. height: math.unit(5 + 2/12, "feet"),
  36512. name: "Front (Demi)",
  36513. image: {
  36514. source: "./media/characters/gen/front-demi.svg",
  36515. extra: 1627/1538,
  36516. bottom: 71/1698
  36517. }
  36518. },
  36519. backDemi: {
  36520. height: math.unit(5 + 2/12, "feet"),
  36521. name: "Back (Demi)",
  36522. image: {
  36523. source: "./media/characters/gen/back-demi.svg",
  36524. extra: 1638/1548,
  36525. bottom: 69/1707
  36526. }
  36527. },
  36528. },
  36529. [
  36530. {
  36531. name: "Normal",
  36532. height: math.unit(5 + 2/12, "feet"),
  36533. default: true
  36534. },
  36535. ]
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36539. {
  36540. frontImp: {
  36541. height: math.unit(1 + 11/12, "feet"),
  36542. name: "Front (Imp)",
  36543. image: {
  36544. source: "./media/characters/max-kobold/front-imp.svg",
  36545. extra: 1238/1134,
  36546. bottom: 81/1319
  36547. }
  36548. },
  36549. backImp: {
  36550. height: math.unit(1 + 11/12, "feet"),
  36551. name: "Back (Imp)",
  36552. image: {
  36553. source: "./media/characters/max-kobold/back-imp.svg",
  36554. extra: 1334/1175,
  36555. bottom: 34/1368
  36556. }
  36557. },
  36558. frontDemi: {
  36559. height: math.unit(5 + 9/12, "feet"),
  36560. name: "Front (Demi)",
  36561. image: {
  36562. source: "./media/characters/max-kobold/front-demi.svg",
  36563. extra: 1715/1685,
  36564. bottom: 54/1769
  36565. }
  36566. },
  36567. backDemi: {
  36568. height: math.unit(5 + 9/12, "feet"),
  36569. name: "Back (Demi)",
  36570. image: {
  36571. source: "./media/characters/max-kobold/back-demi.svg",
  36572. extra: 1752/1729,
  36573. bottom: 41/1793
  36574. }
  36575. },
  36576. handImp: {
  36577. height: math.unit(0.45, "feet"),
  36578. name: "Hand (Imp)",
  36579. image: {
  36580. source: "./media/characters/max-kobold/hand.svg"
  36581. }
  36582. },
  36583. pawImp: {
  36584. height: math.unit(0.46, "feet"),
  36585. name: "Paw (Imp)",
  36586. image: {
  36587. source: "./media/characters/max-kobold/paw.svg"
  36588. }
  36589. },
  36590. handDemi: {
  36591. height: math.unit(0.80, "feet"),
  36592. name: "Hand (Demi)",
  36593. image: {
  36594. source: "./media/characters/max-kobold/hand.svg"
  36595. }
  36596. },
  36597. pawDemi: {
  36598. height: math.unit(1.1, "feet"),
  36599. name: "Paw (Demi)",
  36600. image: {
  36601. source: "./media/characters/max-kobold/paw.svg"
  36602. }
  36603. },
  36604. headImp: {
  36605. height: math.unit(1.33, "feet"),
  36606. name: "Head (Imp)",
  36607. image: {
  36608. source: "./media/characters/max-kobold/head-imp.svg"
  36609. }
  36610. },
  36611. mawImp: {
  36612. height: math.unit(0.75, "feet"),
  36613. name: "Maw (Imp)",
  36614. image: {
  36615. source: "./media/characters/max-kobold/maw-imp.svg"
  36616. }
  36617. },
  36618. mawDemi: {
  36619. height: math.unit(0.42, "feet"),
  36620. name: "Maw (Demi)",
  36621. image: {
  36622. source: "./media/characters/max-kobold/maw-demi.svg"
  36623. }
  36624. },
  36625. },
  36626. [
  36627. {
  36628. name: "Normal",
  36629. height: math.unit(1 + 11/12, "feet"),
  36630. default: true
  36631. },
  36632. ]
  36633. ))
  36634. characterMakers.push(() => makeCharacter(
  36635. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36636. {
  36637. front: {
  36638. height: math.unit(7 + 5/12, "feet"),
  36639. name: "Front",
  36640. image: {
  36641. source: "./media/characters/carbon/front.svg",
  36642. extra: 1754/1689,
  36643. bottom: 65/1819
  36644. }
  36645. },
  36646. back: {
  36647. height: math.unit(7 + 5/12, "feet"),
  36648. name: "Back",
  36649. image: {
  36650. source: "./media/characters/carbon/back.svg",
  36651. extra: 1762/1695,
  36652. bottom: 24/1786
  36653. }
  36654. },
  36655. frontGigantamax: {
  36656. height: math.unit(150, "feet"),
  36657. name: "Front (Gigantamax)",
  36658. image: {
  36659. source: "./media/characters/carbon/front-gigantamax.svg",
  36660. extra: 1826/1669,
  36661. bottom: 59/1885
  36662. }
  36663. },
  36664. backGigantamax: {
  36665. height: math.unit(150, "feet"),
  36666. name: "Back (Gigantamax)",
  36667. image: {
  36668. source: "./media/characters/carbon/back-gigantamax.svg",
  36669. extra: 1796/1653,
  36670. bottom: 53/1849
  36671. }
  36672. },
  36673. maw: {
  36674. height: math.unit(0.48, "feet"),
  36675. name: "Maw",
  36676. image: {
  36677. source: "./media/characters/carbon/maw.svg"
  36678. }
  36679. },
  36680. mawGigantamax: {
  36681. height: math.unit(7.5, "feet"),
  36682. name: "Maw (Gigantamax)",
  36683. image: {
  36684. source: "./media/characters/carbon/maw-gigantamax.svg"
  36685. }
  36686. },
  36687. },
  36688. [
  36689. {
  36690. name: "Normal",
  36691. height: math.unit(7 + 5/12, "feet"),
  36692. default: true
  36693. },
  36694. ]
  36695. ))
  36696. characterMakers.push(() => makeCharacter(
  36697. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36698. {
  36699. front: {
  36700. height: math.unit(6, "feet"),
  36701. name: "Front",
  36702. image: {
  36703. source: "./media/characters/maverick/front.svg",
  36704. extra: 1672/1661,
  36705. bottom: 85/1757
  36706. }
  36707. },
  36708. back: {
  36709. height: math.unit(6, "feet"),
  36710. name: "Back",
  36711. image: {
  36712. source: "./media/characters/maverick/back.svg",
  36713. extra: 1642/1631,
  36714. bottom: 38/1680
  36715. }
  36716. },
  36717. },
  36718. [
  36719. {
  36720. name: "Normal",
  36721. height: math.unit(6, "feet"),
  36722. default: true
  36723. },
  36724. ]
  36725. ))
  36726. characterMakers.push(() => makeCharacter(
  36727. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36728. {
  36729. front: {
  36730. height: math.unit(15, "feet"),
  36731. weight: math.unit(615, "lb"),
  36732. name: "Front",
  36733. image: {
  36734. source: "./media/characters/grockle/front.svg",
  36735. extra: 1535/1427,
  36736. bottom: 56/1591
  36737. }
  36738. },
  36739. },
  36740. [
  36741. {
  36742. name: "Normal",
  36743. height: math.unit(15, "feet"),
  36744. default: true
  36745. },
  36746. {
  36747. name: "Large",
  36748. height: math.unit(150, "feet")
  36749. },
  36750. {
  36751. name: "Macro",
  36752. height: math.unit(1876, "feet")
  36753. },
  36754. {
  36755. name: "Mega Macro",
  36756. height: math.unit(121940, "feet")
  36757. },
  36758. {
  36759. name: "Giga Macro",
  36760. height: math.unit(750, "km")
  36761. },
  36762. {
  36763. name: "Tera Macro",
  36764. height: math.unit(750000, "km")
  36765. },
  36766. {
  36767. name: "Galactic",
  36768. height: math.unit(1.4e5, "km")
  36769. },
  36770. {
  36771. name: "Godlike",
  36772. height: math.unit(9.8e280, "galaxies")
  36773. },
  36774. ]
  36775. ))
  36776. characterMakers.push(() => makeCharacter(
  36777. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36778. {
  36779. front: {
  36780. height: math.unit(11, "meters"),
  36781. weight: math.unit(20, "tonnes"),
  36782. name: "Front",
  36783. image: {
  36784. source: "./media/characters/alistair/front.svg",
  36785. extra: 1265/1009,
  36786. bottom: 93/1358
  36787. }
  36788. },
  36789. },
  36790. [
  36791. {
  36792. name: "Normal",
  36793. height: math.unit(11, "meters"),
  36794. default: true
  36795. },
  36796. ]
  36797. ))
  36798. characterMakers.push(() => makeCharacter(
  36799. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36800. {
  36801. front: {
  36802. height: math.unit(5 + 8/12, "feet"),
  36803. name: "Front",
  36804. image: {
  36805. source: "./media/characters/haruka/front.svg",
  36806. extra: 2012/1952,
  36807. bottom: 0/2012
  36808. }
  36809. },
  36810. },
  36811. [
  36812. {
  36813. name: "Normal",
  36814. height: math.unit(5 + 8/12, "feet"),
  36815. default: true
  36816. },
  36817. ]
  36818. ))
  36819. characterMakers.push(() => makeCharacter(
  36820. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36821. {
  36822. back: {
  36823. height: math.unit(9, "feet"),
  36824. name: "Back",
  36825. image: {
  36826. source: "./media/characters/vivian-sylveon/back.svg",
  36827. extra: 1853/1714,
  36828. bottom: 0/1853
  36829. }
  36830. },
  36831. },
  36832. [
  36833. {
  36834. name: "Normal",
  36835. height: math.unit(9, "feet"),
  36836. default: true
  36837. },
  36838. {
  36839. name: "Macro",
  36840. height: math.unit(500, "feet")
  36841. },
  36842. {
  36843. name: "Megamacro",
  36844. height: math.unit(600, "miles")
  36845. },
  36846. {
  36847. name: "Gigamacro",
  36848. height: math.unit(30000, "miles")
  36849. },
  36850. ]
  36851. ))
  36852. characterMakers.push(() => makeCharacter(
  36853. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36854. {
  36855. anthro: {
  36856. height: math.unit(5 + 10/12, "feet"),
  36857. weight: math.unit(100, "lb"),
  36858. name: "Anthro",
  36859. image: {
  36860. source: "./media/characters/daiki/anthro.svg",
  36861. extra: 1115/1027,
  36862. bottom: 69/1184
  36863. }
  36864. },
  36865. feral: {
  36866. height: math.unit(200, "feet"),
  36867. name: "Feral",
  36868. image: {
  36869. source: "./media/characters/daiki/feral.svg",
  36870. extra: 1256/313,
  36871. bottom: 39/1295
  36872. }
  36873. },
  36874. feralHead: {
  36875. height: math.unit(171, "feet"),
  36876. name: "Feral Head",
  36877. image: {
  36878. source: "./media/characters/daiki/feral-head.svg"
  36879. }
  36880. },
  36881. manaDragon: {
  36882. height: math.unit(170, "meters"),
  36883. name: "Mana-dragon",
  36884. image: {
  36885. source: "./media/characters/daiki/mana-dragon.svg",
  36886. extra: 763/420,
  36887. bottom: 97/860
  36888. }
  36889. },
  36890. },
  36891. [
  36892. {
  36893. name: "Normal",
  36894. height: math.unit(5 + 10/12, "feet"),
  36895. default: true
  36896. },
  36897. ]
  36898. ))
  36899. characterMakers.push(() => makeCharacter(
  36900. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36901. {
  36902. fullyEquippedFront: {
  36903. height: math.unit(3 + 1/12, "feet"),
  36904. weight: math.unit(24, "lb"),
  36905. name: "Fully Equipped (Front)",
  36906. image: {
  36907. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36908. extra: 687/605,
  36909. bottom: 18/705
  36910. }
  36911. },
  36912. fullyEquippedBack: {
  36913. height: math.unit(3 + 1/12, "feet"),
  36914. weight: math.unit(24, "lb"),
  36915. name: "Fully Equipped (Back)",
  36916. image: {
  36917. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36918. extra: 689/590,
  36919. bottom: 18/707
  36920. }
  36921. },
  36922. dailyWear: {
  36923. height: math.unit(3 + 1/12, "feet"),
  36924. weight: math.unit(24, "lb"),
  36925. name: "Daily Wear",
  36926. image: {
  36927. source: "./media/characters/tea-spot/daily-wear.svg",
  36928. extra: 701/620,
  36929. bottom: 21/722
  36930. }
  36931. },
  36932. maidWork: {
  36933. height: math.unit(3 + 1/12, "feet"),
  36934. weight: math.unit(24, "lb"),
  36935. name: "Maid Work",
  36936. image: {
  36937. source: "./media/characters/tea-spot/maid-work.svg",
  36938. extra: 693/609,
  36939. bottom: 15/708
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Normal",
  36946. height: math.unit(3 + 1/12, "feet"),
  36947. default: true
  36948. },
  36949. ]
  36950. ))
  36951. characterMakers.push(() => makeCharacter(
  36952. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36953. {
  36954. front: {
  36955. height: math.unit(175, "cm"),
  36956. weight: math.unit(75, "kg"),
  36957. name: "Front",
  36958. image: {
  36959. source: "./media/characters/chee/front.svg",
  36960. extra: 1796/1740,
  36961. bottom: 40/1836
  36962. }
  36963. },
  36964. },
  36965. [
  36966. {
  36967. name: "Micro-Micro",
  36968. height: math.unit(1, "nm")
  36969. },
  36970. {
  36971. name: "Micro-erst",
  36972. height: math.unit(1, "micrometer")
  36973. },
  36974. {
  36975. name: "Micro-er",
  36976. height: math.unit(1, "cm")
  36977. },
  36978. {
  36979. name: "Normal",
  36980. height: math.unit(175, "cm"),
  36981. default: true
  36982. },
  36983. {
  36984. name: "Macro",
  36985. height: math.unit(100, "m")
  36986. },
  36987. {
  36988. name: "Macro-er",
  36989. height: math.unit(1, "km")
  36990. },
  36991. {
  36992. name: "Macro-erst",
  36993. height: math.unit(10, "km")
  36994. },
  36995. {
  36996. name: "Macro-Macro",
  36997. height: math.unit(100, "km")
  36998. },
  36999. ]
  37000. ))
  37001. characterMakers.push(() => makeCharacter(
  37002. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37003. {
  37004. front: {
  37005. height: math.unit(11 + 9/12, "feet"),
  37006. weight: math.unit(935, "lb"),
  37007. name: "Front",
  37008. image: {
  37009. source: "./media/characters/kingsley/front.svg",
  37010. extra: 1803/1674,
  37011. bottom: 127/1930
  37012. }
  37013. },
  37014. frontNude: {
  37015. height: math.unit(11 + 9/12, "feet"),
  37016. weight: math.unit(935, "lb"),
  37017. name: "Front (Nude)",
  37018. image: {
  37019. source: "./media/characters/kingsley/front-nude.svg",
  37020. extra: 1803/1674,
  37021. bottom: 127/1930
  37022. }
  37023. },
  37024. },
  37025. [
  37026. {
  37027. name: "Normal",
  37028. height: math.unit(11 + 9/12, "feet"),
  37029. default: true
  37030. },
  37031. ]
  37032. ))
  37033. characterMakers.push(() => makeCharacter(
  37034. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37035. {
  37036. side: {
  37037. height: math.unit(9, "feet"),
  37038. name: "Side",
  37039. image: {
  37040. source: "./media/characters/rymel/side.svg",
  37041. extra: 792/469,
  37042. bottom: 121/913
  37043. }
  37044. },
  37045. maw: {
  37046. height: math.unit(2.4, "meters"),
  37047. name: "Maw",
  37048. image: {
  37049. source: "./media/characters/rymel/maw.svg"
  37050. }
  37051. },
  37052. },
  37053. [
  37054. {
  37055. name: "House Drake",
  37056. height: math.unit(2, "feet")
  37057. },
  37058. {
  37059. name: "Reduced",
  37060. height: math.unit(4.5, "feet")
  37061. },
  37062. {
  37063. name: "Normal",
  37064. height: math.unit(9, "feet"),
  37065. default: true
  37066. },
  37067. ]
  37068. ))
  37069. characterMakers.push(() => makeCharacter(
  37070. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37071. {
  37072. front: {
  37073. height: math.unit(1.74, "meters"),
  37074. weight: math.unit(55, "kg"),
  37075. name: "Front",
  37076. image: {
  37077. source: "./media/characters/rubus/front.svg",
  37078. extra: 1894/1742,
  37079. bottom: 44/1938
  37080. }
  37081. },
  37082. },
  37083. [
  37084. {
  37085. name: "Normal",
  37086. height: math.unit(1.74, "meters"),
  37087. default: true
  37088. },
  37089. ]
  37090. ))
  37091. characterMakers.push(() => makeCharacter(
  37092. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37093. {
  37094. front: {
  37095. height: math.unit(5 + 2/12, "feet"),
  37096. weight: math.unit(112, "lb"),
  37097. name: "Front",
  37098. image: {
  37099. source: "./media/characters/cassie-kingston/front.svg",
  37100. extra: 1438/1390,
  37101. bottom: 47/1485
  37102. }
  37103. },
  37104. },
  37105. [
  37106. {
  37107. name: "Normal",
  37108. height: math.unit(5 + 2/12, "feet"),
  37109. default: true
  37110. },
  37111. {
  37112. name: "Macro",
  37113. height: math.unit(128, "feet")
  37114. },
  37115. {
  37116. name: "Megamacro",
  37117. height: math.unit(2.56, "miles")
  37118. },
  37119. ]
  37120. ))
  37121. characterMakers.push(() => makeCharacter(
  37122. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37123. {
  37124. front: {
  37125. height: math.unit(7, "feet"),
  37126. name: "Front",
  37127. image: {
  37128. source: "./media/characters/fox/front.svg",
  37129. extra: 1798/1703,
  37130. bottom: 55/1853
  37131. }
  37132. },
  37133. back: {
  37134. height: math.unit(7, "feet"),
  37135. name: "Back",
  37136. image: {
  37137. source: "./media/characters/fox/back.svg",
  37138. extra: 1748/1649,
  37139. bottom: 32/1780
  37140. }
  37141. },
  37142. head: {
  37143. height: math.unit(1.95, "feet"),
  37144. name: "Head",
  37145. image: {
  37146. source: "./media/characters/fox/head.svg"
  37147. }
  37148. },
  37149. dick: {
  37150. height: math.unit(1.33, "feet"),
  37151. name: "Dick",
  37152. image: {
  37153. source: "./media/characters/fox/dick.svg"
  37154. }
  37155. },
  37156. foot: {
  37157. height: math.unit(1, "feet"),
  37158. name: "Foot",
  37159. image: {
  37160. source: "./media/characters/fox/foot.svg"
  37161. }
  37162. },
  37163. paw: {
  37164. height: math.unit(0.92, "feet"),
  37165. name: "Paw",
  37166. image: {
  37167. source: "./media/characters/fox/paw.svg"
  37168. }
  37169. },
  37170. },
  37171. [
  37172. {
  37173. name: "Small",
  37174. height: math.unit(3, "inches")
  37175. },
  37176. {
  37177. name: "\"Realistic\"",
  37178. height: math.unit(7, "feet")
  37179. },
  37180. {
  37181. name: "Normal",
  37182. height: math.unit(150, "feet"),
  37183. default: true
  37184. },
  37185. {
  37186. name: "BIG",
  37187. height: math.unit(1200, "feet")
  37188. },
  37189. {
  37190. name: "👀",
  37191. height: math.unit(5, "miles")
  37192. },
  37193. {
  37194. name: "👀👀👀",
  37195. height: math.unit(64, "miles")
  37196. },
  37197. ]
  37198. ))
  37199. characterMakers.push(() => makeCharacter(
  37200. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37201. {
  37202. front: {
  37203. height: math.unit(625, "feet"),
  37204. name: "Front",
  37205. image: {
  37206. source: "./media/characters/asonja-rossa/front.svg",
  37207. extra: 1833/1686,
  37208. bottom: 24/1857
  37209. }
  37210. },
  37211. back: {
  37212. height: math.unit(625, "feet"),
  37213. name: "Back",
  37214. image: {
  37215. source: "./media/characters/asonja-rossa/back.svg",
  37216. extra: 1852/1753,
  37217. bottom: 26/1878
  37218. }
  37219. },
  37220. },
  37221. [
  37222. {
  37223. name: "Macro",
  37224. height: math.unit(625, "feet"),
  37225. default: true
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37231. {
  37232. side: {
  37233. height: math.unit(8, "feet"),
  37234. name: "Side",
  37235. image: {
  37236. source: "./media/characters/rezukii/side.svg",
  37237. extra: 979/542,
  37238. bottom: 87/1066
  37239. }
  37240. },
  37241. sitting: {
  37242. height: math.unit(14.6, "feet"),
  37243. name: "Sitting",
  37244. image: {
  37245. source: "./media/characters/rezukii/sitting.svg",
  37246. extra: 1023/813,
  37247. bottom: 45/1068
  37248. }
  37249. },
  37250. },
  37251. [
  37252. {
  37253. name: "Tiny",
  37254. height: math.unit(2, "feet")
  37255. },
  37256. {
  37257. name: "Smol",
  37258. height: math.unit(4, "feet")
  37259. },
  37260. {
  37261. name: "Normal",
  37262. height: math.unit(8, "feet"),
  37263. default: true
  37264. },
  37265. {
  37266. name: "Big",
  37267. height: math.unit(12, "feet")
  37268. },
  37269. {
  37270. name: "Macro",
  37271. height: math.unit(30, "feet")
  37272. },
  37273. ]
  37274. ))
  37275. characterMakers.push(() => makeCharacter(
  37276. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37277. {
  37278. front: {
  37279. height: math.unit(14, "feet"),
  37280. weight: math.unit(9.5, "tonnes"),
  37281. name: "Front",
  37282. image: {
  37283. source: "./media/characters/dawnheart/front.svg",
  37284. extra: 2792/2675,
  37285. bottom: 64/2856
  37286. }
  37287. },
  37288. },
  37289. [
  37290. {
  37291. name: "Normal",
  37292. height: math.unit(14, "feet"),
  37293. default: true
  37294. },
  37295. ]
  37296. ))
  37297. characterMakers.push(() => makeCharacter(
  37298. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37299. {
  37300. front: {
  37301. height: math.unit(1.7, "m"),
  37302. name: "Front",
  37303. image: {
  37304. source: "./media/characters/gladi/front.svg",
  37305. extra: 1460/1362,
  37306. bottom: 19/1479
  37307. }
  37308. },
  37309. back: {
  37310. height: math.unit(1.7, "m"),
  37311. name: "Back",
  37312. image: {
  37313. source: "./media/characters/gladi/back.svg",
  37314. extra: 1459/1357,
  37315. bottom: 12/1471
  37316. }
  37317. },
  37318. feral: {
  37319. height: math.unit(2.05, "m"),
  37320. name: "Feral",
  37321. image: {
  37322. source: "./media/characters/gladi/feral.svg",
  37323. extra: 821/557,
  37324. bottom: 91/912
  37325. }
  37326. },
  37327. },
  37328. [
  37329. {
  37330. name: "Shortest",
  37331. height: math.unit(70, "cm")
  37332. },
  37333. {
  37334. name: "Normal",
  37335. height: math.unit(1.7, "m")
  37336. },
  37337. {
  37338. name: "Macro",
  37339. height: math.unit(10, "m"),
  37340. default: true
  37341. },
  37342. {
  37343. name: "Tallest",
  37344. height: math.unit(200, "m")
  37345. },
  37346. ]
  37347. ))
  37348. characterMakers.push(() => makeCharacter(
  37349. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37350. {
  37351. front: {
  37352. height: math.unit(5 + 7/12, "feet"),
  37353. weight: math.unit(2, "tons"),
  37354. name: "Front",
  37355. image: {
  37356. source: "./media/characters/erdno/front.svg",
  37357. extra: 1234/1129,
  37358. bottom: 35/1269
  37359. }
  37360. },
  37361. angled: {
  37362. height: math.unit(5 + 7/12, "feet"),
  37363. weight: math.unit(2, "tons"),
  37364. name: "Angled",
  37365. image: {
  37366. source: "./media/characters/erdno/angled.svg",
  37367. extra: 1185/1139,
  37368. bottom: 36/1221
  37369. }
  37370. },
  37371. side: {
  37372. height: math.unit(5 + 7/12, "feet"),
  37373. weight: math.unit(2, "tons"),
  37374. name: "Side",
  37375. image: {
  37376. source: "./media/characters/erdno/side.svg",
  37377. extra: 1191/1144,
  37378. bottom: 40/1231
  37379. }
  37380. },
  37381. back: {
  37382. height: math.unit(5 + 7/12, "feet"),
  37383. weight: math.unit(2, "tons"),
  37384. name: "Back",
  37385. image: {
  37386. source: "./media/characters/erdno/back.svg",
  37387. extra: 1202/1146,
  37388. bottom: 17/1219
  37389. }
  37390. },
  37391. frontNsfw: {
  37392. height: math.unit(5 + 7/12, "feet"),
  37393. weight: math.unit(2, "tons"),
  37394. name: "Front (NSFW)",
  37395. image: {
  37396. source: "./media/characters/erdno/front-nsfw.svg",
  37397. extra: 1234/1129,
  37398. bottom: 35/1269
  37399. }
  37400. },
  37401. angledNsfw: {
  37402. height: math.unit(5 + 7/12, "feet"),
  37403. weight: math.unit(2, "tons"),
  37404. name: "Angled (NSFW)",
  37405. image: {
  37406. source: "./media/characters/erdno/angled-nsfw.svg",
  37407. extra: 1185/1139,
  37408. bottom: 36/1221
  37409. }
  37410. },
  37411. sideNsfw: {
  37412. height: math.unit(5 + 7/12, "feet"),
  37413. weight: math.unit(2, "tons"),
  37414. name: "Side (NSFW)",
  37415. image: {
  37416. source: "./media/characters/erdno/side-nsfw.svg",
  37417. extra: 1191/1144,
  37418. bottom: 40/1231
  37419. }
  37420. },
  37421. backNsfw: {
  37422. height: math.unit(5 + 7/12, "feet"),
  37423. weight: math.unit(2, "tons"),
  37424. name: "Back (NSFW)",
  37425. image: {
  37426. source: "./media/characters/erdno/back-nsfw.svg",
  37427. extra: 1202/1146,
  37428. bottom: 17/1219
  37429. }
  37430. },
  37431. frontHyper: {
  37432. height: math.unit(5 + 7/12, "feet"),
  37433. weight: math.unit(2, "tons"),
  37434. name: "Front (Hyper)",
  37435. image: {
  37436. source: "./media/characters/erdno/front-hyper.svg",
  37437. extra: 1298/1136,
  37438. bottom: 35/1333
  37439. }
  37440. },
  37441. },
  37442. [
  37443. {
  37444. name: "Normal",
  37445. height: math.unit(5 + 7/12, "feet"),
  37446. default: true
  37447. },
  37448. {
  37449. name: "Big",
  37450. height: math.unit(5.7, "meters")
  37451. },
  37452. {
  37453. name: "Macro",
  37454. height: math.unit(5.7, "kilometers")
  37455. },
  37456. {
  37457. name: "Megamacro",
  37458. height: math.unit(5.7, "earths")
  37459. },
  37460. ]
  37461. ))
  37462. characterMakers.push(() => makeCharacter(
  37463. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37464. {
  37465. front: {
  37466. height: math.unit(5 + 10/12, "feet"),
  37467. weight: math.unit(150, "lb"),
  37468. name: "Front",
  37469. image: {
  37470. source: "./media/characters/jamie/front.svg",
  37471. extra: 1908/1768,
  37472. bottom: 19/1927
  37473. }
  37474. },
  37475. },
  37476. [
  37477. {
  37478. name: "Minimum",
  37479. height: math.unit(2, "cm")
  37480. },
  37481. {
  37482. name: "Micro",
  37483. height: math.unit(3, "inches")
  37484. },
  37485. {
  37486. name: "Normal",
  37487. height: math.unit(5 + 10/12, "feet"),
  37488. default: true
  37489. },
  37490. {
  37491. name: "Macro",
  37492. height: math.unit(150, "feet")
  37493. },
  37494. {
  37495. name: "Megamacro",
  37496. height: math.unit(10000, "m")
  37497. },
  37498. ]
  37499. ))
  37500. characterMakers.push(() => makeCharacter(
  37501. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37502. {
  37503. front: {
  37504. height: math.unit(2, "meters"),
  37505. weight: math.unit(100, "kg"),
  37506. name: "Front",
  37507. image: {
  37508. source: "./media/characters/shiron/front.svg",
  37509. extra: 2103/1985,
  37510. bottom: 98/2201
  37511. }
  37512. },
  37513. back: {
  37514. height: math.unit(2, "meters"),
  37515. weight: math.unit(100, "kg"),
  37516. name: "Back",
  37517. image: {
  37518. source: "./media/characters/shiron/back.svg",
  37519. extra: 2110/2015,
  37520. bottom: 89/2199
  37521. }
  37522. },
  37523. hand: {
  37524. height: math.unit(0.96, "feet"),
  37525. name: "Hand",
  37526. image: {
  37527. source: "./media/characters/shiron/hand.svg"
  37528. }
  37529. },
  37530. foot: {
  37531. height: math.unit(1.464, "feet"),
  37532. name: "Foot",
  37533. image: {
  37534. source: "./media/characters/shiron/foot.svg"
  37535. }
  37536. },
  37537. },
  37538. [
  37539. {
  37540. name: "Normal",
  37541. height: math.unit(2, "meters")
  37542. },
  37543. {
  37544. name: "Macro",
  37545. height: math.unit(500, "meters"),
  37546. default: true
  37547. },
  37548. {
  37549. name: "Megamacro",
  37550. height: math.unit(20, "km")
  37551. },
  37552. ]
  37553. ))
  37554. characterMakers.push(() => makeCharacter(
  37555. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37556. {
  37557. front: {
  37558. height: math.unit(6, "feet"),
  37559. name: "Front",
  37560. image: {
  37561. source: "./media/characters/sam/front.svg",
  37562. extra: 849/826,
  37563. bottom: 19/868
  37564. }
  37565. },
  37566. },
  37567. [
  37568. {
  37569. name: "Normal",
  37570. height: math.unit(6, "feet"),
  37571. default: true
  37572. },
  37573. ]
  37574. ))
  37575. characterMakers.push(() => makeCharacter(
  37576. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37577. {
  37578. front: {
  37579. height: math.unit(8 + 4/12, "feet"),
  37580. weight: math.unit(122, "kg"),
  37581. name: "Front",
  37582. image: {
  37583. source: "./media/characters/namori-kurogawa/front.svg",
  37584. extra: 1894/1576,
  37585. bottom: 34/1928
  37586. }
  37587. },
  37588. },
  37589. [
  37590. {
  37591. name: "Normal",
  37592. height: math.unit(8 + 4/12, "feet"),
  37593. default: true
  37594. },
  37595. ]
  37596. ))
  37597. characterMakers.push(() => makeCharacter(
  37598. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37599. {
  37600. front: {
  37601. height: math.unit(9, "feet"),
  37602. weight: math.unit(621, "lb"),
  37603. name: "Front",
  37604. image: {
  37605. source: "./media/characters/unmru/front.svg",
  37606. extra: 1853/1747,
  37607. bottom: 73/1926
  37608. }
  37609. },
  37610. side: {
  37611. height: math.unit(9, "feet"),
  37612. weight: math.unit(621, "lb"),
  37613. name: "Side",
  37614. image: {
  37615. source: "./media/characters/unmru/side.svg",
  37616. extra: 1781/1671,
  37617. bottom: 127/1908
  37618. }
  37619. },
  37620. back: {
  37621. height: math.unit(9, "feet"),
  37622. weight: math.unit(621, "lb"),
  37623. name: "Back",
  37624. image: {
  37625. source: "./media/characters/unmru/back.svg",
  37626. extra: 1894/1765,
  37627. bottom: 75/1969
  37628. }
  37629. },
  37630. dick: {
  37631. height: math.unit(3, "feet"),
  37632. weight: math.unit(35, "lb"),
  37633. name: "Dick",
  37634. image: {
  37635. source: "./media/characters/unmru/dick.svg"
  37636. }
  37637. },
  37638. },
  37639. [
  37640. {
  37641. name: "Normal",
  37642. height: math.unit(9, "feet")
  37643. },
  37644. {
  37645. name: "Natural",
  37646. height: math.unit(27, "feet"),
  37647. default: true
  37648. },
  37649. {
  37650. name: "Giant",
  37651. height: math.unit(90, "feet")
  37652. },
  37653. {
  37654. name: "Kaiju",
  37655. height: math.unit(270, "feet")
  37656. },
  37657. {
  37658. name: "Macro",
  37659. height: math.unit(900, "feet")
  37660. },
  37661. {
  37662. name: "Macro+",
  37663. height: math.unit(2700, "feet")
  37664. },
  37665. {
  37666. name: "Megamacro",
  37667. height: math.unit(9000, "feet")
  37668. },
  37669. {
  37670. name: "City-Crushing",
  37671. height: math.unit(27000, "feet")
  37672. },
  37673. {
  37674. name: "Mountain-Mashing",
  37675. height: math.unit(90000, "feet")
  37676. },
  37677. {
  37678. name: "Earth-Eclipsing",
  37679. height: math.unit(2.7e8, "feet")
  37680. },
  37681. {
  37682. name: "Sol-Swallowing",
  37683. height: math.unit(9e10, "feet")
  37684. },
  37685. {
  37686. name: "Majoris-Munching",
  37687. height: math.unit(2.7e13, "feet")
  37688. },
  37689. ]
  37690. ))
  37691. characterMakers.push(() => makeCharacter(
  37692. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37693. {
  37694. front: {
  37695. height: math.unit(1, "inch"),
  37696. name: "Front",
  37697. image: {
  37698. source: "./media/characters/squeaks-mouse/front.svg",
  37699. extra: 352/308,
  37700. bottom: 25/377
  37701. }
  37702. },
  37703. },
  37704. [
  37705. {
  37706. name: "Micro",
  37707. height: math.unit(1, "inch"),
  37708. default: true
  37709. },
  37710. ]
  37711. ))
  37712. characterMakers.push(() => makeCharacter(
  37713. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37714. {
  37715. side: {
  37716. height: math.unit(35, "feet"),
  37717. name: "Side",
  37718. image: {
  37719. source: "./media/characters/sayko/side.svg",
  37720. extra: 1697/1021,
  37721. bottom: 82/1779
  37722. }
  37723. },
  37724. head: {
  37725. height: math.unit(16, "feet"),
  37726. name: "Head",
  37727. image: {
  37728. source: "./media/characters/sayko/head.svg"
  37729. }
  37730. },
  37731. forepaw: {
  37732. height: math.unit(7.85, "feet"),
  37733. name: "Forepaw",
  37734. image: {
  37735. source: "./media/characters/sayko/forepaw.svg"
  37736. }
  37737. },
  37738. hindpaw: {
  37739. height: math.unit(8.8, "feet"),
  37740. name: "Hindpaw",
  37741. image: {
  37742. source: "./media/characters/sayko/hindpaw.svg"
  37743. }
  37744. },
  37745. },
  37746. [
  37747. {
  37748. name: "Normal",
  37749. height: math.unit(35, "feet"),
  37750. default: true
  37751. },
  37752. {
  37753. name: "Colossus",
  37754. height: math.unit(100, "meters")
  37755. },
  37756. {
  37757. name: "\"Small\" Deity",
  37758. height: math.unit(1, "km")
  37759. },
  37760. {
  37761. name: "\"Large\" Deity",
  37762. height: math.unit(15, "km")
  37763. },
  37764. ]
  37765. ))
  37766. characterMakers.push(() => makeCharacter(
  37767. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37768. {
  37769. front: {
  37770. height: math.unit(6, "feet"),
  37771. weight: math.unit(250, "lb"),
  37772. name: "Front",
  37773. image: {
  37774. source: "./media/characters/mukiro/front.svg",
  37775. extra: 1368/1310,
  37776. bottom: 34/1402
  37777. }
  37778. },
  37779. },
  37780. [
  37781. {
  37782. name: "Normal",
  37783. height: math.unit(6, "feet"),
  37784. default: true
  37785. },
  37786. ]
  37787. ))
  37788. characterMakers.push(() => makeCharacter(
  37789. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37790. {
  37791. front: {
  37792. height: math.unit(12 + 4/12, "feet"),
  37793. name: "Front",
  37794. image: {
  37795. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37796. extra: 1346/1311,
  37797. bottom: 65/1411
  37798. }
  37799. },
  37800. },
  37801. [
  37802. {
  37803. name: "Base",
  37804. height: math.unit(12 + 4/12, "feet"),
  37805. default: true
  37806. },
  37807. {
  37808. name: "Macro",
  37809. height: math.unit(150, "feet")
  37810. },
  37811. {
  37812. name: "Mega",
  37813. height: math.unit(2, "miles")
  37814. },
  37815. {
  37816. name: "Demi God",
  37817. height: math.unit(4, "AU")
  37818. },
  37819. {
  37820. name: "God Size",
  37821. height: math.unit(1, "universe")
  37822. },
  37823. ]
  37824. ))
  37825. characterMakers.push(() => makeCharacter(
  37826. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37827. {
  37828. front: {
  37829. height: math.unit(3 + 3/12, "feet"),
  37830. weight: math.unit(88, "lb"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/trey/front.svg",
  37834. extra: 1815/1509,
  37835. bottom: 60/1875
  37836. }
  37837. },
  37838. },
  37839. [
  37840. {
  37841. name: "Normal",
  37842. height: math.unit(3 + 3/12, "feet"),
  37843. default: true
  37844. },
  37845. ]
  37846. ))
  37847. characterMakers.push(() => makeCharacter(
  37848. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37849. {
  37850. front: {
  37851. height: math.unit(4, "meters"),
  37852. name: "Front",
  37853. image: {
  37854. source: "./media/characters/adelonda/front.svg",
  37855. extra: 1077/982,
  37856. bottom: 39/1116
  37857. }
  37858. },
  37859. back: {
  37860. height: math.unit(4, "meters"),
  37861. name: "Back",
  37862. image: {
  37863. source: "./media/characters/adelonda/back.svg",
  37864. extra: 1105/1003,
  37865. bottom: 25/1130
  37866. }
  37867. },
  37868. feral: {
  37869. height: math.unit(40/1.5, "meters"),
  37870. name: "Feral",
  37871. image: {
  37872. source: "./media/characters/adelonda/feral.svg",
  37873. extra: 597/271,
  37874. bottom: 387/984
  37875. }
  37876. },
  37877. },
  37878. [
  37879. {
  37880. name: "Normal",
  37881. height: math.unit(4, "meters"),
  37882. default: true
  37883. },
  37884. ]
  37885. ))
  37886. characterMakers.push(() => makeCharacter(
  37887. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37888. {
  37889. front: {
  37890. height: math.unit(8 + 4/12, "feet"),
  37891. weight: math.unit(670, "lb"),
  37892. name: "Front",
  37893. image: {
  37894. source: "./media/characters/acadiel/front.svg",
  37895. extra: 1901/1595,
  37896. bottom: 142/2043
  37897. }
  37898. },
  37899. },
  37900. [
  37901. {
  37902. name: "Normal",
  37903. height: math.unit(8 + 4/12, "feet"),
  37904. default: true
  37905. },
  37906. {
  37907. name: "Macro",
  37908. height: math.unit(200, "feet")
  37909. },
  37910. ]
  37911. ))
  37912. characterMakers.push(() => makeCharacter(
  37913. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37914. {
  37915. front: {
  37916. height: math.unit(6 + 2/12, "feet"),
  37917. weight: math.unit(185, "lb"),
  37918. name: "Front",
  37919. image: {
  37920. source: "./media/characters/kayne-ein/front.svg",
  37921. extra: 1780/1560,
  37922. bottom: 81/1861
  37923. }
  37924. },
  37925. },
  37926. [
  37927. {
  37928. name: "Normal",
  37929. height: math.unit(6 + 2/12, "feet"),
  37930. default: true
  37931. },
  37932. {
  37933. name: "Transformation Stage",
  37934. height: math.unit(15, "feet")
  37935. },
  37936. {
  37937. name: "Macro",
  37938. height: math.unit(150, "feet")
  37939. },
  37940. {
  37941. name: "Earth's Shadow",
  37942. height: math.unit(6200, "miles")
  37943. },
  37944. {
  37945. name: "Universal Demon",
  37946. height: math.unit(28e9, "parsecs")
  37947. },
  37948. {
  37949. name: "Multiverse God",
  37950. height: math.unit(3, "multiverses")
  37951. },
  37952. ]
  37953. ))
  37954. characterMakers.push(() => makeCharacter(
  37955. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37956. {
  37957. front: {
  37958. height: math.unit(5 + 5/12, "feet"),
  37959. name: "Front",
  37960. image: {
  37961. source: "./media/characters/fawn/front.svg",
  37962. extra: 1873/1731,
  37963. bottom: 95/1968
  37964. }
  37965. },
  37966. back: {
  37967. height: math.unit(5 + 5/12, "feet"),
  37968. name: "Back",
  37969. image: {
  37970. source: "./media/characters/fawn/back.svg",
  37971. extra: 1813/1700,
  37972. bottom: 14/1827
  37973. }
  37974. },
  37975. hoof: {
  37976. height: math.unit(1.45, "feet"),
  37977. name: "Hoof",
  37978. image: {
  37979. source: "./media/characters/fawn/hoof.svg"
  37980. }
  37981. },
  37982. },
  37983. [
  37984. {
  37985. name: "Normal",
  37986. height: math.unit(5 + 5/12, "feet"),
  37987. default: true
  37988. },
  37989. ]
  37990. ))
  37991. characterMakers.push(() => makeCharacter(
  37992. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37993. {
  37994. front: {
  37995. height: math.unit(2 + 5/12, "feet"),
  37996. name: "Front",
  37997. image: {
  37998. source: "./media/characters/orion/front.svg",
  37999. extra: 1366/1304,
  38000. bottom: 43/1409
  38001. }
  38002. },
  38003. paw: {
  38004. height: math.unit(0.52, "feet"),
  38005. name: "Paw",
  38006. image: {
  38007. source: "./media/characters/orion/paw.svg"
  38008. }
  38009. },
  38010. },
  38011. [
  38012. {
  38013. name: "Normal",
  38014. height: math.unit(2 + 5/12, "feet"),
  38015. default: true
  38016. },
  38017. ]
  38018. ))
  38019. characterMakers.push(() => makeCharacter(
  38020. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38021. {
  38022. front: {
  38023. height: math.unit(5 + 10/12, "feet"),
  38024. name: "Front",
  38025. image: {
  38026. source: "./media/characters/vera/front.svg",
  38027. extra: 1680/1575,
  38028. bottom: 49/1729
  38029. }
  38030. },
  38031. back: {
  38032. height: math.unit(5 + 10/12, "feet"),
  38033. name: "Back",
  38034. image: {
  38035. source: "./media/characters/vera/back.svg",
  38036. extra: 1700/1588,
  38037. bottom: 18/1718
  38038. }
  38039. },
  38040. arcanine: {
  38041. height: math.unit(6 + 8/12, "feet"),
  38042. name: "Arcanine",
  38043. image: {
  38044. source: "./media/characters/vera/arcanine.svg",
  38045. extra: 1590/1511,
  38046. bottom: 71/1661
  38047. }
  38048. },
  38049. maw: {
  38050. height: math.unit(0.82, "feet"),
  38051. name: "Maw",
  38052. image: {
  38053. source: "./media/characters/vera/maw.svg"
  38054. }
  38055. },
  38056. mawArcanine: {
  38057. height: math.unit(0.97, "feet"),
  38058. name: "Maw (Arcanine)",
  38059. image: {
  38060. source: "./media/characters/vera/maw-arcanine.svg"
  38061. }
  38062. },
  38063. paw: {
  38064. height: math.unit(0.75, "feet"),
  38065. name: "Paw",
  38066. image: {
  38067. source: "./media/characters/vera/paw.svg"
  38068. }
  38069. },
  38070. pawprint: {
  38071. height: math.unit(0.52, "feet"),
  38072. name: "Pawprint",
  38073. image: {
  38074. source: "./media/characters/vera/pawprint.svg"
  38075. }
  38076. },
  38077. },
  38078. [
  38079. {
  38080. name: "Normal",
  38081. height: math.unit(5 + 10/12, "feet"),
  38082. default: true
  38083. },
  38084. {
  38085. name: "Macro",
  38086. height: math.unit(75, "feet")
  38087. },
  38088. ]
  38089. ))
  38090. characterMakers.push(() => makeCharacter(
  38091. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38092. {
  38093. front: {
  38094. height: math.unit(4, "feet"),
  38095. weight: math.unit(40, "lb"),
  38096. name: "Front",
  38097. image: {
  38098. source: "./media/characters/orvan-rabbit/front.svg",
  38099. extra: 1896/1642,
  38100. bottom: 29/1925
  38101. }
  38102. },
  38103. },
  38104. [
  38105. {
  38106. name: "Normal",
  38107. height: math.unit(4, "feet"),
  38108. default: true
  38109. },
  38110. ]
  38111. ))
  38112. characterMakers.push(() => makeCharacter(
  38113. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38114. {
  38115. front: {
  38116. height: math.unit(6, "feet"),
  38117. weight: math.unit(168, "lb"),
  38118. name: "Front",
  38119. image: {
  38120. source: "./media/characters/lisa/front.svg",
  38121. extra: 2065/1867,
  38122. bottom: 46/2111
  38123. }
  38124. },
  38125. back: {
  38126. height: math.unit(6, "feet"),
  38127. weight: math.unit(168, "lb"),
  38128. name: "Back",
  38129. image: {
  38130. source: "./media/characters/lisa/back.svg",
  38131. extra: 1982/1838,
  38132. bottom: 29/2011
  38133. }
  38134. },
  38135. maw: {
  38136. height: math.unit(0.81, "feet"),
  38137. name: "Maw",
  38138. image: {
  38139. source: "./media/characters/lisa/maw.svg"
  38140. }
  38141. },
  38142. paw: {
  38143. height: math.unit(0.9, "feet"),
  38144. name: "Paw",
  38145. image: {
  38146. source: "./media/characters/lisa/paw.svg"
  38147. }
  38148. },
  38149. caribousune: {
  38150. height: math.unit(7 + 2/12, "feet"),
  38151. weight: math.unit(268, "lb"),
  38152. name: "Caribousune",
  38153. image: {
  38154. source: "./media/characters/lisa/caribousune.svg",
  38155. extra: 1843/1633,
  38156. bottom: 29/1872
  38157. }
  38158. },
  38159. frontCaribousune: {
  38160. height: math.unit(7 + 2/12, "feet"),
  38161. weight: math.unit(268, "lb"),
  38162. name: "Front (Caribousune)",
  38163. image: {
  38164. source: "./media/characters/lisa/front-caribousune.svg",
  38165. extra: 1818/1638,
  38166. bottom: 52/1870
  38167. }
  38168. },
  38169. sideCaribousune: {
  38170. height: math.unit(7 + 2/12, "feet"),
  38171. weight: math.unit(268, "lb"),
  38172. name: "Side (Caribousune)",
  38173. image: {
  38174. source: "./media/characters/lisa/side-caribousune.svg",
  38175. extra: 1851/1635,
  38176. bottom: 16/1867
  38177. }
  38178. },
  38179. backCaribousune: {
  38180. height: math.unit(7 + 2/12, "feet"),
  38181. weight: math.unit(268, "lb"),
  38182. name: "Back (Caribousune)",
  38183. image: {
  38184. source: "./media/characters/lisa/back-caribousune.svg",
  38185. extra: 1801/1604,
  38186. bottom: 44/1845
  38187. }
  38188. },
  38189. caribou: {
  38190. height: math.unit(7 + 2/12, "feet"),
  38191. weight: math.unit(268, "lb"),
  38192. name: "Caribou",
  38193. image: {
  38194. source: "./media/characters/lisa/caribou.svg",
  38195. extra: 1843/1633,
  38196. bottom: 29/1872
  38197. }
  38198. },
  38199. frontCaribou: {
  38200. height: math.unit(7 + 2/12, "feet"),
  38201. weight: math.unit(268, "lb"),
  38202. name: "Front (Caribou)",
  38203. image: {
  38204. source: "./media/characters/lisa/front-caribou.svg",
  38205. extra: 1818/1638,
  38206. bottom: 52/1870
  38207. }
  38208. },
  38209. sideCaribou: {
  38210. height: math.unit(7 + 2/12, "feet"),
  38211. weight: math.unit(268, "lb"),
  38212. name: "Side (Caribou)",
  38213. image: {
  38214. source: "./media/characters/lisa/side-caribou.svg",
  38215. extra: 1851/1635,
  38216. bottom: 16/1867
  38217. }
  38218. },
  38219. backCaribou: {
  38220. height: math.unit(7 + 2/12, "feet"),
  38221. weight: math.unit(268, "lb"),
  38222. name: "Back (Caribou)",
  38223. image: {
  38224. source: "./media/characters/lisa/back-caribou.svg",
  38225. extra: 1801/1604,
  38226. bottom: 44/1845
  38227. }
  38228. },
  38229. mawCaribou: {
  38230. height: math.unit(1.45, "feet"),
  38231. name: "Maw (Caribou)",
  38232. image: {
  38233. source: "./media/characters/lisa/maw-caribou.svg"
  38234. }
  38235. },
  38236. mawCaribousune: {
  38237. height: math.unit(1.45, "feet"),
  38238. name: "Maw (Caribousune)",
  38239. image: {
  38240. source: "./media/characters/lisa/maw-caribousune.svg"
  38241. }
  38242. },
  38243. pawCaribousune: {
  38244. height: math.unit(1.61, "feet"),
  38245. name: "Paw (Caribou)",
  38246. image: {
  38247. source: "./media/characters/lisa/paw-caribousune.svg"
  38248. }
  38249. },
  38250. },
  38251. [
  38252. {
  38253. name: "Normal",
  38254. height: math.unit(6, "feet")
  38255. },
  38256. {
  38257. name: "God Size",
  38258. height: math.unit(72, "feet"),
  38259. default: true
  38260. },
  38261. {
  38262. name: "Towering",
  38263. height: math.unit(288, "feet")
  38264. },
  38265. {
  38266. name: "City Size",
  38267. height: math.unit(48384, "feet")
  38268. },
  38269. {
  38270. name: "Continental",
  38271. height: math.unit(4200, "miles")
  38272. },
  38273. {
  38274. name: "Planet Eater",
  38275. height: math.unit(42, "earths")
  38276. },
  38277. {
  38278. name: "Star Swallower",
  38279. height: math.unit(42, "solarradii")
  38280. },
  38281. {
  38282. name: "System Swallower",
  38283. height: math.unit(84000, "AU")
  38284. },
  38285. {
  38286. name: "Galaxy Gobbler",
  38287. height: math.unit(42, "galaxies")
  38288. },
  38289. {
  38290. name: "Universe Devourer",
  38291. height: math.unit(42, "universes")
  38292. },
  38293. {
  38294. name: "Multiverse Muncher",
  38295. height: math.unit(42, "multiverses")
  38296. },
  38297. ]
  38298. ))
  38299. characterMakers.push(() => makeCharacter(
  38300. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38301. {
  38302. front: {
  38303. height: math.unit(36, "feet"),
  38304. name: "Front",
  38305. image: {
  38306. source: "./media/characters/shadow-rat/front.svg",
  38307. extra: 1845/1758,
  38308. bottom: 83/1928
  38309. }
  38310. },
  38311. },
  38312. [
  38313. {
  38314. name: "Macro",
  38315. height: math.unit(36, "feet"),
  38316. default: true
  38317. },
  38318. ]
  38319. ))
  38320. characterMakers.push(() => makeCharacter(
  38321. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38322. {
  38323. side: {
  38324. height: math.unit(8, "feet"),
  38325. weight: math.unit(2630, "lb"),
  38326. name: "Side",
  38327. image: {
  38328. source: "./media/characters/torallia/side.svg",
  38329. extra: 2164/2021,
  38330. bottom: 371/2535
  38331. }
  38332. },
  38333. },
  38334. [
  38335. {
  38336. name: "Mortal Interaction",
  38337. height: math.unit(8, "feet")
  38338. },
  38339. {
  38340. name: "Natural",
  38341. height: math.unit(24, "feet"),
  38342. default: true
  38343. },
  38344. {
  38345. name: "Giant",
  38346. height: math.unit(80, "feet")
  38347. },
  38348. {
  38349. name: "Kaiju",
  38350. height: math.unit(240, "feet")
  38351. },
  38352. {
  38353. name: "Macro",
  38354. height: math.unit(800, "feet")
  38355. },
  38356. {
  38357. name: "Macro+",
  38358. height: math.unit(2400, "feet")
  38359. },
  38360. {
  38361. name: "Macro++",
  38362. height: math.unit(8000, "feet")
  38363. },
  38364. {
  38365. name: "City-Crushing",
  38366. height: math.unit(24000, "feet")
  38367. },
  38368. {
  38369. name: "Mountain-Mashing",
  38370. height: math.unit(80000, "feet")
  38371. },
  38372. {
  38373. name: "District Demolisher",
  38374. height: math.unit(240000, "feet")
  38375. },
  38376. {
  38377. name: "Tri-County Terror",
  38378. height: math.unit(800000, "feet")
  38379. },
  38380. {
  38381. name: "State Smasher",
  38382. height: math.unit(2.4e6, "feet")
  38383. },
  38384. {
  38385. name: "Nation Nemesis",
  38386. height: math.unit(8e6, "feet")
  38387. },
  38388. {
  38389. name: "Continent Cracker",
  38390. height: math.unit(2.4e7, "feet")
  38391. },
  38392. {
  38393. name: "Planet-Pillaging",
  38394. height: math.unit(8e7, "feet")
  38395. },
  38396. {
  38397. name: "Earth-Eclipsing",
  38398. height: math.unit(2.4e8, "feet")
  38399. },
  38400. {
  38401. name: "Jovian-Jostling",
  38402. height: math.unit(8e8, "feet")
  38403. },
  38404. {
  38405. name: "Gas Giant Gulper",
  38406. height: math.unit(2.4e9, "feet")
  38407. },
  38408. {
  38409. name: "Astral Annihilator",
  38410. height: math.unit(8e9, "feet")
  38411. },
  38412. {
  38413. name: "Celestial Conqueror",
  38414. height: math.unit(2.4e10, "feet")
  38415. },
  38416. {
  38417. name: "Sol-Swallowing",
  38418. height: math.unit(8e10, "feet")
  38419. },
  38420. {
  38421. name: "Hunter of the Heavens",
  38422. height: math.unit(2.4e13, "feet")
  38423. },
  38424. ]
  38425. ))
  38426. characterMakers.push(() => makeCharacter(
  38427. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38428. {
  38429. front: {
  38430. height: math.unit(6 + 8/12, "feet"),
  38431. name: "Front",
  38432. image: {
  38433. source: "./media/characters/rebecca-pawlson/front.svg",
  38434. extra: 1737/1596,
  38435. bottom: 107/1844
  38436. }
  38437. },
  38438. back: {
  38439. height: math.unit(6 + 8/12, "feet"),
  38440. name: "Back",
  38441. image: {
  38442. source: "./media/characters/rebecca-pawlson/back.svg",
  38443. extra: 1702/1523,
  38444. bottom: 86/1788
  38445. }
  38446. },
  38447. },
  38448. [
  38449. {
  38450. name: "Normal",
  38451. height: math.unit(6 + 8/12, "feet")
  38452. },
  38453. {
  38454. name: "Mini Macro",
  38455. height: math.unit(10, "feet"),
  38456. default: true
  38457. },
  38458. {
  38459. name: "Macro",
  38460. height: math.unit(100, "feet")
  38461. },
  38462. {
  38463. name: "Mega Macro",
  38464. height: math.unit(2500, "feet")
  38465. },
  38466. {
  38467. name: "Giga Macro",
  38468. height: math.unit(50, "miles")
  38469. },
  38470. ]
  38471. ))
  38472. characterMakers.push(() => makeCharacter(
  38473. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38474. {
  38475. front: {
  38476. height: math.unit(7 + 6/12, "feet"),
  38477. weight: math.unit(600, "lb"),
  38478. name: "Front",
  38479. image: {
  38480. source: "./media/characters/moxie-nova/front.svg",
  38481. extra: 1734/1652,
  38482. bottom: 41/1775
  38483. }
  38484. },
  38485. },
  38486. [
  38487. {
  38488. name: "Normal",
  38489. height: math.unit(7 + 6/12, "feet"),
  38490. default: true
  38491. },
  38492. ]
  38493. ))
  38494. characterMakers.push(() => makeCharacter(
  38495. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38496. {
  38497. goat: {
  38498. height: math.unit(4, "feet"),
  38499. weight: math.unit(180, "lb"),
  38500. name: "Goat",
  38501. image: {
  38502. source: "./media/characters/tiffany/goat.svg",
  38503. extra: 1845/1595,
  38504. bottom: 106/1951
  38505. }
  38506. },
  38507. front: {
  38508. height: math.unit(5, "feet"),
  38509. weight: math.unit(150, "lb"),
  38510. name: "Foxcoon",
  38511. image: {
  38512. source: "./media/characters/tiffany/foxcoon.svg",
  38513. extra: 1941/1845,
  38514. bottom: 58/1999
  38515. }
  38516. },
  38517. },
  38518. [
  38519. {
  38520. name: "Normal",
  38521. height: math.unit(5, "feet"),
  38522. default: true
  38523. },
  38524. ]
  38525. ))
  38526. characterMakers.push(() => makeCharacter(
  38527. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38528. {
  38529. front: {
  38530. height: math.unit(8, "feet"),
  38531. weight: math.unit(300, "lb"),
  38532. name: "Front",
  38533. image: {
  38534. source: "./media/characters/raxinath/front.svg",
  38535. extra: 1407/1309,
  38536. bottom: 39/1446
  38537. }
  38538. },
  38539. back: {
  38540. height: math.unit(8, "feet"),
  38541. weight: math.unit(300, "lb"),
  38542. name: "Back",
  38543. image: {
  38544. source: "./media/characters/raxinath/back.svg",
  38545. extra: 1405/1315,
  38546. bottom: 9/1414
  38547. }
  38548. },
  38549. },
  38550. [
  38551. {
  38552. name: "Speck",
  38553. height: math.unit(0.5, "nm")
  38554. },
  38555. {
  38556. name: "Micro",
  38557. height: math.unit(3, "inches")
  38558. },
  38559. {
  38560. name: "Kobold",
  38561. height: math.unit(3, "feet")
  38562. },
  38563. {
  38564. name: "Normal",
  38565. height: math.unit(8, "feet"),
  38566. default: true
  38567. },
  38568. {
  38569. name: "Giant",
  38570. height: math.unit(50, "feet")
  38571. },
  38572. {
  38573. name: "Macro",
  38574. height: math.unit(1000, "feet")
  38575. },
  38576. {
  38577. name: "Megamacro",
  38578. height: math.unit(1, "mile")
  38579. },
  38580. ]
  38581. ))
  38582. characterMakers.push(() => makeCharacter(
  38583. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38584. {
  38585. front: {
  38586. height: math.unit(10, "feet"),
  38587. weight: math.unit(1442, "lb"),
  38588. name: "Front",
  38589. image: {
  38590. source: "./media/characters/mal-dragon/front.svg",
  38591. extra: 1515/1444,
  38592. bottom: 113/1628
  38593. }
  38594. },
  38595. back: {
  38596. height: math.unit(10, "feet"),
  38597. weight: math.unit(1442, "lb"),
  38598. name: "Back",
  38599. image: {
  38600. source: "./media/characters/mal-dragon/back.svg",
  38601. extra: 1527/1434,
  38602. bottom: 25/1552
  38603. }
  38604. },
  38605. },
  38606. [
  38607. {
  38608. name: "Mortal Interaction",
  38609. height: math.unit(10, "feet"),
  38610. default: true
  38611. },
  38612. {
  38613. name: "Large",
  38614. height: math.unit(30, "feet")
  38615. },
  38616. {
  38617. name: "Kaiju",
  38618. height: math.unit(300, "feet")
  38619. },
  38620. {
  38621. name: "Megamacro",
  38622. height: math.unit(10000, "feet")
  38623. },
  38624. {
  38625. name: "Continent Cracker",
  38626. height: math.unit(30000000, "feet")
  38627. },
  38628. {
  38629. name: "Sol-Swallowing",
  38630. height: math.unit(1e11, "feet")
  38631. },
  38632. {
  38633. name: "Light Universal",
  38634. height: math.unit(5, "universes")
  38635. },
  38636. {
  38637. name: "Universe Atoms",
  38638. height: math.unit(1.829e9, "universes")
  38639. },
  38640. {
  38641. name: "Light Multiversal",
  38642. height: math.unit(5, "multiverses")
  38643. },
  38644. {
  38645. name: "Multiverse Atoms",
  38646. height: math.unit(1.829e9, "multiverses")
  38647. },
  38648. {
  38649. name: "Fabric of Time",
  38650. height: math.unit(1e262, "multiverses")
  38651. },
  38652. ]
  38653. ))
  38654. characterMakers.push(() => makeCharacter(
  38655. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38656. {
  38657. front: {
  38658. height: math.unit(9, "feet"),
  38659. weight: math.unit(1050, "lb"),
  38660. name: "Front",
  38661. image: {
  38662. source: "./media/characters/tabitha/front.svg",
  38663. extra: 2083/1994,
  38664. bottom: 68/2151
  38665. }
  38666. },
  38667. },
  38668. [
  38669. {
  38670. name: "Baseline",
  38671. height: math.unit(9, "feet"),
  38672. default: true
  38673. },
  38674. {
  38675. name: "Giant",
  38676. height: math.unit(90, "feet")
  38677. },
  38678. {
  38679. name: "Macro",
  38680. height: math.unit(900, "feet")
  38681. },
  38682. {
  38683. name: "Megamacro",
  38684. height: math.unit(9000, "feet")
  38685. },
  38686. {
  38687. name: "City-Crushing",
  38688. height: math.unit(27000, "feet")
  38689. },
  38690. {
  38691. name: "Mountain-Mashing",
  38692. height: math.unit(90000, "feet")
  38693. },
  38694. {
  38695. name: "Nation Nemesis",
  38696. height: math.unit(9e6, "feet")
  38697. },
  38698. {
  38699. name: "Continent Cracker",
  38700. height: math.unit(27e6, "feet")
  38701. },
  38702. {
  38703. name: "Earth-Eclipsing",
  38704. height: math.unit(2.7e8, "feet")
  38705. },
  38706. {
  38707. name: "Gas Giant Gulper",
  38708. height: math.unit(2.7e9, "feet")
  38709. },
  38710. {
  38711. name: "Sol-Swallowing",
  38712. height: math.unit(9e10, "feet")
  38713. },
  38714. {
  38715. name: "Galaxy Gulper",
  38716. height: math.unit(9, "galaxies")
  38717. },
  38718. {
  38719. name: "Cosmos Churner",
  38720. height: math.unit(9, "universes")
  38721. },
  38722. ]
  38723. ))
  38724. characterMakers.push(() => makeCharacter(
  38725. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38726. {
  38727. front: {
  38728. height: math.unit(160, "cm"),
  38729. weight: math.unit(55, "kg"),
  38730. name: "Front",
  38731. image: {
  38732. source: "./media/characters/tow/front.svg",
  38733. extra: 1751/1722,
  38734. bottom: 74/1825
  38735. }
  38736. },
  38737. },
  38738. [
  38739. {
  38740. name: "Norm",
  38741. height: math.unit(160, "cm")
  38742. },
  38743. {
  38744. name: "Casual",
  38745. height: math.unit(3200, "m"),
  38746. default: true
  38747. },
  38748. {
  38749. name: "Show-Off",
  38750. height: math.unit(160, "km")
  38751. },
  38752. ]
  38753. ))
  38754. characterMakers.push(() => makeCharacter(
  38755. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38756. {
  38757. front: {
  38758. height: math.unit(7 + 11/12, "feet"),
  38759. weight: math.unit(342.8, "lb"),
  38760. name: "Front",
  38761. image: {
  38762. source: "./media/characters/vivian-orca-dragon/front.svg",
  38763. extra: 1890/1865,
  38764. bottom: 28/1918
  38765. }
  38766. },
  38767. },
  38768. [
  38769. {
  38770. name: "Micro",
  38771. height: math.unit(5, "inches")
  38772. },
  38773. {
  38774. name: "Normal",
  38775. height: math.unit(7 + 11/12, "feet"),
  38776. default: true
  38777. },
  38778. {
  38779. name: "Macro",
  38780. height: math.unit(395 + 7/12, "feet")
  38781. },
  38782. ]
  38783. ))
  38784. characterMakers.push(() => makeCharacter(
  38785. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38786. {
  38787. side: {
  38788. height: math.unit(10, "feet"),
  38789. weight: math.unit(1442, "lb"),
  38790. name: "Side",
  38791. image: {
  38792. source: "./media/characters/lotherakon/side.svg",
  38793. extra: 1604/1497,
  38794. bottom: 89/1693
  38795. }
  38796. },
  38797. },
  38798. [
  38799. {
  38800. name: "Mortal Interaction",
  38801. height: math.unit(10, "feet")
  38802. },
  38803. {
  38804. name: "Large",
  38805. height: math.unit(30, "feet"),
  38806. default: true
  38807. },
  38808. {
  38809. name: "Giant",
  38810. height: math.unit(100, "feet")
  38811. },
  38812. {
  38813. name: "Kaiju",
  38814. height: math.unit(300, "feet")
  38815. },
  38816. {
  38817. name: "Macro",
  38818. height: math.unit(1000, "feet")
  38819. },
  38820. {
  38821. name: "Macro+",
  38822. height: math.unit(3000, "feet")
  38823. },
  38824. {
  38825. name: "Megamacro",
  38826. height: math.unit(10000, "feet")
  38827. },
  38828. {
  38829. name: "City-Crushing",
  38830. height: math.unit(30000, "feet")
  38831. },
  38832. {
  38833. name: "Continent Cracker",
  38834. height: math.unit(30e6, "feet")
  38835. },
  38836. {
  38837. name: "Earth Eclipsing",
  38838. height: math.unit(3e8, "feet")
  38839. },
  38840. {
  38841. name: "Gas Giant Gulper",
  38842. height: math.unit(3e9, "feet")
  38843. },
  38844. {
  38845. name: "Sol-Swallowing",
  38846. height: math.unit(1e11, "feet")
  38847. },
  38848. {
  38849. name: "System Swallower",
  38850. height: math.unit(3e14, "feet")
  38851. },
  38852. {
  38853. name: "Galaxy Gulper",
  38854. height: math.unit(10, "galaxies")
  38855. },
  38856. {
  38857. name: "Light Universal",
  38858. height: math.unit(5, "universes")
  38859. },
  38860. {
  38861. name: "Universe Palm",
  38862. height: math.unit(20, "universes")
  38863. },
  38864. {
  38865. name: "Light Multiversal",
  38866. height: math.unit(5, "multiverses")
  38867. },
  38868. {
  38869. name: "Multiverse Palm",
  38870. height: math.unit(20, "multiverses")
  38871. },
  38872. {
  38873. name: "Inferno Incarnate",
  38874. height: math.unit(1e7, "multiverses")
  38875. },
  38876. ]
  38877. ))
  38878. characterMakers.push(() => makeCharacter(
  38879. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38880. {
  38881. front: {
  38882. height: math.unit(8, "feet"),
  38883. weight: math.unit(1200, "lb"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/malithee/front.svg",
  38887. extra: 1675/1640,
  38888. bottom: 162/1837
  38889. }
  38890. },
  38891. },
  38892. [
  38893. {
  38894. name: "Mortal Interaction",
  38895. height: math.unit(8, "feet"),
  38896. default: true
  38897. },
  38898. {
  38899. name: "Large",
  38900. height: math.unit(24, "feet")
  38901. },
  38902. {
  38903. name: "Kaiju",
  38904. height: math.unit(240, "feet")
  38905. },
  38906. {
  38907. name: "Megamacro",
  38908. height: math.unit(8000, "feet")
  38909. },
  38910. {
  38911. name: "Continent Cracker",
  38912. height: math.unit(24e6, "feet")
  38913. },
  38914. {
  38915. name: "Earth-Eclipsing",
  38916. height: math.unit(2.4e8, "feet")
  38917. },
  38918. {
  38919. name: "Sol-Swallowing",
  38920. height: math.unit(8e10, "feet")
  38921. },
  38922. {
  38923. name: "Galaxy Gulper",
  38924. height: math.unit(8, "galaxies")
  38925. },
  38926. {
  38927. name: "Light Universal",
  38928. height: math.unit(4, "universes")
  38929. },
  38930. {
  38931. name: "Universe Atoms",
  38932. height: math.unit(1.829e9, "universes")
  38933. },
  38934. {
  38935. name: "Light Multiversal",
  38936. height: math.unit(4, "multiverses")
  38937. },
  38938. {
  38939. name: "Multiverse Atoms",
  38940. height: math.unit(1.829e9, "multiverses")
  38941. },
  38942. {
  38943. name: "Nigh-Omnipresence",
  38944. height: math.unit(8e261, "multiverses")
  38945. },
  38946. ]
  38947. ))
  38948. characterMakers.push(() => makeCharacter(
  38949. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38950. {
  38951. front: {
  38952. height: math.unit(10, "feet"),
  38953. weight: math.unit(1500, "lb"),
  38954. name: "Front",
  38955. image: {
  38956. source: "./media/characters/miles-thestia/front.svg",
  38957. extra: 1812/1727,
  38958. bottom: 86/1898
  38959. }
  38960. },
  38961. back: {
  38962. height: math.unit(10, "feet"),
  38963. weight: math.unit(1500, "lb"),
  38964. name: "Back",
  38965. image: {
  38966. source: "./media/characters/miles-thestia/back.svg",
  38967. extra: 1799/1690,
  38968. bottom: 47/1846
  38969. }
  38970. },
  38971. frontNsfw: {
  38972. height: math.unit(10, "feet"),
  38973. weight: math.unit(1500, "lb"),
  38974. name: "Front (NSFW)",
  38975. image: {
  38976. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38977. extra: 1812/1727,
  38978. bottom: 86/1898
  38979. }
  38980. },
  38981. },
  38982. [
  38983. {
  38984. name: "Mini-Macro",
  38985. height: math.unit(10, "feet"),
  38986. default: true
  38987. },
  38988. ]
  38989. ))
  38990. characterMakers.push(() => makeCharacter(
  38991. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38992. {
  38993. front: {
  38994. height: math.unit(25, "feet"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/titan-s-wulf/front.svg",
  38998. extra: 1560/1484,
  38999. bottom: 76/1636
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Smallest",
  39006. height: math.unit(25, "feet"),
  39007. default: true
  39008. },
  39009. {
  39010. name: "Normal",
  39011. height: math.unit(200, "feet")
  39012. },
  39013. {
  39014. name: "Macro",
  39015. height: math.unit(200000, "feet")
  39016. },
  39017. {
  39018. name: "Multiversal Original",
  39019. height: math.unit(10000, "multiverses")
  39020. },
  39021. ]
  39022. ))
  39023. characterMakers.push(() => makeCharacter(
  39024. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39025. {
  39026. front: {
  39027. height: math.unit(8, "feet"),
  39028. weight: math.unit(553, "lb"),
  39029. name: "Front",
  39030. image: {
  39031. source: "./media/characters/tawendeh/front.svg",
  39032. extra: 2365/2268,
  39033. bottom: 83/2448
  39034. }
  39035. },
  39036. frontClothed: {
  39037. height: math.unit(8, "feet"),
  39038. weight: math.unit(553, "lb"),
  39039. name: "Front (Clothed)",
  39040. image: {
  39041. source: "./media/characters/tawendeh/front-clothed.svg",
  39042. extra: 2365/2268,
  39043. bottom: 83/2448
  39044. }
  39045. },
  39046. back: {
  39047. height: math.unit(8, "feet"),
  39048. weight: math.unit(553, "lb"),
  39049. name: "Back",
  39050. image: {
  39051. source: "./media/characters/tawendeh/back.svg",
  39052. extra: 2397/2294,
  39053. bottom: 42/2439
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Mortal Interaction",
  39060. height: math.unit(8, "feet"),
  39061. default: true
  39062. },
  39063. {
  39064. name: "Giant",
  39065. height: math.unit(80, "feet")
  39066. },
  39067. {
  39068. name: "Macro",
  39069. height: math.unit(800, "feet")
  39070. },
  39071. {
  39072. name: "Megamacro",
  39073. height: math.unit(8000, "feet")
  39074. },
  39075. {
  39076. name: "City-Crushing",
  39077. height: math.unit(24000, "feet")
  39078. },
  39079. {
  39080. name: "Mountain-Mashing",
  39081. height: math.unit(80000, "feet")
  39082. },
  39083. {
  39084. name: "Nation Nemesis",
  39085. height: math.unit(8e6, "feet")
  39086. },
  39087. {
  39088. name: "Continent Cracker",
  39089. height: math.unit(24e6, "feet")
  39090. },
  39091. {
  39092. name: "Earth-Eclipsing",
  39093. height: math.unit(2.4e8, "feet")
  39094. },
  39095. {
  39096. name: "Gas Giant Gulper",
  39097. height: math.unit(2.4e9, "feet")
  39098. },
  39099. {
  39100. name: "Sol-Swallowing",
  39101. height: math.unit(8e10, "feet")
  39102. },
  39103. {
  39104. name: "Galaxy Gulper",
  39105. height: math.unit(8, "galaxies")
  39106. },
  39107. {
  39108. name: "Cosmos Churner",
  39109. height: math.unit(8, "universes")
  39110. },
  39111. {
  39112. name: "Omnipotent Otter",
  39113. height: math.unit(80, "universes")
  39114. },
  39115. ]
  39116. ))
  39117. characterMakers.push(() => makeCharacter(
  39118. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39119. {
  39120. front: {
  39121. height: math.unit(2.6, "meters"),
  39122. weight: math.unit(900, "kg"),
  39123. name: "Front",
  39124. image: {
  39125. source: "./media/characters/neesha/front.svg",
  39126. extra: 1803/1653,
  39127. bottom: 128/1931
  39128. }
  39129. },
  39130. },
  39131. [
  39132. {
  39133. name: "Normal",
  39134. height: math.unit(2.6, "meters"),
  39135. default: true
  39136. },
  39137. {
  39138. name: "Macro",
  39139. height: math.unit(50, "meters")
  39140. },
  39141. ]
  39142. ))
  39143. characterMakers.push(() => makeCharacter(
  39144. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39145. {
  39146. front: {
  39147. height: math.unit(5, "feet"),
  39148. weight: math.unit(185, "lb"),
  39149. name: "Front",
  39150. image: {
  39151. source: "./media/characters/kyera/front.svg",
  39152. extra: 1875/1790,
  39153. bottom: 96/1971
  39154. }
  39155. },
  39156. },
  39157. [
  39158. {
  39159. name: "Normal",
  39160. height: math.unit(5, "feet"),
  39161. default: true
  39162. },
  39163. ]
  39164. ))
  39165. characterMakers.push(() => makeCharacter(
  39166. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39167. {
  39168. front: {
  39169. height: math.unit(7 + 6/12, "feet"),
  39170. weight: math.unit(540, "lb"),
  39171. name: "Front",
  39172. image: {
  39173. source: "./media/characters/yuko/front.svg",
  39174. extra: 1282/1222,
  39175. bottom: 101/1383
  39176. }
  39177. },
  39178. frontClothed: {
  39179. height: math.unit(7 + 6/12, "feet"),
  39180. weight: math.unit(540, "lb"),
  39181. name: "Front (Clothed)",
  39182. image: {
  39183. source: "./media/characters/yuko/front-clothed.svg",
  39184. extra: 1282/1222,
  39185. bottom: 101/1383
  39186. }
  39187. },
  39188. },
  39189. [
  39190. {
  39191. name: "Normal",
  39192. height: math.unit(7 + 6/12, "feet"),
  39193. default: true
  39194. },
  39195. {
  39196. name: "Macro",
  39197. height: math.unit(26 + 9/12, "feet")
  39198. },
  39199. {
  39200. name: "Megamacro",
  39201. height: math.unit(300, "feet")
  39202. },
  39203. {
  39204. name: "Gigamacro",
  39205. height: math.unit(5000, "feet")
  39206. },
  39207. {
  39208. name: "Planetary",
  39209. height: math.unit(10000, "miles")
  39210. },
  39211. ]
  39212. ))
  39213. characterMakers.push(() => makeCharacter(
  39214. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39215. {
  39216. front: {
  39217. height: math.unit(8 + 2/12, "feet"),
  39218. weight: math.unit(600, "lb"),
  39219. name: "Front",
  39220. image: {
  39221. source: "./media/characters/deam-nitrel/front.svg",
  39222. extra: 1308/1234,
  39223. bottom: 125/1433
  39224. }
  39225. },
  39226. },
  39227. [
  39228. {
  39229. name: "Normal",
  39230. height: math.unit(8 + 2/12, "feet"),
  39231. default: true
  39232. },
  39233. ]
  39234. ))
  39235. characterMakers.push(() => makeCharacter(
  39236. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39237. {
  39238. front: {
  39239. height: math.unit(6.1, "feet"),
  39240. weight: math.unit(180, "lb"),
  39241. name: "Front",
  39242. image: {
  39243. source: "./media/characters/skyress/front.svg",
  39244. extra: 1045/915,
  39245. bottom: 28/1073
  39246. }
  39247. },
  39248. maw: {
  39249. height: math.unit(1, "feet"),
  39250. name: "Maw",
  39251. image: {
  39252. source: "./media/characters/skyress/maw.svg"
  39253. }
  39254. },
  39255. },
  39256. [
  39257. {
  39258. name: "Normal",
  39259. height: math.unit(6.1, "feet"),
  39260. default: true
  39261. },
  39262. {
  39263. name: "Macro",
  39264. height: math.unit(200, "feet")
  39265. },
  39266. ]
  39267. ))
  39268. characterMakers.push(() => makeCharacter(
  39269. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39270. {
  39271. front: {
  39272. height: math.unit(4 + 2/12, "feet"),
  39273. weight: math.unit(40, "kg"),
  39274. name: "Front",
  39275. image: {
  39276. source: "./media/characters/amethyst-jones/front.svg",
  39277. extra: 1220/1150,
  39278. bottom: 101/1321
  39279. }
  39280. },
  39281. },
  39282. [
  39283. {
  39284. name: "Normal",
  39285. height: math.unit(4 + 2/12, "feet"),
  39286. default: true
  39287. },
  39288. ]
  39289. ))
  39290. characterMakers.push(() => makeCharacter(
  39291. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39292. {
  39293. front: {
  39294. height: math.unit(1.7, "m"),
  39295. weight: math.unit(135, "lb"),
  39296. name: "Front",
  39297. image: {
  39298. source: "./media/characters/jade/front.svg",
  39299. extra: 1818/1767,
  39300. bottom: 32/1850
  39301. }
  39302. },
  39303. back: {
  39304. height: math.unit(1.7, "m"),
  39305. weight: math.unit(135, "lb"),
  39306. name: "Back",
  39307. image: {
  39308. source: "./media/characters/jade/back.svg",
  39309. extra: 1869/1809,
  39310. bottom: 35/1904
  39311. }
  39312. },
  39313. hand: {
  39314. height: math.unit(0.24, "m"),
  39315. name: "Hand",
  39316. image: {
  39317. source: "./media/characters/jade/hand.svg"
  39318. }
  39319. },
  39320. foot: {
  39321. height: math.unit(0.263, "m"),
  39322. name: "Foot",
  39323. image: {
  39324. source: "./media/characters/jade/foot.svg"
  39325. }
  39326. },
  39327. dick: {
  39328. height: math.unit(0.47, "m"),
  39329. name: "Dick",
  39330. image: {
  39331. source: "./media/characters/jade/dick.svg"
  39332. }
  39333. },
  39334. },
  39335. [
  39336. {
  39337. name: "Micro",
  39338. height: math.unit(22, "cm")
  39339. },
  39340. {
  39341. name: "Normal",
  39342. height: math.unit(1.7, "m"),
  39343. default: true
  39344. },
  39345. {
  39346. name: "Macro",
  39347. height: math.unit(152, "m")
  39348. },
  39349. ]
  39350. ))
  39351. characterMakers.push(() => makeCharacter(
  39352. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39353. {
  39354. front: {
  39355. height: math.unit(100, "miles"),
  39356. weight: math.unit(20000, "tons"),
  39357. name: "Front",
  39358. image: {
  39359. source: "./media/characters/cookie/front.svg",
  39360. extra: 1125/1070,
  39361. bottom: 30/1155
  39362. }
  39363. },
  39364. },
  39365. [
  39366. {
  39367. name: "Big",
  39368. height: math.unit(50, "feet")
  39369. },
  39370. {
  39371. name: "Macro",
  39372. height: math.unit(100, "miles"),
  39373. default: true
  39374. },
  39375. {
  39376. name: "Megamacro",
  39377. height: math.unit(90000, "miles")
  39378. },
  39379. ]
  39380. ))
  39381. characterMakers.push(() => makeCharacter(
  39382. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39383. {
  39384. front: {
  39385. height: math.unit(6, "feet"),
  39386. weight: math.unit(145, "lb"),
  39387. name: "Front",
  39388. image: {
  39389. source: "./media/characters/farzian/front.svg",
  39390. extra: 1902/1693,
  39391. bottom: 108/2010
  39392. }
  39393. },
  39394. },
  39395. [
  39396. {
  39397. name: "Macro",
  39398. height: math.unit(500, "feet"),
  39399. default: true
  39400. },
  39401. ]
  39402. ))
  39403. characterMakers.push(() => makeCharacter(
  39404. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39405. {
  39406. front: {
  39407. height: math.unit(3 + 6/12, "feet"),
  39408. weight: math.unit(50, "lb"),
  39409. name: "Front",
  39410. image: {
  39411. source: "./media/characters/kimberly-tilson/front.svg",
  39412. extra: 1400/1322,
  39413. bottom: 36/1436
  39414. }
  39415. },
  39416. back: {
  39417. height: math.unit(3 + 6/12, "feet"),
  39418. weight: math.unit(50, "lb"),
  39419. name: "Back",
  39420. image: {
  39421. source: "./media/characters/kimberly-tilson/back.svg",
  39422. extra: 1370/1307,
  39423. bottom: 20/1390
  39424. }
  39425. },
  39426. },
  39427. [
  39428. {
  39429. name: "Normal",
  39430. height: math.unit(3 + 6/12, "feet"),
  39431. default: true
  39432. },
  39433. ]
  39434. ))
  39435. characterMakers.push(() => makeCharacter(
  39436. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39437. {
  39438. front: {
  39439. height: math.unit(1148, "feet"),
  39440. weight: math.unit(34057, "lb"),
  39441. name: "Front",
  39442. image: {
  39443. source: "./media/characters/harthos/front.svg",
  39444. extra: 1391/1339,
  39445. bottom: 13/1404
  39446. }
  39447. },
  39448. },
  39449. [
  39450. {
  39451. name: "Macro",
  39452. height: math.unit(1148, "feet"),
  39453. default: true
  39454. },
  39455. ]
  39456. ))
  39457. characterMakers.push(() => makeCharacter(
  39458. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39459. {
  39460. front: {
  39461. height: math.unit(15, "feet"),
  39462. name: "Front",
  39463. image: {
  39464. source: "./media/characters/hypatia/front.svg",
  39465. extra: 1653/1591,
  39466. bottom: 79/1732
  39467. }
  39468. },
  39469. },
  39470. [
  39471. {
  39472. name: "Normal",
  39473. height: math.unit(15, "feet")
  39474. },
  39475. {
  39476. name: "Small",
  39477. height: math.unit(300, "feet")
  39478. },
  39479. {
  39480. name: "Macro",
  39481. height: math.unit(2500, "feet"),
  39482. default: true
  39483. },
  39484. {
  39485. name: "Mega Macro",
  39486. height: math.unit(1500, "miles")
  39487. },
  39488. {
  39489. name: "Giga Macro",
  39490. height: math.unit(1.5e6, "miles")
  39491. },
  39492. ]
  39493. ))
  39494. characterMakers.push(() => makeCharacter(
  39495. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39496. {
  39497. front: {
  39498. height: math.unit(6, "feet"),
  39499. weight: math.unit(200, "lb"),
  39500. name: "Front",
  39501. image: {
  39502. source: "./media/characters/wulver/front.svg",
  39503. extra: 1724/1632,
  39504. bottom: 130/1854
  39505. }
  39506. },
  39507. frontNsfw: {
  39508. height: math.unit(6, "feet"),
  39509. weight: math.unit(200, "lb"),
  39510. name: "Front (NSFW)",
  39511. image: {
  39512. source: "./media/characters/wulver/front-nsfw.svg",
  39513. extra: 1724/1632,
  39514. bottom: 130/1854
  39515. }
  39516. },
  39517. },
  39518. [
  39519. {
  39520. name: "Human-Sized",
  39521. height: math.unit(6, "feet")
  39522. },
  39523. {
  39524. name: "Normal",
  39525. height: math.unit(4, "meters"),
  39526. default: true
  39527. },
  39528. {
  39529. name: "Large",
  39530. height: math.unit(6, "m")
  39531. },
  39532. ]
  39533. ))
  39534. characterMakers.push(() => makeCharacter(
  39535. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39536. {
  39537. front: {
  39538. height: math.unit(7, "feet"),
  39539. name: "Front",
  39540. image: {
  39541. source: "./media/characters/maru/front.svg",
  39542. extra: 1595/1570,
  39543. bottom: 0/1595
  39544. }
  39545. },
  39546. },
  39547. [
  39548. {
  39549. name: "Normal",
  39550. height: math.unit(7, "feet"),
  39551. default: true
  39552. },
  39553. {
  39554. name: "Macro",
  39555. height: math.unit(700, "feet")
  39556. },
  39557. {
  39558. name: "Mega Macro",
  39559. height: math.unit(25, "miles")
  39560. },
  39561. ]
  39562. ))
  39563. characterMakers.push(() => makeCharacter(
  39564. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39565. {
  39566. front: {
  39567. height: math.unit(6, "feet"),
  39568. weight: math.unit(170, "lb"),
  39569. name: "Front",
  39570. image: {
  39571. source: "./media/characters/xenon/front.svg",
  39572. extra: 1376/1305,
  39573. bottom: 56/1432
  39574. }
  39575. },
  39576. back: {
  39577. height: math.unit(6, "feet"),
  39578. weight: math.unit(170, "lb"),
  39579. name: "Back",
  39580. image: {
  39581. source: "./media/characters/xenon/back.svg",
  39582. extra: 1328/1259,
  39583. bottom: 95/1423
  39584. }
  39585. },
  39586. maw: {
  39587. height: math.unit(0.52, "feet"),
  39588. name: "Maw",
  39589. image: {
  39590. source: "./media/characters/xenon/maw.svg"
  39591. }
  39592. },
  39593. hand: {
  39594. height: math.unit(0.82, "feet"),
  39595. name: "Hand",
  39596. image: {
  39597. source: "./media/characters/xenon/hand.svg"
  39598. }
  39599. },
  39600. foot: {
  39601. height: math.unit(1.13, "feet"),
  39602. name: "Foot",
  39603. image: {
  39604. source: "./media/characters/xenon/foot.svg"
  39605. }
  39606. },
  39607. },
  39608. [
  39609. {
  39610. name: "Micro",
  39611. height: math.unit(0.8, "inches")
  39612. },
  39613. {
  39614. name: "Normal",
  39615. height: math.unit(6, "feet")
  39616. },
  39617. {
  39618. name: "Macro",
  39619. height: math.unit(50, "feet"),
  39620. default: true
  39621. },
  39622. {
  39623. name: "Macro+",
  39624. height: math.unit(250, "feet")
  39625. },
  39626. {
  39627. name: "Megamacro",
  39628. height: math.unit(1500, "feet")
  39629. },
  39630. ]
  39631. ))
  39632. characterMakers.push(() => makeCharacter(
  39633. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39634. {
  39635. front: {
  39636. height: math.unit(7 + 5/12, "feet"),
  39637. name: "Front",
  39638. image: {
  39639. source: "./media/characters/zane/front.svg",
  39640. extra: 1260/1203,
  39641. bottom: 94/1354
  39642. }
  39643. },
  39644. back: {
  39645. height: math.unit(5.05, "feet"),
  39646. name: "Back",
  39647. image: {
  39648. source: "./media/characters/zane/back.svg",
  39649. extra: 893/829,
  39650. bottom: 30/923
  39651. }
  39652. },
  39653. werewolf: {
  39654. height: math.unit(11, "feet"),
  39655. name: "Werewolf",
  39656. image: {
  39657. source: "./media/characters/zane/werewolf.svg",
  39658. extra: 1383/1323,
  39659. bottom: 89/1472
  39660. }
  39661. },
  39662. foot: {
  39663. height: math.unit(1.46, "feet"),
  39664. name: "Foot",
  39665. image: {
  39666. source: "./media/characters/zane/foot.svg"
  39667. }
  39668. },
  39669. footFront: {
  39670. height: math.unit(0.784, "feet"),
  39671. name: "Foot (Front)",
  39672. image: {
  39673. source: "./media/characters/zane/foot-front.svg"
  39674. }
  39675. },
  39676. dick: {
  39677. height: math.unit(1.95, "feet"),
  39678. name: "Dick",
  39679. image: {
  39680. source: "./media/characters/zane/dick.svg"
  39681. }
  39682. },
  39683. dickWerewolf: {
  39684. height: math.unit(3.77, "feet"),
  39685. name: "Dick (Werewolf)",
  39686. image: {
  39687. source: "./media/characters/zane/dick.svg"
  39688. }
  39689. },
  39690. },
  39691. [
  39692. {
  39693. name: "Normal",
  39694. height: math.unit(7 + 5/12, "feet"),
  39695. default: true
  39696. },
  39697. ]
  39698. ))
  39699. characterMakers.push(() => makeCharacter(
  39700. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39701. {
  39702. front: {
  39703. height: math.unit(6 + 2/12, "feet"),
  39704. weight: math.unit(284, "lb"),
  39705. name: "Front",
  39706. image: {
  39707. source: "./media/characters/benni-desparque/front.svg",
  39708. extra: 1353/1126,
  39709. bottom: 69/1422
  39710. }
  39711. },
  39712. },
  39713. [
  39714. {
  39715. name: "Civilian",
  39716. height: math.unit(6 + 2/12, "feet")
  39717. },
  39718. {
  39719. name: "Normal",
  39720. height: math.unit(98, "feet"),
  39721. default: true
  39722. },
  39723. {
  39724. name: "Kaiju Fighter",
  39725. height: math.unit(268, "feet")
  39726. },
  39727. ]
  39728. ))
  39729. characterMakers.push(() => makeCharacter(
  39730. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39731. {
  39732. front: {
  39733. height: math.unit(5, "feet"),
  39734. weight: math.unit(105, "lb"),
  39735. name: "Front",
  39736. image: {
  39737. source: "./media/characters/maxine/front.svg",
  39738. extra: 1386/1250,
  39739. bottom: 71/1457
  39740. }
  39741. },
  39742. },
  39743. [
  39744. {
  39745. name: "Normal",
  39746. height: math.unit(5, "feet"),
  39747. default: true
  39748. },
  39749. ]
  39750. ))
  39751. characterMakers.push(() => makeCharacter(
  39752. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39753. {
  39754. front: {
  39755. height: math.unit(11 + 7/12, "feet"),
  39756. weight: math.unit(9576, "lb"),
  39757. name: "Front",
  39758. image: {
  39759. source: "./media/characters/scaly/front.svg",
  39760. extra: 888/867,
  39761. bottom: 36/924
  39762. }
  39763. },
  39764. },
  39765. [
  39766. {
  39767. name: "Normal",
  39768. height: math.unit(11 + 7/12, "feet"),
  39769. default: true
  39770. },
  39771. ]
  39772. ))
  39773. characterMakers.push(() => makeCharacter(
  39774. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39775. {
  39776. front: {
  39777. height: math.unit(9, "inches"),
  39778. name: "Front",
  39779. image: {
  39780. source: "./media/characters/saelria/front.svg",
  39781. extra: 662/621,
  39782. bottom: 12/674
  39783. }
  39784. },
  39785. },
  39786. [
  39787. {
  39788. name: "Tiny",
  39789. height: math.unit(9, "inches"),
  39790. default: true
  39791. },
  39792. ]
  39793. ))
  39794. characterMakers.push(() => makeCharacter(
  39795. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39796. {
  39797. front: {
  39798. height: math.unit(80, "meters"),
  39799. weight: math.unit(7000, "tonnes"),
  39800. name: "Front",
  39801. image: {
  39802. source: "./media/characters/tef/front.svg",
  39803. extra: 2036/1991,
  39804. bottom: 54/2090
  39805. }
  39806. },
  39807. back: {
  39808. height: math.unit(80, "meters"),
  39809. weight: math.unit(7000, "tonnes"),
  39810. name: "Back",
  39811. image: {
  39812. source: "./media/characters/tef/back.svg",
  39813. extra: 2036/1991,
  39814. bottom: 54/2090
  39815. }
  39816. },
  39817. },
  39818. [
  39819. {
  39820. name: "Macro",
  39821. height: math.unit(80, "meters"),
  39822. default: true
  39823. },
  39824. ]
  39825. ))
  39826. characterMakers.push(() => makeCharacter(
  39827. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39828. {
  39829. front: {
  39830. height: math.unit(13, "feet"),
  39831. weight: math.unit(6, "tons"),
  39832. name: "Front",
  39833. image: {
  39834. source: "./media/characters/rover/front.svg",
  39835. extra: 1233/1156,
  39836. bottom: 50/1283
  39837. }
  39838. },
  39839. back: {
  39840. height: math.unit(13, "feet"),
  39841. weight: math.unit(6, "tons"),
  39842. name: "Back",
  39843. image: {
  39844. source: "./media/characters/rover/back.svg",
  39845. extra: 1327/1258,
  39846. bottom: 39/1366
  39847. }
  39848. },
  39849. },
  39850. [
  39851. {
  39852. name: "Normal",
  39853. height: math.unit(13, "feet"),
  39854. default: true
  39855. },
  39856. {
  39857. name: "Macro",
  39858. height: math.unit(1300, "feet")
  39859. },
  39860. {
  39861. name: "Megamacro",
  39862. height: math.unit(1300, "miles")
  39863. },
  39864. {
  39865. name: "Gigamacro",
  39866. height: math.unit(1300000, "miles")
  39867. },
  39868. ]
  39869. ))
  39870. characterMakers.push(() => makeCharacter(
  39871. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39872. {
  39873. front: {
  39874. height: math.unit(6, "feet"),
  39875. weight: math.unit(150, "lb"),
  39876. name: "Front",
  39877. image: {
  39878. source: "./media/characters/ariz/front.svg",
  39879. extra: 1401/1346,
  39880. bottom: 5/1406
  39881. }
  39882. },
  39883. },
  39884. [
  39885. {
  39886. name: "Normal",
  39887. height: math.unit(10, "feet"),
  39888. default: true
  39889. },
  39890. ]
  39891. ))
  39892. characterMakers.push(() => makeCharacter(
  39893. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39894. {
  39895. front: {
  39896. height: math.unit(6, "feet"),
  39897. weight: math.unit(140, "lb"),
  39898. name: "Front",
  39899. image: {
  39900. source: "./media/characters/sigrun/front.svg",
  39901. extra: 1418/1359,
  39902. bottom: 27/1445
  39903. }
  39904. },
  39905. },
  39906. [
  39907. {
  39908. name: "Macro",
  39909. height: math.unit(35, "feet"),
  39910. default: true
  39911. },
  39912. ]
  39913. ))
  39914. characterMakers.push(() => makeCharacter(
  39915. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39916. {
  39917. front: {
  39918. height: math.unit(6, "feet"),
  39919. weight: math.unit(150, "lb"),
  39920. name: "Front",
  39921. image: {
  39922. source: "./media/characters/numin/front.svg",
  39923. extra: 1433/1388,
  39924. bottom: 12/1445
  39925. }
  39926. },
  39927. },
  39928. [
  39929. {
  39930. name: "Macro",
  39931. height: math.unit(21.5, "km"),
  39932. default: true
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(6, "feet"),
  39941. weight: math.unit(463, "lb"),
  39942. name: "Front",
  39943. image: {
  39944. source: "./media/characters/melwa/front.svg",
  39945. extra: 1307/1248,
  39946. bottom: 93/1400
  39947. }
  39948. },
  39949. },
  39950. [
  39951. {
  39952. name: "Macro",
  39953. height: math.unit(50, "meters"),
  39954. default: true
  39955. },
  39956. ]
  39957. ))
  39958. characterMakers.push(() => makeCharacter(
  39959. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39960. {
  39961. front: {
  39962. height: math.unit(325, "feet"),
  39963. name: "Front",
  39964. image: {
  39965. source: "./media/characters/zorkaiju/front.svg",
  39966. extra: 1955/1814,
  39967. bottom: 40/1995
  39968. }
  39969. },
  39970. frontExtended: {
  39971. height: math.unit(325, "feet"),
  39972. name: "Front (Extended)",
  39973. image: {
  39974. source: "./media/characters/zorkaiju/front-extended.svg",
  39975. extra: 1955/1814,
  39976. bottom: 40/1995
  39977. }
  39978. },
  39979. side: {
  39980. height: math.unit(325, "feet"),
  39981. name: "Side",
  39982. image: {
  39983. source: "./media/characters/zorkaiju/side.svg",
  39984. extra: 1495/1396,
  39985. bottom: 17/1512
  39986. }
  39987. },
  39988. sideExtended: {
  39989. height: math.unit(325, "feet"),
  39990. name: "Side (Extended)",
  39991. image: {
  39992. source: "./media/characters/zorkaiju/side-extended.svg",
  39993. extra: 1495/1396,
  39994. bottom: 17/1512
  39995. }
  39996. },
  39997. back: {
  39998. height: math.unit(325, "feet"),
  39999. name: "Back",
  40000. image: {
  40001. source: "./media/characters/zorkaiju/back.svg",
  40002. extra: 1959/1821,
  40003. bottom: 31/1990
  40004. }
  40005. },
  40006. backExtended: {
  40007. height: math.unit(325, "feet"),
  40008. name: "Back (Extended)",
  40009. image: {
  40010. source: "./media/characters/zorkaiju/back-extended.svg",
  40011. extra: 1959/1821,
  40012. bottom: 31/1990
  40013. }
  40014. },
  40015. hand: {
  40016. height: math.unit(58.4, "feet"),
  40017. name: "Hand",
  40018. image: {
  40019. source: "./media/characters/zorkaiju/hand.svg"
  40020. }
  40021. },
  40022. handExtended: {
  40023. height: math.unit(61.4, "feet"),
  40024. name: "Hand (Extended)",
  40025. image: {
  40026. source: "./media/characters/zorkaiju/hand-extended.svg"
  40027. }
  40028. },
  40029. foot: {
  40030. height: math.unit(95, "feet"),
  40031. name: "Foot",
  40032. image: {
  40033. source: "./media/characters/zorkaiju/foot.svg"
  40034. }
  40035. },
  40036. leftArm: {
  40037. height: math.unit(59, "feet"),
  40038. name: "Left Arm",
  40039. image: {
  40040. source: "./media/characters/zorkaiju/left-arm.svg"
  40041. }
  40042. },
  40043. rightArm: {
  40044. height: math.unit(59, "feet"),
  40045. name: "Right Arm",
  40046. image: {
  40047. source: "./media/characters/zorkaiju/right-arm.svg"
  40048. }
  40049. },
  40050. tail: {
  40051. height: math.unit(104, "feet"),
  40052. name: "Tail",
  40053. image: {
  40054. source: "./media/characters/zorkaiju/tail.svg"
  40055. }
  40056. },
  40057. tailExtended: {
  40058. height: math.unit(104, "feet"),
  40059. name: "Tail (Extended)",
  40060. image: {
  40061. source: "./media/characters/zorkaiju/tail-extended.svg"
  40062. }
  40063. },
  40064. tailBottom: {
  40065. height: math.unit(104, "feet"),
  40066. name: "Tail Bottom",
  40067. image: {
  40068. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40069. }
  40070. },
  40071. crystal: {
  40072. height: math.unit(27.54, "feet"),
  40073. name: "Crystal",
  40074. image: {
  40075. source: "./media/characters/zorkaiju/crystal.svg"
  40076. }
  40077. },
  40078. },
  40079. [
  40080. {
  40081. name: "Kaiju",
  40082. height: math.unit(325, "feet"),
  40083. default: true
  40084. },
  40085. ]
  40086. ))
  40087. characterMakers.push(() => makeCharacter(
  40088. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40089. {
  40090. front: {
  40091. height: math.unit(6 + 1/12, "feet"),
  40092. weight: math.unit(115, "lb"),
  40093. name: "Front",
  40094. image: {
  40095. source: "./media/characters/bailey-belfry/front.svg",
  40096. extra: 1240/1121,
  40097. bottom: 101/1341
  40098. }
  40099. },
  40100. },
  40101. [
  40102. {
  40103. name: "Normal",
  40104. height: math.unit(6 + 1/12, "feet"),
  40105. default: true
  40106. },
  40107. ]
  40108. ))
  40109. characterMakers.push(() => makeCharacter(
  40110. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40111. {
  40112. side: {
  40113. height: math.unit(4, "meters"),
  40114. weight: math.unit(250, "kg"),
  40115. name: "Side",
  40116. image: {
  40117. source: "./media/characters/blacky/side.svg",
  40118. extra: 1027/919,
  40119. bottom: 43/1070
  40120. }
  40121. },
  40122. maw: {
  40123. height: math.unit(1, "meters"),
  40124. name: "Maw",
  40125. image: {
  40126. source: "./media/characters/blacky/maw.svg"
  40127. }
  40128. },
  40129. paw: {
  40130. height: math.unit(1, "meters"),
  40131. name: "Paw",
  40132. image: {
  40133. source: "./media/characters/blacky/paw.svg"
  40134. }
  40135. },
  40136. },
  40137. [
  40138. {
  40139. name: "Normal",
  40140. height: math.unit(4, "meters"),
  40141. default: true
  40142. },
  40143. ]
  40144. ))
  40145. characterMakers.push(() => makeCharacter(
  40146. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40147. {
  40148. front: {
  40149. height: math.unit(170, "cm"),
  40150. weight: math.unit(66, "kg"),
  40151. name: "Front",
  40152. image: {
  40153. source: "./media/characters/thux-ei/front.svg",
  40154. extra: 1109/1011,
  40155. bottom: 8/1117
  40156. }
  40157. },
  40158. },
  40159. [
  40160. {
  40161. name: "Normal",
  40162. height: math.unit(170, "cm"),
  40163. default: true
  40164. },
  40165. ]
  40166. ))
  40167. characterMakers.push(() => makeCharacter(
  40168. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40169. {
  40170. front: {
  40171. height: math.unit(5, "feet"),
  40172. weight: math.unit(120, "lb"),
  40173. name: "Front",
  40174. image: {
  40175. source: "./media/characters/roxanne-voltaire/front.svg",
  40176. extra: 1901/1779,
  40177. bottom: 53/1954
  40178. }
  40179. },
  40180. },
  40181. [
  40182. {
  40183. name: "Normal",
  40184. height: math.unit(5, "feet"),
  40185. default: true
  40186. },
  40187. {
  40188. name: "Giant",
  40189. height: math.unit(50, "feet")
  40190. },
  40191. {
  40192. name: "Titan",
  40193. height: math.unit(500, "feet")
  40194. },
  40195. {
  40196. name: "Macro",
  40197. height: math.unit(5000, "feet")
  40198. },
  40199. {
  40200. name: "Megamacro",
  40201. height: math.unit(50000, "feet")
  40202. },
  40203. {
  40204. name: "Gigamacro",
  40205. height: math.unit(500000, "feet")
  40206. },
  40207. {
  40208. name: "Teramacro",
  40209. height: math.unit(5e6, "feet")
  40210. },
  40211. ]
  40212. ))
  40213. characterMakers.push(() => makeCharacter(
  40214. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40215. {
  40216. front: {
  40217. height: math.unit(6 + 2/12, "feet"),
  40218. name: "Front",
  40219. image: {
  40220. source: "./media/characters/squeaks/front.svg",
  40221. extra: 1823/1768,
  40222. bottom: 138/1961
  40223. }
  40224. },
  40225. },
  40226. [
  40227. {
  40228. name: "Micro",
  40229. height: math.unit(0.5, "inches")
  40230. },
  40231. {
  40232. name: "Normal",
  40233. height: math.unit(6 + 2/12, "feet"),
  40234. default: true
  40235. },
  40236. {
  40237. name: "Macro",
  40238. height: math.unit(600, "feet")
  40239. },
  40240. ]
  40241. ))
  40242. characterMakers.push(() => makeCharacter(
  40243. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40244. {
  40245. front: {
  40246. height: math.unit(1.72, "meters"),
  40247. name: "Front",
  40248. image: {
  40249. source: "./media/characters/archinger/front.svg",
  40250. extra: 1861/1675,
  40251. bottom: 125/1986
  40252. }
  40253. },
  40254. back: {
  40255. height: math.unit(1.72, "meters"),
  40256. name: "Back",
  40257. image: {
  40258. source: "./media/characters/archinger/back.svg",
  40259. extra: 1844/1701,
  40260. bottom: 104/1948
  40261. }
  40262. },
  40263. cock: {
  40264. height: math.unit(0.59, "feet"),
  40265. name: "Cock",
  40266. image: {
  40267. source: "./media/characters/archinger/cock.svg"
  40268. }
  40269. },
  40270. },
  40271. [
  40272. {
  40273. name: "Normal",
  40274. height: math.unit(1.72, "meters"),
  40275. default: true
  40276. },
  40277. {
  40278. name: "Macro",
  40279. height: math.unit(84, "meters")
  40280. },
  40281. {
  40282. name: "Macro+",
  40283. height: math.unit(112, "meters")
  40284. },
  40285. {
  40286. name: "Macro++",
  40287. height: math.unit(960, "meters")
  40288. },
  40289. {
  40290. name: "Macro+++",
  40291. height: math.unit(4, "km")
  40292. },
  40293. {
  40294. name: "Macro++++",
  40295. height: math.unit(48, "km")
  40296. },
  40297. {
  40298. name: "Macro+++++",
  40299. height: math.unit(4500, "km")
  40300. },
  40301. ]
  40302. ))
  40303. characterMakers.push(() => makeCharacter(
  40304. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40305. {
  40306. front: {
  40307. height: math.unit(5 + 5/12, "feet"),
  40308. name: "Front",
  40309. image: {
  40310. source: "./media/characters/alsnapz/front.svg",
  40311. extra: 1157/1065,
  40312. bottom: 42/1199
  40313. }
  40314. },
  40315. },
  40316. [
  40317. {
  40318. name: "Normal",
  40319. height: math.unit(5 + 5/12, "feet"),
  40320. default: true
  40321. },
  40322. ]
  40323. ))
  40324. characterMakers.push(() => makeCharacter(
  40325. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40326. {
  40327. side: {
  40328. height: math.unit(3.2, "earths"),
  40329. name: "Side",
  40330. image: {
  40331. source: "./media/characters/mag/side.svg",
  40332. extra: 1331/1008,
  40333. bottom: 52/1383
  40334. }
  40335. },
  40336. wing: {
  40337. height: math.unit(1.94, "earths"),
  40338. name: "Wing",
  40339. image: {
  40340. source: "./media/characters/mag/wing.svg"
  40341. }
  40342. },
  40343. dick: {
  40344. height: math.unit(1.8, "earths"),
  40345. name: "Dick",
  40346. image: {
  40347. source: "./media/characters/mag/dick.svg"
  40348. }
  40349. },
  40350. ass: {
  40351. height: math.unit(1.33, "earths"),
  40352. name: "Ass",
  40353. image: {
  40354. source: "./media/characters/mag/ass.svg"
  40355. }
  40356. },
  40357. head: {
  40358. height: math.unit(1.1, "earths"),
  40359. name: "Head",
  40360. image: {
  40361. source: "./media/characters/mag/head.svg"
  40362. }
  40363. },
  40364. maw: {
  40365. height: math.unit(1.62, "earths"),
  40366. name: "Maw",
  40367. image: {
  40368. source: "./media/characters/mag/maw.svg"
  40369. }
  40370. },
  40371. },
  40372. [
  40373. {
  40374. name: "Small",
  40375. height: math.unit(162, "feet")
  40376. },
  40377. {
  40378. name: "Normal",
  40379. height: math.unit(3.2, "earths"),
  40380. default: true
  40381. },
  40382. ]
  40383. ))
  40384. characterMakers.push(() => makeCharacter(
  40385. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40386. {
  40387. front: {
  40388. height: math.unit(512, "feet"),
  40389. weight: math.unit(63509, "tonnes"),
  40390. name: "Front",
  40391. image: {
  40392. source: "./media/characters/vorrel-harroc/front.svg",
  40393. extra: 1075/1063,
  40394. bottom: 62/1137
  40395. }
  40396. },
  40397. },
  40398. [
  40399. {
  40400. name: "Normal",
  40401. height: math.unit(10, "feet")
  40402. },
  40403. {
  40404. name: "Macro",
  40405. height: math.unit(512, "feet"),
  40406. default: true
  40407. },
  40408. {
  40409. name: "Megamacro",
  40410. height: math.unit(256, "miles")
  40411. },
  40412. {
  40413. name: "Gigamacro",
  40414. height: math.unit(4096, "miles")
  40415. },
  40416. ]
  40417. ))
  40418. characterMakers.push(() => makeCharacter(
  40419. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40420. {
  40421. side: {
  40422. height: math.unit(50, "feet"),
  40423. name: "Side",
  40424. image: {
  40425. source: "./media/characters/froimar/side.svg",
  40426. extra: 855/638,
  40427. bottom: 99/954
  40428. }
  40429. },
  40430. },
  40431. [
  40432. {
  40433. name: "Macro",
  40434. height: math.unit(50, "feet"),
  40435. default: true
  40436. },
  40437. ]
  40438. ))
  40439. characterMakers.push(() => makeCharacter(
  40440. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40441. {
  40442. front: {
  40443. height: math.unit(210, "miles"),
  40444. name: "Front",
  40445. image: {
  40446. source: "./media/characters/timothy/front.svg",
  40447. extra: 1007/943,
  40448. bottom: 62/1069
  40449. }
  40450. },
  40451. frontSkirt: {
  40452. height: math.unit(210, "miles"),
  40453. name: "Front (Skirt)",
  40454. image: {
  40455. source: "./media/characters/timothy/front-skirt.svg",
  40456. extra: 1007/943,
  40457. bottom: 62/1069
  40458. }
  40459. },
  40460. frontCoat: {
  40461. height: math.unit(210, "miles"),
  40462. name: "Front (Coat)",
  40463. image: {
  40464. source: "./media/characters/timothy/front-coat.svg",
  40465. extra: 1007/943,
  40466. bottom: 62/1069
  40467. }
  40468. },
  40469. },
  40470. [
  40471. {
  40472. name: "Macro",
  40473. height: math.unit(210, "miles"),
  40474. default: true
  40475. },
  40476. {
  40477. name: "Megamacro",
  40478. height: math.unit(210000, "miles")
  40479. },
  40480. ]
  40481. ))
  40482. characterMakers.push(() => makeCharacter(
  40483. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40484. {
  40485. front: {
  40486. height: math.unit(188, "feet"),
  40487. name: "Front",
  40488. image: {
  40489. source: "./media/characters/pyotr/front.svg",
  40490. extra: 1912/1826,
  40491. bottom: 18/1930
  40492. }
  40493. },
  40494. },
  40495. [
  40496. {
  40497. name: "Macro",
  40498. height: math.unit(188, "feet"),
  40499. default: true
  40500. },
  40501. {
  40502. name: "Megamacro",
  40503. height: math.unit(8, "miles")
  40504. },
  40505. ]
  40506. ))
  40507. characterMakers.push(() => makeCharacter(
  40508. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40509. {
  40510. side: {
  40511. height: math.unit(10, "feet"),
  40512. weight: math.unit(4500, "lb"),
  40513. name: "Side",
  40514. image: {
  40515. source: "./media/characters/ackart/side.svg",
  40516. extra: 1776/1668,
  40517. bottom: 116/1892
  40518. }
  40519. },
  40520. },
  40521. [
  40522. {
  40523. name: "Normal",
  40524. height: math.unit(10, "feet"),
  40525. default: true
  40526. },
  40527. ]
  40528. ))
  40529. characterMakers.push(() => makeCharacter(
  40530. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40531. {
  40532. side: {
  40533. height: math.unit(21, "feet"),
  40534. name: "Side",
  40535. image: {
  40536. source: "./media/characters/nolow/side.svg",
  40537. extra: 1484/1434,
  40538. bottom: 85/1569
  40539. }
  40540. },
  40541. sideErect: {
  40542. height: math.unit(21, "feet"),
  40543. name: "Side-erect",
  40544. image: {
  40545. source: "./media/characters/nolow/side-erect.svg",
  40546. extra: 1484/1434,
  40547. bottom: 85/1569
  40548. }
  40549. },
  40550. },
  40551. [
  40552. {
  40553. name: "Regular",
  40554. height: math.unit(12, "feet")
  40555. },
  40556. {
  40557. name: "Big Chee",
  40558. height: math.unit(21, "feet"),
  40559. default: true
  40560. },
  40561. ]
  40562. ))
  40563. characterMakers.push(() => makeCharacter(
  40564. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40565. {
  40566. front: {
  40567. height: math.unit(7, "feet"),
  40568. weight: math.unit(250, "lb"),
  40569. name: "Front",
  40570. image: {
  40571. source: "./media/characters/nines/front.svg",
  40572. extra: 1741/1607,
  40573. bottom: 41/1782
  40574. }
  40575. },
  40576. side: {
  40577. height: math.unit(7, "feet"),
  40578. weight: math.unit(250, "lb"),
  40579. name: "Side",
  40580. image: {
  40581. source: "./media/characters/nines/side.svg",
  40582. extra: 1854/1735,
  40583. bottom: 93/1947
  40584. }
  40585. },
  40586. back: {
  40587. height: math.unit(7, "feet"),
  40588. weight: math.unit(250, "lb"),
  40589. name: "Back",
  40590. image: {
  40591. source: "./media/characters/nines/back.svg",
  40592. extra: 1748/1615,
  40593. bottom: 20/1768
  40594. }
  40595. },
  40596. },
  40597. [
  40598. {
  40599. name: "Megamacro",
  40600. height: math.unit(99, "km"),
  40601. default: true
  40602. },
  40603. ]
  40604. ))
  40605. characterMakers.push(() => makeCharacter(
  40606. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40607. {
  40608. front: {
  40609. height: math.unit(5 + 10/12, "feet"),
  40610. weight: math.unit(210, "lb"),
  40611. name: "Front",
  40612. image: {
  40613. source: "./media/characters/zenith/front.svg",
  40614. extra: 1531/1452,
  40615. bottom: 198/1729
  40616. }
  40617. },
  40618. back: {
  40619. height: math.unit(5 + 10/12, "feet"),
  40620. weight: math.unit(210, "lb"),
  40621. name: "Back",
  40622. image: {
  40623. source: "./media/characters/zenith/back.svg",
  40624. extra: 1571/1487,
  40625. bottom: 75/1646
  40626. }
  40627. },
  40628. },
  40629. [
  40630. {
  40631. name: "Normal",
  40632. height: math.unit(5 + 10/12, "feet"),
  40633. default: true
  40634. }
  40635. ]
  40636. ))
  40637. characterMakers.push(() => makeCharacter(
  40638. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40639. {
  40640. front: {
  40641. height: math.unit(4, "feet"),
  40642. weight: math.unit(60, "lb"),
  40643. name: "Front",
  40644. image: {
  40645. source: "./media/characters/jasper/front.svg",
  40646. extra: 1450/1379,
  40647. bottom: 19/1469
  40648. }
  40649. },
  40650. },
  40651. [
  40652. {
  40653. name: "Normal",
  40654. height: math.unit(4, "feet"),
  40655. default: true
  40656. },
  40657. ]
  40658. ))
  40659. characterMakers.push(() => makeCharacter(
  40660. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40661. {
  40662. front: {
  40663. height: math.unit(6 + 5/12, "feet"),
  40664. weight: math.unit(290, "lb"),
  40665. name: "Front",
  40666. image: {
  40667. source: "./media/characters/tiberius-thyben/front.svg",
  40668. extra: 757/739,
  40669. bottom: 39/796
  40670. }
  40671. },
  40672. },
  40673. [
  40674. {
  40675. name: "Micro",
  40676. height: math.unit(1.5, "inches")
  40677. },
  40678. {
  40679. name: "Normal",
  40680. height: math.unit(6 + 5/12, "feet"),
  40681. default: true
  40682. },
  40683. {
  40684. name: "Macro",
  40685. height: math.unit(300, "feet")
  40686. },
  40687. ]
  40688. ))
  40689. characterMakers.push(() => makeCharacter(
  40690. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40691. {
  40692. front: {
  40693. height: math.unit(5 + 6/12, "feet"),
  40694. weight: math.unit(60, "kg"),
  40695. name: "Front",
  40696. image: {
  40697. source: "./media/characters/sabre/front.svg",
  40698. extra: 738/671,
  40699. bottom: 27/765
  40700. }
  40701. },
  40702. },
  40703. [
  40704. {
  40705. name: "Teeny",
  40706. height: math.unit(2, "inches")
  40707. },
  40708. {
  40709. name: "Smol",
  40710. height: math.unit(8, "inches")
  40711. },
  40712. {
  40713. name: "Normal",
  40714. height: math.unit(5 + 6/12, "feet"),
  40715. default: true
  40716. },
  40717. {
  40718. name: "Mini-Macro",
  40719. height: math.unit(15, "feet")
  40720. },
  40721. {
  40722. name: "Macro",
  40723. height: math.unit(50, "feet")
  40724. },
  40725. ]
  40726. ))
  40727. characterMakers.push(() => makeCharacter(
  40728. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40729. {
  40730. front: {
  40731. height: math.unit(6 + 4/12, "feet"),
  40732. weight: math.unit(170, "lb"),
  40733. name: "Front",
  40734. image: {
  40735. source: "./media/characters/charlie/front.svg",
  40736. extra: 1348/1228,
  40737. bottom: 15/1363
  40738. }
  40739. },
  40740. },
  40741. [
  40742. {
  40743. name: "Macro",
  40744. height: math.unit(1700, "meters"),
  40745. default: true
  40746. },
  40747. {
  40748. name: "MegaMacro",
  40749. height: math.unit(20400, "meters")
  40750. },
  40751. ]
  40752. ))
  40753. characterMakers.push(() => makeCharacter(
  40754. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40755. {
  40756. front: {
  40757. height: math.unit(6 + 3/12, "feet"),
  40758. weight: math.unit(185, "lb"),
  40759. name: "Front",
  40760. image: {
  40761. source: "./media/characters/susan-grant/front.svg",
  40762. extra: 1351/1327,
  40763. bottom: 26/1377
  40764. }
  40765. },
  40766. },
  40767. [
  40768. {
  40769. name: "Normal",
  40770. height: math.unit(6 + 3/12, "feet"),
  40771. default: true
  40772. },
  40773. {
  40774. name: "Macro",
  40775. height: math.unit(225, "feet")
  40776. },
  40777. {
  40778. name: "Macro+",
  40779. height: math.unit(900, "feet")
  40780. },
  40781. {
  40782. name: "MegaMacro",
  40783. height: math.unit(14400, "feet")
  40784. },
  40785. ]
  40786. ))
  40787. characterMakers.push(() => makeCharacter(
  40788. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40789. {
  40790. front: {
  40791. height: math.unit(5 + 4/12, "feet"),
  40792. weight: math.unit(110, "lb"),
  40793. name: "Front",
  40794. image: {
  40795. source: "./media/characters/axel-isanov/front.svg",
  40796. extra: 1096/1065,
  40797. bottom: 13/1109
  40798. }
  40799. },
  40800. },
  40801. [
  40802. {
  40803. name: "Normal",
  40804. height: math.unit(5 + 4/12, "feet"),
  40805. default: true
  40806. },
  40807. ]
  40808. ))
  40809. characterMakers.push(() => makeCharacter(
  40810. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40811. {
  40812. front: {
  40813. height: math.unit(9, "feet"),
  40814. weight: math.unit(467, "lb"),
  40815. name: "Front",
  40816. image: {
  40817. source: "./media/characters/necahual/front.svg",
  40818. extra: 920/873,
  40819. bottom: 26/946
  40820. }
  40821. },
  40822. back: {
  40823. height: math.unit(9, "feet"),
  40824. weight: math.unit(467, "lb"),
  40825. name: "Back",
  40826. image: {
  40827. source: "./media/characters/necahual/back.svg",
  40828. extra: 930/884,
  40829. bottom: 16/946
  40830. }
  40831. },
  40832. frontUnderwear: {
  40833. height: math.unit(9, "feet"),
  40834. weight: math.unit(467, "lb"),
  40835. name: "Front (Underwear)",
  40836. image: {
  40837. source: "./media/characters/necahual/front-underwear.svg",
  40838. extra: 920/873,
  40839. bottom: 26/946
  40840. }
  40841. },
  40842. frontDressed: {
  40843. height: math.unit(9, "feet"),
  40844. weight: math.unit(467, "lb"),
  40845. name: "Front (Dressed)",
  40846. image: {
  40847. source: "./media/characters/necahual/front-dressed.svg",
  40848. extra: 920/873,
  40849. bottom: 26/946
  40850. }
  40851. },
  40852. },
  40853. [
  40854. {
  40855. name: "Comprsesed",
  40856. height: math.unit(9, "feet")
  40857. },
  40858. {
  40859. name: "Natural",
  40860. height: math.unit(15, "feet"),
  40861. default: true
  40862. },
  40863. {
  40864. name: "Boosted",
  40865. height: math.unit(50, "feet")
  40866. },
  40867. {
  40868. name: "Boosted+",
  40869. height: math.unit(150, "feet")
  40870. },
  40871. {
  40872. name: "Max",
  40873. height: math.unit(500, "feet")
  40874. },
  40875. ]
  40876. ))
  40877. characterMakers.push(() => makeCharacter(
  40878. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40879. {
  40880. front: {
  40881. height: math.unit(22 + 1/12, "feet"),
  40882. weight: math.unit(3200, "lb"),
  40883. name: "Front",
  40884. image: {
  40885. source: "./media/characters/theo-acacia/front.svg",
  40886. extra: 1796/1741,
  40887. bottom: 83/1879
  40888. }
  40889. },
  40890. frontUnderwear: {
  40891. height: math.unit(22 + 1/12, "feet"),
  40892. weight: math.unit(3200, "lb"),
  40893. name: "Front (Underwear)",
  40894. image: {
  40895. source: "./media/characters/theo-acacia/front-underwear.svg",
  40896. extra: 1796/1741,
  40897. bottom: 83/1879
  40898. }
  40899. },
  40900. frontNude: {
  40901. height: math.unit(22 + 1/12, "feet"),
  40902. weight: math.unit(3200, "lb"),
  40903. name: "Front (Nude)",
  40904. image: {
  40905. source: "./media/characters/theo-acacia/front-nude.svg",
  40906. extra: 1796/1741,
  40907. bottom: 83/1879
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Normal",
  40914. height: math.unit(22 + 1/12, "feet"),
  40915. default: true
  40916. },
  40917. ]
  40918. ))
  40919. characterMakers.push(() => makeCharacter(
  40920. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40921. {
  40922. front: {
  40923. height: math.unit(20, "feet"),
  40924. name: "Front",
  40925. image: {
  40926. source: "./media/characters/astra/front.svg",
  40927. extra: 1850/1714,
  40928. bottom: 106/1956
  40929. }
  40930. },
  40931. frontUndressed: {
  40932. height: math.unit(20, "feet"),
  40933. name: "Front (Undressed)",
  40934. image: {
  40935. source: "./media/characters/astra/front-undressed.svg",
  40936. extra: 1926/1749,
  40937. bottom: 0/1926
  40938. }
  40939. },
  40940. hand: {
  40941. height: math.unit(1.53, "feet"),
  40942. name: "Hand",
  40943. image: {
  40944. source: "./media/characters/astra/hand.svg"
  40945. }
  40946. },
  40947. paw: {
  40948. height: math.unit(1.53, "feet"),
  40949. name: "Paw",
  40950. image: {
  40951. source: "./media/characters/astra/paw.svg"
  40952. }
  40953. },
  40954. },
  40955. [
  40956. {
  40957. name: "Smallest",
  40958. height: math.unit(20, "feet")
  40959. },
  40960. {
  40961. name: "Normal",
  40962. height: math.unit(1e9, "miles"),
  40963. default: true
  40964. },
  40965. {
  40966. name: "Larger",
  40967. height: math.unit(5, "multiverses")
  40968. },
  40969. {
  40970. name: "Largest",
  40971. height: math.unit(1e9, "multiverses")
  40972. },
  40973. ]
  40974. ))
  40975. characterMakers.push(() => makeCharacter(
  40976. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40977. {
  40978. front: {
  40979. height: math.unit(8, "feet"),
  40980. name: "Front",
  40981. image: {
  40982. source: "./media/characters/breanna/front.svg",
  40983. extra: 1912/1632,
  40984. bottom: 33/1945
  40985. }
  40986. },
  40987. },
  40988. [
  40989. {
  40990. name: "Smallest",
  40991. height: math.unit(8, "feet")
  40992. },
  40993. {
  40994. name: "Normal",
  40995. height: math.unit(1, "mile"),
  40996. default: true
  40997. },
  40998. {
  40999. name: "Maximum",
  41000. height: math.unit(1500000000000, "lightyears")
  41001. },
  41002. ]
  41003. ))
  41004. characterMakers.push(() => makeCharacter(
  41005. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41006. {
  41007. front: {
  41008. height: math.unit(5 + 11/12, "feet"),
  41009. weight: math.unit(155, "lb"),
  41010. name: "Front",
  41011. image: {
  41012. source: "./media/characters/cai/front.svg",
  41013. extra: 1823/1702,
  41014. bottom: 32/1855
  41015. }
  41016. },
  41017. back: {
  41018. height: math.unit(5 + 11/12, "feet"),
  41019. weight: math.unit(155, "lb"),
  41020. name: "Back",
  41021. image: {
  41022. source: "./media/characters/cai/back.svg",
  41023. extra: 1809/1708,
  41024. bottom: 31/1840
  41025. }
  41026. },
  41027. },
  41028. [
  41029. {
  41030. name: "Normal",
  41031. height: math.unit(5 + 11/12, "feet"),
  41032. default: true
  41033. },
  41034. {
  41035. name: "Big",
  41036. height: math.unit(15, "feet")
  41037. },
  41038. {
  41039. name: "Macro",
  41040. height: math.unit(200, "feet")
  41041. },
  41042. ]
  41043. ))
  41044. characterMakers.push(() => makeCharacter(
  41045. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41046. {
  41047. front: {
  41048. height: math.unit(5 + 6/12, "feet"),
  41049. weight: math.unit(160, "lb"),
  41050. name: "Front",
  41051. image: {
  41052. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41053. extra: 1227/1174,
  41054. bottom: 37/1264
  41055. }
  41056. },
  41057. },
  41058. [
  41059. {
  41060. name: "Macro",
  41061. height: math.unit(444, "meters"),
  41062. default: true
  41063. },
  41064. ]
  41065. ))
  41066. characterMakers.push(() => makeCharacter(
  41067. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41068. {
  41069. front: {
  41070. height: math.unit(18 + 7/12, "feet"),
  41071. name: "Front",
  41072. image: {
  41073. source: "./media/characters/rex/front.svg",
  41074. extra: 1941/1807,
  41075. bottom: 66/2007
  41076. }
  41077. },
  41078. back: {
  41079. height: math.unit(18 + 7/12, "feet"),
  41080. name: "Back",
  41081. image: {
  41082. source: "./media/characters/rex/back.svg",
  41083. extra: 1937/1822,
  41084. bottom: 42/1979
  41085. }
  41086. },
  41087. boot: {
  41088. height: math.unit(3.45, "feet"),
  41089. name: "Boot",
  41090. image: {
  41091. source: "./media/characters/rex/boot.svg"
  41092. }
  41093. },
  41094. paw: {
  41095. height: math.unit(4.17, "feet"),
  41096. name: "Paw",
  41097. image: {
  41098. source: "./media/characters/rex/paw.svg"
  41099. }
  41100. },
  41101. head: {
  41102. height: math.unit(6.728, "feet"),
  41103. name: "Head",
  41104. image: {
  41105. source: "./media/characters/rex/head.svg"
  41106. }
  41107. },
  41108. },
  41109. [
  41110. {
  41111. name: "Nano",
  41112. height: math.unit(18 + 7/12, "feet")
  41113. },
  41114. {
  41115. name: "Micro",
  41116. height: math.unit(1.5, "megameters")
  41117. },
  41118. {
  41119. name: "Normal",
  41120. height: math.unit(440, "megameters"),
  41121. default: true
  41122. },
  41123. {
  41124. name: "Macro",
  41125. height: math.unit(2.5, "gigameters")
  41126. },
  41127. {
  41128. name: "Gigamacro",
  41129. height: math.unit(2, "galaxies")
  41130. },
  41131. ]
  41132. ))
  41133. characterMakers.push(() => makeCharacter(
  41134. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41135. {
  41136. side: {
  41137. height: math.unit(32, "feet"),
  41138. weight: math.unit(250000, "lb"),
  41139. name: "Side",
  41140. image: {
  41141. source: "./media/characters/silverwing/side.svg",
  41142. extra: 1100/1019,
  41143. bottom: 204/1304
  41144. }
  41145. },
  41146. },
  41147. [
  41148. {
  41149. name: "Normal",
  41150. height: math.unit(32, "feet"),
  41151. default: true
  41152. },
  41153. ]
  41154. ))
  41155. characterMakers.push(() => makeCharacter(
  41156. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41157. {
  41158. front: {
  41159. height: math.unit(6 + 6/12, "feet"),
  41160. weight: math.unit(350, "lb"),
  41161. name: "Front",
  41162. image: {
  41163. source: "./media/characters/tristan-hawthorne/front.svg",
  41164. extra: 1159/1124,
  41165. bottom: 37/1196
  41166. }
  41167. },
  41168. },
  41169. [
  41170. {
  41171. name: "Normal",
  41172. height: math.unit(6 + 6/12, "feet"),
  41173. default: true
  41174. },
  41175. ]
  41176. ))
  41177. characterMakers.push(() => makeCharacter(
  41178. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41179. {
  41180. front: {
  41181. height: math.unit(5 + 11/12, "feet"),
  41182. weight: math.unit(190, "lb"),
  41183. name: "Front",
  41184. image: {
  41185. source: "./media/characters/mizu/front.svg",
  41186. extra: 1988/1788,
  41187. bottom: 14/2002
  41188. }
  41189. },
  41190. },
  41191. [
  41192. {
  41193. name: "Normal",
  41194. height: math.unit(5 + 11/12, "feet"),
  41195. default: true
  41196. },
  41197. ]
  41198. ))
  41199. characterMakers.push(() => makeCharacter(
  41200. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41201. {
  41202. front: {
  41203. height: math.unit(6, "feet"),
  41204. name: "Front",
  41205. image: {
  41206. source: "./media/characters/moonlight-rose-terra/front.svg",
  41207. extra: 1434/1252,
  41208. bottom: 48/1482
  41209. }
  41210. },
  41211. },
  41212. [
  41213. {
  41214. name: "TRAPPIST-1D",
  41215. height: math.unit(4992*2, "km")
  41216. },
  41217. {
  41218. name: "Earth",
  41219. height: math.unit(6367*2, "km"),
  41220. default: true
  41221. },
  41222. {
  41223. name: "Kepler-22b",
  41224. height: math.unit(15282*2, "km")
  41225. },
  41226. ]
  41227. ))
  41228. characterMakers.push(() => makeCharacter(
  41229. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41230. {
  41231. front: {
  41232. height: math.unit(6, "feet"),
  41233. name: "Front",
  41234. image: {
  41235. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41236. extra: 1851/1712,
  41237. bottom: 0/1851
  41238. }
  41239. },
  41240. },
  41241. [
  41242. {
  41243. name: "Enceladus",
  41244. height: math.unit(513*2, "km")
  41245. },
  41246. {
  41247. name: "Europe",
  41248. height: math.unit(1560*2, "km")
  41249. },
  41250. {
  41251. name: "Neptune",
  41252. height: math.unit(24622*2, "km"),
  41253. default: true
  41254. },
  41255. {
  41256. name: "CoRoT-9b",
  41257. height: math.unit(75067*2, "km")
  41258. },
  41259. ]
  41260. ))
  41261. characterMakers.push(() => makeCharacter(
  41262. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41263. {
  41264. front: {
  41265. height: math.unit(6, "feet"),
  41266. name: "Front",
  41267. image: {
  41268. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41269. extra: 1367/1286,
  41270. bottom: 55/1422
  41271. }
  41272. },
  41273. },
  41274. [
  41275. {
  41276. name: "Saturn",
  41277. height: math.unit(58232*2, "km")
  41278. },
  41279. {
  41280. name: "Jupiter",
  41281. height: math.unit(69911*2, "km"),
  41282. default: true
  41283. },
  41284. {
  41285. name: "HD 100546 b",
  41286. height: math.unit(482938, "km")
  41287. },
  41288. ]
  41289. ))
  41290. characterMakers.push(() => makeCharacter(
  41291. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41292. {
  41293. front: {
  41294. height: math.unit(1.7, "feet"),
  41295. weight: math.unit(50, "lb"),
  41296. name: "Front",
  41297. image: {
  41298. source: "./media/characters/dechroma/front.svg",
  41299. extra: 1095/859,
  41300. bottom: 64/1159
  41301. }
  41302. },
  41303. },
  41304. [
  41305. {
  41306. name: "Normal",
  41307. height: math.unit(1.7, "feet"),
  41308. default: true
  41309. },
  41310. ]
  41311. ))
  41312. characterMakers.push(() => makeCharacter(
  41313. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41314. {
  41315. side: {
  41316. height: math.unit(30, "feet"),
  41317. name: "Side",
  41318. image: {
  41319. source: "./media/characters/veluren-thanazel/side.svg",
  41320. extra: 1611/633,
  41321. bottom: 118/1729
  41322. }
  41323. },
  41324. front: {
  41325. height: math.unit(30, "feet"),
  41326. name: "Front",
  41327. image: {
  41328. source: "./media/characters/veluren-thanazel/front.svg",
  41329. extra: 1486/636,
  41330. bottom: 238/1724
  41331. }
  41332. },
  41333. head: {
  41334. height: math.unit(21.4, "feet"),
  41335. name: "Head",
  41336. image: {
  41337. source: "./media/characters/veluren-thanazel/head.svg"
  41338. }
  41339. },
  41340. genitals: {
  41341. height: math.unit(19.4, "feet"),
  41342. name: "Genitals",
  41343. image: {
  41344. source: "./media/characters/veluren-thanazel/genitals.svg"
  41345. }
  41346. },
  41347. },
  41348. [
  41349. {
  41350. name: "Social",
  41351. height: math.unit(6, "feet")
  41352. },
  41353. {
  41354. name: "Play",
  41355. height: math.unit(12, "feet")
  41356. },
  41357. {
  41358. name: "True",
  41359. height: math.unit(30, "feet"),
  41360. default: true
  41361. },
  41362. ]
  41363. ))
  41364. characterMakers.push(() => makeCharacter(
  41365. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41366. {
  41367. front: {
  41368. height: math.unit(7 + 6/12, "feet"),
  41369. weight: math.unit(500, "kg"),
  41370. name: "Front",
  41371. image: {
  41372. source: "./media/characters/arcturas/front.svg",
  41373. extra: 1700/1500,
  41374. bottom: 145/1845
  41375. }
  41376. },
  41377. },
  41378. [
  41379. {
  41380. name: "Normal",
  41381. height: math.unit(7 + 6/12, "feet"),
  41382. default: true
  41383. },
  41384. ]
  41385. ))
  41386. characterMakers.push(() => makeCharacter(
  41387. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41388. {
  41389. side: {
  41390. height: math.unit(6, "feet"),
  41391. weight: math.unit(2, "tons"),
  41392. name: "Side",
  41393. image: {
  41394. source: "./media/characters/vitaen/side.svg",
  41395. extra: 1157/617,
  41396. bottom: 122/1279
  41397. }
  41398. },
  41399. },
  41400. [
  41401. {
  41402. name: "Normal",
  41403. height: math.unit(6, "feet"),
  41404. default: true
  41405. },
  41406. ]
  41407. ))
  41408. characterMakers.push(() => makeCharacter(
  41409. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41410. {
  41411. front: {
  41412. height: math.unit(19, "feet"),
  41413. name: "Front",
  41414. image: {
  41415. source: "./media/characters/fia-dreamweaver/front.svg",
  41416. extra: 1630/1504,
  41417. bottom: 25/1655
  41418. }
  41419. },
  41420. },
  41421. [
  41422. {
  41423. name: "Normal",
  41424. height: math.unit(19, "feet"),
  41425. default: true
  41426. },
  41427. ]
  41428. ))
  41429. characterMakers.push(() => makeCharacter(
  41430. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41431. {
  41432. front: {
  41433. height: math.unit(5 + 4/12, "feet"),
  41434. name: "Front",
  41435. image: {
  41436. source: "./media/characters/artan/front.svg",
  41437. extra: 1618/1535,
  41438. bottom: 46/1664
  41439. }
  41440. },
  41441. back: {
  41442. height: math.unit(5 + 4/12, "feet"),
  41443. name: "Back",
  41444. image: {
  41445. source: "./media/characters/artan/back.svg",
  41446. extra: 1618/1543,
  41447. bottom: 31/1649
  41448. }
  41449. },
  41450. },
  41451. [
  41452. {
  41453. name: "Normal",
  41454. height: math.unit(5 + 4/12, "feet"),
  41455. default: true
  41456. },
  41457. ]
  41458. ))
  41459. characterMakers.push(() => makeCharacter(
  41460. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41461. {
  41462. side: {
  41463. height: math.unit(182, "cm"),
  41464. weight: math.unit(1000, "lb"),
  41465. name: "Side",
  41466. image: {
  41467. source: "./media/characters/silver-dragon/side.svg",
  41468. extra: 710/287,
  41469. bottom: 88/798
  41470. }
  41471. },
  41472. },
  41473. [
  41474. {
  41475. name: "Normal",
  41476. height: math.unit(182, "cm"),
  41477. default: true
  41478. },
  41479. ]
  41480. ))
  41481. characterMakers.push(() => makeCharacter(
  41482. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41483. {
  41484. side: {
  41485. height: math.unit(6 + 6/12, "feet"),
  41486. weight: math.unit(1.5, "tons"),
  41487. name: "Side",
  41488. image: {
  41489. source: "./media/characters/zephyr/side.svg",
  41490. extra: 1433/586,
  41491. bottom: 109/1542
  41492. }
  41493. },
  41494. },
  41495. [
  41496. {
  41497. name: "Normal",
  41498. height: math.unit(6 + 6/12, "feet"),
  41499. default: true
  41500. },
  41501. ]
  41502. ))
  41503. characterMakers.push(() => makeCharacter(
  41504. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41505. {
  41506. side: {
  41507. height: math.unit(1, "feet"),
  41508. name: "Side",
  41509. image: {
  41510. source: "./media/characters/vixye/side.svg",
  41511. extra: 632/541,
  41512. bottom: 0/632
  41513. }
  41514. },
  41515. },
  41516. [
  41517. {
  41518. name: "Normal",
  41519. height: math.unit(1, "feet"),
  41520. default: true
  41521. },
  41522. {
  41523. name: "True",
  41524. height: math.unit(1e15, "multiverses")
  41525. },
  41526. ]
  41527. ))
  41528. characterMakers.push(() => makeCharacter(
  41529. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41530. {
  41531. front: {
  41532. height: math.unit(8 + 2/12, "feet"),
  41533. weight: math.unit(650, "lb"),
  41534. name: "Front",
  41535. image: {
  41536. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41537. extra: 1174/1137,
  41538. bottom: 82/1256
  41539. }
  41540. },
  41541. back: {
  41542. height: math.unit(8 + 2/12, "feet"),
  41543. weight: math.unit(650, "lb"),
  41544. name: "Back",
  41545. image: {
  41546. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41547. extra: 1204/1157,
  41548. bottom: 46/1250
  41549. }
  41550. },
  41551. },
  41552. [
  41553. {
  41554. name: "Wildform",
  41555. height: math.unit(8 + 2/12, "feet"),
  41556. default: true
  41557. },
  41558. ]
  41559. ))
  41560. characterMakers.push(() => makeCharacter(
  41561. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41562. {
  41563. front: {
  41564. height: math.unit(18, "feet"),
  41565. name: "Front",
  41566. image: {
  41567. source: "./media/characters/cyphin/front.svg",
  41568. extra: 970/886,
  41569. bottom: 42/1012
  41570. }
  41571. },
  41572. back: {
  41573. height: math.unit(18, "feet"),
  41574. name: "Back",
  41575. image: {
  41576. source: "./media/characters/cyphin/back.svg",
  41577. extra: 1009/894,
  41578. bottom: 24/1033
  41579. }
  41580. },
  41581. head: {
  41582. height: math.unit(5.05, "feet"),
  41583. name: "Head",
  41584. image: {
  41585. source: "./media/characters/cyphin/head.svg"
  41586. }
  41587. },
  41588. tailbud: {
  41589. height: math.unit(5, "feet"),
  41590. name: "Tailbud",
  41591. image: {
  41592. source: "./media/characters/cyphin/tailbud.svg"
  41593. }
  41594. },
  41595. },
  41596. [
  41597. ]
  41598. ))
  41599. characterMakers.push(() => makeCharacter(
  41600. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41601. {
  41602. side: {
  41603. height: math.unit(10, "feet"),
  41604. weight: math.unit(6, "tons"),
  41605. name: "Side",
  41606. image: {
  41607. source: "./media/characters/raijin/side.svg",
  41608. extra: 1529/613,
  41609. bottom: 337/1866
  41610. }
  41611. },
  41612. },
  41613. [
  41614. {
  41615. name: "Normal",
  41616. height: math.unit(10, "feet"),
  41617. default: true
  41618. },
  41619. ]
  41620. ))
  41621. characterMakers.push(() => makeCharacter(
  41622. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41623. {
  41624. side: {
  41625. height: math.unit(9, "feet"),
  41626. name: "Side",
  41627. image: {
  41628. source: "./media/characters/nilghais/side.svg",
  41629. extra: 1047/744,
  41630. bottom: 91/1138
  41631. }
  41632. },
  41633. head: {
  41634. height: math.unit(3.14, "feet"),
  41635. name: "Head",
  41636. image: {
  41637. source: "./media/characters/nilghais/head.svg"
  41638. }
  41639. },
  41640. mouth: {
  41641. height: math.unit(4.6, "feet"),
  41642. name: "Mouth",
  41643. image: {
  41644. source: "./media/characters/nilghais/mouth.svg"
  41645. }
  41646. },
  41647. wings: {
  41648. height: math.unit(24, "feet"),
  41649. name: "Wings",
  41650. image: {
  41651. source: "./media/characters/nilghais/wings.svg"
  41652. }
  41653. },
  41654. ass: {
  41655. height: math.unit(6.12, "feet"),
  41656. name: "Ass",
  41657. image: {
  41658. source: "./media/characters/nilghais/ass.svg"
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Normal",
  41665. height: math.unit(9, "feet"),
  41666. default: true
  41667. },
  41668. ]
  41669. ))
  41670. characterMakers.push(() => makeCharacter(
  41671. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41672. {
  41673. regular: {
  41674. height: math.unit(16 + 2/12, "feet"),
  41675. weight: math.unit(2300, "lb"),
  41676. name: "Regular",
  41677. image: {
  41678. source: "./media/characters/zolgar/regular.svg",
  41679. extra: 1246/1004,
  41680. bottom: 124/1370
  41681. }
  41682. },
  41683. boxers: {
  41684. height: math.unit(16 + 2/12, "feet"),
  41685. weight: math.unit(2300, "lb"),
  41686. name: "Boxers",
  41687. image: {
  41688. source: "./media/characters/zolgar/boxers.svg",
  41689. extra: 1246/1004,
  41690. bottom: 124/1370
  41691. }
  41692. },
  41693. armored: {
  41694. height: math.unit(16 + 2/12, "feet"),
  41695. weight: math.unit(2300, "lb"),
  41696. name: "Armored",
  41697. image: {
  41698. source: "./media/characters/zolgar/armored.svg",
  41699. extra: 1246/1004,
  41700. bottom: 124/1370
  41701. }
  41702. },
  41703. goth: {
  41704. height: math.unit(16 + 2/12, "feet"),
  41705. weight: math.unit(2300, "lb"),
  41706. name: "Goth",
  41707. image: {
  41708. source: "./media/characters/zolgar/goth.svg",
  41709. extra: 1246/1004,
  41710. bottom: 124/1370
  41711. }
  41712. },
  41713. },
  41714. [
  41715. {
  41716. name: "Shrunken Down",
  41717. height: math.unit(9 + 2/12, "feet")
  41718. },
  41719. {
  41720. name: "Normal",
  41721. height: math.unit(16 + 2/12, "feet"),
  41722. default: true
  41723. },
  41724. ]
  41725. ))
  41726. characterMakers.push(() => makeCharacter(
  41727. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41728. {
  41729. front: {
  41730. height: math.unit(6, "feet"),
  41731. weight: math.unit(168, "lb"),
  41732. name: "Front",
  41733. image: {
  41734. source: "./media/characters/luca/front.svg",
  41735. extra: 841/667,
  41736. bottom: 102/943
  41737. }
  41738. },
  41739. },
  41740. [
  41741. {
  41742. name: "Normal",
  41743. height: math.unit(6, "feet"),
  41744. default: true
  41745. },
  41746. ]
  41747. ))
  41748. characterMakers.push(() => makeCharacter(
  41749. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41750. {
  41751. side: {
  41752. height: math.unit(7 + 3/12, "feet"),
  41753. weight: math.unit(312, "lb"),
  41754. name: "Side",
  41755. image: {
  41756. source: "./media/characters/zezo/side.svg",
  41757. extra: 1192/1067,
  41758. bottom: 63/1255
  41759. }
  41760. },
  41761. },
  41762. [
  41763. {
  41764. name: "Normal",
  41765. height: math.unit(7 + 3/12, "feet"),
  41766. default: true
  41767. },
  41768. ]
  41769. ))
  41770. characterMakers.push(() => makeCharacter(
  41771. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41772. {
  41773. front: {
  41774. height: math.unit(5 + 5/12, "feet"),
  41775. weight: math.unit(170, "lb"),
  41776. name: "Front",
  41777. image: {
  41778. source: "./media/characters/mayso/front.svg",
  41779. extra: 1215/1108,
  41780. bottom: 16/1231
  41781. }
  41782. },
  41783. },
  41784. [
  41785. {
  41786. name: "Normal",
  41787. height: math.unit(5 + 5/12, "feet"),
  41788. default: true
  41789. },
  41790. ]
  41791. ))
  41792. characterMakers.push(() => makeCharacter(
  41793. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41794. {
  41795. front: {
  41796. height: math.unit(4 + 3/12, "feet"),
  41797. weight: math.unit(80, "lb"),
  41798. name: "Front",
  41799. image: {
  41800. source: "./media/characters/hess/front.svg",
  41801. extra: 1200/1123,
  41802. bottom: 16/1216
  41803. }
  41804. },
  41805. },
  41806. [
  41807. {
  41808. name: "Normal",
  41809. height: math.unit(4 + 3/12, "feet"),
  41810. default: true
  41811. },
  41812. ]
  41813. ))
  41814. characterMakers.push(() => makeCharacter(
  41815. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41816. {
  41817. front: {
  41818. height: math.unit(1.9, "meters"),
  41819. name: "Front",
  41820. image: {
  41821. source: "./media/characters/ashgar/front.svg",
  41822. extra: 1177/1146,
  41823. bottom: 99/1276
  41824. }
  41825. },
  41826. back: {
  41827. height: math.unit(1.9, "meters"),
  41828. name: "Back",
  41829. image: {
  41830. source: "./media/characters/ashgar/back.svg",
  41831. extra: 1201/1183,
  41832. bottom: 53/1254
  41833. }
  41834. },
  41835. feral: {
  41836. height: math.unit(1.4, "meters"),
  41837. name: "Feral",
  41838. image: {
  41839. source: "./media/characters/ashgar/feral.svg",
  41840. extra: 370/345,
  41841. bottom: 45/415
  41842. }
  41843. },
  41844. },
  41845. [
  41846. {
  41847. name: "Normal",
  41848. height: math.unit(1.9, "meters"),
  41849. default: true
  41850. },
  41851. ]
  41852. ))
  41853. characterMakers.push(() => makeCharacter(
  41854. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41855. {
  41856. regular: {
  41857. height: math.unit(6, "feet"),
  41858. weight: math.unit(220, "lb"),
  41859. name: "Regular",
  41860. image: {
  41861. source: "./media/characters/phillip/regular.svg",
  41862. extra: 1373/1277,
  41863. bottom: 75/1448
  41864. }
  41865. },
  41866. dressed: {
  41867. height: math.unit(6, "feet"),
  41868. weight: math.unit(220, "lb"),
  41869. name: "Dressed",
  41870. image: {
  41871. source: "./media/characters/phillip/dressed.svg",
  41872. extra: 1373/1277,
  41873. bottom: 75/1448
  41874. }
  41875. },
  41876. paw: {
  41877. height: math.unit(1.44, "feet"),
  41878. name: "Paw",
  41879. image: {
  41880. source: "./media/characters/phillip/paw.svg"
  41881. }
  41882. },
  41883. },
  41884. [
  41885. {
  41886. name: "Normal",
  41887. height: math.unit(6, "feet"),
  41888. default: true
  41889. },
  41890. ]
  41891. ))
  41892. characterMakers.push(() => makeCharacter(
  41893. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41894. {
  41895. side: {
  41896. height: math.unit(42, "feet"),
  41897. name: "Side",
  41898. image: {
  41899. source: "./media/characters/uvula/side.svg",
  41900. extra: 683/586,
  41901. bottom: 60/743
  41902. }
  41903. },
  41904. front: {
  41905. height: math.unit(42, "feet"),
  41906. name: "Front",
  41907. image: {
  41908. source: "./media/characters/uvula/front.svg",
  41909. extra: 705/613,
  41910. bottom: 54/759
  41911. }
  41912. },
  41913. maw: {
  41914. height: math.unit(23.5, "feet"),
  41915. name: "Maw",
  41916. image: {
  41917. source: "./media/characters/uvula/maw.svg"
  41918. }
  41919. },
  41920. },
  41921. [
  41922. {
  41923. name: "Original Size",
  41924. height: math.unit(14, "inches")
  41925. },
  41926. {
  41927. name: "Human Size",
  41928. height: math.unit(6, "feet")
  41929. },
  41930. {
  41931. name: "Big",
  41932. height: math.unit(42, "feet"),
  41933. default: true
  41934. },
  41935. {
  41936. name: "Bigger",
  41937. height: math.unit(100, "feet")
  41938. },
  41939. ]
  41940. ))
  41941. characterMakers.push(() => makeCharacter(
  41942. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41943. {
  41944. front: {
  41945. height: math.unit(5 + 11/12, "feet"),
  41946. name: "Front",
  41947. image: {
  41948. source: "./media/characters/lannah/front.svg",
  41949. extra: 1208/1113,
  41950. bottom: 97/1305
  41951. }
  41952. },
  41953. },
  41954. [
  41955. {
  41956. name: "Normal",
  41957. height: math.unit(5 + 11/12, "feet"),
  41958. default: true
  41959. },
  41960. ]
  41961. ))
  41962. characterMakers.push(() => makeCharacter(
  41963. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41964. {
  41965. front: {
  41966. height: math.unit(6 + 3/12, "feet"),
  41967. weight: math.unit(3.5, "tons"),
  41968. name: "Front",
  41969. image: {
  41970. source: "./media/characters/emberflame/front.svg",
  41971. extra: 1198/672,
  41972. bottom: 82/1280
  41973. }
  41974. },
  41975. side: {
  41976. height: math.unit(6 + 3/12, "feet"),
  41977. weight: math.unit(3.5, "tons"),
  41978. name: "Side",
  41979. image: {
  41980. source: "./media/characters/emberflame/side.svg",
  41981. extra: 938/527,
  41982. bottom: 56/994
  41983. }
  41984. },
  41985. },
  41986. [
  41987. {
  41988. name: "Normal",
  41989. height: math.unit(6 + 3/12, "feet"),
  41990. default: true
  41991. },
  41992. ]
  41993. ))
  41994. characterMakers.push(() => makeCharacter(
  41995. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41996. {
  41997. side: {
  41998. height: math.unit(17.5, "feet"),
  41999. weight: math.unit(35, "tons"),
  42000. name: "Side",
  42001. image: {
  42002. source: "./media/characters/sophie-ambrose/side.svg",
  42003. extra: 1573/1242,
  42004. bottom: 71/1644
  42005. }
  42006. },
  42007. maw: {
  42008. height: math.unit(7.4, "feet"),
  42009. name: "Maw",
  42010. image: {
  42011. source: "./media/characters/sophie-ambrose/maw.svg"
  42012. }
  42013. },
  42014. },
  42015. [
  42016. {
  42017. name: "Normal",
  42018. height: math.unit(17.5, "feet"),
  42019. default: true
  42020. },
  42021. ]
  42022. ))
  42023. characterMakers.push(() => makeCharacter(
  42024. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42025. {
  42026. front: {
  42027. height: math.unit(280, "feet"),
  42028. weight: math.unit(550, "tons"),
  42029. name: "Front",
  42030. image: {
  42031. source: "./media/characters/king-mugi/front.svg",
  42032. extra: 1102/947,
  42033. bottom: 104/1206
  42034. }
  42035. },
  42036. },
  42037. [
  42038. {
  42039. name: "King Mugi",
  42040. height: math.unit(280, "feet"),
  42041. default: true
  42042. },
  42043. ]
  42044. ))
  42045. characterMakers.push(() => makeCharacter(
  42046. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42047. {
  42048. front: {
  42049. height: math.unit(64, "meters"),
  42050. name: "Front",
  42051. image: {
  42052. source: "./media/characters/nova-fox/front.svg",
  42053. extra: 1310/1246,
  42054. bottom: 65/1375
  42055. }
  42056. },
  42057. },
  42058. [
  42059. {
  42060. name: "Macro",
  42061. height: math.unit(64, "meters"),
  42062. default: true
  42063. },
  42064. ]
  42065. ))
  42066. characterMakers.push(() => makeCharacter(
  42067. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42068. {
  42069. front: {
  42070. height: math.unit(6 + 3/12, "feet"),
  42071. weight: math.unit(170, "lb"),
  42072. name: "Front",
  42073. image: {
  42074. source: "./media/characters/sam-bat/front.svg",
  42075. extra: 1601/1411,
  42076. bottom: 125/1726
  42077. }
  42078. },
  42079. back: {
  42080. height: math.unit(6 + 3/12, "feet"),
  42081. weight: math.unit(170, "lb"),
  42082. name: "Back",
  42083. image: {
  42084. source: "./media/characters/sam-bat/back.svg",
  42085. extra: 1577/1405,
  42086. bottom: 58/1635
  42087. }
  42088. },
  42089. },
  42090. [
  42091. {
  42092. name: "Normal",
  42093. height: math.unit(6 + 3/12, "feet"),
  42094. default: true
  42095. },
  42096. ]
  42097. ))
  42098. characterMakers.push(() => makeCharacter(
  42099. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42100. {
  42101. front: {
  42102. height: math.unit(59, "feet"),
  42103. weight: math.unit(40000, "lb"),
  42104. name: "Front",
  42105. image: {
  42106. source: "./media/characters/inari/front.svg",
  42107. extra: 1884/1350,
  42108. bottom: 95/1979
  42109. }
  42110. },
  42111. },
  42112. [
  42113. {
  42114. name: "Gigantamax",
  42115. height: math.unit(59, "feet"),
  42116. default: true
  42117. },
  42118. ]
  42119. ))
  42120. characterMakers.push(() => makeCharacter(
  42121. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42122. {
  42123. front: {
  42124. height: math.unit(5 + 8/12, "feet"),
  42125. name: "Front",
  42126. image: {
  42127. source: "./media/characters/elizabeth/front.svg",
  42128. extra: 1395/1298,
  42129. bottom: 54/1449
  42130. }
  42131. },
  42132. mouth: {
  42133. height: math.unit(1.97, "feet"),
  42134. name: "Mouth",
  42135. image: {
  42136. source: "./media/characters/elizabeth/mouth.svg"
  42137. }
  42138. },
  42139. foot: {
  42140. height: math.unit(1.17, "feet"),
  42141. name: "Foot",
  42142. image: {
  42143. source: "./media/characters/elizabeth/foot.svg"
  42144. }
  42145. },
  42146. },
  42147. [
  42148. {
  42149. name: "Normal",
  42150. height: math.unit(5 + 8/12, "feet"),
  42151. default: true
  42152. },
  42153. {
  42154. name: "Minimacro",
  42155. height: math.unit(18, "feet")
  42156. },
  42157. {
  42158. name: "Macro",
  42159. height: math.unit(180, "feet")
  42160. },
  42161. ]
  42162. ))
  42163. characterMakers.push(() => makeCharacter(
  42164. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42165. {
  42166. front: {
  42167. height: math.unit(5 + 2/12, "feet"),
  42168. name: "Front",
  42169. image: {
  42170. source: "./media/characters/october-gossamer/front.svg",
  42171. extra: 505/454,
  42172. bottom: 7/512
  42173. }
  42174. },
  42175. back: {
  42176. height: math.unit(5 + 2/12, "feet"),
  42177. name: "Back",
  42178. image: {
  42179. source: "./media/characters/october-gossamer/back.svg",
  42180. extra: 501/454,
  42181. bottom: 11/512
  42182. }
  42183. },
  42184. },
  42185. [
  42186. {
  42187. name: "Normal",
  42188. height: math.unit(5 + 2/12, "feet"),
  42189. default: true
  42190. },
  42191. ]
  42192. ))
  42193. characterMakers.push(() => makeCharacter(
  42194. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42195. {
  42196. front: {
  42197. height: math.unit(5, "feet"),
  42198. name: "Front",
  42199. image: {
  42200. source: "./media/characters/epiglottis/front.svg",
  42201. extra: 923/849,
  42202. bottom: 17/940
  42203. }
  42204. },
  42205. },
  42206. [
  42207. {
  42208. name: "Original Size",
  42209. height: math.unit(10, "inches")
  42210. },
  42211. {
  42212. name: "Human Size",
  42213. height: math.unit(5, "feet"),
  42214. default: true
  42215. },
  42216. {
  42217. name: "Big",
  42218. height: math.unit(25, "feet")
  42219. },
  42220. {
  42221. name: "Bigger",
  42222. height: math.unit(50, "feet")
  42223. },
  42224. {
  42225. name: "oh lawd",
  42226. height: math.unit(75, "feet")
  42227. },
  42228. ]
  42229. ))
  42230. characterMakers.push(() => makeCharacter(
  42231. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42232. {
  42233. front: {
  42234. height: math.unit(2 + 4/12, "feet"),
  42235. weight: math.unit(60, "lb"),
  42236. name: "Front",
  42237. image: {
  42238. source: "./media/characters/lerm/front.svg",
  42239. extra: 796/790,
  42240. bottom: 79/875
  42241. }
  42242. },
  42243. },
  42244. [
  42245. {
  42246. name: "Normal",
  42247. height: math.unit(2 + 4/12, "feet"),
  42248. default: true
  42249. },
  42250. ]
  42251. ))
  42252. characterMakers.push(() => makeCharacter(
  42253. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42254. {
  42255. front: {
  42256. height: math.unit(5.5, "feet"),
  42257. weight: math.unit(130, "lb"),
  42258. name: "Front",
  42259. image: {
  42260. source: "./media/characters/xena-nebadon/front.svg",
  42261. extra: 1828/1730,
  42262. bottom: 79/1907
  42263. }
  42264. },
  42265. },
  42266. [
  42267. {
  42268. name: "Tiny Puppy",
  42269. height: math.unit(3, "inches")
  42270. },
  42271. {
  42272. name: "Normal",
  42273. height: math.unit(5.5, "feet"),
  42274. default: true
  42275. },
  42276. {
  42277. name: "Lotta Lady",
  42278. height: math.unit(12, "feet")
  42279. },
  42280. {
  42281. name: "Pretty Big",
  42282. height: math.unit(100, "feet")
  42283. },
  42284. {
  42285. name: "Big",
  42286. height: math.unit(500, "feet")
  42287. },
  42288. {
  42289. name: "Skyscraper Toys",
  42290. height: math.unit(2500, "feet")
  42291. },
  42292. {
  42293. name: "Plane Catcher",
  42294. height: math.unit(8, "miles")
  42295. },
  42296. {
  42297. name: "Planet Toys",
  42298. height: math.unit(15, "earths")
  42299. },
  42300. {
  42301. name: "Stardust",
  42302. height: math.unit(0.25, "galaxies")
  42303. },
  42304. {
  42305. name: "Snacks",
  42306. height: math.unit(70, "universes")
  42307. },
  42308. ]
  42309. ))
  42310. characterMakers.push(() => makeCharacter(
  42311. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42312. {
  42313. front: {
  42314. height: math.unit(1.6, "meters"),
  42315. weight: math.unit(60, "kg"),
  42316. name: "Front",
  42317. image: {
  42318. source: "./media/characters/bounty/front.svg",
  42319. extra: 1426/1308,
  42320. bottom: 15/1441
  42321. }
  42322. },
  42323. back: {
  42324. height: math.unit(1.6, "meters"),
  42325. weight: math.unit(60, "kg"),
  42326. name: "Back",
  42327. image: {
  42328. source: "./media/characters/bounty/back.svg",
  42329. extra: 1417/1307,
  42330. bottom: 8/1425
  42331. }
  42332. },
  42333. },
  42334. [
  42335. {
  42336. name: "Normal",
  42337. height: math.unit(1.6, "meters"),
  42338. default: true
  42339. },
  42340. {
  42341. name: "Macro",
  42342. height: math.unit(300, "meters")
  42343. },
  42344. ]
  42345. ))
  42346. characterMakers.push(() => makeCharacter(
  42347. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42348. {
  42349. front: {
  42350. height: math.unit(2 + 8/12, "feet"),
  42351. weight: math.unit(15, "lb"),
  42352. name: "Front",
  42353. image: {
  42354. source: "./media/characters/mochi/front.svg",
  42355. extra: 1022/852,
  42356. bottom: 435/1457
  42357. }
  42358. },
  42359. back: {
  42360. height: math.unit(2 + 8/12, "feet"),
  42361. weight: math.unit(15, "lb"),
  42362. name: "Back",
  42363. image: {
  42364. source: "./media/characters/mochi/back.svg",
  42365. extra: 1335/1119,
  42366. bottom: 39/1374
  42367. }
  42368. },
  42369. bird: {
  42370. height: math.unit(2 + 8/12, "feet"),
  42371. weight: math.unit(15, "lb"),
  42372. name: "Bird",
  42373. image: {
  42374. source: "./media/characters/mochi/bird.svg",
  42375. extra: 1251/1113,
  42376. bottom: 178/1429
  42377. }
  42378. },
  42379. kaiju: {
  42380. height: math.unit(154, "feet"),
  42381. weight: math.unit(1e7, "lb"),
  42382. name: "Kaiju",
  42383. image: {
  42384. source: "./media/characters/mochi/kaiju.svg",
  42385. extra: 460/324,
  42386. bottom: 40/500
  42387. }
  42388. },
  42389. head: {
  42390. height: math.unit(1.21, "feet"),
  42391. name: "Head",
  42392. image: {
  42393. source: "./media/characters/mochi/head.svg"
  42394. }
  42395. },
  42396. alternateTail: {
  42397. height: math.unit(2 + 8/12, "feet"),
  42398. weight: math.unit(45, "lb"),
  42399. name: "Alternate Tail",
  42400. image: {
  42401. source: "./media/characters/mochi/alternate-tail.svg",
  42402. extra: 139/76,
  42403. bottom: 45/184
  42404. }
  42405. },
  42406. },
  42407. [
  42408. {
  42409. name: "Micro",
  42410. height: math.unit(2, "inches")
  42411. },
  42412. {
  42413. name: "Normal",
  42414. height: math.unit(2 + 8/12, "feet"),
  42415. default: true
  42416. },
  42417. {
  42418. name: "Macro",
  42419. height: math.unit(106, "feet")
  42420. },
  42421. ]
  42422. ))
  42423. characterMakers.push(() => makeCharacter(
  42424. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42425. {
  42426. front: {
  42427. height: math.unit(5.67, "feet"),
  42428. weight: math.unit(135, "lb"),
  42429. name: "Front",
  42430. image: {
  42431. source: "./media/characters/sarel/front.svg",
  42432. extra: 865/788,
  42433. bottom: 97/962
  42434. }
  42435. },
  42436. back: {
  42437. height: math.unit(5.67, "feet"),
  42438. weight: math.unit(135, "lb"),
  42439. name: "Back",
  42440. image: {
  42441. source: "./media/characters/sarel/back.svg",
  42442. extra: 857/777,
  42443. bottom: 32/889
  42444. }
  42445. },
  42446. chozoan: {
  42447. height: math.unit(5.67, "feet"),
  42448. weight: math.unit(135, "lb"),
  42449. name: "Chozoan",
  42450. image: {
  42451. source: "./media/characters/sarel/chozoan.svg",
  42452. extra: 865/788,
  42453. bottom: 97/962
  42454. }
  42455. },
  42456. current: {
  42457. height: math.unit(5.67, "feet"),
  42458. weight: math.unit(135, "lb"),
  42459. name: "Current",
  42460. image: {
  42461. source: "./media/characters/sarel/current.svg",
  42462. extra: 865/788,
  42463. bottom: 97/962
  42464. }
  42465. },
  42466. head: {
  42467. height: math.unit(1.77, "feet"),
  42468. name: "Head",
  42469. image: {
  42470. source: "./media/characters/sarel/head.svg"
  42471. }
  42472. },
  42473. claws: {
  42474. height: math.unit(1.8, "feet"),
  42475. name: "Claws",
  42476. image: {
  42477. source: "./media/characters/sarel/claws.svg"
  42478. }
  42479. },
  42480. clawsAlt: {
  42481. height: math.unit(1.8, "feet"),
  42482. name: "Claws-alt",
  42483. image: {
  42484. source: "./media/characters/sarel/claws-alt.svg"
  42485. }
  42486. },
  42487. },
  42488. [
  42489. {
  42490. name: "Normal",
  42491. height: math.unit(5.67, "feet"),
  42492. default: true
  42493. },
  42494. ]
  42495. ))
  42496. characterMakers.push(() => makeCharacter(
  42497. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42498. {
  42499. front: {
  42500. height: math.unit(5500, "feet"),
  42501. name: "Front",
  42502. image: {
  42503. source: "./media/characters/alyonia/front.svg",
  42504. extra: 1200/1135,
  42505. bottom: 29/1229
  42506. }
  42507. },
  42508. back: {
  42509. height: math.unit(5500, "feet"),
  42510. name: "Back",
  42511. image: {
  42512. source: "./media/characters/alyonia/back.svg",
  42513. extra: 1205/1138,
  42514. bottom: 10/1215
  42515. }
  42516. },
  42517. },
  42518. [
  42519. {
  42520. name: "Small",
  42521. height: math.unit(10, "feet")
  42522. },
  42523. {
  42524. name: "Macro",
  42525. height: math.unit(500, "feet")
  42526. },
  42527. {
  42528. name: "Mega Macro",
  42529. height: math.unit(5500, "feet"),
  42530. default: true
  42531. },
  42532. {
  42533. name: "Mega Macro+",
  42534. height: math.unit(500000, "feet")
  42535. },
  42536. {
  42537. name: "Giga Macro",
  42538. height: math.unit(3000, "miles")
  42539. },
  42540. {
  42541. name: "Tera Macro",
  42542. height: math.unit(2.8e6, "miles")
  42543. },
  42544. {
  42545. name: "Galactic",
  42546. height: math.unit(120000, "lightyears")
  42547. },
  42548. ]
  42549. ))
  42550. characterMakers.push(() => makeCharacter(
  42551. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42552. {
  42553. werewolf: {
  42554. height: math.unit(8, "feet"),
  42555. weight: math.unit(425, "lb"),
  42556. name: "Werewolf",
  42557. image: {
  42558. source: "./media/characters/autumn/werewolf.svg",
  42559. extra: 2154/2031,
  42560. bottom: 160/2314
  42561. }
  42562. },
  42563. human: {
  42564. height: math.unit(5 + 8/12, "feet"),
  42565. weight: math.unit(150, "lb"),
  42566. name: "Human",
  42567. image: {
  42568. source: "./media/characters/autumn/human.svg",
  42569. extra: 1200/1149,
  42570. bottom: 30/1230
  42571. }
  42572. },
  42573. },
  42574. [
  42575. {
  42576. name: "Normal",
  42577. height: math.unit(8, "feet"),
  42578. default: true
  42579. },
  42580. ]
  42581. ))
  42582. characterMakers.push(() => makeCharacter(
  42583. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42584. {
  42585. front: {
  42586. height: math.unit(8 + 5/12, "feet"),
  42587. weight: math.unit(825, "lb"),
  42588. name: "Front",
  42589. image: {
  42590. source: "./media/characters/cobalt-charizard/front.svg",
  42591. extra: 1268/1155,
  42592. bottom: 122/1390
  42593. }
  42594. },
  42595. side: {
  42596. height: math.unit(8 + 5/12, "feet"),
  42597. weight: math.unit(825, "lb"),
  42598. name: "Side",
  42599. image: {
  42600. source: "./media/characters/cobalt-charizard/side.svg",
  42601. extra: 1348/1257,
  42602. bottom: 58/1406
  42603. }
  42604. },
  42605. gMax: {
  42606. height: math.unit(134 + 11/12, "feet"),
  42607. name: "G-Max",
  42608. image: {
  42609. source: "./media/characters/cobalt-charizard/g-max.svg",
  42610. extra: 1835/1541,
  42611. bottom: 151/1986
  42612. }
  42613. },
  42614. },
  42615. [
  42616. {
  42617. name: "Normal",
  42618. height: math.unit(8 + 5/12, "feet"),
  42619. default: true
  42620. },
  42621. ]
  42622. ))
  42623. characterMakers.push(() => makeCharacter(
  42624. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42625. {
  42626. front: {
  42627. height: math.unit(6 + 3/12, "feet"),
  42628. weight: math.unit(210, "lb"),
  42629. name: "Front",
  42630. image: {
  42631. source: "./media/characters/stella/front.svg",
  42632. extra: 3549/3335,
  42633. bottom: 51/3600
  42634. }
  42635. },
  42636. },
  42637. [
  42638. {
  42639. name: "Normal",
  42640. height: math.unit(6 + 3/12, "feet"),
  42641. default: true
  42642. },
  42643. ]
  42644. ))
  42645. characterMakers.push(() => makeCharacter(
  42646. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42647. {
  42648. front: {
  42649. height: math.unit(5, "feet"),
  42650. weight: math.unit(90, "lb"),
  42651. name: "Front",
  42652. image: {
  42653. source: "./media/characters/riley-bishop/front.svg",
  42654. extra: 1450/1428,
  42655. bottom: 152/1602
  42656. }
  42657. },
  42658. },
  42659. [
  42660. {
  42661. name: "Normal",
  42662. height: math.unit(5, "feet"),
  42663. default: true
  42664. },
  42665. ]
  42666. ))
  42667. characterMakers.push(() => makeCharacter(
  42668. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42669. {
  42670. side: {
  42671. height: math.unit(8 + 2/12, "feet"),
  42672. weight: math.unit(500, "kg"),
  42673. name: "Side",
  42674. image: {
  42675. source: "./media/characters/theo-arcanine/side.svg",
  42676. extra: 1342/1074,
  42677. bottom: 111/1453
  42678. }
  42679. },
  42680. },
  42681. [
  42682. {
  42683. name: "Normal",
  42684. height: math.unit(8 + 2/12, "feet"),
  42685. default: true
  42686. },
  42687. ]
  42688. ))
  42689. characterMakers.push(() => makeCharacter(
  42690. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42691. {
  42692. front: {
  42693. height: math.unit(4, "feet"),
  42694. name: "Front",
  42695. image: {
  42696. source: "./media/characters/kali/front.svg",
  42697. extra: 1921/1357,
  42698. bottom: 70/1991
  42699. }
  42700. },
  42701. },
  42702. [
  42703. {
  42704. name: "Normal",
  42705. height: math.unit(4, "feet"),
  42706. default: true
  42707. },
  42708. {
  42709. name: "Macro",
  42710. height: math.unit(32, "meters")
  42711. },
  42712. {
  42713. name: "Macro+",
  42714. height: math.unit(150, "meters")
  42715. },
  42716. {
  42717. name: "Megamacro",
  42718. height: math.unit(7500, "meters")
  42719. },
  42720. {
  42721. name: "Megamacro+",
  42722. height: math.unit(80, "kilometers")
  42723. },
  42724. ]
  42725. ))
  42726. characterMakers.push(() => makeCharacter(
  42727. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42728. {
  42729. side: {
  42730. height: math.unit(5 + 11/12, "feet"),
  42731. weight: math.unit(236, "lb"),
  42732. name: "Side",
  42733. image: {
  42734. source: "./media/characters/gapp/side.svg",
  42735. extra: 775/340,
  42736. bottom: 58/833
  42737. }
  42738. },
  42739. mouth: {
  42740. height: math.unit(2.98, "feet"),
  42741. name: "Mouth",
  42742. image: {
  42743. source: "./media/characters/gapp/mouth.svg"
  42744. }
  42745. },
  42746. },
  42747. [
  42748. {
  42749. name: "Normal",
  42750. height: math.unit(5 + 1/12, "feet"),
  42751. default: true
  42752. },
  42753. ]
  42754. ))
  42755. characterMakers.push(() => makeCharacter(
  42756. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42757. {
  42758. front: {
  42759. height: math.unit(6, "feet"),
  42760. name: "Front",
  42761. image: {
  42762. source: "./media/characters/persephone/front.svg",
  42763. extra: 1895/1717,
  42764. bottom: 96/1991
  42765. }
  42766. },
  42767. back: {
  42768. height: math.unit(6, "feet"),
  42769. name: "Back",
  42770. image: {
  42771. source: "./media/characters/persephone/back.svg",
  42772. extra: 1868/1679,
  42773. bottom: 26/1894
  42774. }
  42775. },
  42776. casual: {
  42777. height: math.unit(6, "feet"),
  42778. name: "Casual",
  42779. image: {
  42780. source: "./media/characters/persephone/casual.svg",
  42781. extra: 1713/1541,
  42782. bottom: 76/1789
  42783. }
  42784. },
  42785. },
  42786. [
  42787. {
  42788. name: "Human Size",
  42789. height: math.unit(6, "feet")
  42790. },
  42791. {
  42792. name: "Big Steppy",
  42793. height: math.unit(600, "meters"),
  42794. default: true
  42795. },
  42796. {
  42797. name: "Galaxy Brain",
  42798. height: math.unit(1, "zettameter")
  42799. },
  42800. ]
  42801. ))
  42802. characterMakers.push(() => makeCharacter(
  42803. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42804. {
  42805. front: {
  42806. height: math.unit(1.85, "meters"),
  42807. name: "Front",
  42808. image: {
  42809. source: "./media/characters/riley-foxthing/front.svg",
  42810. extra: 1495/1354,
  42811. bottom: 122/1617
  42812. }
  42813. },
  42814. frontAlt: {
  42815. height: math.unit(1.85, "meters"),
  42816. name: "Front (Alt)",
  42817. image: {
  42818. source: "./media/characters/riley-foxthing/front-alt.svg",
  42819. extra: 1572/1389,
  42820. bottom: 116/1688
  42821. }
  42822. },
  42823. },
  42824. [
  42825. {
  42826. name: "Normal Sized",
  42827. height: math.unit(1.85, "meters"),
  42828. default: true
  42829. },
  42830. {
  42831. name: "Quite Sizable",
  42832. height: math.unit(5, "meters")
  42833. },
  42834. {
  42835. name: "Rather Large",
  42836. height: math.unit(20, "meters")
  42837. },
  42838. {
  42839. name: "Macro",
  42840. height: math.unit(450, "meters")
  42841. },
  42842. {
  42843. name: "Giga",
  42844. height: math.unit(5, "km")
  42845. },
  42846. ]
  42847. ))
  42848. characterMakers.push(() => makeCharacter(
  42849. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42850. {
  42851. front: {
  42852. height: math.unit(6, "feet"),
  42853. weight: math.unit(200, "lb"),
  42854. name: "Front",
  42855. image: {
  42856. source: "./media/characters/blizzard/front.svg",
  42857. extra: 1136/990,
  42858. bottom: 136/1272
  42859. }
  42860. },
  42861. back: {
  42862. height: math.unit(6, "feet"),
  42863. weight: math.unit(200, "lb"),
  42864. name: "Back",
  42865. image: {
  42866. source: "./media/characters/blizzard/back.svg",
  42867. extra: 1175/1034,
  42868. bottom: 97/1272
  42869. }
  42870. },
  42871. sitting: {
  42872. height: math.unit(3.725, "feet"),
  42873. weight: math.unit(200, "lb"),
  42874. name: "Sitting",
  42875. image: {
  42876. source: "./media/characters/blizzard/sitting.svg",
  42877. extra: 581/485,
  42878. bottom: 90/671
  42879. }
  42880. },
  42881. frontWizard: {
  42882. height: math.unit(7.9, "feet"),
  42883. weight: math.unit(200, "lb"),
  42884. name: "Front (Wizard)",
  42885. image: {
  42886. source: "./media/characters/blizzard/front-wizard.svg"
  42887. }
  42888. },
  42889. backWizard: {
  42890. height: math.unit(7.9, "feet"),
  42891. weight: math.unit(200, "lb"),
  42892. name: "Back (Wizard)",
  42893. image: {
  42894. source: "./media/characters/blizzard/back-wizard.svg"
  42895. }
  42896. },
  42897. frontNsfw: {
  42898. height: math.unit(6, "feet"),
  42899. weight: math.unit(200, "lb"),
  42900. name: "Front (NSFW)",
  42901. image: {
  42902. source: "./media/characters/blizzard/front-nsfw.svg",
  42903. extra: 1136/990,
  42904. bottom: 136/1272
  42905. }
  42906. },
  42907. backNsfw: {
  42908. height: math.unit(6, "feet"),
  42909. weight: math.unit(200, "lb"),
  42910. name: "Back (NSFW)",
  42911. image: {
  42912. source: "./media/characters/blizzard/back-nsfw.svg",
  42913. extra: 1175/1034,
  42914. bottom: 97/1272
  42915. }
  42916. },
  42917. sittingNsfw: {
  42918. height: math.unit(3.725, "feet"),
  42919. weight: math.unit(200, "lb"),
  42920. name: "Sitting (NSFW)",
  42921. image: {
  42922. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42923. extra: 581/485,
  42924. bottom: 90/671
  42925. }
  42926. },
  42927. wizardFrontNsfw: {
  42928. height: math.unit(7.9, "feet"),
  42929. weight: math.unit(200, "lb"),
  42930. name: "Wizard (Front, NSFW)",
  42931. image: {
  42932. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42933. }
  42934. },
  42935. },
  42936. [
  42937. {
  42938. name: "Normal",
  42939. height: math.unit(6, "feet"),
  42940. default: true
  42941. },
  42942. ]
  42943. ))
  42944. characterMakers.push(() => makeCharacter(
  42945. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42946. {
  42947. front: {
  42948. height: math.unit(5 + 2/12, "feet"),
  42949. name: "Front",
  42950. image: {
  42951. source: "./media/characters/lumi/front.svg",
  42952. extra: 1328/1268,
  42953. bottom: 103/1431
  42954. }
  42955. },
  42956. back: {
  42957. height: math.unit(5 + 2/12, "feet"),
  42958. name: "Back",
  42959. image: {
  42960. source: "./media/characters/lumi/back.svg",
  42961. extra: 1381/1327,
  42962. bottom: 43/1424
  42963. }
  42964. },
  42965. },
  42966. [
  42967. {
  42968. name: "Normal",
  42969. height: math.unit(5 + 2/12, "feet"),
  42970. default: true
  42971. },
  42972. ]
  42973. ))
  42974. characterMakers.push(() => makeCharacter(
  42975. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42976. {
  42977. front: {
  42978. height: math.unit(5 + 9/12, "feet"),
  42979. name: "Front",
  42980. image: {
  42981. source: "./media/characters/aliya-cotton/front.svg",
  42982. extra: 577/564,
  42983. bottom: 29/606
  42984. }
  42985. },
  42986. },
  42987. [
  42988. {
  42989. name: "Normal",
  42990. height: math.unit(5 + 9/12, "feet"),
  42991. default: true
  42992. },
  42993. ]
  42994. ))
  42995. characterMakers.push(() => makeCharacter(
  42996. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42997. {
  42998. front: {
  42999. height: math.unit(2.7, "meters"),
  43000. weight: math.unit(25000, "lb"),
  43001. name: "Front",
  43002. image: {
  43003. source: "./media/characters/noah-luxray/front.svg",
  43004. extra: 1644/825,
  43005. bottom: 339/1983
  43006. }
  43007. },
  43008. side: {
  43009. height: math.unit(2.97, "meters"),
  43010. weight: math.unit(25000, "lb"),
  43011. name: "Side",
  43012. image: {
  43013. source: "./media/characters/noah-luxray/side.svg",
  43014. extra: 1319/650,
  43015. bottom: 163/1482
  43016. }
  43017. },
  43018. dick: {
  43019. height: math.unit(7.4, "feet"),
  43020. weight: math.unit(2500, "lb"),
  43021. name: "Dick",
  43022. image: {
  43023. source: "./media/characters/noah-luxray/dick.svg"
  43024. }
  43025. },
  43026. dickAlt: {
  43027. height: math.unit(10.83, "feet"),
  43028. weight: math.unit(2500, "lb"),
  43029. name: "Dick-alt",
  43030. image: {
  43031. source: "./media/characters/noah-luxray/dick-alt.svg"
  43032. }
  43033. },
  43034. },
  43035. [
  43036. {
  43037. name: "BIG",
  43038. height: math.unit(2.7, "meters"),
  43039. default: true
  43040. },
  43041. ]
  43042. ))
  43043. characterMakers.push(() => makeCharacter(
  43044. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43045. {
  43046. standing: {
  43047. height: math.unit(183, "cm"),
  43048. weight: math.unit(68, "kg"),
  43049. name: "Standing",
  43050. image: {
  43051. source: "./media/characters/arion/standing.svg",
  43052. extra: 1869/1807,
  43053. bottom: 93/1962
  43054. }
  43055. },
  43056. reclining: {
  43057. height: math.unit(70.5, "cm"),
  43058. weight: math.unit(68, "lb"),
  43059. name: "Reclining",
  43060. image: {
  43061. source: "./media/characters/arion/reclining.svg",
  43062. extra: 937/870,
  43063. bottom: 63/1000
  43064. }
  43065. },
  43066. },
  43067. [
  43068. {
  43069. name: "Colossus Size, Low",
  43070. height: math.unit(33, "meters"),
  43071. default: true
  43072. },
  43073. {
  43074. name: "Colossus Size, Mid",
  43075. height: math.unit(52, "meters")
  43076. },
  43077. {
  43078. name: "Colossus Size, High",
  43079. height: math.unit(60, "meters")
  43080. },
  43081. {
  43082. name: "Titan Size, Low",
  43083. height: math.unit(91, "meters"),
  43084. },
  43085. {
  43086. name: "Titan Size, Mid",
  43087. height: math.unit(122, "meters")
  43088. },
  43089. {
  43090. name: "Titan Size, High",
  43091. height: math.unit(162, "meters")
  43092. },
  43093. ]
  43094. ))
  43095. characterMakers.push(() => makeCharacter(
  43096. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43097. {
  43098. front: {
  43099. height: math.unit(53, "meters"),
  43100. name: "Front",
  43101. image: {
  43102. source: "./media/characters/stellar-marbey/front.svg",
  43103. extra: 1913/1805,
  43104. bottom: 92/2005
  43105. }
  43106. },
  43107. back: {
  43108. height: math.unit(53, "meters"),
  43109. name: "Back",
  43110. image: {
  43111. source: "./media/characters/stellar-marbey/back.svg",
  43112. extra: 1960/1851,
  43113. bottom: 28/1988
  43114. }
  43115. },
  43116. mouth: {
  43117. height: math.unit(3.5, "meters"),
  43118. name: "Mouth",
  43119. image: {
  43120. source: "./media/characters/stellar-marbey/mouth.svg"
  43121. }
  43122. },
  43123. },
  43124. [
  43125. {
  43126. name: "Macro",
  43127. height: math.unit(53, "meters"),
  43128. default: true
  43129. },
  43130. ]
  43131. ))
  43132. characterMakers.push(() => makeCharacter(
  43133. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43134. {
  43135. front: {
  43136. height: math.unit(8 + 1/12, "feet"),
  43137. weight: math.unit(233, "lb"),
  43138. name: "Front",
  43139. image: {
  43140. source: "./media/characters/matsu/front.svg",
  43141. extra: 832/772,
  43142. bottom: 40/872
  43143. }
  43144. },
  43145. back: {
  43146. height: math.unit(8 + 1/12, "feet"),
  43147. weight: math.unit(233, "lb"),
  43148. name: "Back",
  43149. image: {
  43150. source: "./media/characters/matsu/back.svg",
  43151. extra: 839/780,
  43152. bottom: 47/886
  43153. }
  43154. },
  43155. },
  43156. [
  43157. {
  43158. name: "Normal",
  43159. height: math.unit(8 + 1/12, "feet"),
  43160. default: true
  43161. },
  43162. ]
  43163. ))
  43164. characterMakers.push(() => makeCharacter(
  43165. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43166. {
  43167. front: {
  43168. height: math.unit(4, "feet"),
  43169. weight: math.unit(148, "lb"),
  43170. name: "Front",
  43171. image: {
  43172. source: "./media/characters/thiz/front.svg",
  43173. extra: 1913/1748,
  43174. bottom: 62/1975
  43175. }
  43176. },
  43177. },
  43178. [
  43179. {
  43180. name: "Normal",
  43181. height: math.unit(4, "feet"),
  43182. default: true
  43183. },
  43184. ]
  43185. ))
  43186. characterMakers.push(() => makeCharacter(
  43187. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43188. {
  43189. front: {
  43190. height: math.unit(7 + 6/12, "feet"),
  43191. weight: math.unit(267, "lb"),
  43192. name: "Front",
  43193. image: {
  43194. source: "./media/characters/marcel/front.svg",
  43195. extra: 1221/1096,
  43196. bottom: 76/1297
  43197. }
  43198. },
  43199. },
  43200. [
  43201. {
  43202. name: "Normal",
  43203. height: math.unit(7 + 6/12, "feet"),
  43204. default: true
  43205. },
  43206. ]
  43207. ))
  43208. characterMakers.push(() => makeCharacter(
  43209. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43210. {
  43211. side: {
  43212. height: math.unit(42, "meters"),
  43213. name: "Side",
  43214. image: {
  43215. source: "./media/characters/flake/side.svg",
  43216. extra: 1525/1306,
  43217. bottom: 209/1734
  43218. }
  43219. },
  43220. },
  43221. [
  43222. {
  43223. name: "Normal",
  43224. height: math.unit(42, "meters"),
  43225. default: true
  43226. },
  43227. ]
  43228. ))
  43229. characterMakers.push(() => makeCharacter(
  43230. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43231. {
  43232. dressed: {
  43233. height: math.unit(6 + 4/12, "feet"),
  43234. weight: math.unit(520, "lb"),
  43235. name: "Dressed",
  43236. image: {
  43237. source: "./media/characters/someonne/dressed.svg",
  43238. extra: 1020/1010,
  43239. bottom: 178/1198
  43240. }
  43241. },
  43242. undressed: {
  43243. height: math.unit(6 + 4/12, "feet"),
  43244. weight: math.unit(520, "lb"),
  43245. name: "Undressed",
  43246. image: {
  43247. source: "./media/characters/someonne/undressed.svg",
  43248. extra: 1019/1014,
  43249. bottom: 169/1188
  43250. }
  43251. },
  43252. },
  43253. [
  43254. {
  43255. name: "Normal",
  43256. height: math.unit(6 + 4/12, "feet"),
  43257. default: true
  43258. },
  43259. ]
  43260. ))
  43261. characterMakers.push(() => makeCharacter(
  43262. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43263. {
  43264. front: {
  43265. height: math.unit(3, "feet"),
  43266. weight: math.unit(30, "lb"),
  43267. name: "Front",
  43268. image: {
  43269. source: "./media/characters/till/front.svg",
  43270. extra: 892/823,
  43271. bottom: 55/947
  43272. }
  43273. },
  43274. },
  43275. [
  43276. {
  43277. name: "Normal",
  43278. height: math.unit(3, "feet"),
  43279. default: true
  43280. },
  43281. ]
  43282. ))
  43283. characterMakers.push(() => makeCharacter(
  43284. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43285. {
  43286. front: {
  43287. height: math.unit(9 + 8/12, "feet"),
  43288. weight: math.unit(800, "lb"),
  43289. name: "Front",
  43290. image: {
  43291. source: "./media/characters/sydney-heki/front.svg",
  43292. extra: 1360/1300,
  43293. bottom: 22/1382
  43294. }
  43295. },
  43296. back: {
  43297. height: math.unit(9 + 8/12, "feet"),
  43298. weight: math.unit(800, "lb"),
  43299. name: "Back",
  43300. image: {
  43301. source: "./media/characters/sydney-heki/back.svg",
  43302. extra: 1356/1293,
  43303. bottom: 12/1368
  43304. }
  43305. },
  43306. frontDressed: {
  43307. height: math.unit(9 + 8/12, "feet"),
  43308. weight: math.unit(800, "lb"),
  43309. name: "Front-dressed",
  43310. image: {
  43311. source: "./media/characters/sydney-heki/front-dressed.svg",
  43312. extra: 1360/1300,
  43313. bottom: 22/1382
  43314. }
  43315. },
  43316. },
  43317. [
  43318. {
  43319. name: "Normal",
  43320. height: math.unit(9 + 8/12, "feet"),
  43321. default: true
  43322. },
  43323. {
  43324. name: "Macro",
  43325. height: math.unit(500, "feet")
  43326. },
  43327. {
  43328. name: "Megamacro",
  43329. height: math.unit(3.6, "miles")
  43330. },
  43331. ]
  43332. ))
  43333. characterMakers.push(() => makeCharacter(
  43334. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43335. {
  43336. front: {
  43337. height: math.unit(200, "cm"),
  43338. weight: math.unit(250, "lb"),
  43339. name: "Front",
  43340. image: {
  43341. source: "./media/characters/fowler-karlsson/front.svg",
  43342. extra: 897/845,
  43343. bottom: 123/1020
  43344. }
  43345. },
  43346. back: {
  43347. height: math.unit(200, "cm"),
  43348. weight: math.unit(250, "lb"),
  43349. name: "Back",
  43350. image: {
  43351. source: "./media/characters/fowler-karlsson/back.svg",
  43352. extra: 999/944,
  43353. bottom: 26/1025
  43354. }
  43355. },
  43356. dick: {
  43357. height: math.unit(1.92, "feet"),
  43358. weight: math.unit(150, "lb"),
  43359. name: "Dick",
  43360. image: {
  43361. source: "./media/characters/fowler-karlsson/dick.svg"
  43362. }
  43363. },
  43364. },
  43365. [
  43366. {
  43367. name: "Normal",
  43368. height: math.unit(200, "cm"),
  43369. default: true
  43370. },
  43371. {
  43372. name: "Smaller Macro",
  43373. height: math.unit(90, "m")
  43374. },
  43375. {
  43376. name: "Macro",
  43377. height: math.unit(150, "m")
  43378. },
  43379. {
  43380. name: "Bigger Macro",
  43381. height: math.unit(300, "m")
  43382. },
  43383. ]
  43384. ))
  43385. characterMakers.push(() => makeCharacter(
  43386. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43387. {
  43388. side: {
  43389. height: math.unit(8 + 2/12, "feet"),
  43390. weight: math.unit(1, "tonne"),
  43391. name: "Side",
  43392. image: {
  43393. source: "./media/characters/rylide/side.svg",
  43394. extra: 1318/1034,
  43395. bottom: 106/1424
  43396. }
  43397. },
  43398. sitting: {
  43399. height: math.unit(303, "cm"),
  43400. weight: math.unit(1, "tonne"),
  43401. name: "Sitting",
  43402. image: {
  43403. source: "./media/characters/rylide/sitting.svg",
  43404. extra: 1303/1103,
  43405. bottom: 36/1339
  43406. }
  43407. },
  43408. },
  43409. [
  43410. {
  43411. name: "Normal",
  43412. height: math.unit(8 + 2/12, "feet"),
  43413. default: true
  43414. },
  43415. ]
  43416. ))
  43417. characterMakers.push(() => makeCharacter(
  43418. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43419. {
  43420. front: {
  43421. height: math.unit(5 + 10/12, "feet"),
  43422. weight: math.unit(160, "lb"),
  43423. name: "Front",
  43424. image: {
  43425. source: "./media/characters/pudask/front.svg",
  43426. extra: 1616/1590,
  43427. bottom: 161/1777
  43428. }
  43429. },
  43430. },
  43431. [
  43432. {
  43433. name: "Ferret Height",
  43434. height: math.unit(2 + 5/12, "feet")
  43435. },
  43436. {
  43437. name: "Canon Height",
  43438. height: math.unit(5 + 10/12, "feet"),
  43439. default: true
  43440. },
  43441. ]
  43442. ))
  43443. characterMakers.push(() => makeCharacter(
  43444. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43445. {
  43446. front: {
  43447. height: math.unit(3 + 6/12, "feet"),
  43448. weight: math.unit(60, "lb"),
  43449. name: "Front",
  43450. image: {
  43451. source: "./media/characters/ramita/front.svg",
  43452. extra: 1402/1232,
  43453. bottom: 62/1464
  43454. }
  43455. },
  43456. dressed: {
  43457. height: math.unit(3 + 6/12, "feet"),
  43458. weight: math.unit(60, "lb"),
  43459. name: "Dressed",
  43460. image: {
  43461. source: "./media/characters/ramita/dressed.svg",
  43462. extra: 1534/1249,
  43463. bottom: 50/1584
  43464. }
  43465. },
  43466. },
  43467. [
  43468. {
  43469. name: "Normal",
  43470. height: math.unit(3 + 6/12, "feet"),
  43471. default: true
  43472. },
  43473. ]
  43474. ))
  43475. characterMakers.push(() => makeCharacter(
  43476. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43477. {
  43478. front: {
  43479. height: math.unit(8, "feet"),
  43480. name: "Front",
  43481. image: {
  43482. source: "./media/characters/ark/front.svg",
  43483. extra: 772/693,
  43484. bottom: 45/817
  43485. }
  43486. },
  43487. },
  43488. [
  43489. {
  43490. name: "Normal",
  43491. height: math.unit(8, "feet"),
  43492. default: true
  43493. },
  43494. ]
  43495. ))
  43496. characterMakers.push(() => makeCharacter(
  43497. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43498. {
  43499. front: {
  43500. height: math.unit(6, "feet"),
  43501. weight: math.unit(250, "lb"),
  43502. volume: math.unit(5/8, "gallons"),
  43503. name: "Front",
  43504. image: {
  43505. source: "./media/characters/ludwig-horn/front.svg",
  43506. extra: 1782/1635,
  43507. bottom: 96/1878
  43508. }
  43509. },
  43510. back: {
  43511. height: math.unit(6, "feet"),
  43512. weight: math.unit(250, "lb"),
  43513. volume: math.unit(5/8, "gallons"),
  43514. name: "Back",
  43515. image: {
  43516. source: "./media/characters/ludwig-horn/back.svg",
  43517. extra: 1874/1729,
  43518. bottom: 27/1901
  43519. }
  43520. },
  43521. dick: {
  43522. height: math.unit(1.05, "feet"),
  43523. weight: math.unit(15, "lb"),
  43524. volume: math.unit(5/8, "gallons"),
  43525. name: "Dick",
  43526. image: {
  43527. source: "./media/characters/ludwig-horn/dick.svg"
  43528. }
  43529. },
  43530. },
  43531. [
  43532. {
  43533. name: "Small",
  43534. height: math.unit(6, "feet")
  43535. },
  43536. {
  43537. name: "Typical",
  43538. height: math.unit(12, "feet"),
  43539. default: true
  43540. },
  43541. {
  43542. name: "Building",
  43543. height: math.unit(80, "feet")
  43544. },
  43545. {
  43546. name: "Town",
  43547. height: math.unit(800, "feet")
  43548. },
  43549. {
  43550. name: "Kingdom",
  43551. height: math.unit(80000, "feet")
  43552. },
  43553. {
  43554. name: "Planet",
  43555. height: math.unit(8000000, "feet")
  43556. },
  43557. {
  43558. name: "Universe",
  43559. height: math.unit(8000000000, "feet")
  43560. },
  43561. {
  43562. name: "Transcended",
  43563. height: math.unit(8e27, "feet")
  43564. },
  43565. ]
  43566. ))
  43567. characterMakers.push(() => makeCharacter(
  43568. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43569. {
  43570. front: {
  43571. height: math.unit(5, "feet"),
  43572. weight: math.unit(50, "kg"),
  43573. name: "Front",
  43574. image: {
  43575. source: "./media/characters/biot-avery/front.svg",
  43576. extra: 1295/1232,
  43577. bottom: 86/1381
  43578. }
  43579. },
  43580. },
  43581. [
  43582. {
  43583. name: "Normal",
  43584. height: math.unit(5, "feet"),
  43585. default: true
  43586. },
  43587. ]
  43588. ))
  43589. characterMakers.push(() => makeCharacter(
  43590. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43591. {
  43592. front: {
  43593. height: math.unit(6, "feet"),
  43594. name: "Front",
  43595. image: {
  43596. source: "./media/characters/kitsune-kiro/front.svg",
  43597. extra: 1270/1158,
  43598. bottom: 42/1312
  43599. }
  43600. },
  43601. frontAlt: {
  43602. height: math.unit(6, "feet"),
  43603. name: "Front-alt",
  43604. image: {
  43605. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43606. extra: 1130/1081,
  43607. bottom: 36/1166
  43608. }
  43609. },
  43610. },
  43611. [
  43612. {
  43613. name: "Smol",
  43614. height: math.unit(3, "feet")
  43615. },
  43616. {
  43617. name: "Normal",
  43618. height: math.unit(6, "feet"),
  43619. default: true
  43620. },
  43621. ]
  43622. ))
  43623. characterMakers.push(() => makeCharacter(
  43624. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43625. {
  43626. front: {
  43627. height: math.unit(6, "feet"),
  43628. weight: math.unit(125, "lb"),
  43629. name: "Front",
  43630. image: {
  43631. source: "./media/characters/jack-thatcher/front.svg",
  43632. extra: 1474/1370,
  43633. bottom: 26/1500
  43634. }
  43635. },
  43636. back: {
  43637. height: math.unit(6, "feet"),
  43638. weight: math.unit(125, "lb"),
  43639. name: "Back",
  43640. image: {
  43641. source: "./media/characters/jack-thatcher/back.svg",
  43642. extra: 1489/1384,
  43643. bottom: 18/1507
  43644. }
  43645. },
  43646. },
  43647. [
  43648. {
  43649. name: "Normal",
  43650. height: math.unit(6, "feet"),
  43651. default: true
  43652. },
  43653. {
  43654. name: "Macro",
  43655. height: math.unit(75, "feet")
  43656. },
  43657. {
  43658. name: "Macro-er",
  43659. height: math.unit(250, "feet")
  43660. },
  43661. ]
  43662. ))
  43663. characterMakers.push(() => makeCharacter(
  43664. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43665. {
  43666. front: {
  43667. height: math.unit(7, "feet"),
  43668. weight: math.unit(110, "kg"),
  43669. name: "Front",
  43670. image: {
  43671. source: "./media/characters/max-hyper/front.svg",
  43672. extra: 1969/1881,
  43673. bottom: 49/2018
  43674. }
  43675. },
  43676. },
  43677. [
  43678. {
  43679. name: "Normal",
  43680. height: math.unit(7, "feet"),
  43681. default: true
  43682. },
  43683. ]
  43684. ))
  43685. characterMakers.push(() => makeCharacter(
  43686. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43687. {
  43688. front: {
  43689. height: math.unit(5 + 5/12, "feet"),
  43690. weight: math.unit(160, "lb"),
  43691. name: "Front",
  43692. image: {
  43693. source: "./media/characters/spook/front.svg",
  43694. extra: 794/791,
  43695. bottom: 54/848
  43696. }
  43697. },
  43698. back: {
  43699. height: math.unit(5 + 5/12, "feet"),
  43700. weight: math.unit(160, "lb"),
  43701. name: "Back",
  43702. image: {
  43703. source: "./media/characters/spook/back.svg",
  43704. extra: 812/798,
  43705. bottom: 32/844
  43706. }
  43707. },
  43708. },
  43709. [
  43710. {
  43711. name: "Normal",
  43712. height: math.unit(5 + 5/12, "feet"),
  43713. default: true
  43714. },
  43715. ]
  43716. ))
  43717. characterMakers.push(() => makeCharacter(
  43718. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43719. {
  43720. front: {
  43721. height: math.unit(18, "feet"),
  43722. name: "Front",
  43723. image: {
  43724. source: "./media/characters/xeaduulix/front.svg",
  43725. extra: 1380/1166,
  43726. bottom: 110/1490
  43727. }
  43728. },
  43729. back: {
  43730. height: math.unit(18, "feet"),
  43731. name: "Back",
  43732. image: {
  43733. source: "./media/characters/xeaduulix/back.svg",
  43734. extra: 1592/1170,
  43735. bottom: 128/1720
  43736. }
  43737. },
  43738. frontNsfw: {
  43739. height: math.unit(18, "feet"),
  43740. name: "Front (NSFW)",
  43741. image: {
  43742. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43743. extra: 1380/1166,
  43744. bottom: 110/1490
  43745. }
  43746. },
  43747. backNsfw: {
  43748. height: math.unit(18, "feet"),
  43749. name: "Back (NSFW)",
  43750. image: {
  43751. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43752. extra: 1592/1170,
  43753. bottom: 128/1720
  43754. }
  43755. },
  43756. },
  43757. [
  43758. {
  43759. name: "Normal",
  43760. height: math.unit(18, "feet"),
  43761. default: true
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43767. {
  43768. spreadWings: {
  43769. height: math.unit(20, "feet"),
  43770. name: "Spread Wings",
  43771. image: {
  43772. source: "./media/characters/fledge/spread-wings.svg",
  43773. extra: 693/635,
  43774. bottom: 26/719
  43775. }
  43776. },
  43777. front: {
  43778. height: math.unit(20, "feet"),
  43779. name: "Front",
  43780. image: {
  43781. source: "./media/characters/fledge/front.svg",
  43782. extra: 684/637,
  43783. bottom: 18/702
  43784. }
  43785. },
  43786. frontAlt: {
  43787. height: math.unit(20, "feet"),
  43788. name: "Front (Alt)",
  43789. image: {
  43790. source: "./media/characters/fledge/front-alt.svg",
  43791. extra: 708/664,
  43792. bottom: 13/721
  43793. }
  43794. },
  43795. back: {
  43796. height: math.unit(20, "feet"),
  43797. name: "Back",
  43798. image: {
  43799. source: "./media/characters/fledge/back.svg",
  43800. extra: 718/634,
  43801. bottom: 22/740
  43802. }
  43803. },
  43804. head: {
  43805. height: math.unit(5.55, "feet"),
  43806. name: "Head",
  43807. image: {
  43808. source: "./media/characters/fledge/head.svg"
  43809. }
  43810. },
  43811. headAlt: {
  43812. height: math.unit(5.1, "feet"),
  43813. name: "Head (Alt)",
  43814. image: {
  43815. source: "./media/characters/fledge/head-alt.svg"
  43816. }
  43817. },
  43818. },
  43819. [
  43820. {
  43821. name: "Small",
  43822. height: math.unit(6 + 2/12, "feet")
  43823. },
  43824. {
  43825. name: "Big",
  43826. height: math.unit(20, "feet"),
  43827. default: true
  43828. },
  43829. {
  43830. name: "Giant",
  43831. height: math.unit(100, "feet")
  43832. },
  43833. {
  43834. name: "Macro",
  43835. height: math.unit(200, "feet")
  43836. },
  43837. ]
  43838. ))
  43839. characterMakers.push(() => makeCharacter(
  43840. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43841. {
  43842. front: {
  43843. height: math.unit(1, "meter"),
  43844. name: "Front",
  43845. image: {
  43846. source: "./media/characters/atlas-morenai/front.svg",
  43847. extra: 1275/1043,
  43848. bottom: 19/1294
  43849. }
  43850. },
  43851. back: {
  43852. height: math.unit(1, "meter"),
  43853. name: "Back",
  43854. image: {
  43855. source: "./media/characters/atlas-morenai/back.svg",
  43856. extra: 1141/1001,
  43857. bottom: 25/1166
  43858. }
  43859. },
  43860. },
  43861. [
  43862. {
  43863. name: "Normal",
  43864. height: math.unit(1, "meter"),
  43865. default: true
  43866. },
  43867. {
  43868. name: "Magic-Infused",
  43869. height: math.unit(5, "meters")
  43870. },
  43871. ]
  43872. ))
  43873. characterMakers.push(() => makeCharacter(
  43874. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43875. {
  43876. front: {
  43877. height: math.unit(5, "meters"),
  43878. name: "Front",
  43879. image: {
  43880. source: "./media/characters/cintia/front.svg",
  43881. extra: 1312/1228,
  43882. bottom: 38/1350
  43883. }
  43884. },
  43885. back: {
  43886. height: math.unit(5, "meters"),
  43887. name: "Back",
  43888. image: {
  43889. source: "./media/characters/cintia/back.svg",
  43890. extra: 1260/1166,
  43891. bottom: 98/1358
  43892. }
  43893. },
  43894. frontDick: {
  43895. height: math.unit(5, "meters"),
  43896. name: "Front (Dick)",
  43897. image: {
  43898. source: "./media/characters/cintia/front-dick.svg",
  43899. extra: 1312/1228,
  43900. bottom: 38/1350
  43901. }
  43902. },
  43903. backDick: {
  43904. height: math.unit(5, "meters"),
  43905. name: "Back (Dick)",
  43906. image: {
  43907. source: "./media/characters/cintia/back-dick.svg",
  43908. extra: 1260/1166,
  43909. bottom: 98/1358
  43910. }
  43911. },
  43912. bust: {
  43913. height: math.unit(1.97, "meters"),
  43914. name: "Bust",
  43915. image: {
  43916. source: "./media/characters/cintia/bust.svg",
  43917. extra: 617/565,
  43918. bottom: 0/617
  43919. }
  43920. },
  43921. },
  43922. [
  43923. {
  43924. name: "Normal",
  43925. height: math.unit(5, "meters"),
  43926. default: true
  43927. },
  43928. ]
  43929. ))
  43930. characterMakers.push(() => makeCharacter(
  43931. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43932. {
  43933. side: {
  43934. height: math.unit(100, "feet"),
  43935. name: "Side",
  43936. image: {
  43937. source: "./media/characters/denora/side.svg",
  43938. extra: 875/803,
  43939. bottom: 9/884
  43940. }
  43941. },
  43942. },
  43943. [
  43944. {
  43945. name: "Standard",
  43946. height: math.unit(100, "feet"),
  43947. default: true
  43948. },
  43949. {
  43950. name: "Grand",
  43951. height: math.unit(1000, "feet")
  43952. },
  43953. {
  43954. name: "Conquering",
  43955. height: math.unit(10000, "feet")
  43956. },
  43957. ]
  43958. ))
  43959. characterMakers.push(() => makeCharacter(
  43960. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43961. {
  43962. dressed: {
  43963. height: math.unit(8 + 5/12, "feet"),
  43964. weight: math.unit(700, "lb"),
  43965. name: "Dressed",
  43966. image: {
  43967. source: "./media/characters/kiva/dressed.svg",
  43968. extra: 1102/1055,
  43969. bottom: 60/1162
  43970. }
  43971. },
  43972. nude: {
  43973. height: math.unit(8 + 5/12, "feet"),
  43974. weight: math.unit(700, "lb"),
  43975. name: "Nude",
  43976. image: {
  43977. source: "./media/characters/kiva/nude.svg",
  43978. extra: 1102/1055,
  43979. bottom: 60/1162
  43980. }
  43981. },
  43982. },
  43983. [
  43984. {
  43985. name: "Base Height",
  43986. height: math.unit(8 + 5/12, "feet"),
  43987. default: true
  43988. },
  43989. {
  43990. name: "Macro",
  43991. height: math.unit(100, "feet")
  43992. },
  43993. {
  43994. name: "Max",
  43995. height: math.unit(3280, "feet")
  43996. },
  43997. ]
  43998. ))
  43999. characterMakers.push(() => makeCharacter(
  44000. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44001. {
  44002. front: {
  44003. height: math.unit(6 + 8/12, "feet"),
  44004. weight: math.unit(250, "lb"),
  44005. name: "Front",
  44006. image: {
  44007. source: "./media/characters/ztragon/front.svg",
  44008. extra: 1825/1684,
  44009. bottom: 98/1923
  44010. }
  44011. },
  44012. },
  44013. [
  44014. {
  44015. name: "Normal",
  44016. height: math.unit(6 + 8/12, "feet"),
  44017. default: true
  44018. },
  44019. {
  44020. name: "Macro",
  44021. height: math.unit(80, "feet")
  44022. },
  44023. ]
  44024. ))
  44025. characterMakers.push(() => makeCharacter(
  44026. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44027. {
  44028. front: {
  44029. height: math.unit(10.4, "feet"),
  44030. weight: math.unit(2, "tons"),
  44031. name: "Front",
  44032. image: {
  44033. source: "./media/characters/yesenia/front.svg",
  44034. extra: 1479/1474,
  44035. bottom: 233/1712
  44036. }
  44037. },
  44038. },
  44039. [
  44040. {
  44041. name: "Normal",
  44042. height: math.unit(10.4, "feet"),
  44043. default: true
  44044. },
  44045. ]
  44046. ))
  44047. characterMakers.push(() => makeCharacter(
  44048. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44049. {
  44050. normal: {
  44051. height: math.unit(6 + 1/12, "feet"),
  44052. weight: math.unit(180, "lb"),
  44053. name: "Normal",
  44054. image: {
  44055. source: "./media/characters/leanne-lycheborne/normal.svg",
  44056. extra: 1748/1660,
  44057. bottom: 98/1846
  44058. }
  44059. },
  44060. were: {
  44061. height: math.unit(12, "feet"),
  44062. weight: math.unit(1600, "lb"),
  44063. name: "Were",
  44064. image: {
  44065. source: "./media/characters/leanne-lycheborne/were.svg",
  44066. extra: 1485/1432,
  44067. bottom: 66/1551
  44068. }
  44069. },
  44070. },
  44071. [
  44072. {
  44073. name: "Normal",
  44074. height: math.unit(6 + 1/12, "feet"),
  44075. default: true
  44076. },
  44077. ]
  44078. ))
  44079. characterMakers.push(() => makeCharacter(
  44080. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44081. {
  44082. side: {
  44083. height: math.unit(13, "feet"),
  44084. name: "Side",
  44085. image: {
  44086. source: "./media/characters/kira-tyler/side.svg",
  44087. extra: 693/393,
  44088. bottom: 58/751
  44089. }
  44090. },
  44091. },
  44092. [
  44093. {
  44094. name: "Normal",
  44095. height: math.unit(13, "feet"),
  44096. default: true
  44097. },
  44098. ]
  44099. ))
  44100. characterMakers.push(() => makeCharacter(
  44101. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44102. {
  44103. front: {
  44104. height: math.unit(10.3, "feet"),
  44105. weight: math.unit(150, "lb"),
  44106. name: "Front",
  44107. image: {
  44108. source: "./media/characters/blaze/front.svg",
  44109. extra: 1378/1286,
  44110. bottom: 172/1550
  44111. }
  44112. },
  44113. },
  44114. [
  44115. {
  44116. name: "Normal",
  44117. height: math.unit(10.3, "feet"),
  44118. default: true
  44119. },
  44120. ]
  44121. ))
  44122. characterMakers.push(() => makeCharacter(
  44123. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44124. {
  44125. side: {
  44126. height: math.unit(2, "meters"),
  44127. weight: math.unit(400, "kg"),
  44128. name: "Side",
  44129. image: {
  44130. source: "./media/characters/anu/side.svg",
  44131. extra: 506/394,
  44132. bottom: 18/524
  44133. }
  44134. },
  44135. },
  44136. [
  44137. {
  44138. name: "Humanoid",
  44139. height: math.unit(2, "meters")
  44140. },
  44141. {
  44142. name: "Normal",
  44143. height: math.unit(5, "meters"),
  44144. default: true
  44145. },
  44146. ]
  44147. ))
  44148. characterMakers.push(() => makeCharacter(
  44149. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44150. {
  44151. front: {
  44152. height: math.unit(5 + 5/12, "feet"),
  44153. weight: math.unit(170, "lb"),
  44154. name: "Front",
  44155. image: {
  44156. source: "./media/characters/synx-the-lynx/front.svg",
  44157. extra: 1893/1745,
  44158. bottom: 17/1910
  44159. }
  44160. },
  44161. side: {
  44162. height: math.unit(5 + 5/12, "feet"),
  44163. weight: math.unit(170, "lb"),
  44164. name: "Side",
  44165. image: {
  44166. source: "./media/characters/synx-the-lynx/side.svg",
  44167. extra: 1884/1740,
  44168. bottom: 39/1923
  44169. }
  44170. },
  44171. back: {
  44172. height: math.unit(5 + 5/12, "feet"),
  44173. weight: math.unit(170, "lb"),
  44174. name: "Back",
  44175. image: {
  44176. source: "./media/characters/synx-the-lynx/back.svg",
  44177. extra: 1903/1755,
  44178. bottom: 14/1917
  44179. }
  44180. },
  44181. },
  44182. [
  44183. {
  44184. name: "Normal",
  44185. height: math.unit(5 + 5/12, "feet"),
  44186. default: true
  44187. },
  44188. ]
  44189. ))
  44190. characterMakers.push(() => makeCharacter(
  44191. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44192. {
  44193. back: {
  44194. height: math.unit(15, "feet"),
  44195. name: "Back",
  44196. image: {
  44197. source: "./media/characters/nadezda-fex/back.svg",
  44198. extra: 1695/1481,
  44199. bottom: 25/1720
  44200. }
  44201. },
  44202. },
  44203. [
  44204. {
  44205. name: "Normal",
  44206. height: math.unit(15, "feet"),
  44207. default: true
  44208. },
  44209. {
  44210. name: "Macro",
  44211. height: math.unit(2.5, "miles")
  44212. },
  44213. {
  44214. name: "Goddess",
  44215. height: math.unit(2, "multiverses")
  44216. },
  44217. ]
  44218. ))
  44219. characterMakers.push(() => makeCharacter(
  44220. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44221. {
  44222. front: {
  44223. height: math.unit(216, "cm"),
  44224. name: "Front",
  44225. image: {
  44226. source: "./media/characters/lev/front.svg",
  44227. extra: 1728/1670,
  44228. bottom: 82/1810
  44229. }
  44230. },
  44231. back: {
  44232. height: math.unit(216, "cm"),
  44233. name: "Back",
  44234. image: {
  44235. source: "./media/characters/lev/back.svg",
  44236. extra: 1738/1675,
  44237. bottom: 24/1762
  44238. }
  44239. },
  44240. dressed: {
  44241. height: math.unit(216, "cm"),
  44242. name: "Dressed",
  44243. image: {
  44244. source: "./media/characters/lev/dressed.svg",
  44245. extra: 1397/1351,
  44246. bottom: 73/1470
  44247. }
  44248. },
  44249. head: {
  44250. height: math.unit(0.51, "meter"),
  44251. name: "Head",
  44252. image: {
  44253. source: "./media/characters/lev/head.svg"
  44254. }
  44255. },
  44256. },
  44257. [
  44258. {
  44259. name: "Normal",
  44260. height: math.unit(216, "cm"),
  44261. default: true
  44262. },
  44263. {
  44264. name: "Relatively Macro",
  44265. height: math.unit(80, "meters")
  44266. },
  44267. {
  44268. name: "Megamacro",
  44269. height: math.unit(21600, "meters")
  44270. },
  44271. {
  44272. name: "Megamacro+",
  44273. height: math.unit(64800, "meters")
  44274. },
  44275. ]
  44276. ))
  44277. characterMakers.push(() => makeCharacter(
  44278. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44279. {
  44280. front: {
  44281. height: math.unit(2, "meters"),
  44282. weight: math.unit(80, "kg"),
  44283. name: "Front",
  44284. image: {
  44285. source: "./media/characters/moka/front.svg",
  44286. extra: 1337/1255,
  44287. bottom: 58/1395
  44288. }
  44289. },
  44290. },
  44291. [
  44292. {
  44293. name: "Micro",
  44294. height: math.unit(15, "cm")
  44295. },
  44296. {
  44297. name: "Normal",
  44298. height: math.unit(2, "meters"),
  44299. default: true
  44300. },
  44301. {
  44302. name: "Macro",
  44303. height: math.unit(20, "meters"),
  44304. },
  44305. ]
  44306. ))
  44307. characterMakers.push(() => makeCharacter(
  44308. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44309. {
  44310. front: {
  44311. height: math.unit(9, "feet"),
  44312. weight: math.unit(240, "lb"),
  44313. name: "Front",
  44314. image: {
  44315. source: "./media/characters/kuzco/front.svg",
  44316. extra: 1593/1487,
  44317. bottom: 32/1625
  44318. }
  44319. },
  44320. side: {
  44321. height: math.unit(9, "feet"),
  44322. weight: math.unit(240, "lb"),
  44323. name: "Side",
  44324. image: {
  44325. source: "./media/characters/kuzco/side.svg",
  44326. extra: 1575/1485,
  44327. bottom: 30/1605
  44328. }
  44329. },
  44330. back: {
  44331. height: math.unit(9, "feet"),
  44332. weight: math.unit(240, "lb"),
  44333. name: "Back",
  44334. image: {
  44335. source: "./media/characters/kuzco/back.svg",
  44336. extra: 1603/1514,
  44337. bottom: 14/1617
  44338. }
  44339. },
  44340. },
  44341. [
  44342. {
  44343. name: "Normal",
  44344. height: math.unit(9, "feet"),
  44345. default: true
  44346. },
  44347. ]
  44348. ))
  44349. characterMakers.push(() => makeCharacter(
  44350. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44351. {
  44352. side: {
  44353. height: math.unit(2, "meters"),
  44354. weight: math.unit(300, "kg"),
  44355. name: "Side",
  44356. image: {
  44357. source: "./media/characters/ceruleus/side.svg",
  44358. extra: 1068/974,
  44359. bottom: 126/1194
  44360. }
  44361. },
  44362. },
  44363. [
  44364. {
  44365. name: "Normal",
  44366. height: math.unit(16, "meters"),
  44367. default: true
  44368. },
  44369. ]
  44370. ))
  44371. characterMakers.push(() => makeCharacter(
  44372. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44373. {
  44374. front: {
  44375. height: math.unit(9, "feet"),
  44376. weight: math.unit(500, "kg"),
  44377. name: "Front",
  44378. image: {
  44379. source: "./media/characters/acouya/front.svg",
  44380. extra: 1660/1473,
  44381. bottom: 28/1688
  44382. }
  44383. },
  44384. },
  44385. [
  44386. {
  44387. name: "Normal",
  44388. height: math.unit(9, "feet"),
  44389. default: true
  44390. },
  44391. ]
  44392. ))
  44393. characterMakers.push(() => makeCharacter(
  44394. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44395. {
  44396. front: {
  44397. height: math.unit(5 + 6/12, "feet"),
  44398. weight: math.unit(195, "lb"),
  44399. name: "Front",
  44400. image: {
  44401. source: "./media/characters/vant/front.svg",
  44402. extra: 1396/1320,
  44403. bottom: 20/1416
  44404. }
  44405. },
  44406. back: {
  44407. height: math.unit(5 + 6/12, "feet"),
  44408. weight: math.unit(195, "lb"),
  44409. name: "Back",
  44410. image: {
  44411. source: "./media/characters/vant/back.svg",
  44412. extra: 1396/1320,
  44413. bottom: 20/1416
  44414. }
  44415. },
  44416. maw: {
  44417. height: math.unit(0.75, "feet"),
  44418. name: "Maw",
  44419. image: {
  44420. source: "./media/characters/vant/maw.svg"
  44421. }
  44422. },
  44423. paw: {
  44424. height: math.unit(1.07, "feet"),
  44425. name: "Paw",
  44426. image: {
  44427. source: "./media/characters/vant/paw.svg"
  44428. }
  44429. },
  44430. },
  44431. [
  44432. {
  44433. name: "Micro",
  44434. height: math.unit(0.25, "inches")
  44435. },
  44436. {
  44437. name: "Normal",
  44438. height: math.unit(5 + 6/12, "feet"),
  44439. default: true
  44440. },
  44441. {
  44442. name: "Macro",
  44443. height: math.unit(75, "feet")
  44444. },
  44445. ]
  44446. ))
  44447. //characters
  44448. function makeCharacters() {
  44449. const results = [];
  44450. characterMakers.forEach(character => {
  44451. results.push(character());
  44452. });
  44453. return results;
  44454. }